styles.css 210 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1711px;
  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. #u97032_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. #u97032 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u97032 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u97032_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u97033_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. #u97033 {
  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. #u97033 .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. #u97033_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u97034_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. #u97034 {
  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. #u97034 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u97034_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u97035 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u97036_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u97036 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u97036 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u97036_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u97037_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. #u97037 {
  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. #u97037 .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. #u97037_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u97038_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. #u97038 {
  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. #u97038 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u97038_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u97039 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u97040_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. #u97040_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. #u97040_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. #u97040 {
  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. #u97040 .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. #u97040_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. #u97040.disabled {
  356. }
  357. .u97040_input_option {
  358. font-size:14px;
  359. }
  360. #u97041_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u97041 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u97041 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u97041_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u97042_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. #u97042 {
  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. #u97042 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u97042_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u97043_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. #u97043 {
  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. #u97043 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u97043_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u97044 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u97045_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. #u97045 {
  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. #u97045 .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. #u97045_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u97046_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u97046 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u97046 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u97046_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u97047 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u97048_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. #u97048 {
  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. #u97048 .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. #u97048_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u97049_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u97049 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u97049 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u97049_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u97050 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u97051_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. #u97051 {
  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. #u97051 .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. #u97051_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u97052_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u97052 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u97052 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u97052_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u97053 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u97054_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. #u97054 {
  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. #u97054 .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. #u97054_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u97055_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u97055 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u97055 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u97055_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u97056 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u97057_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. #u97057 {
  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. #u97057 .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. #u97057_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u97058_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u97058 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u97058 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u97058_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u97059 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u97060_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. #u97060 {
  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. #u97060 .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. #u97060_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u97061_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u97061 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u97061 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u97061_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u97062 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u97063_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. #u97063 {
  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. #u97063 .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. #u97063_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u97064_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u97064 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u97064 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u97064_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u97065 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u97066_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. #u97066 {
  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. #u97066 .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. #u97066_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u97067_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u97067 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u97067 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u97067_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u97068 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u97069_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. #u97069 {
  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. #u97069 .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. #u97069_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u97070_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u97070 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u97070 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u97070_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u97071 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u97072_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. #u97072 {
  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. #u97072 .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. #u97072_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u97073_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u97073 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u97073 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u97073_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u97074_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. #u97074 {
  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. #u97074 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u97074_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u97075_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u97075 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u97075 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u97075_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u97076_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. #u97076 {
  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. #u97076 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u97076_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u97077_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u97077 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u97077 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u97077_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u97078 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u97079_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. #u97079 {
  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. #u97079 .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. #u97079_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u97080_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u97080 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u97080 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u97080_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u97081 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u97082_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. #u97082 {
  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. #u97082 .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. #u97082_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u97083_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u97083 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u97083 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u97083_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u97084_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1381px;
  1644. height:1522px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(215, 215, 215, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. text-align:left;
  1661. }
  1662. #u97084 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:330px;
  1666. top:50px;
  1667. width:1381px;
  1668. height:1522px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#FFFFFF;
  1675. text-align:left;
  1676. }
  1677. #u97084 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 50px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u97084_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u97085_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:37px;
  1696. height:50px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 0);
  1699. border:none;
  1700. border-left:0px;
  1701. border-top:0px;
  1702. border-right:0px;
  1703. border-radius:0px;
  1704. border-bottom-right-radius:0px;
  1705. border-bottom-left-radius:0px;
  1706. -moz-box-shadow:none;
  1707. -webkit-box-shadow:none;
  1708. box-shadow:none;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u97085 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:350px;
  1718. top:50px;
  1719. width:37px;
  1720. height:50px;
  1721. display:flex;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:18px;
  1726. }
  1727. #u97085 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:0px 0px 0px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u97085_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u97086 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:351px;
  1743. top:291px;
  1744. width:1340px;
  1745. height:322px;
  1746. }
  1747. #u97087_img {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:111px;
  1753. height:38px;
  1754. }
  1755. #u97087 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:111px;
  1761. height:38px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#FFFFFF;
  1768. }
  1769. #u97087 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 0px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u97087_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. }
  1781. #u97088_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:111px;
  1787. height:38px;
  1788. }
  1789. #u97088 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:111px;
  1793. top:0px;
  1794. width:111px;
  1795. height:38px;
  1796. display:flex;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:12px;
  1801. color:#FFFFFF;
  1802. }
  1803. #u97088 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u97088_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. }
  1815. #u97089_img {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:111px;
  1821. height:38px;
  1822. }
  1823. #u97089 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:222px;
  1827. top:0px;
  1828. width:111px;
  1829. height:38px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:12px;
  1835. color:#FFFFFF;
  1836. }
  1837. #u97089 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u97089_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u97090_img {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:111px;
  1855. height:38px;
  1856. }
  1857. #u97090 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:333px;
  1861. top:0px;
  1862. width:111px;
  1863. height:38px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. color:#FFFFFF;
  1870. }
  1871. #u97090 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 0px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u97090_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u97091_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:133px;
  1889. height:38px;
  1890. }
  1891. #u97091 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:444px;
  1895. top:0px;
  1896. width:133px;
  1897. height:38px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:12px;
  1903. color:#FFFFFF;
  1904. }
  1905. #u97091 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u97091_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. }
  1917. #u97092_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:133px;
  1923. height:38px;
  1924. }
  1925. #u97092 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:577px;
  1929. top:0px;
  1930. width:133px;
  1931. height:38px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:12px;
  1937. color:#FFFFFF;
  1938. }
  1939. #u97092 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 2px 2px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u97092_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. }
  1951. #u97093_img {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:129px;
  1957. height:38px;
  1958. }
  1959. #u97093 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:710px;
  1963. top:0px;
  1964. width:129px;
  1965. height:38px;
  1966. display:flex;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:12px;
  1971. color:#FFFFFF;
  1972. }
  1973. #u97093 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 0px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u97093_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u97094_img {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:111px;
  1991. height:38px;
  1992. }
  1993. #u97094 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:839px;
  1997. top:0px;
  1998. width:111px;
  1999. height:38px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u97094 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u97094_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u97095_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:148px;
  2025. height:38px;
  2026. }
  2027. #u97095 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:950px;
  2031. top:0px;
  2032. width:148px;
  2033. height:38px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:12px;
  2039. color:#FFFFFF;
  2040. }
  2041. #u97095 .text {
  2042. position:absolute;
  2043. align-self:center;
  2044. padding:2px 2px 2px 0px;
  2045. box-sizing:border-box;
  2046. width:100%;
  2047. }
  2048. #u97095_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. }
  2053. #u97096_img {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:128px;
  2059. height:38px;
  2060. }
  2061. #u97096 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:1098px;
  2065. top:0px;
  2066. width:128px;
  2067. height:38px;
  2068. display:flex;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:12px;
  2073. color:#FFFFFF;
  2074. }
  2075. #u97096 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 2px 2px 0px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u97096_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. }
  2087. #u97097_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:114px;
  2093. height:38px;
  2094. }
  2095. #u97097 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:1226px;
  2099. top:0px;
  2100. width:114px;
  2101. height:38px;
  2102. display:flex;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:12px;
  2107. color:#FFFFFF;
  2108. }
  2109. #u97097 .text {
  2110. position:absolute;
  2111. align-self:center;
  2112. padding:2px 2px 2px 0px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u97097_text {
  2117. border-width:0px;
  2118. word-wrap:break-word;
  2119. text-transform:none;
  2120. }
  2121. #u97098_img {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:111px;
  2127. height:38px;
  2128. }
  2129. #u97098 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:38px;
  2134. width:111px;
  2135. height:38px;
  2136. display:flex;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:12px;
  2141. color:#333333;
  2142. }
  2143. #u97098 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u97098_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u97099_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:111px;
  2162. height:38px;
  2163. }
  2164. #u97099 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:111px;
  2168. top:38px;
  2169. width:111px;
  2170. height:38px;
  2171. display:flex;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:12px;
  2176. color:#333333;
  2177. }
  2178. #u97099 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 0px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u97099_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u97100_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:111px;
  2197. height:38px;
  2198. }
  2199. #u97100 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:222px;
  2203. top:38px;
  2204. width:111px;
  2205. height:38px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:12px;
  2211. color:#333333;
  2212. }
  2213. #u97100 .text {
  2214. position:absolute;
  2215. align-self:center;
  2216. padding:2px 2px 2px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u97100_text {
  2221. border-width:0px;
  2222. word-wrap:break-word;
  2223. text-transform:none;
  2224. visibility:hidden;
  2225. }
  2226. #u97101_img {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:111px;
  2232. height:38px;
  2233. }
  2234. #u97101 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:333px;
  2238. top:38px;
  2239. width:111px;
  2240. height:38px;
  2241. display:flex;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:12px;
  2246. color:#333333;
  2247. }
  2248. #u97101 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:2px 2px 2px 0px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u97101_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u97102_img {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:133px;
  2267. height:38px;
  2268. }
  2269. #u97102 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:444px;
  2273. top:38px;
  2274. width:133px;
  2275. height:38px;
  2276. display:flex;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. color:#333333;
  2282. }
  2283. #u97102 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u97102_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. visibility:hidden;
  2295. }
  2296. #u97103_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:133px;
  2302. height:38px;
  2303. }
  2304. #u97103 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:577px;
  2308. top:38px;
  2309. width:133px;
  2310. height:38px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. color:#333333;
  2317. }
  2318. #u97103 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 2px 2px 0px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u97103_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u97104_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:129px;
  2337. height:38px;
  2338. }
  2339. #u97104 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:710px;
  2343. top:38px;
  2344. width:129px;
  2345. height:38px;
  2346. display:flex;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-weight:400;
  2349. font-style:normal;
  2350. font-size:12px;
  2351. color:#333333;
  2352. }
  2353. #u97104 .text {
  2354. position:absolute;
  2355. align-self:center;
  2356. padding:2px 2px 2px 0px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u97104_text {
  2361. border-width:0px;
  2362. word-wrap:break-word;
  2363. text-transform:none;
  2364. visibility:hidden;
  2365. }
  2366. #u97105_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:111px;
  2372. height:38px;
  2373. }
  2374. #u97105 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:839px;
  2378. top:38px;
  2379. width:111px;
  2380. height:38px;
  2381. display:flex;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:12px;
  2386. color:#333333;
  2387. }
  2388. #u97105 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 0px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u97105_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u97106_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:148px;
  2407. height:38px;
  2408. }
  2409. #u97106 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:950px;
  2413. top:38px;
  2414. width:148px;
  2415. height:38px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. color:#333333;
  2422. }
  2423. #u97106 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 0px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u97106_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. visibility:hidden;
  2435. }
  2436. #u97107_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:128px;
  2442. height:38px;
  2443. }
  2444. #u97107 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:1098px;
  2448. top:38px;
  2449. width:128px;
  2450. height:38px;
  2451. display:flex;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:12px;
  2456. color:#333333;
  2457. }
  2458. #u97107 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:2px 2px 2px 0px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u97107_text {
  2466. border-width:0px;
  2467. word-wrap:break-word;
  2468. text-transform:none;
  2469. visibility:hidden;
  2470. }
  2471. #u97108_img {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:114px;
  2477. height:38px;
  2478. }
  2479. #u97108 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:1226px;
  2483. top:38px;
  2484. width:114px;
  2485. height:38px;
  2486. display:flex;
  2487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:12px;
  2491. color:#0089FE;
  2492. }
  2493. #u97108 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 2px 2px 0px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u97108_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. }
  2505. #u97109_img {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:111px;
  2511. height:38px;
  2512. }
  2513. #u97109 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:76px;
  2518. width:111px;
  2519. height:38px;
  2520. display:flex;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:12px;
  2525. color:#333333;
  2526. }
  2527. #u97109 .text {
  2528. position:absolute;
  2529. align-self:center;
  2530. padding:2px 2px 2px 0px;
  2531. box-sizing:border-box;
  2532. width:100%;
  2533. }
  2534. #u97109_text {
  2535. border-width:0px;
  2536. word-wrap:break-word;
  2537. text-transform:none;
  2538. visibility:hidden;
  2539. }
  2540. #u97110_img {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:111px;
  2546. height:38px;
  2547. }
  2548. #u97110 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:111px;
  2552. top:76px;
  2553. width:111px;
  2554. height:38px;
  2555. display:flex;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:12px;
  2560. color:#333333;
  2561. }
  2562. #u97110 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 2px 2px 0px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u97110_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. visibility:hidden;
  2574. }
  2575. #u97111_img {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:111px;
  2581. height:38px;
  2582. }
  2583. #u97111 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:222px;
  2587. top:76px;
  2588. width:111px;
  2589. height:38px;
  2590. display:flex;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:12px;
  2595. color:#333333;
  2596. }
  2597. #u97111 .text {
  2598. position:absolute;
  2599. align-self:center;
  2600. padding:2px 2px 2px 0px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u97111_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u97112_img {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:111px;
  2616. height:38px;
  2617. }
  2618. #u97112 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:333px;
  2622. top:76px;
  2623. width:111px;
  2624. height:38px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:12px;
  2630. color:#333333;
  2631. }
  2632. #u97112 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 0px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u97112_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u97113_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:133px;
  2651. height:38px;
  2652. }
  2653. #u97113 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:444px;
  2657. top:76px;
  2658. width:133px;
  2659. height:38px;
  2660. display:flex;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:12px;
  2665. color:#333333;
  2666. }
  2667. #u97113 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 0px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u97113_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u97114_img {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:133px;
  2686. height:38px;
  2687. }
  2688. #u97114 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:577px;
  2692. top:76px;
  2693. width:133px;
  2694. height:38px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. color:#333333;
  2701. }
  2702. #u97114 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u97114_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. visibility:hidden;
  2714. }
  2715. #u97115_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:129px;
  2721. height:38px;
  2722. }
  2723. #u97115 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:710px;
  2727. top:76px;
  2728. width:129px;
  2729. height:38px;
  2730. display:flex;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. color:#333333;
  2736. }
  2737. #u97115 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 0px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u97115_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u97116_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:111px;
  2756. height:38px;
  2757. }
  2758. #u97116 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:839px;
  2762. top:76px;
  2763. width:111px;
  2764. height:38px;
  2765. display:flex;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:12px;
  2770. color:#333333;
  2771. }
  2772. #u97116 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 0px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u97116_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u97117_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:148px;
  2791. height:38px;
  2792. }
  2793. #u97117 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:950px;
  2797. top:76px;
  2798. width:148px;
  2799. height:38px;
  2800. display:flex;
  2801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:12px;
  2805. color:#333333;
  2806. }
  2807. #u97117 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 0px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u97117_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u97118_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:128px;
  2826. height:38px;
  2827. }
  2828. #u97118 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:1098px;
  2832. top:76px;
  2833. width:128px;
  2834. height:38px;
  2835. display:flex;
  2836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. font-size:12px;
  2840. color:#333333;
  2841. }
  2842. #u97118 .text {
  2843. position:absolute;
  2844. align-self:center;
  2845. padding:2px 2px 2px 0px;
  2846. box-sizing:border-box;
  2847. width:100%;
  2848. }
  2849. #u97118_text {
  2850. border-width:0px;
  2851. word-wrap:break-word;
  2852. text-transform:none;
  2853. visibility:hidden;
  2854. }
  2855. #u97119_img {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:114px;
  2861. height:38px;
  2862. }
  2863. #u97119 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:1226px;
  2867. top:76px;
  2868. width:114px;
  2869. height:38px;
  2870. display:flex;
  2871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2872. font-weight:400;
  2873. font-style:normal;
  2874. font-size:12px;
  2875. color:#0089FE;
  2876. }
  2877. #u97119 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 0px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u97119_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. visibility:hidden;
  2889. }
  2890. #u97120_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:111px;
  2896. height:38px;
  2897. }
  2898. #u97120 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:114px;
  2903. width:111px;
  2904. height:38px;
  2905. display:flex;
  2906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:12px;
  2910. color:#333333;
  2911. }
  2912. #u97120 .text {
  2913. position:absolute;
  2914. align-self:center;
  2915. padding:2px 2px 2px 0px;
  2916. box-sizing:border-box;
  2917. width:100%;
  2918. }
  2919. #u97120_text {
  2920. border-width:0px;
  2921. word-wrap:break-word;
  2922. text-transform:none;
  2923. visibility:hidden;
  2924. }
  2925. #u97121_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:111px;
  2931. height:38px;
  2932. }
  2933. #u97121 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:111px;
  2937. top:114px;
  2938. width:111px;
  2939. height:38px;
  2940. display:flex;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. color:#333333;
  2946. }
  2947. #u97121 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u97121_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. visibility:hidden;
  2959. }
  2960. #u97122_img {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:111px;
  2966. height:38px;
  2967. }
  2968. #u97122 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:222px;
  2972. top:114px;
  2973. width:111px;
  2974. height:38px;
  2975. display:flex;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:12px;
  2980. color:#333333;
  2981. }
  2982. #u97122 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 0px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u97122_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u97123_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:111px;
  3001. height:38px;
  3002. }
  3003. #u97123 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:333px;
  3007. top:114px;
  3008. width:111px;
  3009. height:38px;
  3010. display:flex;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. color:#333333;
  3016. }
  3017. #u97123 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u97123_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u97124_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:133px;
  3036. height:38px;
  3037. }
  3038. #u97124 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:444px;
  3042. top:114px;
  3043. width:133px;
  3044. height:38px;
  3045. display:flex;
  3046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:12px;
  3050. color:#333333;
  3051. }
  3052. #u97124 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 0px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u97124_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. visibility:hidden;
  3064. }
  3065. #u97125_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:133px;
  3071. height:38px;
  3072. }
  3073. #u97125 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:577px;
  3077. top:114px;
  3078. width:133px;
  3079. height:38px;
  3080. display:flex;
  3081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. color:#333333;
  3086. }
  3087. #u97125 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:2px 2px 2px 0px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u97125_text {
  3095. border-width:0px;
  3096. word-wrap:break-word;
  3097. text-transform:none;
  3098. visibility:hidden;
  3099. }
  3100. #u97126_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:129px;
  3106. height:38px;
  3107. }
  3108. #u97126 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:710px;
  3112. top:114px;
  3113. width:129px;
  3114. height:38px;
  3115. display:flex;
  3116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:12px;
  3120. color:#333333;
  3121. }
  3122. #u97126 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u97126_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u97127_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:111px;
  3141. height:38px;
  3142. }
  3143. #u97127 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:839px;
  3147. top:114px;
  3148. width:111px;
  3149. height:38px;
  3150. display:flex;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:12px;
  3155. color:#333333;
  3156. }
  3157. #u97127 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u97127_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u97128_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:148px;
  3176. height:38px;
  3177. }
  3178. #u97128 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:950px;
  3182. top:114px;
  3183. width:148px;
  3184. height:38px;
  3185. display:flex;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:12px;
  3190. color:#333333;
  3191. }
  3192. #u97128 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u97128_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u97129_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:128px;
  3211. height:38px;
  3212. }
  3213. #u97129 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:1098px;
  3217. top:114px;
  3218. width:128px;
  3219. height:38px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:12px;
  3225. color:#333333;
  3226. }
  3227. #u97129 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u97129_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u97130_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:114px;
  3246. height:38px;
  3247. }
  3248. #u97130 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:1226px;
  3252. top:114px;
  3253. width:114px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. color:#0089FE;
  3261. }
  3262. #u97130 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u97130_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u97131_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:111px;
  3281. height:38px;
  3282. }
  3283. #u97131 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:152px;
  3288. width:111px;
  3289. height:38px;
  3290. display:flex;
  3291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3292. font-weight:400;
  3293. font-style:normal;
  3294. font-size:12px;
  3295. color:#333333;
  3296. }
  3297. #u97131 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 0px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u97131_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. visibility:hidden;
  3309. }
  3310. #u97132_img {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:111px;
  3316. height:38px;
  3317. }
  3318. #u97132 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:111px;
  3322. top:152px;
  3323. width:111px;
  3324. height:38px;
  3325. display:flex;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:12px;
  3330. color:#333333;
  3331. }
  3332. #u97132 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:2px 2px 2px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u97132_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u97133_img {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:111px;
  3351. height:38px;
  3352. }
  3353. #u97133 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:222px;
  3357. top:152px;
  3358. width:111px;
  3359. height:38px;
  3360. display:flex;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. color:#333333;
  3366. }
  3367. #u97133 .text {
  3368. position:absolute;
  3369. align-self:center;
  3370. padding:2px 2px 2px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u97133_text {
  3375. border-width:0px;
  3376. word-wrap:break-word;
  3377. text-transform:none;
  3378. visibility:hidden;
  3379. }
  3380. #u97134_img {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:111px;
  3386. height:38px;
  3387. }
  3388. #u97134 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:333px;
  3392. top:152px;
  3393. width:111px;
  3394. height:38px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:12px;
  3400. color:#333333;
  3401. }
  3402. #u97134 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 0px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u97134_text {
  3410. border-width:0px;
  3411. word-wrap:break-word;
  3412. text-transform:none;
  3413. visibility:hidden;
  3414. }
  3415. #u97135_img {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:133px;
  3421. height:38px;
  3422. }
  3423. #u97135 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:444px;
  3427. top:152px;
  3428. width:133px;
  3429. height:38px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. color:#333333;
  3436. }
  3437. #u97135 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u97135_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u97136_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:133px;
  3456. height:38px;
  3457. }
  3458. #u97136 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:577px;
  3462. top:152px;
  3463. width:133px;
  3464. height:38px;
  3465. display:flex;
  3466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:12px;
  3470. color:#333333;
  3471. }
  3472. #u97136 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u97136_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u97137_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:129px;
  3491. height:38px;
  3492. }
  3493. #u97137 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:710px;
  3497. top:152px;
  3498. width:129px;
  3499. height:38px;
  3500. display:flex;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:12px;
  3505. color:#333333;
  3506. }
  3507. #u97137 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 0px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u97137_text {
  3515. border-width:0px;
  3516. word-wrap:break-word;
  3517. text-transform:none;
  3518. visibility:hidden;
  3519. }
  3520. #u97138_img {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:111px;
  3526. height:38px;
  3527. }
  3528. #u97138 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:839px;
  3532. top:152px;
  3533. width:111px;
  3534. height:38px;
  3535. display:flex;
  3536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:12px;
  3540. color:#333333;
  3541. }
  3542. #u97138 .text {
  3543. position:absolute;
  3544. align-self:center;
  3545. padding:2px 2px 2px 0px;
  3546. box-sizing:border-box;
  3547. width:100%;
  3548. }
  3549. #u97138_text {
  3550. border-width:0px;
  3551. word-wrap:break-word;
  3552. text-transform:none;
  3553. visibility:hidden;
  3554. }
  3555. #u97139_img {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:148px;
  3561. height:38px;
  3562. }
  3563. #u97139 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:950px;
  3567. top:152px;
  3568. width:148px;
  3569. height:38px;
  3570. display:flex;
  3571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:12px;
  3575. color:#333333;
  3576. }
  3577. #u97139 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 0px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u97139_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. visibility:hidden;
  3589. }
  3590. #u97140_img {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:128px;
  3596. height:38px;
  3597. }
  3598. #u97140 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:1098px;
  3602. top:152px;
  3603. width:128px;
  3604. height:38px;
  3605. display:flex;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:12px;
  3610. color:#333333;
  3611. }
  3612. #u97140 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u97140_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. visibility:hidden;
  3624. }
  3625. #u97141_img {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:114px;
  3631. height:38px;
  3632. }
  3633. #u97141 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:1226px;
  3637. top:152px;
  3638. width:114px;
  3639. height:38px;
  3640. display:flex;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:12px;
  3645. color:#AAAAAA;
  3646. }
  3647. #u97141 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:2px 2px 2px 0px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u97141_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. visibility:hidden;
  3659. }
  3660. #u97142_img {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:111px;
  3666. height:35px;
  3667. }
  3668. #u97142 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:190px;
  3673. width:111px;
  3674. height:35px;
  3675. display:flex;
  3676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3677. font-weight:400;
  3678. font-style:normal;
  3679. font-size:12px;
  3680. color:#333333;
  3681. }
  3682. #u97142 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:2px 2px 2px 0px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u97142_text {
  3690. border-width:0px;
  3691. word-wrap:break-word;
  3692. text-transform:none;
  3693. visibility:hidden;
  3694. }
  3695. #u97143_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:111px;
  3701. height:35px;
  3702. }
  3703. #u97143 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:111px;
  3707. top:190px;
  3708. width:111px;
  3709. height:35px;
  3710. display:flex;
  3711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. font-size:12px;
  3715. color:#333333;
  3716. }
  3717. #u97143 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:2px 2px 2px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u97143_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. visibility:hidden;
  3729. }
  3730. #u97144_img {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:111px;
  3736. height:35px;
  3737. }
  3738. #u97144 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:222px;
  3742. top:190px;
  3743. width:111px;
  3744. height:35px;
  3745. display:flex;
  3746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. font-size:12px;
  3750. color:#333333;
  3751. }
  3752. #u97144 .text {
  3753. position:absolute;
  3754. align-self:center;
  3755. padding:2px 2px 2px 0px;
  3756. box-sizing:border-box;
  3757. width:100%;
  3758. }
  3759. #u97144_text {
  3760. border-width:0px;
  3761. word-wrap:break-word;
  3762. text-transform:none;
  3763. visibility:hidden;
  3764. }
  3765. #u97145_img {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:111px;
  3771. height:35px;
  3772. }
  3773. #u97145 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:333px;
  3777. top:190px;
  3778. width:111px;
  3779. height:35px;
  3780. display:flex;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:12px;
  3785. color:#333333;
  3786. }
  3787. #u97145 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 0px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u97145_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u97146_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:133px;
  3806. height:35px;
  3807. }
  3808. #u97146 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:444px;
  3812. top:190px;
  3813. width:133px;
  3814. height:35px;
  3815. display:flex;
  3816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:12px;
  3820. color:#333333;
  3821. }
  3822. #u97146 .text {
  3823. position:absolute;
  3824. align-self:center;
  3825. padding:2px 2px 2px 0px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u97146_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. visibility:hidden;
  3834. }
  3835. #u97147_img {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:133px;
  3841. height:35px;
  3842. }
  3843. #u97147 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:577px;
  3847. top:190px;
  3848. width:133px;
  3849. height:35px;
  3850. display:flex;
  3851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3852. font-weight:400;
  3853. font-style:normal;
  3854. font-size:12px;
  3855. color:#333333;
  3856. }
  3857. #u97147 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 0px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u97147_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u97148_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:129px;
  3876. height:35px;
  3877. }
  3878. #u97148 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:710px;
  3882. top:190px;
  3883. width:129px;
  3884. height:35px;
  3885. display:flex;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:12px;
  3890. color:#333333;
  3891. }
  3892. #u97148 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 0px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u97148_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u97149_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:111px;
  3911. height:35px;
  3912. }
  3913. #u97149 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:839px;
  3917. top:190px;
  3918. width:111px;
  3919. height:35px;
  3920. display:flex;
  3921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. color:#333333;
  3926. }
  3927. #u97149 .text {
  3928. position:absolute;
  3929. align-self:center;
  3930. padding:2px 2px 2px 0px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u97149_text {
  3935. border-width:0px;
  3936. word-wrap:break-word;
  3937. text-transform:none;
  3938. visibility:hidden;
  3939. }
  3940. #u97150_img {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:148px;
  3946. height:35px;
  3947. }
  3948. #u97150 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:950px;
  3952. top:190px;
  3953. width:148px;
  3954. height:35px;
  3955. display:flex;
  3956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:12px;
  3960. color:#333333;
  3961. }
  3962. #u97150 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:2px 2px 2px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u97150_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. visibility:hidden;
  3974. }
  3975. #u97151_img {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:128px;
  3981. height:35px;
  3982. }
  3983. #u97151 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:1098px;
  3987. top:190px;
  3988. width:128px;
  3989. height:35px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:12px;
  3995. color:#333333;
  3996. }
  3997. #u97151 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 2px 2px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u97151_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u97152_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:114px;
  4016. height:35px;
  4017. }
  4018. #u97152 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:1226px;
  4022. top:190px;
  4023. width:114px;
  4024. height:35px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:12px;
  4030. color:#AAAAAA;
  4031. }
  4032. #u97152 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 0px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u97152_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. visibility:hidden;
  4044. }
  4045. #u97153_img {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:111px;
  4051. height:35px;
  4052. }
  4053. #u97153 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:225px;
  4058. width:111px;
  4059. height:35px;
  4060. display:flex;
  4061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:12px;
  4065. color:#333333;
  4066. }
  4067. #u97153 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 0px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u97153_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u97154_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:111px;
  4086. height:35px;
  4087. }
  4088. #u97154 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:111px;
  4092. top:225px;
  4093. width:111px;
  4094. height:35px;
  4095. display:flex;
  4096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:12px;
  4100. color:#333333;
  4101. }
  4102. #u97154 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 0px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u97154_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. visibility:hidden;
  4114. }
  4115. #u97155_img {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:111px;
  4121. height:35px;
  4122. }
  4123. #u97155 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:222px;
  4127. top:225px;
  4128. width:111px;
  4129. height:35px;
  4130. display:flex;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:12px;
  4135. color:#333333;
  4136. }
  4137. #u97155 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 0px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u97155_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. visibility:hidden;
  4149. }
  4150. #u97156_img {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:111px;
  4156. height:35px;
  4157. }
  4158. #u97156 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:333px;
  4162. top:225px;
  4163. width:111px;
  4164. height:35px;
  4165. display:flex;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:12px;
  4170. color:#333333;
  4171. }
  4172. #u97156 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 2px 2px 0px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u97156_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. visibility:hidden;
  4184. }
  4185. #u97157_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:133px;
  4191. height:35px;
  4192. }
  4193. #u97157 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:444px;
  4197. top:225px;
  4198. width:133px;
  4199. height:35px;
  4200. display:flex;
  4201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:12px;
  4205. color:#333333;
  4206. }
  4207. #u97157 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 2px 2px 0px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u97157_text {
  4215. border-width:0px;
  4216. word-wrap:break-word;
  4217. text-transform:none;
  4218. visibility:hidden;
  4219. }
  4220. #u97158_img {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:133px;
  4226. height:35px;
  4227. }
  4228. #u97158 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:577px;
  4232. top:225px;
  4233. width:133px;
  4234. height:35px;
  4235. display:flex;
  4236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4237. font-weight:400;
  4238. font-style:normal;
  4239. font-size:12px;
  4240. color:#333333;
  4241. }
  4242. #u97158 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 0px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u97158_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u97159_img {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:129px;
  4261. height:35px;
  4262. }
  4263. #u97159 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:710px;
  4267. top:225px;
  4268. width:129px;
  4269. height:35px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:12px;
  4275. color:#333333;
  4276. }
  4277. #u97159 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u97159_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. visibility:hidden;
  4289. }
  4290. #u97160_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:111px;
  4296. height:35px;
  4297. }
  4298. #u97160 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:839px;
  4302. top:225px;
  4303. width:111px;
  4304. height:35px;
  4305. display:flex;
  4306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:12px;
  4310. color:#333333;
  4311. }
  4312. #u97160 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 0px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u97160_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u97161_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:148px;
  4331. height:35px;
  4332. }
  4333. #u97161 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:950px;
  4337. top:225px;
  4338. width:148px;
  4339. height:35px;
  4340. display:flex;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:12px;
  4345. color:#333333;
  4346. }
  4347. #u97161 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 0px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u97161_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u97162_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:128px;
  4366. height:35px;
  4367. }
  4368. #u97162 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:1098px;
  4372. top:225px;
  4373. width:128px;
  4374. height:35px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:12px;
  4380. color:#333333;
  4381. }
  4382. #u97162 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 0px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u97162_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u97163_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:114px;
  4401. height:35px;
  4402. }
  4403. #u97163 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:1226px;
  4407. top:225px;
  4408. width:114px;
  4409. height:35px;
  4410. display:flex;
  4411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:12px;
  4415. color:#333333;
  4416. }
  4417. #u97163 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 2px 2px 0px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u97163_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u97164_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:111px;
  4436. height:32px;
  4437. }
  4438. #u97164 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:260px;
  4443. width:111px;
  4444. height:32px;
  4445. display:flex;
  4446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4447. font-weight:400;
  4448. font-style:normal;
  4449. font-size:12px;
  4450. color:#333333;
  4451. }
  4452. #u97164 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 0px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u97164_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u97165_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:111px;
  4471. height:32px;
  4472. }
  4473. #u97165 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:111px;
  4477. top:260px;
  4478. width:111px;
  4479. height:32px;
  4480. display:flex;
  4481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:12px;
  4485. color:#333333;
  4486. }
  4487. #u97165 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:2px 2px 2px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u97165_text {
  4495. border-width:0px;
  4496. word-wrap:break-word;
  4497. text-transform:none;
  4498. visibility:hidden;
  4499. }
  4500. #u97166_img {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:111px;
  4506. height:32px;
  4507. }
  4508. #u97166 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:222px;
  4512. top:260px;
  4513. width:111px;
  4514. height:32px;
  4515. display:flex;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:12px;
  4520. color:#333333;
  4521. }
  4522. #u97166 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 0px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u97166_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. visibility:hidden;
  4534. }
  4535. #u97167_img {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:111px;
  4541. height:32px;
  4542. }
  4543. #u97167 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:333px;
  4547. top:260px;
  4548. width:111px;
  4549. height:32px;
  4550. display:flex;
  4551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:12px;
  4555. color:#333333;
  4556. }
  4557. #u97167 .text {
  4558. position:absolute;
  4559. align-self:center;
  4560. padding:2px 2px 2px 0px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u97167_text {
  4565. border-width:0px;
  4566. word-wrap:break-word;
  4567. text-transform:none;
  4568. visibility:hidden;
  4569. }
  4570. #u97168_img {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:133px;
  4576. height:32px;
  4577. }
  4578. #u97168 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:444px;
  4582. top:260px;
  4583. width:133px;
  4584. height:32px;
  4585. display:flex;
  4586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. font-size:12px;
  4590. color:#333333;
  4591. }
  4592. #u97168 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:2px 2px 2px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u97168_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. visibility:hidden;
  4604. }
  4605. #u97169_img {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:133px;
  4611. height:32px;
  4612. }
  4613. #u97169 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:577px;
  4617. top:260px;
  4618. width:133px;
  4619. height:32px;
  4620. display:flex;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:12px;
  4625. color:#333333;
  4626. }
  4627. #u97169 .text {
  4628. position:absolute;
  4629. align-self:center;
  4630. padding:2px 2px 2px 0px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u97169_text {
  4635. border-width:0px;
  4636. word-wrap:break-word;
  4637. text-transform:none;
  4638. visibility:hidden;
  4639. }
  4640. #u97170_img {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:129px;
  4646. height:32px;
  4647. }
  4648. #u97170 {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:710px;
  4652. top:260px;
  4653. width:129px;
  4654. height:32px;
  4655. display:flex;
  4656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. font-size:12px;
  4660. color:#333333;
  4661. }
  4662. #u97170 .text {
  4663. position:absolute;
  4664. align-self:center;
  4665. padding:2px 2px 2px 0px;
  4666. box-sizing:border-box;
  4667. width:100%;
  4668. }
  4669. #u97170_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u97171_img {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:111px;
  4681. height:32px;
  4682. }
  4683. #u97171 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:839px;
  4687. top:260px;
  4688. width:111px;
  4689. height:32px;
  4690. display:flex;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:12px;
  4695. color:#333333;
  4696. }
  4697. #u97171 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u97171_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. visibility:hidden;
  4709. }
  4710. #u97172_img {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:148px;
  4716. height:32px;
  4717. }
  4718. #u97172 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:950px;
  4722. top:260px;
  4723. width:148px;
  4724. height:32px;
  4725. display:flex;
  4726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4727. font-weight:400;
  4728. font-style:normal;
  4729. font-size:12px;
  4730. color:#333333;
  4731. }
  4732. #u97172 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 0px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u97172_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u97173_img {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:128px;
  4751. height:32px;
  4752. }
  4753. #u97173 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:1098px;
  4757. top:260px;
  4758. width:128px;
  4759. height:32px;
  4760. display:flex;
  4761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:12px;
  4765. color:#333333;
  4766. }
  4767. #u97173 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 0px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u97173_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u97174_img {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:114px;
  4786. height:32px;
  4787. }
  4788. #u97174 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:1226px;
  4792. top:260px;
  4793. width:114px;
  4794. height:32px;
  4795. display:flex;
  4796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:12px;
  4800. color:#333333;
  4801. }
  4802. #u97174 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 0px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u97174_text {
  4810. border-width:0px;
  4811. word-wrap:break-word;
  4812. text-transform:none;
  4813. visibility:hidden;
  4814. }
  4815. #u97175_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:111px;
  4821. height:30px;
  4822. }
  4823. #u97175 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:292px;
  4828. width:111px;
  4829. height:30px;
  4830. display:flex;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:12px;
  4835. color:#333333;
  4836. }
  4837. #u97175 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 0px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u97175_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. visibility:hidden;
  4849. }
  4850. #u97176_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:111px;
  4856. height:30px;
  4857. }
  4858. #u97176 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:111px;
  4862. top:292px;
  4863. width:111px;
  4864. height:30px;
  4865. display:flex;
  4866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:12px;
  4870. color:#333333;
  4871. }
  4872. #u97176 .text {
  4873. position:absolute;
  4874. align-self:center;
  4875. padding:2px 2px 2px 0px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u97176_text {
  4880. border-width:0px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. visibility:hidden;
  4884. }
  4885. #u97177_img {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:111px;
  4891. height:30px;
  4892. }
  4893. #u97177 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:222px;
  4897. top:292px;
  4898. width:111px;
  4899. height:30px;
  4900. display:flex;
  4901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4902. font-weight:400;
  4903. font-style:normal;
  4904. font-size:12px;
  4905. color:#333333;
  4906. }
  4907. #u97177 .text {
  4908. position:absolute;
  4909. align-self:center;
  4910. padding:2px 2px 2px 0px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u97177_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. visibility:hidden;
  4919. }
  4920. #u97178_img {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:111px;
  4926. height:30px;
  4927. }
  4928. #u97178 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:333px;
  4932. top:292px;
  4933. width:111px;
  4934. height:30px;
  4935. display:flex;
  4936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:12px;
  4940. color:#333333;
  4941. }
  4942. #u97178 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:2px 2px 2px 0px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u97178_text {
  4950. border-width:0px;
  4951. word-wrap:break-word;
  4952. text-transform:none;
  4953. visibility:hidden;
  4954. }
  4955. #u97179_img {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:133px;
  4961. height:30px;
  4962. }
  4963. #u97179 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:444px;
  4967. top:292px;
  4968. width:133px;
  4969. height:30px;
  4970. display:flex;
  4971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:12px;
  4975. color:#333333;
  4976. }
  4977. #u97179 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u97179_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. visibility:hidden;
  4989. }
  4990. #u97180_img {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:133px;
  4996. height:30px;
  4997. }
  4998. #u97180 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:577px;
  5002. top:292px;
  5003. width:133px;
  5004. height:30px;
  5005. display:flex;
  5006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:12px;
  5010. color:#333333;
  5011. }
  5012. #u97180 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 2px 2px 0px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u97180_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. visibility:hidden;
  5024. }
  5025. #u97181_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:129px;
  5031. height:30px;
  5032. }
  5033. #u97181 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:710px;
  5037. top:292px;
  5038. width:129px;
  5039. height:30px;
  5040. display:flex;
  5041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:12px;
  5045. color:#333333;
  5046. }
  5047. #u97181 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 0px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u97181_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u97182_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:111px;
  5066. height:30px;
  5067. }
  5068. #u97182 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:839px;
  5072. top:292px;
  5073. width:111px;
  5074. height:30px;
  5075. display:flex;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:12px;
  5080. color:#333333;
  5081. }
  5082. #u97182 .text {
  5083. position:absolute;
  5084. align-self:center;
  5085. padding:2px 2px 2px 0px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u97182_text {
  5090. border-width:0px;
  5091. word-wrap:break-word;
  5092. text-transform:none;
  5093. visibility:hidden;
  5094. }
  5095. #u97183_img {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:148px;
  5101. height:30px;
  5102. }
  5103. #u97183 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:950px;
  5107. top:292px;
  5108. width:148px;
  5109. height:30px;
  5110. display:flex;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. color:#333333;
  5116. }
  5117. #u97183 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 0px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u97183_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u97184_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:128px;
  5136. height:30px;
  5137. }
  5138. #u97184 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:1098px;
  5142. top:292px;
  5143. width:128px;
  5144. height:30px;
  5145. display:flex;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:12px;
  5150. color:#333333;
  5151. }
  5152. #u97184 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 2px 2px 0px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u97184_text {
  5160. border-width:0px;
  5161. word-wrap:break-word;
  5162. text-transform:none;
  5163. visibility:hidden;
  5164. }
  5165. #u97185_img {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:114px;
  5171. height:30px;
  5172. }
  5173. #u97185 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:1226px;
  5177. top:292px;
  5178. width:114px;
  5179. height:30px;
  5180. display:flex;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:12px;
  5185. color:#333333;
  5186. }
  5187. #u97185 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:2px 2px 2px 0px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u97185_text {
  5195. border-width:0px;
  5196. word-wrap:break-word;
  5197. text-transform:none;
  5198. visibility:hidden;
  5199. }
  5200. #u97186 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:0px;
  5206. height:0px;
  5207. }
  5208. #u97187_div {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:59px;
  5214. height:30px;
  5215. background:inherit;
  5216. background-color:rgba(24, 144, 255, 1);
  5217. box-sizing:border-box;
  5218. border-width:1px;
  5219. border-style:solid;
  5220. border-color:rgba(0, 153, 255, 1);
  5221. border-radius:4px;
  5222. -moz-box-shadow:none;
  5223. -webkit-box-shadow:none;
  5224. box-shadow:none;
  5225. font-family:'Microsoft YaHei', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:14px;
  5229. color:#FFFFFF;
  5230. }
  5231. #u97187 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:801px;
  5235. top:203px;
  5236. width:59px;
  5237. height:30px;
  5238. display:flex;
  5239. font-family:'Microsoft YaHei', sans-serif;
  5240. font-weight:400;
  5241. font-style:normal;
  5242. font-size:14px;
  5243. color:#FFFFFF;
  5244. }
  5245. #u97187 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:5px 15px 5px 15px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u97187_text {
  5253. border-width:0px;
  5254. white-space:nowrap;
  5255. text-transform:none;
  5256. }
  5257. #u97188_div {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:55px;
  5263. height:30px;
  5264. background:inherit;
  5265. background-color:rgba(255, 255, 255, 1);
  5266. box-sizing:border-box;
  5267. border-width:1px;
  5268. border-style:solid;
  5269. border-color:rgba(170, 170, 170, 1);
  5270. border-radius:4px;
  5271. -moz-box-shadow:none;
  5272. -webkit-box-shadow:none;
  5273. box-shadow:none;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:12px;
  5278. color:#555555;
  5279. }
  5280. #u97188 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:870px;
  5284. top:203px;
  5285. width:55px;
  5286. height:30px;
  5287. display:flex;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:12px;
  5292. color:#555555;
  5293. }
  5294. #u97188 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:5px 15px 5px 15px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u97188_text {
  5302. border-width:0px;
  5303. white-space:nowrap;
  5304. text-transform:none;
  5305. }
  5306. #u97190 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:0px;
  5312. height:0px;
  5313. }
  5314. #u97191_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:30px;
  5320. height:30px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 1);
  5323. box-sizing:border-box;
  5324. border-width:1px;
  5325. border-style:solid;
  5326. border-color:rgba(228, 228, 228, 1);
  5327. border-radius:4px;
  5328. -moz-box-shadow:none;
  5329. -webkit-box-shadow:none;
  5330. box-shadow:none;
  5331. font-family:'Microsoft YaHei', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:14px;
  5335. }
  5336. #u97191 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:1126px;
  5340. top:622px;
  5341. width:30px;
  5342. height:30px;
  5343. display:flex;
  5344. font-family:'Microsoft YaHei', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:14px;
  5348. }
  5349. #u97191 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u97191_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. }
  5361. #u97192_div {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:49px;
  5367. height:30px;
  5368. background:inherit;
  5369. background-color:rgba(255, 255, 255, 0);
  5370. box-sizing:border-box;
  5371. border-width:1px;
  5372. border-style:solid;
  5373. border-color:rgba(188, 188, 188, 1);
  5374. border-radius:4px;
  5375. -moz-box-shadow:none;
  5376. -webkit-box-shadow:none;
  5377. box-shadow:none;
  5378. font-family:'Microsoft YaHei', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:14px;
  5382. color:#1E1E1E;
  5383. }
  5384. #u97192 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:1642px;
  5388. top:622px;
  5389. width:49px;
  5390. height:30px;
  5391. display:flex;
  5392. font-family:'Microsoft YaHei', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:14px;
  5396. color:#1E1E1E;
  5397. }
  5398. #u97192 .text {
  5399. position:absolute;
  5400. align-self:center;
  5401. padding:5px 10px 5px 10px;
  5402. box-sizing:border-box;
  5403. width:100%;
  5404. }
  5405. #u97192_text {
  5406. border-width:0px;
  5407. white-space:nowrap;
  5408. text-transform:none;
  5409. }
  5410. #u97193 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:0px;
  5416. height:0px;
  5417. }
  5418. #u97194_div {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:33px;
  5424. height:24px;
  5425. background:inherit;
  5426. background-color:rgba(255, 255, 255, 1);
  5427. border:none;
  5428. border-radius:0px;
  5429. -moz-box-shadow:none;
  5430. -webkit-box-shadow:none;
  5431. box-shadow:none;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:14px;
  5436. color:#BCBCBC;
  5437. text-align:left;
  5438. }
  5439. #u97194 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:1410px;
  5443. top:625px;
  5444. width:33px;
  5445. height:24px;
  5446. display:flex;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:14px;
  5451. color:#BCBCBC;
  5452. text-align:left;
  5453. }
  5454. #u97194 .text {
  5455. position:absolute;
  5456. align-self:center;
  5457. padding:2px 2px 2px 2px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u97194_text {
  5462. border-width:0px;
  5463. white-space:nowrap;
  5464. text-transform:none;
  5465. }
  5466. #u97195_div {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:40px;
  5472. height:30px;
  5473. background:inherit;
  5474. background-color:rgba(255, 255, 255, 1);
  5475. box-sizing:border-box;
  5476. border-width:1px;
  5477. border-style:solid;
  5478. border-color:rgba(228, 228, 228, 1);
  5479. border-radius:4px;
  5480. -moz-box-shadow:none;
  5481. -webkit-box-shadow:none;
  5482. box-shadow:none;
  5483. font-family:'Microsoft YaHei', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:14px;
  5487. }
  5488. #u97195 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:1445px;
  5492. top:622px;
  5493. width:40px;
  5494. height:30px;
  5495. display:flex;
  5496. font-family:'Microsoft YaHei', sans-serif;
  5497. font-weight:400;
  5498. font-style:normal;
  5499. font-size:14px;
  5500. }
  5501. #u97195 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 2px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u97195_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u97196_div {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:19px;
  5520. height:24px;
  5521. background:inherit;
  5522. background-color:rgba(255, 255, 255, 1);
  5523. border:none;
  5524. border-radius:0px;
  5525. -moz-box-shadow:none;
  5526. -webkit-box-shadow:none;
  5527. box-shadow:none;
  5528. font-family:'Microsoft YaHei', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:14px;
  5532. color:#BCBCBC;
  5533. text-align:left;
  5534. }
  5535. #u97196 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:1487px;
  5539. top:626px;
  5540. width:19px;
  5541. height:24px;
  5542. display:flex;
  5543. font-family:'Microsoft YaHei', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:14px;
  5547. color:#BCBCBC;
  5548. text-align:left;
  5549. }
  5550. #u97196 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 2px 2px 2px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u97196_text {
  5558. border-width:0px;
  5559. white-space:nowrap;
  5560. text-transform:none;
  5561. }
  5562. #u97197_input {
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:34px;
  5567. height:25px;
  5568. padding:2px 2px 2px 2px;
  5569. font-family:'Microsoft YaHei', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:13px;
  5573. letter-spacing:normal;
  5574. color:#000000;
  5575. vertical-align:none;
  5576. text-align:left;
  5577. text-transform:none;
  5578. background-color:transparent;
  5579. border-color:transparent;
  5580. }
  5581. #u97197_input.disabled {
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:34px;
  5586. height:25px;
  5587. padding:2px 2px 2px 2px;
  5588. font-family:'Microsoft YaHei', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:13px;
  5592. letter-spacing:normal;
  5593. color:#000000;
  5594. vertical-align:none;
  5595. text-align:left;
  5596. text-transform:none;
  5597. background-color:transparent;
  5598. border-color:transparent;
  5599. }
  5600. #u97197_div {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:34px;
  5606. height:25px;
  5607. background:inherit;
  5608. background-color:rgba(255, 255, 255, 1);
  5609. border:none;
  5610. border-radius:0px;
  5611. -moz-box-shadow:none;
  5612. -webkit-box-shadow:none;
  5613. box-shadow:none;
  5614. font-family:'Microsoft YaHei', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. }
  5618. #u97197 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:1448px;
  5622. top:624px;
  5623. width:34px;
  5624. height:25px;
  5625. display:flex;
  5626. font-family:'Microsoft YaHei', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. }
  5630. #u97197 .text {
  5631. position:absolute;
  5632. align-self:center;
  5633. padding:2px 2px 2px 2px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u97197_div.disabled {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:34px;
  5643. height:25px;
  5644. background:inherit;
  5645. background-color:rgba(240, 240, 240, 1);
  5646. border:none;
  5647. border-radius:0px;
  5648. -moz-box-shadow:none;
  5649. -webkit-box-shadow:none;
  5650. box-shadow:none;
  5651. font-family:'Microsoft YaHei', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. }
  5655. #u97197.disabled {
  5656. }
  5657. #u97198_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:30px;
  5663. height:30px;
  5664. background:inherit;
  5665. background-color:rgba(41, 143, 255, 1);
  5666. border:none;
  5667. border-radius:4px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. font-family:'Microsoft YaHei', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:14px;
  5675. color:#FFFFFF;
  5676. }
  5677. #u97198 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:1160px;
  5681. top:622px;
  5682. width:30px;
  5683. height:30px;
  5684. display:flex;
  5685. font-family:'Microsoft YaHei', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. color:#FFFFFF;
  5690. }
  5691. #u97198 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:2px 2px 2px 2px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u97198_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. }
  5703. #u97199_div {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:30px;
  5709. height:30px;
  5710. background:inherit;
  5711. background-color:rgba(255, 255, 255, 1);
  5712. box-sizing:border-box;
  5713. border-width:1px;
  5714. border-style:solid;
  5715. border-color:rgba(228, 228, 228, 1);
  5716. border-radius:4px;
  5717. -moz-box-shadow:none;
  5718. -webkit-box-shadow:none;
  5719. box-shadow:none;
  5720. font-family:'Microsoft YaHei', sans-serif;
  5721. font-weight:400;
  5722. font-style:normal;
  5723. font-size:14px;
  5724. }
  5725. #u97199 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:1194px;
  5729. top:622px;
  5730. width:30px;
  5731. height:30px;
  5732. display:flex;
  5733. font-family:'Microsoft YaHei', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:14px;
  5737. }
  5738. #u97199 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 2px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u97199_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. }
  5750. #u97200_div {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:30px;
  5756. height:30px;
  5757. background:inherit;
  5758. background-color:rgba(255, 255, 255, 1);
  5759. box-sizing:border-box;
  5760. border-width:1px;
  5761. border-style:solid;
  5762. border-color:rgba(228, 228, 228, 1);
  5763. border-radius:4px;
  5764. -moz-box-shadow:none;
  5765. -webkit-box-shadow:none;
  5766. box-shadow:none;
  5767. font-family:'Microsoft YaHei', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:14px;
  5771. }
  5772. #u97200 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:1228px;
  5776. top:622px;
  5777. width:30px;
  5778. height:30px;
  5779. display:flex;
  5780. font-family:'Microsoft YaHei', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. }
  5785. #u97200 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:2px 2px 2px 2px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u97200_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. }
  5797. #u97201_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:30px;
  5803. height:30px;
  5804. background:inherit;
  5805. background-color:rgba(255, 255, 255, 1);
  5806. border:none;
  5807. border-radius:4px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'Microsoft YaHei', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:14px;
  5815. }
  5816. #u97201 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1258px;
  5820. top:622px;
  5821. width:30px;
  5822. height:30px;
  5823. display:flex;
  5824. font-family:'Microsoft YaHei', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:14px;
  5828. }
  5829. #u97201 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 2px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u97201_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. }
  5841. #u97202_div {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:30px;
  5847. height:30px;
  5848. background:inherit;
  5849. background-color:rgba(255, 255, 255, 1);
  5850. box-sizing:border-box;
  5851. border-width:1px;
  5852. border-style:solid;
  5853. border-color:rgba(228, 228, 228, 1);
  5854. border-radius:4px;
  5855. -moz-box-shadow:none;
  5856. -webkit-box-shadow:none;
  5857. box-shadow:none;
  5858. font-family:'Microsoft YaHei', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:14px;
  5862. }
  5863. #u97202 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:1292px;
  5867. top:622px;
  5868. width:30px;
  5869. height:30px;
  5870. display:flex;
  5871. font-family:'Microsoft YaHei', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:14px;
  5875. }
  5876. #u97202 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:2px 2px 2px 2px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u97202_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. }
  5888. #u97203_div {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:32px;
  5894. height:21px;
  5895. background:inherit;
  5896. background-color:rgba(255, 255, 255, 1);
  5897. border:none;
  5898. border-radius:15px;
  5899. -moz-box-shadow:none;
  5900. -webkit-box-shadow:none;
  5901. box-shadow:none;
  5902. font-family:'Microsoft YaHei', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:14px;
  5906. color:#1E1E1E;
  5907. }
  5908. #u97203 {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:1366px;
  5912. top:627px;
  5913. width:32px;
  5914. height:21px;
  5915. display:flex;
  5916. font-family:'Microsoft YaHei', sans-serif;
  5917. font-weight:400;
  5918. font-style:normal;
  5919. font-size:14px;
  5920. color:#1E1E1E;
  5921. }
  5922. #u97203 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u97203_text {
  5930. border-width:0px;
  5931. white-space:nowrap;
  5932. text-transform:none;
  5933. }
  5934. #u97204 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:0px;
  5940. height:0px;
  5941. }
  5942. #u97205_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:31px;
  5948. height:30px;
  5949. background:inherit;
  5950. background-color:rgba(255, 255, 255, 1);
  5951. box-sizing:border-box;
  5952. border-width:1px;
  5953. border-style:solid;
  5954. border-color:rgba(228, 228, 228, 1);
  5955. border-radius:4px;
  5956. -moz-box-shadow:none;
  5957. -webkit-box-shadow:none;
  5958. box-shadow:none;
  5959. font-family:'Microsoft YaHei', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:12px;
  5963. }
  5964. #u97205 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:1091px;
  5968. top:622px;
  5969. width:31px;
  5970. height:30px;
  5971. display:flex;
  5972. font-family:'Microsoft YaHei', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:12px;
  5976. }
  5977. #u97205 .text {
  5978. position:absolute;
  5979. align-self:center;
  5980. padding:2px 2px 2px 2px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u97205_text {
  5985. border-width:0px;
  5986. word-wrap:break-word;
  5987. text-transform:none;
  5988. visibility:hidden;
  5989. }
  5990. #u97206_img {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:8px;
  5996. height:14px;
  5997. }
  5998. #u97206 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1103px;
  6002. top:630px;
  6003. width:8px;
  6004. height:14px;
  6005. display:flex;
  6006. font-family:'Microsoft YaHei', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:12px;
  6010. }
  6011. #u97206 .text {
  6012. position:absolute;
  6013. align-self:center;
  6014. padding:2px 2px 2px 2px;
  6015. box-sizing:border-box;
  6016. width:100%;
  6017. }
  6018. #u97206_text {
  6019. border-width:0px;
  6020. word-wrap:break-word;
  6021. text-transform:none;
  6022. visibility:hidden;
  6023. }
  6024. #u97207 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:0px;
  6030. height:0px;
  6031. }
  6032. #u97208_div {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:31px;
  6038. height:30px;
  6039. background:inherit;
  6040. background-color:rgba(255, 255, 255, 1);
  6041. box-sizing:border-box;
  6042. border-width:1px;
  6043. border-style:solid;
  6044. border-color:rgba(228, 228, 228, 1);
  6045. border-radius:4px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'Microsoft YaHei', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:12px;
  6053. }
  6054. #u97208 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:1325px;
  6058. top:622px;
  6059. width:31px;
  6060. height:30px;
  6061. display:flex;
  6062. font-family:'Microsoft YaHei', sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:12px;
  6066. }
  6067. #u97208 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:2px 2px 2px 2px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u97208_text {
  6075. border-width:0px;
  6076. word-wrap:break-word;
  6077. text-transform:none;
  6078. visibility:hidden;
  6079. }
  6080. #u97209_img {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:8px;
  6086. height:14px;
  6087. }
  6088. #u97209 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:1338px;
  6092. top:630px;
  6093. width:8px;
  6094. height:14px;
  6095. display:flex;
  6096. font-family:'Microsoft YaHei', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:12px;
  6100. }
  6101. #u97209 .text {
  6102. position:absolute;
  6103. align-self:center;
  6104. padding:2px 2px 2px 2px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u97209_text {
  6109. border-width:0px;
  6110. word-wrap:break-word;
  6111. text-transform:none;
  6112. visibility:hidden;
  6113. }
  6114. #u97210 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:0px;
  6120. height:0px;
  6121. }
  6122. #u97211_div {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:33px;
  6128. height:24px;
  6129. background:inherit;
  6130. background-color:rgba(255, 255, 255, 1);
  6131. border:none;
  6132. border-radius:0px;
  6133. -moz-box-shadow:none;
  6134. -webkit-box-shadow:none;
  6135. box-shadow:none;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:14px;
  6140. color:#BCBCBC;
  6141. text-align:left;
  6142. }
  6143. #u97211 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:1526px;
  6147. top:625px;
  6148. width:33px;
  6149. height:24px;
  6150. display:flex;
  6151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:14px;
  6155. color:#BCBCBC;
  6156. text-align:left;
  6157. }
  6158. #u97211 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 2px 2px 2px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u97211_text {
  6166. border-width:0px;
  6167. white-space:nowrap;
  6168. text-transform:none;
  6169. }
  6170. #u97212_div {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:40px;
  6176. height:30px;
  6177. background:inherit;
  6178. background-color:rgba(255, 255, 255, 1);
  6179. box-sizing:border-box;
  6180. border-width:1px;
  6181. border-style:solid;
  6182. border-color:rgba(228, 228, 228, 1);
  6183. border-radius:4px;
  6184. -moz-box-shadow:none;
  6185. -webkit-box-shadow:none;
  6186. box-shadow:none;
  6187. font-family:'Microsoft YaHei', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:14px;
  6191. }
  6192. #u97212 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:1561px;
  6196. top:622px;
  6197. width:40px;
  6198. height:30px;
  6199. display:flex;
  6200. font-family:'Microsoft YaHei', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:14px;
  6204. }
  6205. #u97212 .text {
  6206. position:absolute;
  6207. align-self:center;
  6208. padding:2px 2px 2px 2px;
  6209. box-sizing:border-box;
  6210. width:100%;
  6211. }
  6212. #u97212_text {
  6213. border-width:0px;
  6214. word-wrap:break-word;
  6215. text-transform:none;
  6216. visibility:hidden;
  6217. }
  6218. #u97213_div {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:19px;
  6224. height:24px;
  6225. background:inherit;
  6226. background-color:rgba(255, 255, 255, 1);
  6227. border:none;
  6228. border-radius:0px;
  6229. -moz-box-shadow:none;
  6230. -webkit-box-shadow:none;
  6231. box-shadow:none;
  6232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6233. font-weight:400;
  6234. font-style:normal;
  6235. font-size:14px;
  6236. color:#BCBCBC;
  6237. text-align:left;
  6238. }
  6239. #u97213 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:1603px;
  6243. top:626px;
  6244. width:19px;
  6245. height:24px;
  6246. display:flex;
  6247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:14px;
  6251. color:#BCBCBC;
  6252. text-align:left;
  6253. }
  6254. #u97213 .text {
  6255. position:absolute;
  6256. align-self:center;
  6257. padding:2px 2px 2px 2px;
  6258. box-sizing:border-box;
  6259. width:100%;
  6260. }
  6261. #u97213_text {
  6262. border-width:0px;
  6263. white-space:nowrap;
  6264. text-transform:none;
  6265. }
  6266. #u97214_input {
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:34px;
  6271. height:25px;
  6272. padding:2px 2px 2px 2px;
  6273. font-family:'Microsoft YaHei', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:13px;
  6277. letter-spacing:normal;
  6278. color:#000000;
  6279. vertical-align:none;
  6280. text-align:left;
  6281. text-transform:none;
  6282. background-color:transparent;
  6283. border-color:transparent;
  6284. }
  6285. #u97214_input.disabled {
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:34px;
  6290. height:25px;
  6291. padding:2px 2px 2px 2px;
  6292. font-family:'Microsoft YaHei', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:13px;
  6296. letter-spacing:normal;
  6297. color:#000000;
  6298. vertical-align:none;
  6299. text-align:left;
  6300. text-transform:none;
  6301. background-color:transparent;
  6302. border-color:transparent;
  6303. }
  6304. #u97214_div {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:34px;
  6310. height:25px;
  6311. background:inherit;
  6312. background-color:rgba(255, 255, 255, 1);
  6313. border:none;
  6314. border-radius:0px;
  6315. -moz-box-shadow:none;
  6316. -webkit-box-shadow:none;
  6317. box-shadow:none;
  6318. font-family:'Microsoft YaHei', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. }
  6322. #u97214 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:1564px;
  6326. top:624px;
  6327. width:34px;
  6328. height:25px;
  6329. display:flex;
  6330. font-family:'Microsoft YaHei', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. }
  6334. #u97214 .text {
  6335. position:absolute;
  6336. align-self:center;
  6337. padding:2px 2px 2px 2px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u97214_div.disabled {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:34px;
  6347. height:25px;
  6348. background:inherit;
  6349. background-color:rgba(240, 240, 240, 1);
  6350. border:none;
  6351. border-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'Microsoft YaHei', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. }
  6359. #u97214.disabled {
  6360. }
  6361. #u97215 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:0px;
  6367. height:0px;
  6368. }
  6369. #u97216_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:140px;
  6375. height:28px;
  6376. background:inherit;
  6377. background-color:rgba(255, 255, 255, 1);
  6378. box-sizing:border-box;
  6379. border-width:1px;
  6380. border-style:solid;
  6381. border-color:rgba(201, 201, 201, 1);
  6382. border-radius:4px;
  6383. -moz-box-shadow:none;
  6384. -webkit-box-shadow:none;
  6385. box-shadow:none;
  6386. font-family:'Microsoft YaHei', sans-serif;
  6387. font-weight:400;
  6388. font-style:normal;
  6389. font-size:14px;
  6390. color:#CCCCCC;
  6391. text-align:left;
  6392. }
  6393. #u97216 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:651px;
  6397. top:121px;
  6398. width:140px;
  6399. height:28px;
  6400. display:flex;
  6401. font-family:'Microsoft YaHei', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:14px;
  6405. color:#CCCCCC;
  6406. text-align:left;
  6407. }
  6408. #u97216 .text {
  6409. position:absolute;
  6410. align-self:center;
  6411. padding:2px 8px 2px 8px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u97216_text {
  6416. border-width:0px;
  6417. word-wrap:break-word;
  6418. text-transform:none;
  6419. visibility:hidden;
  6420. }
  6421. #u97217_input {
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:114px;
  6426. height:26px;
  6427. padding:2px 2px 2px 2px;
  6428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:14px;
  6432. letter-spacing:normal;
  6433. color:#000000;
  6434. vertical-align:none;
  6435. text-align:left;
  6436. text-transform:none;
  6437. background-color:transparent;
  6438. border-color:transparent;
  6439. }
  6440. #u97217_input.disabled {
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:114px;
  6445. height:26px;
  6446. padding:2px 2px 2px 2px;
  6447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:14px;
  6451. letter-spacing:normal;
  6452. color:#000000;
  6453. vertical-align:none;
  6454. text-align:left;
  6455. text-transform:none;
  6456. background-color:transparent;
  6457. border-color:transparent;
  6458. }
  6459. #u97217_div {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:0px;
  6463. top:0px;
  6464. width:114px;
  6465. height:26px;
  6466. background:inherit;
  6467. background-color:rgba(255, 255, 255, 1);
  6468. border:none;
  6469. border-radius:0px;
  6470. -moz-box-shadow:none;
  6471. -webkit-box-shadow:none;
  6472. box-shadow:none;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:14px;
  6477. }
  6478. #u97217 {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:657px;
  6482. top:122px;
  6483. width:114px;
  6484. height:26px;
  6485. display:flex;
  6486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6487. font-weight:400;
  6488. font-style:normal;
  6489. font-size:14px;
  6490. }
  6491. #u97217 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 2px 2px 2px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u97217_div.disabled {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:0px;
  6502. top:0px;
  6503. width:114px;
  6504. height:26px;
  6505. background:inherit;
  6506. background-color:rgba(240, 240, 240, 1);
  6507. border:none;
  6508. border-radius:0px;
  6509. -moz-box-shadow:none;
  6510. -webkit-box-shadow:none;
  6511. box-shadow:none;
  6512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6513. font-weight:400;
  6514. font-style:normal;
  6515. font-size:14px;
  6516. }
  6517. #u97217.disabled {
  6518. }
  6519. #u97218_img {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:0px;
  6523. top:0px;
  6524. width:13px;
  6525. height:15px;
  6526. }
  6527. #u97218 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:771px;
  6531. top:128px;
  6532. width:13px;
  6533. height:15px;
  6534. display:flex;
  6535. }
  6536. #u97218 .text {
  6537. position:absolute;
  6538. align-self:center;
  6539. padding:2px 2px 2px 2px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u97218_text {
  6544. border-width:0px;
  6545. word-wrap:break-word;
  6546. text-transform:none;
  6547. visibility:hidden;
  6548. }
  6549. #u97219_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:60px;
  6555. height:30px;
  6556. background:inherit;
  6557. background-color:rgba(24, 144, 255, 1);
  6558. box-sizing:border-box;
  6559. border-width:1px;
  6560. border-style:solid;
  6561. border-color:rgba(0, 153, 255, 1);
  6562. border-radius:4px;
  6563. -moz-box-shadow:none;
  6564. -webkit-box-shadow:none;
  6565. box-shadow:none;
  6566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:14px;
  6570. color:#FFFFFF;
  6571. }
  6572. #u97219 {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:351px;
  6576. top:251px;
  6577. width:60px;
  6578. height:30px;
  6579. display:flex;
  6580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. font-size:14px;
  6584. color:#FFFFFF;
  6585. }
  6586. #u97219 .text {
  6587. position:absolute;
  6588. align-self:center;
  6589. padding:5px 15px 5px 15px;
  6590. box-sizing:border-box;
  6591. width:100%;
  6592. }
  6593. #u97219_text {
  6594. border-width:0px;
  6595. word-wrap:break-word;
  6596. text-transform:none;
  6597. }
  6598. #u97220 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:0px;
  6604. height:0px;
  6605. }
  6606. #u97221_div {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:140px;
  6612. height:30px;
  6613. background:inherit;
  6614. background-color:rgba(255, 255, 255, 1);
  6615. box-sizing:border-box;
  6616. border-width:1px;
  6617. border-style:solid;
  6618. border-color:rgba(201, 201, 201, 1);
  6619. border-radius:4px;
  6620. -moz-box-shadow:none;
  6621. -webkit-box-shadow:none;
  6622. box-shadow:none;
  6623. font-family:'Microsoft YaHei', sans-serif;
  6624. font-weight:400;
  6625. font-style:normal;
  6626. font-size:14px;
  6627. color:#CCCCCC;
  6628. text-align:left;
  6629. }
  6630. #u97221 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:501px;
  6634. top:120px;
  6635. width:140px;
  6636. height:30px;
  6637. display:flex;
  6638. font-family:'Microsoft YaHei', sans-serif;
  6639. font-weight:400;
  6640. font-style:normal;
  6641. font-size:14px;
  6642. color:#CCCCCC;
  6643. text-align:left;
  6644. }
  6645. #u97221 .text {
  6646. position:absolute;
  6647. align-self:center;
  6648. padding:2px 8px 2px 8px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u97221_text {
  6653. border-width:0px;
  6654. word-wrap:break-word;
  6655. text-transform:none;
  6656. visibility:hidden;
  6657. }
  6658. #u97222_input {
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:127px;
  6663. height:25px;
  6664. padding:2px 2px 2px 2px;
  6665. font-family:'Microsoft YaHei', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:10px;
  6669. letter-spacing:normal;
  6670. color:#000000;
  6671. vertical-align:none;
  6672. text-align:left;
  6673. text-transform:none;
  6674. background-color:transparent;
  6675. border-color:transparent;
  6676. }
  6677. #u97222_input.disabled {
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:127px;
  6682. height:25px;
  6683. padding:2px 2px 2px 2px;
  6684. font-family:'Microsoft YaHei', sans-serif;
  6685. font-weight:400;
  6686. font-style:normal;
  6687. font-size:10px;
  6688. letter-spacing:normal;
  6689. color:#000000;
  6690. vertical-align:none;
  6691. text-align:left;
  6692. text-transform:none;
  6693. background-color:transparent;
  6694. border-color:transparent;
  6695. }
  6696. #u97222_div {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:0px;
  6700. top:0px;
  6701. width:127px;
  6702. height:25px;
  6703. background:inherit;
  6704. background-color:rgba(255, 255, 255, 1);
  6705. border:none;
  6706. border-radius:0px;
  6707. -moz-box-shadow:none;
  6708. -webkit-box-shadow:none;
  6709. box-shadow:none;
  6710. font-family:'Microsoft YaHei', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:10px;
  6714. }
  6715. #u97222 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:509px;
  6719. top:121px;
  6720. width:127px;
  6721. height:25px;
  6722. display:flex;
  6723. font-family:'Microsoft YaHei', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:10px;
  6727. }
  6728. #u97222 .text {
  6729. position:absolute;
  6730. align-self:center;
  6731. padding:2px 2px 2px 2px;
  6732. box-sizing:border-box;
  6733. width:100%;
  6734. }
  6735. #u97222_div.disabled {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:127px;
  6741. height:25px;
  6742. background:inherit;
  6743. background-color:rgba(240, 240, 240, 1);
  6744. border:none;
  6745. border-radius:0px;
  6746. -moz-box-shadow:none;
  6747. -webkit-box-shadow:none;
  6748. box-shadow:none;
  6749. font-family:'Microsoft YaHei', sans-serif;
  6750. font-weight:400;
  6751. font-style:normal;
  6752. font-size:10px;
  6753. }
  6754. #u97222.disabled {
  6755. }
  6756. #u97223 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:0px;
  6762. height:0px;
  6763. }
  6764. #u97224_div {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:140px;
  6770. height:30px;
  6771. background:inherit;
  6772. background-color:rgba(255, 255, 255, 1);
  6773. box-sizing:border-box;
  6774. border-width:1px;
  6775. border-style:solid;
  6776. border-color:rgba(215, 215, 215, 1);
  6777. border-radius:4px;
  6778. -moz-box-shadow:none;
  6779. -webkit-box-shadow:none;
  6780. box-shadow:none;
  6781. font-size:11px;
  6782. }
  6783. #u97224 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:351px;
  6787. top:121px;
  6788. width:140px;
  6789. height:30px;
  6790. display:flex;
  6791. font-size:11px;
  6792. }
  6793. #u97224 .text {
  6794. position:absolute;
  6795. align-self:center;
  6796. padding:2px 2px 2px 2px;
  6797. box-sizing:border-box;
  6798. width:100%;
  6799. }
  6800. #u97224_text {
  6801. border-width:0px;
  6802. word-wrap:break-word;
  6803. text-transform:none;
  6804. visibility:hidden;
  6805. }
  6806. #u97225_input {
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:126px;
  6811. height:23px;
  6812. padding:2px 2px 2px 2px;
  6813. font-family:'ArialMT', 'Arial', sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:11px;
  6817. letter-spacing:normal;
  6818. color:#AAAAAA;
  6819. vertical-align:none;
  6820. text-align:left;
  6821. text-transform:none;
  6822. background-color:transparent;
  6823. border-color:transparent;
  6824. }
  6825. #u97225_input.disabled {
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:126px;
  6830. height:23px;
  6831. padding:2px 2px 2px 2px;
  6832. font-family:'ArialMT', 'Arial', sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:11px;
  6836. letter-spacing:normal;
  6837. color:#AAAAAA;
  6838. vertical-align:none;
  6839. text-align:left;
  6840. text-transform:none;
  6841. background-color:transparent;
  6842. border-color:transparent;
  6843. }
  6844. #u97225_div {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:126px;
  6850. height:23px;
  6851. background:inherit;
  6852. background-color:rgba(255, 255, 255, 1);
  6853. border:none;
  6854. border-radius:0px;
  6855. -moz-box-shadow:none;
  6856. -webkit-box-shadow:none;
  6857. box-shadow:none;
  6858. font-size:11px;
  6859. color:#AAAAAA;
  6860. }
  6861. #u97225 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:358px;
  6865. top:123px;
  6866. width:126px;
  6867. height:23px;
  6868. display:flex;
  6869. font-size:11px;
  6870. color:#AAAAAA;
  6871. }
  6872. #u97225 .text {
  6873. position:absolute;
  6874. align-self:flex-start;
  6875. padding:2px 2px 2px 2px;
  6876. box-sizing:border-box;
  6877. width:100%;
  6878. }
  6879. #u97225_div.disabled {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:126px;
  6885. height:23px;
  6886. background:inherit;
  6887. background-color:rgba(240, 240, 240, 1);
  6888. border:none;
  6889. border-radius:0px;
  6890. -moz-box-shadow:none;
  6891. -webkit-box-shadow:none;
  6892. box-shadow:none;
  6893. font-size:11px;
  6894. color:#AAAAAA;
  6895. }
  6896. #u97225.disabled {
  6897. }
  6898. .u97225_input_option {
  6899. font-size:11px;
  6900. }
  6901. #u97226 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:0px;
  6907. height:0px;
  6908. }
  6909. #u97227_div {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:140px;
  6915. height:30px;
  6916. background:inherit;
  6917. background-color:rgba(255, 255, 255, 1);
  6918. box-sizing:border-box;
  6919. border-width:1px;
  6920. border-style:solid;
  6921. border-color:rgba(201, 201, 201, 1);
  6922. border-radius:4px;
  6923. -moz-box-shadow:none;
  6924. -webkit-box-shadow:none;
  6925. box-shadow:none;
  6926. font-family:'Microsoft YaHei', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:14px;
  6930. color:#CCCCCC;
  6931. text-align:left;
  6932. }
  6933. #u97227 {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:801px;
  6937. top:120px;
  6938. width:140px;
  6939. height:30px;
  6940. display:flex;
  6941. font-family:'Microsoft YaHei', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:14px;
  6945. color:#CCCCCC;
  6946. text-align:left;
  6947. }
  6948. #u97227 .text {
  6949. position:absolute;
  6950. align-self:center;
  6951. padding:2px 8px 2px 8px;
  6952. box-sizing:border-box;
  6953. width:100%;
  6954. }
  6955. #u97227_text {
  6956. border-width:0px;
  6957. word-wrap:break-word;
  6958. text-transform:none;
  6959. visibility:hidden;
  6960. }
  6961. #u97228_input {
  6962. position:absolute;
  6963. left:0px;
  6964. top:0px;
  6965. width:127px;
  6966. height:25px;
  6967. padding:2px 2px 2px 2px;
  6968. font-family:'Microsoft YaHei', sans-serif;
  6969. font-weight:400;
  6970. font-style:normal;
  6971. font-size:10px;
  6972. letter-spacing:normal;
  6973. color:#000000;
  6974. vertical-align:none;
  6975. text-align:left;
  6976. text-transform:none;
  6977. background-color:transparent;
  6978. border-color:transparent;
  6979. }
  6980. #u97228_input.disabled {
  6981. position:absolute;
  6982. left:0px;
  6983. top:0px;
  6984. width:127px;
  6985. height:25px;
  6986. padding:2px 2px 2px 2px;
  6987. font-family:'Microsoft YaHei', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:10px;
  6991. letter-spacing:normal;
  6992. color:#000000;
  6993. vertical-align:none;
  6994. text-align:left;
  6995. text-transform:none;
  6996. background-color:transparent;
  6997. border-color:transparent;
  6998. }
  6999. #u97228_div {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:127px;
  7005. height:25px;
  7006. background:inherit;
  7007. background-color:rgba(255, 255, 255, 1);
  7008. border:none;
  7009. border-radius:0px;
  7010. -moz-box-shadow:none;
  7011. -webkit-box-shadow:none;
  7012. box-shadow:none;
  7013. font-family:'Microsoft YaHei', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:10px;
  7017. }
  7018. #u97228 {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:809px;
  7022. top:121px;
  7023. width:127px;
  7024. height:25px;
  7025. display:flex;
  7026. font-family:'Microsoft YaHei', sans-serif;
  7027. font-weight:400;
  7028. font-style:normal;
  7029. font-size:10px;
  7030. }
  7031. #u97228 .text {
  7032. position:absolute;
  7033. align-self:center;
  7034. padding:2px 2px 2px 2px;
  7035. box-sizing:border-box;
  7036. width:100%;
  7037. }
  7038. #u97228_div.disabled {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:127px;
  7044. height:25px;
  7045. background:inherit;
  7046. background-color:rgba(240, 240, 240, 1);
  7047. border:none;
  7048. border-radius:0px;
  7049. -moz-box-shadow:none;
  7050. -webkit-box-shadow:none;
  7051. box-shadow:none;
  7052. font-family:'Microsoft YaHei', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:10px;
  7056. }
  7057. #u97228.disabled {
  7058. }
  7059. #u97229 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:0px;
  7064. width:0px;
  7065. height:0px;
  7066. }
  7067. #u97230_div {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:140px;
  7073. height:30px;
  7074. background:inherit;
  7075. background-color:rgba(255, 255, 255, 1);
  7076. box-sizing:border-box;
  7077. border-width:1px;
  7078. border-style:solid;
  7079. border-color:rgba(201, 201, 201, 1);
  7080. border-radius:4px;
  7081. -moz-box-shadow:none;
  7082. -webkit-box-shadow:none;
  7083. box-shadow:none;
  7084. font-family:'Microsoft YaHei', sans-serif;
  7085. font-weight:400;
  7086. font-style:normal;
  7087. font-size:14px;
  7088. color:#CCCCCC;
  7089. text-align:left;
  7090. }
  7091. #u97230 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:351px;
  7095. top:163px;
  7096. width:140px;
  7097. height:30px;
  7098. display:flex;
  7099. font-family:'Microsoft YaHei', sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. font-size:14px;
  7103. color:#CCCCCC;
  7104. text-align:left;
  7105. }
  7106. #u97230 .text {
  7107. position:absolute;
  7108. align-self:center;
  7109. padding:2px 8px 2px 8px;
  7110. box-sizing:border-box;
  7111. width:100%;
  7112. }
  7113. #u97230_text {
  7114. border-width:0px;
  7115. word-wrap:break-word;
  7116. text-transform:none;
  7117. visibility:hidden;
  7118. }
  7119. #u97231_input {
  7120. position:absolute;
  7121. left:0px;
  7122. top:0px;
  7123. width:127px;
  7124. height:25px;
  7125. padding:2px 2px 2px 2px;
  7126. font-family:'Microsoft YaHei', sans-serif;
  7127. font-weight:400;
  7128. font-style:normal;
  7129. font-size:10px;
  7130. letter-spacing:normal;
  7131. color:#000000;
  7132. vertical-align:none;
  7133. text-align:left;
  7134. text-transform:none;
  7135. background-color:transparent;
  7136. border-color:transparent;
  7137. }
  7138. #u97231_input.disabled {
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:127px;
  7143. height:25px;
  7144. padding:2px 2px 2px 2px;
  7145. font-family:'Microsoft YaHei', sans-serif;
  7146. font-weight:400;
  7147. font-style:normal;
  7148. font-size:10px;
  7149. letter-spacing:normal;
  7150. color:#000000;
  7151. vertical-align:none;
  7152. text-align:left;
  7153. text-transform:none;
  7154. background-color:transparent;
  7155. border-color:transparent;
  7156. }
  7157. #u97231_div {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:0px;
  7161. top:0px;
  7162. width:127px;
  7163. height:25px;
  7164. background:inherit;
  7165. background-color:rgba(255, 255, 255, 1);
  7166. border:none;
  7167. border-radius:0px;
  7168. -moz-box-shadow:none;
  7169. -webkit-box-shadow:none;
  7170. box-shadow:none;
  7171. font-family:'Microsoft YaHei', sans-serif;
  7172. font-weight:400;
  7173. font-style:normal;
  7174. font-size:10px;
  7175. }
  7176. #u97231 {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:359px;
  7180. top:164px;
  7181. width:127px;
  7182. height:25px;
  7183. display:flex;
  7184. font-family:'Microsoft YaHei', sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. font-size:10px;
  7188. }
  7189. #u97231 .text {
  7190. position:absolute;
  7191. align-self:center;
  7192. padding:2px 2px 2px 2px;
  7193. box-sizing:border-box;
  7194. width:100%;
  7195. }
  7196. #u97231_div.disabled {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:127px;
  7202. height:25px;
  7203. background:inherit;
  7204. background-color:rgba(240, 240, 240, 1);
  7205. border:none;
  7206. border-radius:0px;
  7207. -moz-box-shadow:none;
  7208. -webkit-box-shadow:none;
  7209. box-shadow:none;
  7210. font-family:'Microsoft YaHei', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:10px;
  7214. }
  7215. #u97231.disabled {
  7216. }
  7217. #u97232 {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:0px;
  7223. height:0px;
  7224. }
  7225. #u97233_div {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:140px;
  7231. height:30px;
  7232. background:inherit;
  7233. background-color:rgba(255, 255, 255, 1);
  7234. box-sizing:border-box;
  7235. border-width:1px;
  7236. border-style:solid;
  7237. border-color:rgba(215, 215, 215, 1);
  7238. border-radius:4px;
  7239. -moz-box-shadow:none;
  7240. -webkit-box-shadow:none;
  7241. box-shadow:none;
  7242. font-size:11px;
  7243. }
  7244. #u97233 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:501px;
  7248. top:162px;
  7249. width:140px;
  7250. height:30px;
  7251. display:flex;
  7252. font-size:11px;
  7253. }
  7254. #u97233 .text {
  7255. position:absolute;
  7256. align-self:center;
  7257. padding:2px 2px 2px 2px;
  7258. box-sizing:border-box;
  7259. width:100%;
  7260. }
  7261. #u97233_text {
  7262. border-width:0px;
  7263. word-wrap:break-word;
  7264. text-transform:none;
  7265. visibility:hidden;
  7266. }
  7267. #u97234_input {
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:126px;
  7272. height:23px;
  7273. padding:2px 2px 2px 2px;
  7274. font-family:'ArialMT', 'Arial', sans-serif;
  7275. font-weight:400;
  7276. font-style:normal;
  7277. font-size:11px;
  7278. letter-spacing:normal;
  7279. color:#AAAAAA;
  7280. vertical-align:none;
  7281. text-align:left;
  7282. text-transform:none;
  7283. background-color:transparent;
  7284. border-color:transparent;
  7285. }
  7286. #u97234_input.disabled {
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:126px;
  7291. height:23px;
  7292. padding:2px 2px 2px 2px;
  7293. font-family:'ArialMT', 'Arial', sans-serif;
  7294. font-weight:400;
  7295. font-style:normal;
  7296. font-size:11px;
  7297. letter-spacing:normal;
  7298. color:#AAAAAA;
  7299. vertical-align:none;
  7300. text-align:left;
  7301. text-transform:none;
  7302. background-color:transparent;
  7303. border-color:transparent;
  7304. }
  7305. #u97234_div {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:0px;
  7309. top:0px;
  7310. width:126px;
  7311. height:23px;
  7312. background:inherit;
  7313. background-color:rgba(255, 255, 255, 1);
  7314. border:none;
  7315. border-radius:0px;
  7316. -moz-box-shadow:none;
  7317. -webkit-box-shadow:none;
  7318. box-shadow:none;
  7319. font-size:11px;
  7320. color:#AAAAAA;
  7321. }
  7322. #u97234 {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:508px;
  7326. top:164px;
  7327. width:126px;
  7328. height:23px;
  7329. display:flex;
  7330. font-size:11px;
  7331. color:#AAAAAA;
  7332. }
  7333. #u97234 .text {
  7334. position:absolute;
  7335. align-self:flex-start;
  7336. padding:2px 2px 2px 2px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u97234_div.disabled {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:0px;
  7345. width:126px;
  7346. height:23px;
  7347. background:inherit;
  7348. background-color:rgba(240, 240, 240, 1);
  7349. border:none;
  7350. border-radius:0px;
  7351. -moz-box-shadow:none;
  7352. -webkit-box-shadow:none;
  7353. box-shadow:none;
  7354. font-size:11px;
  7355. color:#AAAAAA;
  7356. }
  7357. #u97234.disabled {
  7358. }
  7359. .u97234_input_option {
  7360. font-size:11px;
  7361. }
  7362. #u97235 {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:0px;
  7366. top:0px;
  7367. width:0px;
  7368. height:0px;
  7369. }
  7370. #u97236_div {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:140px;
  7376. height:30px;
  7377. background:inherit;
  7378. background-color:rgba(255, 255, 255, 1);
  7379. box-sizing:border-box;
  7380. border-width:1px;
  7381. border-style:solid;
  7382. border-color:rgba(215, 215, 215, 1);
  7383. border-radius:4px;
  7384. -moz-box-shadow:none;
  7385. -webkit-box-shadow:none;
  7386. box-shadow:none;
  7387. font-size:11px;
  7388. }
  7389. #u97236 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:351px;
  7393. top:203px;
  7394. width:140px;
  7395. height:30px;
  7396. display:flex;
  7397. font-size:11px;
  7398. }
  7399. #u97236 .text {
  7400. position:absolute;
  7401. align-self:center;
  7402. padding:2px 2px 2px 2px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u97236_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. visibility:hidden;
  7411. }
  7412. #u97237_input {
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:126px;
  7417. height:23px;
  7418. padding:2px 2px 2px 2px;
  7419. font-family:'ArialMT', 'Arial', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:11px;
  7423. letter-spacing:normal;
  7424. color:#AAAAAA;
  7425. vertical-align:none;
  7426. text-align:left;
  7427. text-transform:none;
  7428. background-color:transparent;
  7429. border-color:transparent;
  7430. }
  7431. #u97237_input.disabled {
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:126px;
  7436. height:23px;
  7437. padding:2px 2px 2px 2px;
  7438. font-family:'ArialMT', 'Arial', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:11px;
  7442. letter-spacing:normal;
  7443. color:#AAAAAA;
  7444. vertical-align:none;
  7445. text-align:left;
  7446. text-transform:none;
  7447. background-color:transparent;
  7448. border-color:transparent;
  7449. }
  7450. #u97237_div {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:0px;
  7454. top:0px;
  7455. width:126px;
  7456. height:23px;
  7457. background:inherit;
  7458. background-color:rgba(255, 255, 255, 1);
  7459. border:none;
  7460. border-radius:0px;
  7461. -moz-box-shadow:none;
  7462. -webkit-box-shadow:none;
  7463. box-shadow:none;
  7464. font-size:11px;
  7465. color:#AAAAAA;
  7466. }
  7467. #u97237 {
  7468. border-width:0px;
  7469. position:absolute;
  7470. left:358px;
  7471. top:205px;
  7472. width:126px;
  7473. height:23px;
  7474. display:flex;
  7475. font-size:11px;
  7476. color:#AAAAAA;
  7477. }
  7478. #u97237 .text {
  7479. position:absolute;
  7480. align-self:flex-start;
  7481. padding:2px 2px 2px 2px;
  7482. box-sizing:border-box;
  7483. width:100%;
  7484. }
  7485. #u97237_div.disabled {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:126px;
  7491. height:23px;
  7492. background:inherit;
  7493. background-color:rgba(240, 240, 240, 1);
  7494. border:none;
  7495. border-radius:0px;
  7496. -moz-box-shadow:none;
  7497. -webkit-box-shadow:none;
  7498. box-shadow:none;
  7499. font-size:11px;
  7500. color:#AAAAAA;
  7501. }
  7502. #u97237.disabled {
  7503. }
  7504. .u97237_input_option {
  7505. font-size:11px;
  7506. }
  7507. #u97238 {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:0px;
  7513. height:0px;
  7514. }
  7515. #u97239_div {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:140px;
  7521. height:30px;
  7522. background:inherit;
  7523. background-color:rgba(255, 255, 255, 1);
  7524. box-sizing:border-box;
  7525. border-width:1px;
  7526. border-style:solid;
  7527. border-color:rgba(215, 215, 215, 1);
  7528. border-radius:4px;
  7529. -moz-box-shadow:none;
  7530. -webkit-box-shadow:none;
  7531. box-shadow:none;
  7532. font-size:11px;
  7533. }
  7534. #u97239 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:1251px;
  7538. top:121px;
  7539. width:140px;
  7540. height:30px;
  7541. display:flex;
  7542. font-size:11px;
  7543. }
  7544. #u97239 .text {
  7545. position:absolute;
  7546. align-self:center;
  7547. padding:2px 2px 2px 2px;
  7548. box-sizing:border-box;
  7549. width:100%;
  7550. }
  7551. #u97239_text {
  7552. border-width:0px;
  7553. word-wrap:break-word;
  7554. text-transform:none;
  7555. visibility:hidden;
  7556. }
  7557. #u97240_input {
  7558. position:absolute;
  7559. left:0px;
  7560. top:0px;
  7561. width:126px;
  7562. height:23px;
  7563. padding:2px 2px 2px 2px;
  7564. font-family:'ArialMT', 'Arial', sans-serif;
  7565. font-weight:400;
  7566. font-style:normal;
  7567. font-size:11px;
  7568. letter-spacing:normal;
  7569. color:#AAAAAA;
  7570. vertical-align:none;
  7571. text-align:left;
  7572. text-transform:none;
  7573. background-color:transparent;
  7574. border-color:transparent;
  7575. }
  7576. #u97240_input.disabled {
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:126px;
  7581. height:23px;
  7582. padding:2px 2px 2px 2px;
  7583. font-family:'ArialMT', 'Arial', sans-serif;
  7584. font-weight:400;
  7585. font-style:normal;
  7586. font-size:11px;
  7587. letter-spacing:normal;
  7588. color:#AAAAAA;
  7589. vertical-align:none;
  7590. text-align:left;
  7591. text-transform:none;
  7592. background-color:transparent;
  7593. border-color:transparent;
  7594. }
  7595. #u97240_div {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:0px;
  7599. top:0px;
  7600. width:126px;
  7601. height:23px;
  7602. background:inherit;
  7603. background-color:rgba(255, 255, 255, 1);
  7604. border:none;
  7605. border-radius:0px;
  7606. -moz-box-shadow:none;
  7607. -webkit-box-shadow:none;
  7608. box-shadow:none;
  7609. font-size:11px;
  7610. color:#AAAAAA;
  7611. }
  7612. #u97240 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:1258px;
  7616. top:123px;
  7617. width:126px;
  7618. height:23px;
  7619. display:flex;
  7620. font-size:11px;
  7621. color:#AAAAAA;
  7622. }
  7623. #u97240 .text {
  7624. position:absolute;
  7625. align-self:flex-start;
  7626. padding:2px 2px 2px 2px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u97240_div.disabled {
  7631. border-width:0px;
  7632. position:absolute;
  7633. left:0px;
  7634. top:0px;
  7635. width:126px;
  7636. height:23px;
  7637. background:inherit;
  7638. background-color:rgba(240, 240, 240, 1);
  7639. border:none;
  7640. border-radius:0px;
  7641. -moz-box-shadow:none;
  7642. -webkit-box-shadow:none;
  7643. box-shadow:none;
  7644. font-size:11px;
  7645. color:#AAAAAA;
  7646. }
  7647. #u97240.disabled {
  7648. }
  7649. .u97240_input_option {
  7650. font-size:11px;
  7651. }
  7652. #u97241 {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:0px;
  7658. height:0px;
  7659. }
  7660. #u97242_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:140px;
  7666. height:30px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 1);
  7669. box-sizing:border-box;
  7670. border-width:1px;
  7671. border-style:solid;
  7672. border-color:rgba(215, 215, 215, 1);
  7673. border-radius:4px;
  7674. -moz-box-shadow:none;
  7675. -webkit-box-shadow:none;
  7676. box-shadow:none;
  7677. font-size:11px;
  7678. }
  7679. #u97242 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:1401px;
  7683. top:121px;
  7684. width:140px;
  7685. height:30px;
  7686. display:flex;
  7687. font-size:11px;
  7688. }
  7689. #u97242 .text {
  7690. position:absolute;
  7691. align-self:center;
  7692. padding:2px 2px 2px 2px;
  7693. box-sizing:border-box;
  7694. width:100%;
  7695. }
  7696. #u97242_text {
  7697. border-width:0px;
  7698. word-wrap:break-word;
  7699. text-transform:none;
  7700. visibility:hidden;
  7701. }
  7702. #u97243_input {
  7703. position:absolute;
  7704. left:0px;
  7705. top:0px;
  7706. width:126px;
  7707. height:23px;
  7708. padding:2px 2px 2px 2px;
  7709. font-family:'ArialMT', 'Arial', sans-serif;
  7710. font-weight:400;
  7711. font-style:normal;
  7712. font-size:11px;
  7713. letter-spacing:normal;
  7714. color:#AAAAAA;
  7715. vertical-align:none;
  7716. text-align:left;
  7717. text-transform:none;
  7718. background-color:transparent;
  7719. border-color:transparent;
  7720. }
  7721. #u97243_input.disabled {
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:126px;
  7726. height:23px;
  7727. padding:2px 2px 2px 2px;
  7728. font-family:'ArialMT', 'Arial', sans-serif;
  7729. font-weight:400;
  7730. font-style:normal;
  7731. font-size:11px;
  7732. letter-spacing:normal;
  7733. color:#AAAAAA;
  7734. vertical-align:none;
  7735. text-align:left;
  7736. text-transform:none;
  7737. background-color:transparent;
  7738. border-color:transparent;
  7739. }
  7740. #u97243_div {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:0px;
  7744. top:0px;
  7745. width:126px;
  7746. height:23px;
  7747. background:inherit;
  7748. background-color:rgba(255, 255, 255, 1);
  7749. border:none;
  7750. border-radius:0px;
  7751. -moz-box-shadow:none;
  7752. -webkit-box-shadow:none;
  7753. box-shadow:none;
  7754. font-size:11px;
  7755. color:#AAAAAA;
  7756. }
  7757. #u97243 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:1408px;
  7761. top:123px;
  7762. width:126px;
  7763. height:23px;
  7764. display:flex;
  7765. font-size:11px;
  7766. color:#AAAAAA;
  7767. }
  7768. #u97243 .text {
  7769. position:absolute;
  7770. align-self:flex-start;
  7771. padding:2px 2px 2px 2px;
  7772. box-sizing:border-box;
  7773. width:100%;
  7774. }
  7775. #u97243_div.disabled {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:126px;
  7781. height:23px;
  7782. background:inherit;
  7783. background-color:rgba(240, 240, 240, 1);
  7784. border:none;
  7785. border-radius:0px;
  7786. -moz-box-shadow:none;
  7787. -webkit-box-shadow:none;
  7788. box-shadow:none;
  7789. font-size:11px;
  7790. color:#AAAAAA;
  7791. }
  7792. #u97243.disabled {
  7793. }
  7794. .u97243_input_option {
  7795. font-size:11px;
  7796. }
  7797. #u97244_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:55px;
  7803. height:30px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 1);
  7806. box-sizing:border-box;
  7807. border-width:1px;
  7808. border-style:solid;
  7809. border-color:rgba(170, 170, 170, 1);
  7810. border-radius:4px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:12px;
  7818. color:#555555;
  7819. }
  7820. #u97244 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:421px;
  7824. top:251px;
  7825. width:55px;
  7826. height:30px;
  7827. display:flex;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:12px;
  7832. color:#555555;
  7833. }
  7834. #u97244 .text {
  7835. position:absolute;
  7836. align-self:center;
  7837. padding:5px 15px 5px 15px;
  7838. box-sizing:border-box;
  7839. width:100%;
  7840. }
  7841. #u97244_text {
  7842. border-width:0px;
  7843. white-space:nowrap;
  7844. text-transform:none;
  7845. }
  7846. #u97245 {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:0px;
  7852. height:0px;
  7853. }
  7854. #u97246_div {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:140px;
  7860. height:30px;
  7861. background:inherit;
  7862. background-color:rgba(255, 255, 255, 1);
  7863. box-sizing:border-box;
  7864. border-width:1px;
  7865. border-style:solid;
  7866. border-color:rgba(201, 201, 201, 1);
  7867. border-radius:4px;
  7868. -moz-box-shadow:none;
  7869. -webkit-box-shadow:none;
  7870. box-shadow:none;
  7871. font-family:'Microsoft YaHei', sans-serif;
  7872. font-weight:400;
  7873. font-style:normal;
  7874. font-size:14px;
  7875. color:#CCCCCC;
  7876. text-align:left;
  7877. }
  7878. #u97246 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:651px;
  7882. top:161px;
  7883. width:140px;
  7884. height:30px;
  7885. display:flex;
  7886. font-family:'Microsoft YaHei', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:14px;
  7890. color:#CCCCCC;
  7891. text-align:left;
  7892. }
  7893. #u97246 .text {
  7894. position:absolute;
  7895. align-self:center;
  7896. padding:2px 8px 2px 8px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u97246_text {
  7901. border-width:0px;
  7902. word-wrap:break-word;
  7903. text-transform:none;
  7904. visibility:hidden;
  7905. }
  7906. #u97247_input {
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:127px;
  7911. height:25px;
  7912. padding:2px 2px 2px 2px;
  7913. font-family:'Microsoft YaHei', sans-serif;
  7914. font-weight:400;
  7915. font-style:normal;
  7916. font-size:10px;
  7917. letter-spacing:normal;
  7918. color:#000000;
  7919. vertical-align:none;
  7920. text-align:left;
  7921. text-transform:none;
  7922. background-color:transparent;
  7923. border-color:transparent;
  7924. }
  7925. #u97247_input.disabled {
  7926. position:absolute;
  7927. left:0px;
  7928. top:0px;
  7929. width:127px;
  7930. height:25px;
  7931. padding:2px 2px 2px 2px;
  7932. font-family:'Microsoft YaHei', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:10px;
  7936. letter-spacing:normal;
  7937. color:#000000;
  7938. vertical-align:none;
  7939. text-align:left;
  7940. text-transform:none;
  7941. background-color:transparent;
  7942. border-color:transparent;
  7943. }
  7944. #u97247_div {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:127px;
  7950. height:25px;
  7951. background:inherit;
  7952. background-color:rgba(255, 255, 255, 1);
  7953. border:none;
  7954. border-radius:0px;
  7955. -moz-box-shadow:none;
  7956. -webkit-box-shadow:none;
  7957. box-shadow:none;
  7958. font-family:'Microsoft YaHei', sans-serif;
  7959. font-weight:400;
  7960. font-style:normal;
  7961. font-size:10px;
  7962. }
  7963. #u97247 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:659px;
  7967. top:162px;
  7968. width:127px;
  7969. height:25px;
  7970. display:flex;
  7971. font-family:'Microsoft YaHei', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:10px;
  7975. }
  7976. #u97247 .text {
  7977. position:absolute;
  7978. align-self:center;
  7979. padding:2px 2px 2px 2px;
  7980. box-sizing:border-box;
  7981. width:100%;
  7982. }
  7983. #u97247_div.disabled {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:127px;
  7989. height:25px;
  7990. background:inherit;
  7991. background-color:rgba(240, 240, 240, 1);
  7992. border:none;
  7993. border-radius:0px;
  7994. -moz-box-shadow:none;
  7995. -webkit-box-shadow:none;
  7996. box-shadow:none;
  7997. font-family:'Microsoft YaHei', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:10px;
  8001. }
  8002. #u97247.disabled {
  8003. }
  8004. #u97248 {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:0px;
  8008. top:0px;
  8009. width:0px;
  8010. height:0px;
  8011. }
  8012. #u97249_div {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:0px;
  8016. top:0px;
  8017. width:140px;
  8018. height:30px;
  8019. background:inherit;
  8020. background-color:rgba(255, 255, 255, 1);
  8021. box-sizing:border-box;
  8022. border-width:1px;
  8023. border-style:solid;
  8024. border-color:rgba(201, 201, 201, 1);
  8025. border-radius:4px;
  8026. -moz-box-shadow:none;
  8027. -webkit-box-shadow:none;
  8028. box-shadow:none;
  8029. font-family:'Microsoft YaHei', sans-serif;
  8030. font-weight:400;
  8031. font-style:normal;
  8032. font-size:14px;
  8033. color:#CCCCCC;
  8034. text-align:left;
  8035. }
  8036. #u97249 {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:801px;
  8040. top:161px;
  8041. width:140px;
  8042. height:30px;
  8043. display:flex;
  8044. font-family:'Microsoft YaHei', sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. font-size:14px;
  8048. color:#CCCCCC;
  8049. text-align:left;
  8050. }
  8051. #u97249 .text {
  8052. position:absolute;
  8053. align-self:center;
  8054. padding:2px 8px 2px 8px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u97249_text {
  8059. border-width:0px;
  8060. word-wrap:break-word;
  8061. text-transform:none;
  8062. visibility:hidden;
  8063. }
  8064. #u97250_input {
  8065. position:absolute;
  8066. left:0px;
  8067. top:0px;
  8068. width:127px;
  8069. height:25px;
  8070. padding:2px 2px 2px 2px;
  8071. font-family:'Microsoft YaHei', sans-serif;
  8072. font-weight:400;
  8073. font-style:normal;
  8074. font-size:10px;
  8075. letter-spacing:normal;
  8076. color:#000000;
  8077. vertical-align:none;
  8078. text-align:left;
  8079. text-transform:none;
  8080. background-color:transparent;
  8081. border-color:transparent;
  8082. }
  8083. #u97250_input.disabled {
  8084. position:absolute;
  8085. left:0px;
  8086. top:0px;
  8087. width:127px;
  8088. height:25px;
  8089. padding:2px 2px 2px 2px;
  8090. font-family:'Microsoft YaHei', sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:10px;
  8094. letter-spacing:normal;
  8095. color:#000000;
  8096. vertical-align:none;
  8097. text-align:left;
  8098. text-transform:none;
  8099. background-color:transparent;
  8100. border-color:transparent;
  8101. }
  8102. #u97250_div {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:0px;
  8106. top:0px;
  8107. width:127px;
  8108. height:25px;
  8109. background:inherit;
  8110. background-color:rgba(255, 255, 255, 1);
  8111. border:none;
  8112. border-radius:0px;
  8113. -moz-box-shadow:none;
  8114. -webkit-box-shadow:none;
  8115. box-shadow:none;
  8116. font-family:'Microsoft YaHei', sans-serif;
  8117. font-weight:400;
  8118. font-style:normal;
  8119. font-size:10px;
  8120. }
  8121. #u97250 {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:809px;
  8125. top:162px;
  8126. width:127px;
  8127. height:25px;
  8128. display:flex;
  8129. font-family:'Microsoft YaHei', sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:10px;
  8133. }
  8134. #u97250 .text {
  8135. position:absolute;
  8136. align-self:center;
  8137. padding:2px 2px 2px 2px;
  8138. box-sizing:border-box;
  8139. width:100%;
  8140. }
  8141. #u97250_div.disabled {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:0px;
  8145. top:0px;
  8146. width:127px;
  8147. height:25px;
  8148. background:inherit;
  8149. background-color:rgba(240, 240, 240, 1);
  8150. border:none;
  8151. border-radius:0px;
  8152. -moz-box-shadow:none;
  8153. -webkit-box-shadow:none;
  8154. box-shadow:none;
  8155. font-family:'Microsoft YaHei', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:10px;
  8159. }
  8160. #u97250.disabled {
  8161. }
  8162. #u97251 {
  8163. border-width:0px;
  8164. position:absolute;
  8165. left:0px;
  8166. top:0px;
  8167. width:0px;
  8168. height:0px;
  8169. }
  8170. #u97252_div {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:0px;
  8174. top:0px;
  8175. width:140px;
  8176. height:30px;
  8177. background:inherit;
  8178. background-color:rgba(255, 255, 255, 1);
  8179. box-sizing:border-box;
  8180. border-width:1px;
  8181. border-style:solid;
  8182. border-color:rgba(201, 201, 201, 1);
  8183. border-radius:4px;
  8184. -moz-box-shadow:none;
  8185. -webkit-box-shadow:none;
  8186. box-shadow:none;
  8187. font-family:'Microsoft YaHei', sans-serif;
  8188. font-weight:400;
  8189. font-style:normal;
  8190. font-size:14px;
  8191. color:#CCCCCC;
  8192. text-align:left;
  8193. }
  8194. #u97252 {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:951px;
  8198. top:161px;
  8199. width:140px;
  8200. height:30px;
  8201. display:flex;
  8202. font-family:'Microsoft YaHei', sans-serif;
  8203. font-weight:400;
  8204. font-style:normal;
  8205. font-size:14px;
  8206. color:#CCCCCC;
  8207. text-align:left;
  8208. }
  8209. #u97252 .text {
  8210. position:absolute;
  8211. align-self:center;
  8212. padding:2px 8px 2px 8px;
  8213. box-sizing:border-box;
  8214. width:100%;
  8215. }
  8216. #u97252_text {
  8217. border-width:0px;
  8218. word-wrap:break-word;
  8219. text-transform:none;
  8220. visibility:hidden;
  8221. }
  8222. #u97253_input {
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:127px;
  8227. height:25px;
  8228. padding:2px 2px 2px 2px;
  8229. font-family:'Microsoft YaHei', sans-serif;
  8230. font-weight:400;
  8231. font-style:normal;
  8232. font-size:10px;
  8233. letter-spacing:normal;
  8234. color:#000000;
  8235. vertical-align:none;
  8236. text-align:left;
  8237. text-transform:none;
  8238. background-color:transparent;
  8239. border-color:transparent;
  8240. }
  8241. #u97253_input.disabled {
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:127px;
  8246. height:25px;
  8247. padding:2px 2px 2px 2px;
  8248. font-family:'Microsoft YaHei', sans-serif;
  8249. font-weight:400;
  8250. font-style:normal;
  8251. font-size:10px;
  8252. letter-spacing:normal;
  8253. color:#000000;
  8254. vertical-align:none;
  8255. text-align:left;
  8256. text-transform:none;
  8257. background-color:transparent;
  8258. border-color:transparent;
  8259. }
  8260. #u97253_div {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:127px;
  8266. height:25px;
  8267. background:inherit;
  8268. background-color:rgba(255, 255, 255, 1);
  8269. border:none;
  8270. border-radius:0px;
  8271. -moz-box-shadow:none;
  8272. -webkit-box-shadow:none;
  8273. box-shadow:none;
  8274. font-family:'Microsoft YaHei', sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. font-size:10px;
  8278. }
  8279. #u97253 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:959px;
  8283. top:162px;
  8284. width:127px;
  8285. height:25px;
  8286. display:flex;
  8287. font-family:'Microsoft YaHei', sans-serif;
  8288. font-weight:400;
  8289. font-style:normal;
  8290. font-size:10px;
  8291. }
  8292. #u97253 .text {
  8293. position:absolute;
  8294. align-self:center;
  8295. padding:2px 2px 2px 2px;
  8296. box-sizing:border-box;
  8297. width:100%;
  8298. }
  8299. #u97253_div.disabled {
  8300. border-width:0px;
  8301. position:absolute;
  8302. left:0px;
  8303. top:0px;
  8304. width:127px;
  8305. height:25px;
  8306. background:inherit;
  8307. background-color:rgba(240, 240, 240, 1);
  8308. border:none;
  8309. border-radius:0px;
  8310. -moz-box-shadow:none;
  8311. -webkit-box-shadow:none;
  8312. box-shadow:none;
  8313. font-family:'Microsoft YaHei', sans-serif;
  8314. font-weight:400;
  8315. font-style:normal;
  8316. font-size:10px;
  8317. }
  8318. #u97253.disabled {
  8319. }
  8320. #u97254 {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:0px;
  8326. height:0px;
  8327. }
  8328. #u97255_div {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:0px;
  8332. top:0px;
  8333. width:140px;
  8334. height:30px;
  8335. background:inherit;
  8336. background-color:rgba(255, 255, 255, 1);
  8337. box-sizing:border-box;
  8338. border-width:1px;
  8339. border-style:solid;
  8340. border-color:rgba(201, 201, 201, 1);
  8341. border-radius:4px;
  8342. -moz-box-shadow:none;
  8343. -webkit-box-shadow:none;
  8344. box-shadow:none;
  8345. font-family:'Microsoft YaHei', sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. font-size:14px;
  8349. color:#CCCCCC;
  8350. text-align:left;
  8351. }
  8352. #u97255 {
  8353. border-width:0px;
  8354. position:absolute;
  8355. left:1251px;
  8356. top:161px;
  8357. width:140px;
  8358. height:30px;
  8359. display:flex;
  8360. font-family:'Microsoft YaHei', sans-serif;
  8361. font-weight:400;
  8362. font-style:normal;
  8363. font-size:14px;
  8364. color:#CCCCCC;
  8365. text-align:left;
  8366. }
  8367. #u97255 .text {
  8368. position:absolute;
  8369. align-self:center;
  8370. padding:2px 8px 2px 8px;
  8371. box-sizing:border-box;
  8372. width:100%;
  8373. }
  8374. #u97255_text {
  8375. border-width:0px;
  8376. word-wrap:break-word;
  8377. text-transform:none;
  8378. visibility:hidden;
  8379. }
  8380. #u97256_input {
  8381. position:absolute;
  8382. left:0px;
  8383. top:0px;
  8384. width:127px;
  8385. height:25px;
  8386. padding:2px 2px 2px 2px;
  8387. font-family:'Microsoft YaHei', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. font-size:10px;
  8391. letter-spacing:normal;
  8392. color:#000000;
  8393. vertical-align:none;
  8394. text-align:left;
  8395. text-transform:none;
  8396. background-color:transparent;
  8397. border-color:transparent;
  8398. }
  8399. #u97256_input.disabled {
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:127px;
  8404. height:25px;
  8405. padding:2px 2px 2px 2px;
  8406. font-family:'Microsoft YaHei', sans-serif;
  8407. font-weight:400;
  8408. font-style:normal;
  8409. font-size:10px;
  8410. letter-spacing:normal;
  8411. color:#000000;
  8412. vertical-align:none;
  8413. text-align:left;
  8414. text-transform:none;
  8415. background-color:transparent;
  8416. border-color:transparent;
  8417. }
  8418. #u97256_div {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:127px;
  8424. height:25px;
  8425. background:inherit;
  8426. background-color:rgba(255, 255, 255, 1);
  8427. border:none;
  8428. border-radius:0px;
  8429. -moz-box-shadow:none;
  8430. -webkit-box-shadow:none;
  8431. box-shadow:none;
  8432. font-family:'Microsoft YaHei', sans-serif;
  8433. font-weight:400;
  8434. font-style:normal;
  8435. font-size:10px;
  8436. }
  8437. #u97256 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:1259px;
  8441. top:162px;
  8442. width:127px;
  8443. height:25px;
  8444. display:flex;
  8445. font-family:'Microsoft YaHei', sans-serif;
  8446. font-weight:400;
  8447. font-style:normal;
  8448. font-size:10px;
  8449. }
  8450. #u97256 .text {
  8451. position:absolute;
  8452. align-self:center;
  8453. padding:2px 2px 2px 2px;
  8454. box-sizing:border-box;
  8455. width:100%;
  8456. }
  8457. #u97256_div.disabled {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:127px;
  8463. height:25px;
  8464. background:inherit;
  8465. background-color:rgba(240, 240, 240, 1);
  8466. border:none;
  8467. border-radius:0px;
  8468. -moz-box-shadow:none;
  8469. -webkit-box-shadow:none;
  8470. box-shadow:none;
  8471. font-family:'Microsoft YaHei', sans-serif;
  8472. font-weight:400;
  8473. font-style:normal;
  8474. font-size:10px;
  8475. }
  8476. #u97256.disabled {
  8477. }
  8478. #u97257 {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:0px;
  8484. height:0px;
  8485. }
  8486. #u97258_div {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:0px;
  8490. top:0px;
  8491. width:140px;
  8492. height:30px;
  8493. background:inherit;
  8494. background-color:rgba(255, 255, 255, 1);
  8495. box-sizing:border-box;
  8496. border-width:1px;
  8497. border-style:solid;
  8498. border-color:rgba(201, 201, 201, 1);
  8499. border-radius:4px;
  8500. -moz-box-shadow:none;
  8501. -webkit-box-shadow:none;
  8502. box-shadow:none;
  8503. font-family:'Microsoft YaHei', sans-serif;
  8504. font-weight:400;
  8505. font-style:normal;
  8506. font-size:14px;
  8507. color:#CCCCCC;
  8508. text-align:left;
  8509. }
  8510. #u97258 {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:1101px;
  8514. top:161px;
  8515. width:140px;
  8516. height:30px;
  8517. display:flex;
  8518. font-family:'Microsoft YaHei', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. font-size:14px;
  8522. color:#CCCCCC;
  8523. text-align:left;
  8524. }
  8525. #u97258 .text {
  8526. position:absolute;
  8527. align-self:center;
  8528. padding:2px 8px 2px 8px;
  8529. box-sizing:border-box;
  8530. width:100%;
  8531. }
  8532. #u97258_text {
  8533. border-width:0px;
  8534. word-wrap:break-word;
  8535. text-transform:none;
  8536. visibility:hidden;
  8537. }
  8538. #u97259_input {
  8539. position:absolute;
  8540. left:0px;
  8541. top:0px;
  8542. width:127px;
  8543. height:25px;
  8544. padding:2px 2px 2px 2px;
  8545. font-family:'Microsoft YaHei', sans-serif;
  8546. font-weight:400;
  8547. font-style:normal;
  8548. font-size:10px;
  8549. letter-spacing:normal;
  8550. color:#000000;
  8551. vertical-align:none;
  8552. text-align:left;
  8553. text-transform:none;
  8554. background-color:transparent;
  8555. border-color:transparent;
  8556. }
  8557. #u97259_input.disabled {
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:127px;
  8562. height:25px;
  8563. padding:2px 2px 2px 2px;
  8564. font-family:'Microsoft YaHei', sans-serif;
  8565. font-weight:400;
  8566. font-style:normal;
  8567. font-size:10px;
  8568. letter-spacing:normal;
  8569. color:#000000;
  8570. vertical-align:none;
  8571. text-align:left;
  8572. text-transform:none;
  8573. background-color:transparent;
  8574. border-color:transparent;
  8575. }
  8576. #u97259_div {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:0px;
  8580. top:0px;
  8581. width:127px;
  8582. height:25px;
  8583. background:inherit;
  8584. background-color:rgba(255, 255, 255, 1);
  8585. border:none;
  8586. border-radius:0px;
  8587. -moz-box-shadow:none;
  8588. -webkit-box-shadow:none;
  8589. box-shadow:none;
  8590. font-family:'Microsoft YaHei', sans-serif;
  8591. font-weight:400;
  8592. font-style:normal;
  8593. font-size:10px;
  8594. }
  8595. #u97259 {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:1109px;
  8599. top:162px;
  8600. width:127px;
  8601. height:25px;
  8602. display:flex;
  8603. font-family:'Microsoft YaHei', sans-serif;
  8604. font-weight:400;
  8605. font-style:normal;
  8606. font-size:10px;
  8607. }
  8608. #u97259 .text {
  8609. position:absolute;
  8610. align-self:center;
  8611. padding:2px 2px 2px 2px;
  8612. box-sizing:border-box;
  8613. width:100%;
  8614. }
  8615. #u97259_div.disabled {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:0px;
  8619. top:0px;
  8620. width:127px;
  8621. height:25px;
  8622. background:inherit;
  8623. background-color:rgba(240, 240, 240, 1);
  8624. border:none;
  8625. border-radius:0px;
  8626. -moz-box-shadow:none;
  8627. -webkit-box-shadow:none;
  8628. box-shadow:none;
  8629. font-family:'Microsoft YaHei', sans-serif;
  8630. font-weight:400;
  8631. font-style:normal;
  8632. font-size:10px;
  8633. }
  8634. #u97259.disabled {
  8635. }
  8636. #u97260_div {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:0px;
  8640. top:0px;
  8641. width:37px;
  8642. height:50px;
  8643. background:inherit;
  8644. background-color:rgba(255, 255, 255, 0);
  8645. box-sizing:border-box;
  8646. border-width:3px;
  8647. border-style:solid;
  8648. border-color:rgba(24, 144, 255, 1);
  8649. border-left:0px;
  8650. border-top:0px;
  8651. border-right:0px;
  8652. border-radius:0px;
  8653. border-bottom-right-radius:0px;
  8654. border-bottom-left-radius:0px;
  8655. -moz-box-shadow:none;
  8656. -webkit-box-shadow:none;
  8657. box-shadow:none;
  8658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8659. font-weight:400;
  8660. font-style:normal;
  8661. font-size:18px;
  8662. color:#1890FF;
  8663. }
  8664. #u97260 {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:417px;
  8668. top:50px;
  8669. width:37px;
  8670. height:50px;
  8671. display:flex;
  8672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8673. font-weight:400;
  8674. font-style:normal;
  8675. font-size:18px;
  8676. color:#1890FF;
  8677. }
  8678. #u97260 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:0px 0px 0px 0px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u97260_text {
  8686. border-width:0px;
  8687. white-space:nowrap;
  8688. text-transform:none;
  8689. }
  8690. #u97261 {
  8691. border-width:0px;
  8692. position:absolute;
  8693. left:0px;
  8694. top:0px;
  8695. width:0px;
  8696. height:0px;
  8697. }
  8698. #u97262_div {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:0px;
  8702. top:0px;
  8703. width:140px;
  8704. height:28px;
  8705. background:inherit;
  8706. background-color:rgba(255, 255, 255, 1);
  8707. box-sizing:border-box;
  8708. border-width:1px;
  8709. border-style:solid;
  8710. border-color:rgba(201, 201, 201, 1);
  8711. border-radius:4px;
  8712. -moz-box-shadow:none;
  8713. -webkit-box-shadow:none;
  8714. box-shadow:none;
  8715. font-family:'Microsoft YaHei', sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:14px;
  8719. color:#CCCCCC;
  8720. text-align:left;
  8721. }
  8722. #u97262 {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:1101px;
  8726. top:121px;
  8727. width:140px;
  8728. height:28px;
  8729. display:flex;
  8730. font-family:'Microsoft YaHei', sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. font-size:14px;
  8734. color:#CCCCCC;
  8735. text-align:left;
  8736. }
  8737. #u97262 .text {
  8738. position:absolute;
  8739. align-self:center;
  8740. padding:2px 8px 2px 8px;
  8741. box-sizing:border-box;
  8742. width:100%;
  8743. }
  8744. #u97262_text {
  8745. border-width:0px;
  8746. word-wrap:break-word;
  8747. text-transform:none;
  8748. visibility:hidden;
  8749. }
  8750. #u97263_input {
  8751. position:absolute;
  8752. left:0px;
  8753. top:0px;
  8754. width:114px;
  8755. height:26px;
  8756. padding:2px 2px 2px 2px;
  8757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8758. font-weight:400;
  8759. font-style:normal;
  8760. font-size:14px;
  8761. letter-spacing:normal;
  8762. color:#000000;
  8763. vertical-align:none;
  8764. text-align:left;
  8765. text-transform:none;
  8766. background-color:transparent;
  8767. border-color:transparent;
  8768. }
  8769. #u97263_input.disabled {
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:114px;
  8774. height:26px;
  8775. padding:2px 2px 2px 2px;
  8776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8777. font-weight:400;
  8778. font-style:normal;
  8779. font-size:14px;
  8780. letter-spacing:normal;
  8781. color:#000000;
  8782. vertical-align:none;
  8783. text-align:left;
  8784. text-transform:none;
  8785. background-color:transparent;
  8786. border-color:transparent;
  8787. }
  8788. #u97263_div {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:114px;
  8794. height:26px;
  8795. background:inherit;
  8796. background-color:rgba(255, 255, 255, 1);
  8797. border:none;
  8798. border-radius:0px;
  8799. -moz-box-shadow:none;
  8800. -webkit-box-shadow:none;
  8801. box-shadow:none;
  8802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8803. font-weight:400;
  8804. font-style:normal;
  8805. font-size:14px;
  8806. }
  8807. #u97263 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:1107px;
  8811. top:122px;
  8812. width:114px;
  8813. height:26px;
  8814. display:flex;
  8815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. font-size:14px;
  8819. }
  8820. #u97263 .text {
  8821. position:absolute;
  8822. align-self:center;
  8823. padding:2px 2px 2px 2px;
  8824. box-sizing:border-box;
  8825. width:100%;
  8826. }
  8827. #u97263_div.disabled {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:0px;
  8831. top:0px;
  8832. width:114px;
  8833. height:26px;
  8834. background:inherit;
  8835. background-color:rgba(240, 240, 240, 1);
  8836. border:none;
  8837. border-radius:0px;
  8838. -moz-box-shadow:none;
  8839. -webkit-box-shadow:none;
  8840. box-shadow:none;
  8841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8842. font-weight:400;
  8843. font-style:normal;
  8844. font-size:14px;
  8845. }
  8846. #u97263.disabled {
  8847. }
  8848. #u97264_img {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:13px;
  8854. height:15px;
  8855. }
  8856. #u97264 {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:1221px;
  8860. top:128px;
  8861. width:13px;
  8862. height:15px;
  8863. display:flex;
  8864. }
  8865. #u97264 .text {
  8866. position:absolute;
  8867. align-self:center;
  8868. padding:2px 2px 2px 2px;
  8869. box-sizing:border-box;
  8870. width:100%;
  8871. }
  8872. #u97264_text {
  8873. border-width:0px;
  8874. word-wrap:break-word;
  8875. text-transform:none;
  8876. visibility:hidden;
  8877. }
  8878. #u97265 {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:0px;
  8882. top:0px;
  8883. width:0px;
  8884. height:0px;
  8885. }
  8886. #u97266_div {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:0px;
  8890. top:0px;
  8891. width:140px;
  8892. height:30px;
  8893. background:inherit;
  8894. background-color:rgba(255, 255, 255, 1);
  8895. box-sizing:border-box;
  8896. border-width:1px;
  8897. border-style:solid;
  8898. border-color:rgba(201, 201, 201, 1);
  8899. border-radius:4px;
  8900. -moz-box-shadow:none;
  8901. -webkit-box-shadow:none;
  8902. box-shadow:none;
  8903. font-family:'Microsoft YaHei', sans-serif;
  8904. font-weight:400;
  8905. font-style:normal;
  8906. font-size:14px;
  8907. color:#CCCCCC;
  8908. text-align:left;
  8909. }
  8910. #u97266 {
  8911. border-width:0px;
  8912. position:absolute;
  8913. left:1401px;
  8914. top:161px;
  8915. width:140px;
  8916. height:30px;
  8917. display:flex;
  8918. font-family:'Microsoft YaHei', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:14px;
  8922. color:#CCCCCC;
  8923. text-align:left;
  8924. }
  8925. #u97266 .text {
  8926. position:absolute;
  8927. align-self:center;
  8928. padding:2px 8px 2px 8px;
  8929. box-sizing:border-box;
  8930. width:100%;
  8931. }
  8932. #u97266_text {
  8933. border-width:0px;
  8934. word-wrap:break-word;
  8935. text-transform:none;
  8936. visibility:hidden;
  8937. }
  8938. #u97267_input {
  8939. position:absolute;
  8940. left:0px;
  8941. top:0px;
  8942. width:127px;
  8943. height:25px;
  8944. padding:2px 2px 2px 2px;
  8945. font-family:'Microsoft YaHei', sans-serif;
  8946. font-weight:400;
  8947. font-style:normal;
  8948. font-size:10px;
  8949. letter-spacing:normal;
  8950. color:#000000;
  8951. vertical-align:none;
  8952. text-align:left;
  8953. text-transform:none;
  8954. background-color:transparent;
  8955. border-color:transparent;
  8956. }
  8957. #u97267_input.disabled {
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:127px;
  8962. height:25px;
  8963. padding:2px 2px 2px 2px;
  8964. font-family:'Microsoft YaHei', sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:10px;
  8968. letter-spacing:normal;
  8969. color:#000000;
  8970. vertical-align:none;
  8971. text-align:left;
  8972. text-transform:none;
  8973. background-color:transparent;
  8974. border-color:transparent;
  8975. }
  8976. #u97267_div {
  8977. border-width:0px;
  8978. position:absolute;
  8979. left:0px;
  8980. top:0px;
  8981. width:127px;
  8982. height:25px;
  8983. background:inherit;
  8984. background-color:rgba(255, 255, 255, 1);
  8985. border:none;
  8986. border-radius:0px;
  8987. -moz-box-shadow:none;
  8988. -webkit-box-shadow:none;
  8989. box-shadow:none;
  8990. font-family:'Microsoft YaHei', sans-serif;
  8991. font-weight:400;
  8992. font-style:normal;
  8993. font-size:10px;
  8994. }
  8995. #u97267 {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:1409px;
  8999. top:162px;
  9000. width:127px;
  9001. height:25px;
  9002. display:flex;
  9003. font-family:'Microsoft YaHei', sans-serif;
  9004. font-weight:400;
  9005. font-style:normal;
  9006. font-size:10px;
  9007. }
  9008. #u97267 .text {
  9009. position:absolute;
  9010. align-self:center;
  9011. padding:2px 2px 2px 2px;
  9012. box-sizing:border-box;
  9013. width:100%;
  9014. }
  9015. #u97267_div.disabled {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:127px;
  9021. height:25px;
  9022. background:inherit;
  9023. background-color:rgba(240, 240, 240, 1);
  9024. border:none;
  9025. border-radius:0px;
  9026. -moz-box-shadow:none;
  9027. -webkit-box-shadow:none;
  9028. box-shadow:none;
  9029. font-family:'Microsoft YaHei', sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:10px;
  9033. }
  9034. #u97267.disabled {
  9035. }
  9036. #u97268 {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:0px;
  9042. height:0px;
  9043. }
  9044. #u97269_div {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:0px;
  9048. top:0px;
  9049. width:140px;
  9050. height:30px;
  9051. background:inherit;
  9052. background-color:rgba(255, 255, 255, 1);
  9053. box-sizing:border-box;
  9054. border-width:1px;
  9055. border-style:solid;
  9056. border-color:rgba(215, 215, 215, 1);
  9057. border-radius:4px;
  9058. -moz-box-shadow:none;
  9059. -webkit-box-shadow:none;
  9060. box-shadow:none;
  9061. font-size:11px;
  9062. }
  9063. #u97269 {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:1551px;
  9067. top:161px;
  9068. width:140px;
  9069. height:30px;
  9070. display:flex;
  9071. font-size:11px;
  9072. }
  9073. #u97269 .text {
  9074. position:absolute;
  9075. align-self:center;
  9076. padding:2px 2px 2px 2px;
  9077. box-sizing:border-box;
  9078. width:100%;
  9079. }
  9080. #u97269_text {
  9081. border-width:0px;
  9082. word-wrap:break-word;
  9083. text-transform:none;
  9084. visibility:hidden;
  9085. }
  9086. #u97270_input {
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:126px;
  9091. height:23px;
  9092. padding:2px 2px 2px 2px;
  9093. font-family:'ArialMT', 'Arial', sans-serif;
  9094. font-weight:400;
  9095. font-style:normal;
  9096. font-size:11px;
  9097. letter-spacing:normal;
  9098. color:#AAAAAA;
  9099. vertical-align:none;
  9100. text-align:left;
  9101. text-transform:none;
  9102. background-color:transparent;
  9103. border-color:transparent;
  9104. }
  9105. #u97270_input.disabled {
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:126px;
  9110. height:23px;
  9111. padding:2px 2px 2px 2px;
  9112. font-family:'ArialMT', 'Arial', sans-serif;
  9113. font-weight:400;
  9114. font-style:normal;
  9115. font-size:11px;
  9116. letter-spacing:normal;
  9117. color:#AAAAAA;
  9118. vertical-align:none;
  9119. text-align:left;
  9120. text-transform:none;
  9121. background-color:transparent;
  9122. border-color:transparent;
  9123. }
  9124. #u97270_div {
  9125. border-width:0px;
  9126. position:absolute;
  9127. left:0px;
  9128. top:0px;
  9129. width:126px;
  9130. height:23px;
  9131. background:inherit;
  9132. background-color:rgba(255, 255, 255, 1);
  9133. border:none;
  9134. border-radius:0px;
  9135. -moz-box-shadow:none;
  9136. -webkit-box-shadow:none;
  9137. box-shadow:none;
  9138. font-size:11px;
  9139. color:#AAAAAA;
  9140. }
  9141. #u97270 {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:1558px;
  9145. top:163px;
  9146. width:126px;
  9147. height:23px;
  9148. display:flex;
  9149. font-size:11px;
  9150. color:#AAAAAA;
  9151. }
  9152. #u97270 .text {
  9153. position:absolute;
  9154. align-self:flex-start;
  9155. padding:2px 2px 2px 2px;
  9156. box-sizing:border-box;
  9157. width:100%;
  9158. }
  9159. #u97270_div.disabled {
  9160. border-width:0px;
  9161. position:absolute;
  9162. left:0px;
  9163. top:0px;
  9164. width:126px;
  9165. height:23px;
  9166. background:inherit;
  9167. background-color:rgba(240, 240, 240, 1);
  9168. border:none;
  9169. border-radius:0px;
  9170. -moz-box-shadow:none;
  9171. -webkit-box-shadow:none;
  9172. box-shadow:none;
  9173. font-size:11px;
  9174. color:#AAAAAA;
  9175. }
  9176. #u97270.disabled {
  9177. }
  9178. .u97270_input_option {
  9179. font-size:11px;
  9180. }
  9181. #u97271 {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:0px;
  9187. height:0px;
  9188. }
  9189. #u97272_div {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:0px;
  9193. top:0px;
  9194. width:140px;
  9195. height:30px;
  9196. background:inherit;
  9197. background-color:rgba(255, 255, 255, 1);
  9198. box-sizing:border-box;
  9199. border-width:1px;
  9200. border-style:solid;
  9201. border-color:rgba(215, 215, 215, 1);
  9202. border-radius:4px;
  9203. -moz-box-shadow:none;
  9204. -webkit-box-shadow:none;
  9205. box-shadow:none;
  9206. font-size:11px;
  9207. }
  9208. #u97272 {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:501px;
  9212. top:203px;
  9213. width:140px;
  9214. height:30px;
  9215. display:flex;
  9216. font-size:11px;
  9217. }
  9218. #u97272 .text {
  9219. position:absolute;
  9220. align-self:center;
  9221. padding:2px 2px 2px 2px;
  9222. box-sizing:border-box;
  9223. width:100%;
  9224. }
  9225. #u97272_text {
  9226. border-width:0px;
  9227. word-wrap:break-word;
  9228. text-transform:none;
  9229. visibility:hidden;
  9230. }
  9231. #u97273_input {
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:126px;
  9236. height:23px;
  9237. padding:2px 2px 2px 2px;
  9238. font-family:'ArialMT', 'Arial', sans-serif;
  9239. font-weight:400;
  9240. font-style:normal;
  9241. font-size:11px;
  9242. letter-spacing:normal;
  9243. color:#AAAAAA;
  9244. vertical-align:none;
  9245. text-align:left;
  9246. text-transform:none;
  9247. background-color:transparent;
  9248. border-color:transparent;
  9249. }
  9250. #u97273_input.disabled {
  9251. position:absolute;
  9252. left:0px;
  9253. top:0px;
  9254. width:126px;
  9255. height:23px;
  9256. padding:2px 2px 2px 2px;
  9257. font-family:'ArialMT', 'Arial', sans-serif;
  9258. font-weight:400;
  9259. font-style:normal;
  9260. font-size:11px;
  9261. letter-spacing:normal;
  9262. color:#AAAAAA;
  9263. vertical-align:none;
  9264. text-align:left;
  9265. text-transform:none;
  9266. background-color:transparent;
  9267. border-color:transparent;
  9268. }
  9269. #u97273_div {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:0px;
  9273. top:0px;
  9274. width:126px;
  9275. height:23px;
  9276. background:inherit;
  9277. background-color:rgba(255, 255, 255, 1);
  9278. border:none;
  9279. border-radius:0px;
  9280. -moz-box-shadow:none;
  9281. -webkit-box-shadow:none;
  9282. box-shadow:none;
  9283. font-size:11px;
  9284. color:#AAAAAA;
  9285. }
  9286. #u97273 {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:508px;
  9290. top:205px;
  9291. width:126px;
  9292. height:23px;
  9293. display:flex;
  9294. font-size:11px;
  9295. color:#AAAAAA;
  9296. }
  9297. #u97273 .text {
  9298. position:absolute;
  9299. align-self:flex-start;
  9300. padding:2px 2px 2px 2px;
  9301. box-sizing:border-box;
  9302. width:100%;
  9303. }
  9304. #u97273_div.disabled {
  9305. border-width:0px;
  9306. position:absolute;
  9307. left:0px;
  9308. top:0px;
  9309. width:126px;
  9310. height:23px;
  9311. background:inherit;
  9312. background-color:rgba(240, 240, 240, 1);
  9313. border:none;
  9314. border-radius:0px;
  9315. -moz-box-shadow:none;
  9316. -webkit-box-shadow:none;
  9317. box-shadow:none;
  9318. font-size:11px;
  9319. color:#AAAAAA;
  9320. }
  9321. #u97273.disabled {
  9322. }
  9323. .u97273_input_option {
  9324. font-size:11px;
  9325. }
  9326. #u97274 {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:0px;
  9330. top:0px;
  9331. width:0px;
  9332. height:0px;
  9333. }
  9334. #u97275_div {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:0px;
  9338. top:0px;
  9339. width:140px;
  9340. height:30px;
  9341. background:inherit;
  9342. background-color:rgba(255, 255, 255, 1);
  9343. box-sizing:border-box;
  9344. border-width:1px;
  9345. border-style:solid;
  9346. border-color:rgba(215, 215, 215, 1);
  9347. border-radius:4px;
  9348. -moz-box-shadow:none;
  9349. -webkit-box-shadow:none;
  9350. box-shadow:none;
  9351. font-size:11px;
  9352. }
  9353. #u97275 {
  9354. border-width:0px;
  9355. position:absolute;
  9356. left:651px;
  9357. top:203px;
  9358. width:140px;
  9359. height:30px;
  9360. display:flex;
  9361. font-size:11px;
  9362. }
  9363. #u97275 .text {
  9364. position:absolute;
  9365. align-self:center;
  9366. padding:2px 2px 2px 2px;
  9367. box-sizing:border-box;
  9368. width:100%;
  9369. }
  9370. #u97275_text {
  9371. border-width:0px;
  9372. word-wrap:break-word;
  9373. text-transform:none;
  9374. visibility:hidden;
  9375. }
  9376. #u97276_input {
  9377. position:absolute;
  9378. left:0px;
  9379. top:0px;
  9380. width:126px;
  9381. height:23px;
  9382. padding:2px 2px 2px 2px;
  9383. font-family:'ArialMT', 'Arial', sans-serif;
  9384. font-weight:400;
  9385. font-style:normal;
  9386. font-size:11px;
  9387. letter-spacing:normal;
  9388. color:#AAAAAA;
  9389. vertical-align:none;
  9390. text-align:left;
  9391. text-transform:none;
  9392. background-color:transparent;
  9393. border-color:transparent;
  9394. }
  9395. #u97276_input.disabled {
  9396. position:absolute;
  9397. left:0px;
  9398. top:0px;
  9399. width:126px;
  9400. height:23px;
  9401. padding:2px 2px 2px 2px;
  9402. font-family:'ArialMT', 'Arial', sans-serif;
  9403. font-weight:400;
  9404. font-style:normal;
  9405. font-size:11px;
  9406. letter-spacing:normal;
  9407. color:#AAAAAA;
  9408. vertical-align:none;
  9409. text-align:left;
  9410. text-transform:none;
  9411. background-color:transparent;
  9412. border-color:transparent;
  9413. }
  9414. #u97276_div {
  9415. border-width:0px;
  9416. position:absolute;
  9417. left:0px;
  9418. top:0px;
  9419. width:126px;
  9420. height:23px;
  9421. background:inherit;
  9422. background-color:rgba(255, 255, 255, 1);
  9423. border:none;
  9424. border-radius:0px;
  9425. -moz-box-shadow:none;
  9426. -webkit-box-shadow:none;
  9427. box-shadow:none;
  9428. font-size:11px;
  9429. color:#AAAAAA;
  9430. }
  9431. #u97276 {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:658px;
  9435. top:205px;
  9436. width:126px;
  9437. height:23px;
  9438. display:flex;
  9439. font-size:11px;
  9440. color:#AAAAAA;
  9441. }
  9442. #u97276 .text {
  9443. position:absolute;
  9444. align-self:flex-start;
  9445. padding:2px 2px 2px 2px;
  9446. box-sizing:border-box;
  9447. width:100%;
  9448. }
  9449. #u97276_div.disabled {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:0px;
  9453. top:0px;
  9454. width:126px;
  9455. height:23px;
  9456. background:inherit;
  9457. background-color:rgba(240, 240, 240, 1);
  9458. border:none;
  9459. border-radius:0px;
  9460. -moz-box-shadow:none;
  9461. -webkit-box-shadow:none;
  9462. box-shadow:none;
  9463. font-size:11px;
  9464. color:#AAAAAA;
  9465. }
  9466. #u97276.disabled {
  9467. }
  9468. .u97276_input_option {
  9469. font-size:11px;
  9470. }
  9471. #u97277 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:0px;
  9475. top:0px;
  9476. width:0px;
  9477. height:0px;
  9478. }
  9479. #u97278_div {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:0px;
  9483. top:0px;
  9484. width:140px;
  9485. height:30px;
  9486. background:inherit;
  9487. background-color:rgba(255, 255, 255, 1);
  9488. box-sizing:border-box;
  9489. border-width:1px;
  9490. border-style:solid;
  9491. border-color:rgba(215, 215, 215, 1);
  9492. border-radius:4px;
  9493. -moz-box-shadow:none;
  9494. -webkit-box-shadow:none;
  9495. box-shadow:none;
  9496. font-size:11px;
  9497. }
  9498. #u97278 {
  9499. border-width:0px;
  9500. position:absolute;
  9501. left:951px;
  9502. top:121px;
  9503. width:140px;
  9504. height:30px;
  9505. display:flex;
  9506. font-size:11px;
  9507. }
  9508. #u97278 .text {
  9509. position:absolute;
  9510. align-self:center;
  9511. padding:2px 2px 2px 2px;
  9512. box-sizing:border-box;
  9513. width:100%;
  9514. }
  9515. #u97278_text {
  9516. border-width:0px;
  9517. word-wrap:break-word;
  9518. text-transform:none;
  9519. visibility:hidden;
  9520. }
  9521. #u97279_input {
  9522. position:absolute;
  9523. left:0px;
  9524. top:0px;
  9525. width:126px;
  9526. height:23px;
  9527. padding:2px 2px 2px 2px;
  9528. font-family:'ArialMT', 'Arial', sans-serif;
  9529. font-weight:400;
  9530. font-style:normal;
  9531. font-size:11px;
  9532. letter-spacing:normal;
  9533. color:#AAAAAA;
  9534. vertical-align:none;
  9535. text-align:left;
  9536. text-transform:none;
  9537. background-color:transparent;
  9538. border-color:transparent;
  9539. }
  9540. #u97279_input.disabled {
  9541. position:absolute;
  9542. left:0px;
  9543. top:0px;
  9544. width:126px;
  9545. height:23px;
  9546. padding:2px 2px 2px 2px;
  9547. font-family:'ArialMT', 'Arial', sans-serif;
  9548. font-weight:400;
  9549. font-style:normal;
  9550. font-size:11px;
  9551. letter-spacing:normal;
  9552. color:#AAAAAA;
  9553. vertical-align:none;
  9554. text-align:left;
  9555. text-transform:none;
  9556. background-color:transparent;
  9557. border-color:transparent;
  9558. }
  9559. #u97279_div {
  9560. border-width:0px;
  9561. position:absolute;
  9562. left:0px;
  9563. top:0px;
  9564. width:126px;
  9565. height:23px;
  9566. background:inherit;
  9567. background-color:rgba(255, 255, 255, 1);
  9568. border:none;
  9569. border-radius:0px;
  9570. -moz-box-shadow:none;
  9571. -webkit-box-shadow:none;
  9572. box-shadow:none;
  9573. font-size:11px;
  9574. color:#AAAAAA;
  9575. }
  9576. #u97279 {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:958px;
  9580. top:123px;
  9581. width:126px;
  9582. height:23px;
  9583. display:flex;
  9584. font-size:11px;
  9585. color:#AAAAAA;
  9586. }
  9587. #u97279 .text {
  9588. position:absolute;
  9589. align-self:flex-start;
  9590. padding:2px 2px 2px 2px;
  9591. box-sizing:border-box;
  9592. width:100%;
  9593. }
  9594. #u97279_div.disabled {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:0px;
  9598. top:0px;
  9599. width:126px;
  9600. height:23px;
  9601. background:inherit;
  9602. background-color:rgba(240, 240, 240, 1);
  9603. border:none;
  9604. border-radius:0px;
  9605. -moz-box-shadow:none;
  9606. -webkit-box-shadow:none;
  9607. box-shadow:none;
  9608. font-size:11px;
  9609. color:#AAAAAA;
  9610. }
  9611. #u97279.disabled {
  9612. }
  9613. .u97279_input_option {
  9614. font-size:11px;
  9615. }
  9616. #u97280 {
  9617. border-width:0px;
  9618. position:absolute;
  9619. left:0px;
  9620. top:0px;
  9621. width:0px;
  9622. height:0px;
  9623. }
  9624. #u97281_div {
  9625. border-width:0px;
  9626. position:absolute;
  9627. left:0px;
  9628. top:0px;
  9629. width:140px;
  9630. height:30px;
  9631. background:inherit;
  9632. background-color:rgba(255, 255, 255, 1);
  9633. box-sizing:border-box;
  9634. border-width:1px;
  9635. border-style:solid;
  9636. border-color:rgba(201, 201, 201, 1);
  9637. border-radius:4px;
  9638. -moz-box-shadow:none;
  9639. -webkit-box-shadow:none;
  9640. box-shadow:none;
  9641. font-family:'Microsoft YaHei', sans-serif;
  9642. font-weight:400;
  9643. font-style:normal;
  9644. font-size:14px;
  9645. color:#CCCCCC;
  9646. text-align:left;
  9647. }
  9648. #u97281 {
  9649. border-width:0px;
  9650. position:absolute;
  9651. left:1551px;
  9652. top:121px;
  9653. width:140px;
  9654. height:30px;
  9655. display:flex;
  9656. font-family:'Microsoft YaHei', sans-serif;
  9657. font-weight:400;
  9658. font-style:normal;
  9659. font-size:14px;
  9660. color:#CCCCCC;
  9661. text-align:left;
  9662. }
  9663. #u97281 .text {
  9664. position:absolute;
  9665. align-self:center;
  9666. padding:2px 8px 2px 8px;
  9667. box-sizing:border-box;
  9668. width:100%;
  9669. }
  9670. #u97281_text {
  9671. border-width:0px;
  9672. word-wrap:break-word;
  9673. text-transform:none;
  9674. visibility:hidden;
  9675. }
  9676. #u97282_input {
  9677. position:absolute;
  9678. left:0px;
  9679. top:0px;
  9680. width:127px;
  9681. height:25px;
  9682. padding:2px 2px 2px 2px;
  9683. font-family:'Microsoft YaHei', sans-serif;
  9684. font-weight:400;
  9685. font-style:normal;
  9686. font-size:10px;
  9687. letter-spacing:normal;
  9688. color:#000000;
  9689. vertical-align:none;
  9690. text-align:left;
  9691. text-transform:none;
  9692. background-color:transparent;
  9693. border-color:transparent;
  9694. }
  9695. #u97282_input.disabled {
  9696. position:absolute;
  9697. left:0px;
  9698. top:0px;
  9699. width:127px;
  9700. height:25px;
  9701. padding:2px 2px 2px 2px;
  9702. font-family:'Microsoft YaHei', sans-serif;
  9703. font-weight:400;
  9704. font-style:normal;
  9705. font-size:10px;
  9706. letter-spacing:normal;
  9707. color:#000000;
  9708. vertical-align:none;
  9709. text-align:left;
  9710. text-transform:none;
  9711. background-color:transparent;
  9712. border-color:transparent;
  9713. }
  9714. #u97282_div {
  9715. border-width:0px;
  9716. position:absolute;
  9717. left:0px;
  9718. top:0px;
  9719. width:127px;
  9720. height:25px;
  9721. background:inherit;
  9722. background-color:rgba(255, 255, 255, 1);
  9723. border:none;
  9724. border-radius:0px;
  9725. -moz-box-shadow:none;
  9726. -webkit-box-shadow:none;
  9727. box-shadow:none;
  9728. font-family:'Microsoft YaHei', sans-serif;
  9729. font-weight:400;
  9730. font-style:normal;
  9731. font-size:10px;
  9732. }
  9733. #u97282 {
  9734. border-width:0px;
  9735. position:absolute;
  9736. left:1559px;
  9737. top:122px;
  9738. width:127px;
  9739. height:25px;
  9740. display:flex;
  9741. font-family:'Microsoft YaHei', sans-serif;
  9742. font-weight:400;
  9743. font-style:normal;
  9744. font-size:10px;
  9745. }
  9746. #u97282 .text {
  9747. position:absolute;
  9748. align-self:center;
  9749. padding:2px 2px 2px 2px;
  9750. box-sizing:border-box;
  9751. width:100%;
  9752. }
  9753. #u97282_div.disabled {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:127px;
  9759. height:25px;
  9760. background:inherit;
  9761. background-color:rgba(240, 240, 240, 1);
  9762. border:none;
  9763. border-radius:0px;
  9764. -moz-box-shadow:none;
  9765. -webkit-box-shadow:none;
  9766. box-shadow:none;
  9767. font-family:'Microsoft YaHei', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:10px;
  9771. }
  9772. #u97282.disabled {
  9773. }
  9774. #u97283_div {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:0px;
  9778. top:0px;
  9779. width:971px;
  9780. height:145px;
  9781. background:inherit;
  9782. background-color:rgba(255, 255, 255, 0);
  9783. box-sizing:border-box;
  9784. border-width:1px;
  9785. border-style:solid;
  9786. border-color:rgba(217, 0, 27, 1);
  9787. border-radius:3px;
  9788. -moz-box-shadow:none;
  9789. -webkit-box-shadow:none;
  9790. box-shadow:none;
  9791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9792. font-weight:400;
  9793. font-style:normal;
  9794. color:#D9001B;
  9795. line-height:25px;
  9796. }
  9797. #u97283 {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:370px;
  9801. top:678px;
  9802. width:971px;
  9803. height:145px;
  9804. display:flex;
  9805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9806. font-weight:400;
  9807. font-style:normal;
  9808. color:#D9001B;
  9809. line-height:25px;
  9810. }
  9811. #u97283 .text {
  9812. position:absolute;
  9813. align-self:flex-start;
  9814. padding:10px 10px 10px 10px;
  9815. box-sizing:border-box;
  9816. width:100%;
  9817. }
  9818. #u97283_text {
  9819. border-width:0px;
  9820. white-space:nowrap;
  9821. text-transform:none;
  9822. }
  9823. #u97284_div {
  9824. border-width:0px;
  9825. position:absolute;
  9826. left:0px;
  9827. top:0px;
  9828. width:79px;
  9829. height:30px;
  9830. background:inherit;
  9831. background-color:rgba(255, 255, 255, 1);
  9832. box-sizing:border-box;
  9833. border-width:1px;
  9834. border-style:solid;
  9835. border-color:rgba(170, 170, 170, 1);
  9836. border-radius:4px;
  9837. -moz-box-shadow:none;
  9838. -webkit-box-shadow:none;
  9839. box-shadow:none;
  9840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9841. font-weight:400;
  9842. font-style:normal;
  9843. font-size:12px;
  9844. color:#555555;
  9845. }
  9846. #u97284 {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:1612px;
  9850. top:251px;
  9851. width:79px;
  9852. height:30px;
  9853. display:flex;
  9854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9855. font-weight:400;
  9856. font-style:normal;
  9857. font-size:12px;
  9858. color:#555555;
  9859. }
  9860. #u97284 .text {
  9861. position:absolute;
  9862. align-self:center;
  9863. padding:5px 15px 5px 15px;
  9864. box-sizing:border-box;
  9865. width:100%;
  9866. }
  9867. #u97284_text {
  9868. border-width:0px;
  9869. white-space:nowrap;
  9870. text-transform:none;
  9871. }
  9872. #u97285 {
  9873. border-width:0px;
  9874. position:absolute;
  9875. left:0px;
  9876. top:0px;
  9877. width:0px;
  9878. height:0px;
  9879. }
  9880. #u97286_div {
  9881. border-width:0px;
  9882. position:absolute;
  9883. left:0px;
  9884. top:0px;
  9885. width:200px;
  9886. height:1702px;
  9887. background:inherit;
  9888. background-color:rgba(255, 255, 255, 1);
  9889. box-sizing:border-box;
  9890. border-width:1px;
  9891. border-style:solid;
  9892. border-color:rgba(215, 215, 215, 1);
  9893. border-radius:0px;
  9894. -moz-box-shadow:none;
  9895. -webkit-box-shadow:none;
  9896. box-shadow:none;
  9897. }
  9898. #u97286 {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:120px;
  9902. top:50px;
  9903. width:200px;
  9904. height:1702px;
  9905. display:flex;
  9906. }
  9907. #u97286 .text {
  9908. position:absolute;
  9909. align-self:center;
  9910. padding:2px 2px 2px 2px;
  9911. box-sizing:border-box;
  9912. width:100%;
  9913. }
  9914. #u97286_text {
  9915. border-width:0px;
  9916. word-wrap:break-word;
  9917. text-transform:none;
  9918. visibility:hidden;
  9919. }
  9920. #u97287_div {
  9921. border-width:0px;
  9922. position:absolute;
  9923. left:0px;
  9924. top:0px;
  9925. width:200px;
  9926. height:60px;
  9927. background:inherit;
  9928. background-color:rgba(224, 231, 247, 1);
  9929. border:none;
  9930. border-radius:0px;
  9931. -moz-box-shadow:none;
  9932. -webkit-box-shadow:none;
  9933. box-shadow:none;
  9934. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9935. font-weight:500;
  9936. font-style:normal;
  9937. font-size:18px;
  9938. }
  9939. #u97287 {
  9940. border-width:0px;
  9941. position:absolute;
  9942. left:120px;
  9943. top:50px;
  9944. width:200px;
  9945. height:60px;
  9946. display:flex;
  9947. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9948. font-weight:500;
  9949. font-style:normal;
  9950. font-size:18px;
  9951. }
  9952. #u97287 .text {
  9953. position:absolute;
  9954. align-self:center;
  9955. padding:0px 0px 0px 20px;
  9956. box-sizing:border-box;
  9957. width:100%;
  9958. }
  9959. #u97287_text {
  9960. border-width:0px;
  9961. word-wrap:break-word;
  9962. text-transform:none;
  9963. }
  9964. #u97288_img {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:0px;
  9968. top:0px;
  9969. width:201px;
  9970. height:2px;
  9971. }
  9972. #u97288 {
  9973. border-width:0px;
  9974. position:absolute;
  9975. left:120px;
  9976. top:1180px;
  9977. width:200px;
  9978. height:1px;
  9979. display:flex;
  9980. }
  9981. #u97288 .text {
  9982. position:absolute;
  9983. align-self:center;
  9984. padding:2px 2px 2px 2px;
  9985. box-sizing:border-box;
  9986. width:100%;
  9987. }
  9988. #u97288_text {
  9989. border-width:0px;
  9990. word-wrap:break-word;
  9991. text-transform:none;
  9992. visibility:hidden;
  9993. }
  9994. #u97289_div {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:0px;
  9998. top:0px;
  9999. width:97px;
  10000. height:22px;
  10001. background:inherit;
  10002. background-color:rgba(255, 255, 255, 0);
  10003. border:none;
  10004. border-radius:0px;
  10005. -moz-box-shadow:none;
  10006. -webkit-box-shadow:none;
  10007. box-shadow:none;
  10008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10009. font-weight:400;
  10010. font-style:normal;
  10011. font-size:16px;
  10012. }
  10013. #u97289 {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:147px;
  10017. top:1459px;
  10018. width:97px;
  10019. height:22px;
  10020. display:flex;
  10021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10022. font-weight:400;
  10023. font-style:normal;
  10024. font-size:16px;
  10025. }
  10026. #u97289 .text {
  10027. position:absolute;
  10028. align-self:flex-start;
  10029. padding:0px 0px 0px 0px;
  10030. box-sizing:border-box;
  10031. width:100%;
  10032. }
  10033. #u97289_text {
  10034. border-width:0px;
  10035. word-wrap:break-word;
  10036. text-transform:none;
  10037. }
  10038. #u97290_div {
  10039. border-width:0px;
  10040. position:absolute;
  10041. left:0px;
  10042. top:0px;
  10043. width:49px;
  10044. height:17px;
  10045. background:inherit;
  10046. background-color:rgba(255, 255, 255, 0);
  10047. border:none;
  10048. border-radius:0px;
  10049. -moz-box-shadow:none;
  10050. -webkit-box-shadow:none;
  10051. box-shadow:none;
  10052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10053. font-weight:400;
  10054. font-style:normal;
  10055. font-size:12px;
  10056. color:#AAAAAA;
  10057. }
  10058. #u97290 {
  10059. border-width:0px;
  10060. position:absolute;
  10061. left:147px;
  10062. top:1423px;
  10063. width:49px;
  10064. height:17px;
  10065. display:flex;
  10066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10067. font-weight:400;
  10068. font-style:normal;
  10069. font-size:12px;
  10070. color:#AAAAAA;
  10071. }
  10072. #u97290 .text {
  10073. position:absolute;
  10074. align-self:flex-start;
  10075. padding:0px 0px 0px 0px;
  10076. box-sizing:border-box;
  10077. width:100%;
  10078. }
  10079. #u97290_text {
  10080. border-width:0px;
  10081. white-space:nowrap;
  10082. text-transform:none;
  10083. }
  10084. #u97291_div {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:97px;
  10090. height:22px;
  10091. background:inherit;
  10092. background-color:rgba(255, 255, 255, 0);
  10093. border:none;
  10094. border-radius:0px;
  10095. -moz-box-shadow:none;
  10096. -webkit-box-shadow:none;
  10097. box-shadow:none;
  10098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10099. font-weight:400;
  10100. font-style:normal;
  10101. font-size:16px;
  10102. }
  10103. #u97291 {
  10104. border-width:0px;
  10105. position:absolute;
  10106. left:147px;
  10107. top:340px;
  10108. width:97px;
  10109. height:22px;
  10110. display:flex;
  10111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10112. font-weight:400;
  10113. font-style:normal;
  10114. font-size:16px;
  10115. }
  10116. #u97291 .text {
  10117. position:absolute;
  10118. align-self:flex-start;
  10119. padding:0px 0px 0px 0px;
  10120. box-sizing:border-box;
  10121. width:100%;
  10122. }
  10123. #u97291_text {
  10124. border-width:0px;
  10125. word-wrap:break-word;
  10126. text-transform:none;
  10127. }
  10128. #u97292_div {
  10129. border-width:0px;
  10130. position:absolute;
  10131. left:0px;
  10132. top:0px;
  10133. width:97px;
  10134. height:22px;
  10135. background:inherit;
  10136. background-color:rgba(255, 255, 255, 0);
  10137. border:none;
  10138. border-radius:0px;
  10139. -moz-box-shadow:none;
  10140. -webkit-box-shadow:none;
  10141. box-shadow:none;
  10142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10143. font-weight:400;
  10144. font-style:normal;
  10145. font-size:16px;
  10146. }
  10147. #u97292 {
  10148. border-width:0px;
  10149. position:absolute;
  10150. left:147px;
  10151. top:424px;
  10152. width:97px;
  10153. height:22px;
  10154. display:flex;
  10155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10156. font-weight:400;
  10157. font-style:normal;
  10158. font-size:16px;
  10159. }
  10160. #u97292 .text {
  10161. position:absolute;
  10162. align-self:flex-start;
  10163. padding:0px 0px 0px 0px;
  10164. box-sizing:border-box;
  10165. width:100%;
  10166. }
  10167. #u97292_text {
  10168. border-width:0px;
  10169. word-wrap:break-word;
  10170. text-transform:none;
  10171. }
  10172. #u97293_div {
  10173. border-width:0px;
  10174. position:absolute;
  10175. left:0px;
  10176. top:0px;
  10177. width:97px;
  10178. height:22px;
  10179. background:inherit;
  10180. background-color:rgba(255, 255, 255, 0);
  10181. border:none;
  10182. border-radius:0px;
  10183. -moz-box-shadow:none;
  10184. -webkit-box-shadow:none;
  10185. box-shadow:none;
  10186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10187. font-weight:400;
  10188. font-style:normal;
  10189. font-size:16px;
  10190. }
  10191. #u97293 {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:147px;
  10195. top:1501px;
  10196. width:97px;
  10197. height:22px;
  10198. display:flex;
  10199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10200. font-weight:400;
  10201. font-style:normal;
  10202. font-size:16px;
  10203. }
  10204. #u97293 .text {
  10205. position:absolute;
  10206. align-self:flex-start;
  10207. padding:0px 0px 0px 0px;
  10208. box-sizing:border-box;
  10209. width:100%;
  10210. }
  10211. #u97293_text {
  10212. border-width:0px;
  10213. word-wrap:break-word;
  10214. text-transform:none;
  10215. }
  10216. #u97294_div {
  10217. border-width:0px;
  10218. position:absolute;
  10219. left:0px;
  10220. top:0px;
  10221. width:129px;
  10222. height:22px;
  10223. background:inherit;
  10224. background-color:rgba(255, 255, 255, 0);
  10225. border:none;
  10226. border-radius:0px;
  10227. -moz-box-shadow:none;
  10228. -webkit-box-shadow:none;
  10229. box-shadow:none;
  10230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10231. font-weight:400;
  10232. font-style:normal;
  10233. font-size:16px;
  10234. }
  10235. #u97294 {
  10236. border-width:0px;
  10237. position:absolute;
  10238. left:147px;
  10239. top:1543px;
  10240. width:129px;
  10241. height:22px;
  10242. display:flex;
  10243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10244. font-weight:400;
  10245. font-style:normal;
  10246. font-size:16px;
  10247. }
  10248. #u97294 .text {
  10249. position:absolute;
  10250. align-self:flex-start;
  10251. padding:0px 0px 0px 0px;
  10252. box-sizing:border-box;
  10253. width:100%;
  10254. }
  10255. #u97294_text {
  10256. border-width:0px;
  10257. white-space:nowrap;
  10258. text-transform:none;
  10259. }
  10260. #u97295_div {
  10261. border-width:0px;
  10262. position:absolute;
  10263. left:0px;
  10264. top:0px;
  10265. width:49px;
  10266. height:17px;
  10267. background:inherit;
  10268. background-color:rgba(255, 255, 255, 0);
  10269. border:none;
  10270. border-radius:0px;
  10271. -moz-box-shadow:none;
  10272. -webkit-box-shadow:none;
  10273. box-shadow:none;
  10274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10275. font-weight:400;
  10276. font-style:normal;
  10277. font-size:12px;
  10278. color:#AAAAAA;
  10279. }
  10280. #u97295 {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:147px;
  10284. top:120px;
  10285. width:49px;
  10286. height:17px;
  10287. display:flex;
  10288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10289. font-weight:400;
  10290. font-style:normal;
  10291. font-size:12px;
  10292. color:#AAAAAA;
  10293. }
  10294. #u97295 .text {
  10295. position:absolute;
  10296. align-self:flex-start;
  10297. padding:0px 0px 0px 0px;
  10298. box-sizing:border-box;
  10299. width:100%;
  10300. }
  10301. #u97295_text {
  10302. border-width:0px;
  10303. white-space:nowrap;
  10304. text-transform:none;
  10305. }
  10306. #u97296_div {
  10307. border-width:0px;
  10308. position:absolute;
  10309. left:0px;
  10310. top:0px;
  10311. width:97px;
  10312. height:22px;
  10313. background:inherit;
  10314. background-color:rgba(255, 255, 255, 0);
  10315. border:none;
  10316. border-radius:0px;
  10317. -moz-box-shadow:none;
  10318. -webkit-box-shadow:none;
  10319. box-shadow:none;
  10320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10321. font-weight:400;
  10322. font-style:normal;
  10323. font-size:16px;
  10324. }
  10325. #u97296 {
  10326. border-width:0px;
  10327. position:absolute;
  10328. left:147px;
  10329. top:157px;
  10330. width:97px;
  10331. height:22px;
  10332. display:flex;
  10333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10334. font-weight:400;
  10335. font-style:normal;
  10336. font-size:16px;
  10337. }
  10338. #u97296 .text {
  10339. position:absolute;
  10340. align-self:flex-start;
  10341. padding:0px 0px 0px 0px;
  10342. box-sizing:border-box;
  10343. width:100%;
  10344. }
  10345. #u97296_text {
  10346. border-width:0px;
  10347. word-wrap:break-word;
  10348. text-transform:none;
  10349. }
  10350. #u97297_img {
  10351. border-width:0px;
  10352. position:absolute;
  10353. left:0px;
  10354. top:0px;
  10355. width:201px;
  10356. height:2px;
  10357. }
  10358. #u97297 {
  10359. border-width:0px;
  10360. position:absolute;
  10361. left:120px;
  10362. top:241px;
  10363. width:200px;
  10364. height:1px;
  10365. display:flex;
  10366. }
  10367. #u97297 .text {
  10368. position:absolute;
  10369. align-self:center;
  10370. padding:2px 2px 2px 2px;
  10371. box-sizing:border-box;
  10372. width:100%;
  10373. }
  10374. #u97297_text {
  10375. border-width:0px;
  10376. word-wrap:break-word;
  10377. text-transform:none;
  10378. visibility:hidden;
  10379. }
  10380. #u97298_div {
  10381. border-width:0px;
  10382. position:absolute;
  10383. left:0px;
  10384. top:0px;
  10385. width:49px;
  10386. height:17px;
  10387. background:inherit;
  10388. background-color:rgba(255, 255, 255, 0);
  10389. border:none;
  10390. border-radius:0px;
  10391. -moz-box-shadow:none;
  10392. -webkit-box-shadow:none;
  10393. box-shadow:none;
  10394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10395. font-weight:400;
  10396. font-style:normal;
  10397. font-size:12px;
  10398. color:#AAAAAA;
  10399. }
  10400. #u97298 {
  10401. border-width:0px;
  10402. position:absolute;
  10403. left:147px;
  10404. top:261px;
  10405. width:49px;
  10406. height:17px;
  10407. display:flex;
  10408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10409. font-weight:400;
  10410. font-style:normal;
  10411. font-size:12px;
  10412. color:#AAAAAA;
  10413. }
  10414. #u97298 .text {
  10415. position:absolute;
  10416. align-self:flex-start;
  10417. padding:0px 0px 0px 0px;
  10418. box-sizing:border-box;
  10419. width:100%;
  10420. }
  10421. #u97298_text {
  10422. border-width:0px;
  10423. white-space:nowrap;
  10424. text-transform:none;
  10425. }
  10426. #u97299_div {
  10427. border-width:0px;
  10428. position:absolute;
  10429. left:0px;
  10430. top:0px;
  10431. width:97px;
  10432. height:22px;
  10433. background:inherit;
  10434. background-color:rgba(255, 255, 255, 0);
  10435. border:none;
  10436. border-radius:0px;
  10437. -moz-box-shadow:none;
  10438. -webkit-box-shadow:none;
  10439. box-shadow:none;
  10440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10441. font-weight:400;
  10442. font-style:normal;
  10443. font-size:16px;
  10444. }
  10445. #u97299 {
  10446. border-width:0px;
  10447. position:absolute;
  10448. left:147px;
  10449. top:298px;
  10450. width:97px;
  10451. height:22px;
  10452. display:flex;
  10453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10454. font-weight:400;
  10455. font-style:normal;
  10456. font-size:16px;
  10457. }
  10458. #u97299 .text {
  10459. position:absolute;
  10460. align-self:flex-start;
  10461. padding:0px 0px 0px 0px;
  10462. box-sizing:border-box;
  10463. width:100%;
  10464. }
  10465. #u97299_text {
  10466. border-width:0px;
  10467. word-wrap:break-word;
  10468. text-transform:none;
  10469. }
  10470. #u97300_div {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:0px;
  10474. top:0px;
  10475. width:97px;
  10476. height:22px;
  10477. background:inherit;
  10478. background-color:rgba(255, 255, 255, 0);
  10479. border:none;
  10480. border-radius:0px;
  10481. -moz-box-shadow:none;
  10482. -webkit-box-shadow:none;
  10483. box-shadow:none;
  10484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10485. font-weight:400;
  10486. font-style:normal;
  10487. font-size:16px;
  10488. }
  10489. #u97300 {
  10490. border-width:0px;
  10491. position:absolute;
  10492. left:147px;
  10493. top:199px;
  10494. width:97px;
  10495. height:22px;
  10496. display:flex;
  10497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10498. font-weight:400;
  10499. font-style:normal;
  10500. font-size:16px;
  10501. }
  10502. #u97300 .text {
  10503. position:absolute;
  10504. align-self:flex-start;
  10505. padding:0px 0px 0px 0px;
  10506. box-sizing:border-box;
  10507. width:100%;
  10508. }
  10509. #u97300_text {
  10510. border-width:0px;
  10511. word-wrap:break-word;
  10512. text-transform:none;
  10513. }
  10514. #u97301_div {
  10515. border-width:0px;
  10516. position:absolute;
  10517. left:0px;
  10518. top:0px;
  10519. width:97px;
  10520. height:22px;
  10521. background:inherit;
  10522. background-color:rgba(255, 255, 255, 0);
  10523. border:none;
  10524. border-radius:0px;
  10525. -moz-box-shadow:none;
  10526. -webkit-box-shadow:none;
  10527. box-shadow:none;
  10528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10529. font-weight:400;
  10530. font-style:normal;
  10531. font-size:16px;
  10532. }
  10533. #u97301 {
  10534. border-width:0px;
  10535. position:absolute;
  10536. left:147px;
  10537. top:382px;
  10538. width:97px;
  10539. height:22px;
  10540. display:flex;
  10541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10542. font-weight:400;
  10543. font-style:normal;
  10544. font-size:16px;
  10545. }
  10546. #u97301 .text {
  10547. position:absolute;
  10548. align-self:flex-start;
  10549. padding:0px 0px 0px 0px;
  10550. box-sizing:border-box;
  10551. width:100%;
  10552. }
  10553. #u97301_text {
  10554. border-width:0px;
  10555. word-wrap:break-word;
  10556. text-transform:none;
  10557. }
  10558. #u97302_div {
  10559. border-width:0px;
  10560. position:absolute;
  10561. left:0px;
  10562. top:0px;
  10563. width:97px;
  10564. height:22px;
  10565. background:inherit;
  10566. background-color:rgba(255, 255, 255, 0);
  10567. border:none;
  10568. border-radius:0px;
  10569. -moz-box-shadow:none;
  10570. -webkit-box-shadow:none;
  10571. box-shadow:none;
  10572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10573. font-weight:400;
  10574. font-style:normal;
  10575. font-size:16px;
  10576. }
  10577. #u97302 {
  10578. border-width:0px;
  10579. position:absolute;
  10580. left:147px;
  10581. top:466px;
  10582. width:97px;
  10583. height:22px;
  10584. display:flex;
  10585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10586. font-weight:400;
  10587. font-style:normal;
  10588. font-size:16px;
  10589. }
  10590. #u97302 .text {
  10591. position:absolute;
  10592. align-self:flex-start;
  10593. padding:0px 0px 0px 0px;
  10594. box-sizing:border-box;
  10595. width:100%;
  10596. }
  10597. #u97302_text {
  10598. border-width:0px;
  10599. word-wrap:break-word;
  10600. text-transform:none;
  10601. }
  10602. #u97303_div {
  10603. border-width:0px;
  10604. position:absolute;
  10605. left:0px;
  10606. top:0px;
  10607. width:97px;
  10608. height:22px;
  10609. background:inherit;
  10610. background-color:rgba(255, 255, 255, 0);
  10611. border:none;
  10612. border-radius:0px;
  10613. -moz-box-shadow:none;
  10614. -webkit-box-shadow:none;
  10615. box-shadow:none;
  10616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10617. font-weight:400;
  10618. font-style:normal;
  10619. font-size:16px;
  10620. }
  10621. #u97303 {
  10622. border-width:0px;
  10623. position:absolute;
  10624. left:147px;
  10625. top:508px;
  10626. width:97px;
  10627. height:22px;
  10628. display:flex;
  10629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10630. font-weight:400;
  10631. font-style:normal;
  10632. font-size:16px;
  10633. }
  10634. #u97303 .text {
  10635. position:absolute;
  10636. align-self:flex-start;
  10637. padding:0px 0px 0px 0px;
  10638. box-sizing:border-box;
  10639. width:100%;
  10640. }
  10641. #u97303_text {
  10642. border-width:0px;
  10643. word-wrap:break-word;
  10644. text-transform:none;
  10645. }
  10646. #u97304_div {
  10647. border-width:0px;
  10648. position:absolute;
  10649. left:0px;
  10650. top:0px;
  10651. width:97px;
  10652. height:22px;
  10653. background:inherit;
  10654. background-color:rgba(255, 255, 255, 0);
  10655. border:none;
  10656. border-radius:0px;
  10657. -moz-box-shadow:none;
  10658. -webkit-box-shadow:none;
  10659. box-shadow:none;
  10660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10661. font-weight:400;
  10662. font-style:normal;
  10663. font-size:16px;
  10664. }
  10665. #u97304 {
  10666. border-width:0px;
  10667. position:absolute;
  10668. left:147px;
  10669. top:550px;
  10670. width:97px;
  10671. height:22px;
  10672. display:flex;
  10673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10674. font-weight:400;
  10675. font-style:normal;
  10676. font-size:16px;
  10677. }
  10678. #u97304 .text {
  10679. position:absolute;
  10680. align-self:flex-start;
  10681. padding:0px 0px 0px 0px;
  10682. box-sizing:border-box;
  10683. width:100%;
  10684. }
  10685. #u97304_text {
  10686. border-width:0px;
  10687. word-wrap:break-word;
  10688. text-transform:none;
  10689. }
  10690. #u97305_div {
  10691. border-width:0px;
  10692. position:absolute;
  10693. left:0px;
  10694. top:0px;
  10695. width:97px;
  10696. height:22px;
  10697. background:inherit;
  10698. background-color:rgba(255, 255, 255, 0);
  10699. border:none;
  10700. border-radius:0px;
  10701. -moz-box-shadow:none;
  10702. -webkit-box-shadow:none;
  10703. box-shadow:none;
  10704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10705. font-weight:400;
  10706. font-style:normal;
  10707. font-size:16px;
  10708. }
  10709. #u97305 {
  10710. border-width:0px;
  10711. position:absolute;
  10712. left:147px;
  10713. top:592px;
  10714. width:97px;
  10715. height:22px;
  10716. display:flex;
  10717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10718. font-weight:400;
  10719. font-style:normal;
  10720. font-size:16px;
  10721. }
  10722. #u97305 .text {
  10723. position:absolute;
  10724. align-self:flex-start;
  10725. padding:0px 0px 0px 0px;
  10726. box-sizing:border-box;
  10727. width:100%;
  10728. }
  10729. #u97305_text {
  10730. border-width:0px;
  10731. word-wrap:break-word;
  10732. text-transform:none;
  10733. }
  10734. #u97306_div {
  10735. border-width:0px;
  10736. position:absolute;
  10737. left:0px;
  10738. top:0px;
  10739. width:97px;
  10740. height:22px;
  10741. background:inherit;
  10742. background-color:rgba(255, 255, 255, 0);
  10743. border:none;
  10744. border-radius:0px;
  10745. -moz-box-shadow:none;
  10746. -webkit-box-shadow:none;
  10747. box-shadow:none;
  10748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10749. font-weight:400;
  10750. font-style:normal;
  10751. font-size:16px;
  10752. }
  10753. #u97306 {
  10754. border-width:0px;
  10755. position:absolute;
  10756. left:147px;
  10757. top:634px;
  10758. width:97px;
  10759. height:22px;
  10760. display:flex;
  10761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10762. font-weight:400;
  10763. font-style:normal;
  10764. font-size:16px;
  10765. }
  10766. #u97306 .text {
  10767. position:absolute;
  10768. align-self:flex-start;
  10769. padding:0px 0px 0px 0px;
  10770. box-sizing:border-box;
  10771. width:100%;
  10772. }
  10773. #u97306_text {
  10774. border-width:0px;
  10775. word-wrap:break-word;
  10776. text-transform:none;
  10777. }
  10778. #u97307_img {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:0px;
  10782. top:0px;
  10783. width:201px;
  10784. height:2px;
  10785. }
  10786. #u97307 {
  10787. border-width:0px;
  10788. position:absolute;
  10789. left:120px;
  10790. top:680px;
  10791. width:200px;
  10792. height:1px;
  10793. display:flex;
  10794. }
  10795. #u97307 .text {
  10796. position:absolute;
  10797. align-self:center;
  10798. padding:2px 2px 2px 2px;
  10799. box-sizing:border-box;
  10800. width:100%;
  10801. }
  10802. #u97307_text {
  10803. border-width:0px;
  10804. word-wrap:break-word;
  10805. text-transform:none;
  10806. visibility:hidden;
  10807. }
  10808. #u97308_div {
  10809. border-width:0px;
  10810. position:absolute;
  10811. left:0px;
  10812. top:0px;
  10813. width:49px;
  10814. height:17px;
  10815. background:inherit;
  10816. background-color:rgba(255, 255, 255, 0);
  10817. border:none;
  10818. border-radius:0px;
  10819. -moz-box-shadow:none;
  10820. -webkit-box-shadow:none;
  10821. box-shadow:none;
  10822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10823. font-weight:400;
  10824. font-style:normal;
  10825. font-size:12px;
  10826. color:#AAAAAA;
  10827. }
  10828. #u97308 {
  10829. border-width:0px;
  10830. position:absolute;
  10831. left:147px;
  10832. top:886px;
  10833. width:49px;
  10834. height:17px;
  10835. display:flex;
  10836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10837. font-weight:400;
  10838. font-style:normal;
  10839. font-size:12px;
  10840. color:#AAAAAA;
  10841. }
  10842. #u97308 .text {
  10843. position:absolute;
  10844. align-self:flex-start;
  10845. padding:0px 0px 0px 0px;
  10846. box-sizing:border-box;
  10847. width:100%;
  10848. }
  10849. #u97308_text {
  10850. border-width:0px;
  10851. white-space:nowrap;
  10852. text-transform:none;
  10853. }
  10854. #u97309_div {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:0px;
  10858. top:0px;
  10859. width:113px;
  10860. height:22px;
  10861. background:inherit;
  10862. background-color:rgba(255, 255, 255, 0);
  10863. border:none;
  10864. border-radius:0px;
  10865. -moz-box-shadow:none;
  10866. -webkit-box-shadow:none;
  10867. box-shadow:none;
  10868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10869. font-weight:400;
  10870. font-style:normal;
  10871. font-size:16px;
  10872. }
  10873. #u97309 {
  10874. border-width:0px;
  10875. position:absolute;
  10876. left:147px;
  10877. top:923px;
  10878. width:113px;
  10879. height:22px;
  10880. display:flex;
  10881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10882. font-weight:400;
  10883. font-style:normal;
  10884. font-size:16px;
  10885. }
  10886. #u97309 .text {
  10887. position:absolute;
  10888. align-self:flex-start;
  10889. padding:0px 0px 0px 0px;
  10890. box-sizing:border-box;
  10891. width:100%;
  10892. }
  10893. #u97309_text {
  10894. border-width:0px;
  10895. white-space:nowrap;
  10896. text-transform:none;
  10897. }
  10898. #u97310_div {
  10899. border-width:0px;
  10900. position:absolute;
  10901. left:0px;
  10902. top:0px;
  10903. width:145px;
  10904. height:22px;
  10905. background:inherit;
  10906. background-color:rgba(255, 255, 255, 0);
  10907. border:none;
  10908. border-radius:0px;
  10909. -moz-box-shadow:none;
  10910. -webkit-box-shadow:none;
  10911. box-shadow:none;
  10912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10913. font-weight:400;
  10914. font-style:normal;
  10915. font-size:16px;
  10916. }
  10917. #u97310 {
  10918. border-width:0px;
  10919. position:absolute;
  10920. left:147px;
  10921. top:965px;
  10922. width:145px;
  10923. height:22px;
  10924. display:flex;
  10925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10926. font-weight:400;
  10927. font-style:normal;
  10928. font-size:16px;
  10929. }
  10930. #u97310 .text {
  10931. position:absolute;
  10932. align-self:flex-start;
  10933. padding:0px 0px 0px 0px;
  10934. box-sizing:border-box;
  10935. width:100%;
  10936. }
  10937. #u97310_text {
  10938. border-width:0px;
  10939. white-space:nowrap;
  10940. text-transform:none;
  10941. }
  10942. #u97311_div {
  10943. border-width:0px;
  10944. position:absolute;
  10945. left:0px;
  10946. top:0px;
  10947. width:145px;
  10948. height:22px;
  10949. background:inherit;
  10950. background-color:rgba(255, 255, 255, 0);
  10951. border:none;
  10952. border-radius:0px;
  10953. -moz-box-shadow:none;
  10954. -webkit-box-shadow:none;
  10955. box-shadow:none;
  10956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10957. font-weight:400;
  10958. font-style:normal;
  10959. font-size:16px;
  10960. }
  10961. #u97311 {
  10962. border-width:0px;
  10963. position:absolute;
  10964. left:147px;
  10965. top:1007px;
  10966. width:145px;
  10967. height:22px;
  10968. display:flex;
  10969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10970. font-weight:400;
  10971. font-style:normal;
  10972. font-size:16px;
  10973. }
  10974. #u97311 .text {
  10975. position:absolute;
  10976. align-self:flex-start;
  10977. padding:0px 0px 0px 0px;
  10978. box-sizing:border-box;
  10979. width:100%;
  10980. }
  10981. #u97311_text {
  10982. border-width:0px;
  10983. white-space:nowrap;
  10984. text-transform:none;
  10985. }
  10986. #u97312_div {
  10987. border-width:0px;
  10988. position:absolute;
  10989. left:0px;
  10990. top:0px;
  10991. width:145px;
  10992. height:22px;
  10993. background:inherit;
  10994. background-color:rgba(255, 255, 255, 0);
  10995. border:none;
  10996. border-radius:0px;
  10997. -moz-box-shadow:none;
  10998. -webkit-box-shadow:none;
  10999. box-shadow:none;
  11000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11001. font-weight:400;
  11002. font-style:normal;
  11003. font-size:16px;
  11004. }
  11005. #u97312 {
  11006. border-width:0px;
  11007. position:absolute;
  11008. left:147px;
  11009. top:1049px;
  11010. width:145px;
  11011. height:22px;
  11012. display:flex;
  11013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11014. font-weight:400;
  11015. font-style:normal;
  11016. font-size:16px;
  11017. }
  11018. #u97312 .text {
  11019. position:absolute;
  11020. align-self:flex-start;
  11021. padding:0px 0px 0px 0px;
  11022. box-sizing:border-box;
  11023. width:100%;
  11024. }
  11025. #u97312_text {
  11026. border-width:0px;
  11027. white-space:nowrap;
  11028. text-transform:none;
  11029. }
  11030. #u97313_div {
  11031. border-width:0px;
  11032. position:absolute;
  11033. left:0px;
  11034. top:0px;
  11035. width:145px;
  11036. height:22px;
  11037. background:inherit;
  11038. background-color:rgba(255, 255, 255, 0);
  11039. border:none;
  11040. border-radius:0px;
  11041. -moz-box-shadow:none;
  11042. -webkit-box-shadow:none;
  11043. box-shadow:none;
  11044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11045. font-weight:400;
  11046. font-style:normal;
  11047. font-size:16px;
  11048. }
  11049. #u97313 {
  11050. border-width:0px;
  11051. position:absolute;
  11052. left:147px;
  11053. top:1091px;
  11054. width:145px;
  11055. height:22px;
  11056. display:flex;
  11057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11058. font-weight:400;
  11059. font-style:normal;
  11060. font-size:16px;
  11061. }
  11062. #u97313 .text {
  11063. position:absolute;
  11064. align-self:flex-start;
  11065. padding:0px 0px 0px 0px;
  11066. box-sizing:border-box;
  11067. width:100%;
  11068. }
  11069. #u97313_text {
  11070. border-width:0px;
  11071. white-space:nowrap;
  11072. text-transform:none;
  11073. }
  11074. #u97314_div {
  11075. border-width:0px;
  11076. position:absolute;
  11077. left:0px;
  11078. top:0px;
  11079. width:113px;
  11080. height:22px;
  11081. background:inherit;
  11082. background-color:rgba(255, 255, 255, 0);
  11083. border:none;
  11084. border-radius:0px;
  11085. -moz-box-shadow:none;
  11086. -webkit-box-shadow:none;
  11087. box-shadow:none;
  11088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11089. font-weight:400;
  11090. font-style:normal;
  11091. font-size:16px;
  11092. }
  11093. #u97314 {
  11094. border-width:0px;
  11095. position:absolute;
  11096. left:147px;
  11097. top:1133px;
  11098. width:113px;
  11099. height:22px;
  11100. display:flex;
  11101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11102. font-weight:400;
  11103. font-style:normal;
  11104. font-size:16px;
  11105. }
  11106. #u97314 .text {
  11107. position:absolute;
  11108. align-self:flex-start;
  11109. padding:0px 0px 0px 0px;
  11110. box-sizing:border-box;
  11111. width:100%;
  11112. }
  11113. #u97314_text {
  11114. border-width:0px;
  11115. white-space:nowrap;
  11116. text-transform:none;
  11117. }
  11118. #u97315_div {
  11119. border-width:0px;
  11120. position:absolute;
  11121. left:0px;
  11122. top:0px;
  11123. width:97px;
  11124. height:22px;
  11125. background:inherit;
  11126. background-color:rgba(255, 255, 255, 0);
  11127. border:none;
  11128. border-radius:0px;
  11129. -moz-box-shadow:none;
  11130. -webkit-box-shadow:none;
  11131. box-shadow:none;
  11132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11133. font-weight:400;
  11134. font-style:normal;
  11135. font-size:16px;
  11136. }
  11137. #u97315 {
  11138. border-width:0px;
  11139. position:absolute;
  11140. left:147px;
  11141. top:1585px;
  11142. width:97px;
  11143. height:22px;
  11144. display:flex;
  11145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11146. font-weight:400;
  11147. font-style:normal;
  11148. font-size:16px;
  11149. }
  11150. #u97315 .text {
  11151. position:absolute;
  11152. align-self:flex-start;
  11153. padding:0px 0px 0px 0px;
  11154. box-sizing:border-box;
  11155. width:100%;
  11156. }
  11157. #u97315_text {
  11158. border-width:0px;
  11159. white-space:nowrap;
  11160. text-transform:none;
  11161. }
  11162. #u97316_div {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:0px;
  11166. top:0px;
  11167. width:97px;
  11168. height:22px;
  11169. background:inherit;
  11170. background-color:rgba(255, 255, 255, 0);
  11171. border:none;
  11172. border-radius:0px;
  11173. -moz-box-shadow:none;
  11174. -webkit-box-shadow:none;
  11175. box-shadow:none;
  11176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11177. font-weight:400;
  11178. font-style:normal;
  11179. font-size:16px;
  11180. }
  11181. #u97316 {
  11182. border-width:0px;
  11183. position:absolute;
  11184. left:147px;
  11185. top:1627px;
  11186. width:97px;
  11187. height:22px;
  11188. display:flex;
  11189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11190. font-weight:400;
  11191. font-style:normal;
  11192. font-size:16px;
  11193. }
  11194. #u97316 .text {
  11195. position:absolute;
  11196. align-self:flex-start;
  11197. padding:0px 0px 0px 0px;
  11198. box-sizing:border-box;
  11199. width:100%;
  11200. }
  11201. #u97316_text {
  11202. border-width:0px;
  11203. white-space:nowrap;
  11204. text-transform:none;
  11205. }
  11206. #u97317_div {
  11207. border-width:0px;
  11208. position:absolute;
  11209. left:0px;
  11210. top:0px;
  11211. width:97px;
  11212. height:22px;
  11213. background:inherit;
  11214. background-color:rgba(255, 255, 255, 0);
  11215. border:none;
  11216. border-radius:0px;
  11217. -moz-box-shadow:none;
  11218. -webkit-box-shadow:none;
  11219. box-shadow:none;
  11220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11221. font-weight:400;
  11222. font-style:normal;
  11223. font-size:16px;
  11224. }
  11225. #u97317 {
  11226. border-width:0px;
  11227. position:absolute;
  11228. left:147px;
  11229. top:1669px;
  11230. width:97px;
  11231. height:22px;
  11232. display:flex;
  11233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11234. font-weight:400;
  11235. font-style:normal;
  11236. font-size:16px;
  11237. }
  11238. #u97317 .text {
  11239. position:absolute;
  11240. align-self:flex-start;
  11241. padding:0px 0px 0px 0px;
  11242. box-sizing:border-box;
  11243. width:100%;
  11244. }
  11245. #u97317_text {
  11246. border-width:0px;
  11247. white-space:nowrap;
  11248. text-transform:none;
  11249. }
  11250. #u97318_div {
  11251. border-width:0px;
  11252. position:absolute;
  11253. left:0px;
  11254. top:0px;
  11255. width:97px;
  11256. height:22px;
  11257. background:inherit;
  11258. background-color:rgba(255, 255, 255, 0);
  11259. border:none;
  11260. border-radius:0px;
  11261. -moz-box-shadow:none;
  11262. -webkit-box-shadow:none;
  11263. box-shadow:none;
  11264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11265. font-weight:400;
  11266. font-style:normal;
  11267. font-size:16px;
  11268. }
  11269. #u97318 {
  11270. border-width:0px;
  11271. position:absolute;
  11272. left:147px;
  11273. top:1711px;
  11274. width:97px;
  11275. height:22px;
  11276. display:flex;
  11277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11278. font-weight:400;
  11279. font-style:normal;
  11280. font-size:16px;
  11281. }
  11282. #u97318 .text {
  11283. position:absolute;
  11284. align-self:flex-start;
  11285. padding:0px 0px 0px 0px;
  11286. box-sizing:border-box;
  11287. width:100%;
  11288. }
  11289. #u97318_text {
  11290. border-width:0px;
  11291. white-space:nowrap;
  11292. text-transform:none;
  11293. }
  11294. #u97319_div {
  11295. border-width:0px;
  11296. position:absolute;
  11297. left:0px;
  11298. top:0px;
  11299. width:97px;
  11300. height:22px;
  11301. background:inherit;
  11302. background-color:rgba(255, 255, 255, 0);
  11303. border:none;
  11304. border-radius:0px;
  11305. -moz-box-shadow:none;
  11306. -webkit-box-shadow:none;
  11307. box-shadow:none;
  11308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11309. font-weight:400;
  11310. font-style:normal;
  11311. font-size:16px;
  11312. }
  11313. #u97319 {
  11314. border-width:0px;
  11315. position:absolute;
  11316. left:147px;
  11317. top:824px;
  11318. width:97px;
  11319. height:22px;
  11320. display:flex;
  11321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11322. font-weight:400;
  11323. font-style:normal;
  11324. font-size:16px;
  11325. }
  11326. #u97319 .text {
  11327. position:absolute;
  11328. align-self:flex-start;
  11329. padding:0px 0px 0px 0px;
  11330. box-sizing:border-box;
  11331. width:100%;
  11332. }
  11333. #u97319_text {
  11334. border-width:0px;
  11335. word-wrap:break-word;
  11336. text-transform:none;
  11337. }
  11338. #u97320_div {
  11339. border-width:0px;
  11340. position:absolute;
  11341. left:0px;
  11342. top:0px;
  11343. width:97px;
  11344. height:22px;
  11345. background:inherit;
  11346. background-color:rgba(255, 255, 255, 0);
  11347. border:none;
  11348. border-radius:0px;
  11349. -moz-box-shadow:none;
  11350. -webkit-box-shadow:none;
  11351. box-shadow:none;
  11352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11353. font-weight:400;
  11354. font-style:normal;
  11355. font-size:16px;
  11356. }
  11357. #u97320 {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:147px;
  11361. top:738px;
  11362. width:97px;
  11363. height:22px;
  11364. display:flex;
  11365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11366. font-weight:400;
  11367. font-style:normal;
  11368. font-size:16px;
  11369. }
  11370. #u97320 .text {
  11371. position:absolute;
  11372. align-self:flex-start;
  11373. padding:0px 0px 0px 0px;
  11374. box-sizing:border-box;
  11375. width:100%;
  11376. }
  11377. #u97320_text {
  11378. border-width:0px;
  11379. word-wrap:break-word;
  11380. text-transform:none;
  11381. }
  11382. #u97321_div {
  11383. border-width:0px;
  11384. position:absolute;
  11385. left:0px;
  11386. top:0px;
  11387. width:49px;
  11388. height:17px;
  11389. background:inherit;
  11390. background-color:rgba(255, 255, 255, 0);
  11391. border:none;
  11392. border-radius:0px;
  11393. -moz-box-shadow:none;
  11394. -webkit-box-shadow:none;
  11395. box-shadow:none;
  11396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11397. font-weight:400;
  11398. font-style:normal;
  11399. font-size:12px;
  11400. color:#AAAAAA;
  11401. }
  11402. #u97321 {
  11403. border-width:0px;
  11404. position:absolute;
  11405. left:147px;
  11406. top:701px;
  11407. width:49px;
  11408. height:17px;
  11409. display:flex;
  11410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11411. font-weight:400;
  11412. font-style:normal;
  11413. font-size:12px;
  11414. color:#AAAAAA;
  11415. }
  11416. #u97321 .text {
  11417. position:absolute;
  11418. align-self:flex-start;
  11419. padding:0px 0px 0px 0px;
  11420. box-sizing:border-box;
  11421. width:100%;
  11422. }
  11423. #u97321_text {
  11424. border-width:0px;
  11425. white-space:nowrap;
  11426. text-transform:none;
  11427. }
  11428. #u97322_div {
  11429. border-width:0px;
  11430. position:absolute;
  11431. left:0px;
  11432. top:0px;
  11433. width:97px;
  11434. height:22px;
  11435. background:inherit;
  11436. background-color:rgba(255, 255, 255, 0);
  11437. border:none;
  11438. border-radius:0px;
  11439. -moz-box-shadow:none;
  11440. -webkit-box-shadow:none;
  11441. box-shadow:none;
  11442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11443. font-weight:400;
  11444. font-style:normal;
  11445. font-size:16px;
  11446. }
  11447. #u97322 {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:147px;
  11451. top:780px;
  11452. width:97px;
  11453. height:22px;
  11454. display:flex;
  11455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11456. font-weight:400;
  11457. font-style:normal;
  11458. font-size:16px;
  11459. }
  11460. #u97322 .text {
  11461. position:absolute;
  11462. align-self:flex-start;
  11463. padding:0px 0px 0px 0px;
  11464. box-sizing:border-box;
  11465. width:100%;
  11466. }
  11467. #u97322_text {
  11468. border-width:0px;
  11469. word-wrap:break-word;
  11470. text-transform:none;
  11471. }
  11472. #u97323_img {
  11473. border-width:0px;
  11474. position:absolute;
  11475. left:0px;
  11476. top:0px;
  11477. width:201px;
  11478. height:2px;
  11479. }
  11480. #u97323 {
  11481. border-width:0px;
  11482. position:absolute;
  11483. left:120px;
  11484. top:866px;
  11485. width:200px;
  11486. height:1px;
  11487. display:flex;
  11488. }
  11489. #u97323 .text {
  11490. position:absolute;
  11491. align-self:center;
  11492. padding:2px 2px 2px 2px;
  11493. box-sizing:border-box;
  11494. width:100%;
  11495. }
  11496. #u97323_text {
  11497. border-width:0px;
  11498. word-wrap:break-word;
  11499. text-transform:none;
  11500. visibility:hidden;
  11501. }
  11502. #u97324_div {
  11503. border-width:0px;
  11504. position:absolute;
  11505. left:0px;
  11506. top:0px;
  11507. width:97px;
  11508. height:22px;
  11509. background:inherit;
  11510. background-color:rgba(255, 255, 255, 0);
  11511. border:none;
  11512. border-radius:0px;
  11513. -moz-box-shadow:none;
  11514. -webkit-box-shadow:none;
  11515. box-shadow:none;
  11516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11517. font-weight:400;
  11518. font-style:normal;
  11519. font-size:16px;
  11520. }
  11521. #u97324 {
  11522. border-width:0px;
  11523. position:absolute;
  11524. left:147px;
  11525. top:1237px;
  11526. width:97px;
  11527. height:22px;
  11528. display:flex;
  11529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11530. font-weight:400;
  11531. font-style:normal;
  11532. font-size:16px;
  11533. }
  11534. #u97324 .text {
  11535. position:absolute;
  11536. align-self:flex-start;
  11537. padding:0px 0px 0px 0px;
  11538. box-sizing:border-box;
  11539. width:100%;
  11540. }
  11541. #u97324_text {
  11542. border-width:0px;
  11543. word-wrap:break-word;
  11544. text-transform:none;
  11545. }
  11546. #u97325_div {
  11547. border-width:0px;
  11548. position:absolute;
  11549. left:0px;
  11550. top:0px;
  11551. width:49px;
  11552. height:17px;
  11553. background:inherit;
  11554. background-color:rgba(255, 255, 255, 0);
  11555. border:none;
  11556. border-radius:0px;
  11557. -moz-box-shadow:none;
  11558. -webkit-box-shadow:none;
  11559. box-shadow:none;
  11560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11561. font-weight:400;
  11562. font-style:normal;
  11563. font-size:12px;
  11564. color:#AAAAAA;
  11565. }
  11566. #u97325 {
  11567. border-width:0px;
  11568. position:absolute;
  11569. left:147px;
  11570. top:1201px;
  11571. width:49px;
  11572. height:17px;
  11573. display:flex;
  11574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11575. font-weight:400;
  11576. font-style:normal;
  11577. font-size:12px;
  11578. color:#AAAAAA;
  11579. }
  11580. #u97325 .text {
  11581. position:absolute;
  11582. align-self:flex-start;
  11583. padding:0px 0px 0px 0px;
  11584. box-sizing:border-box;
  11585. width:100%;
  11586. }
  11587. #u97325_text {
  11588. border-width:0px;
  11589. white-space:nowrap;
  11590. text-transform:none;
  11591. }
  11592. #u97326_div {
  11593. border-width:0px;
  11594. position:absolute;
  11595. left:0px;
  11596. top:0px;
  11597. width:97px;
  11598. height:22px;
  11599. background:inherit;
  11600. background-color:rgba(255, 255, 255, 0);
  11601. border:none;
  11602. border-radius:0px;
  11603. -moz-box-shadow:none;
  11604. -webkit-box-shadow:none;
  11605. box-shadow:none;
  11606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11607. font-weight:400;
  11608. font-style:normal;
  11609. font-size:16px;
  11610. }
  11611. #u97326 {
  11612. border-width:0px;
  11613. position:absolute;
  11614. left:147px;
  11615. top:1279px;
  11616. width:97px;
  11617. height:22px;
  11618. display:flex;
  11619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11620. font-weight:400;
  11621. font-style:normal;
  11622. font-size:16px;
  11623. }
  11624. #u97326 .text {
  11625. position:absolute;
  11626. align-self:flex-start;
  11627. padding:0px 0px 0px 0px;
  11628. box-sizing:border-box;
  11629. width:100%;
  11630. }
  11631. #u97326_text {
  11632. border-width:0px;
  11633. word-wrap:break-word;
  11634. text-transform:none;
  11635. }
  11636. #u97327_div {
  11637. border-width:0px;
  11638. position:absolute;
  11639. left:0px;
  11640. top:0px;
  11641. width:97px;
  11642. height:22px;
  11643. background:inherit;
  11644. background-color:rgba(255, 255, 255, 0);
  11645. border:none;
  11646. border-radius:0px;
  11647. -moz-box-shadow:none;
  11648. -webkit-box-shadow:none;
  11649. box-shadow:none;
  11650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11651. font-weight:400;
  11652. font-style:normal;
  11653. font-size:16px;
  11654. }
  11655. #u97327 {
  11656. border-width:0px;
  11657. position:absolute;
  11658. left:147px;
  11659. top:1321px;
  11660. width:97px;
  11661. height:22px;
  11662. display:flex;
  11663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11664. font-weight:400;
  11665. font-style:normal;
  11666. font-size:16px;
  11667. }
  11668. #u97327 .text {
  11669. position:absolute;
  11670. align-self:flex-start;
  11671. padding:0px 0px 0px 0px;
  11672. box-sizing:border-box;
  11673. width:100%;
  11674. }
  11675. #u97327_text {
  11676. border-width:0px;
  11677. word-wrap:break-word;
  11678. text-transform:none;
  11679. }
  11680. #u97328_div {
  11681. border-width:0px;
  11682. position:absolute;
  11683. left:0px;
  11684. top:0px;
  11685. width:97px;
  11686. height:22px;
  11687. background:inherit;
  11688. background-color:rgba(255, 255, 255, 0);
  11689. border:none;
  11690. border-radius:0px;
  11691. -moz-box-shadow:none;
  11692. -webkit-box-shadow:none;
  11693. box-shadow:none;
  11694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11695. font-weight:400;
  11696. font-style:normal;
  11697. font-size:16px;
  11698. }
  11699. #u97328 {
  11700. border-width:0px;
  11701. position:absolute;
  11702. left:147px;
  11703. top:1363px;
  11704. width:97px;
  11705. height:22px;
  11706. display:flex;
  11707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11708. font-weight:400;
  11709. font-style:normal;
  11710. font-size:16px;
  11711. }
  11712. #u97328 .text {
  11713. position:absolute;
  11714. align-self:flex-start;
  11715. padding:0px 0px 0px 0px;
  11716. box-sizing:border-box;
  11717. width:100%;
  11718. }
  11719. #u97328_text {
  11720. border-width:0px;
  11721. word-wrap:break-word;
  11722. text-transform:none;
  11723. }
  11724. #u97329_img {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:0px;
  11728. top:0px;
  11729. width:201px;
  11730. height:2px;
  11731. }
  11732. #u97329 {
  11733. border-width:0px;
  11734. position:absolute;
  11735. left:120px;
  11736. top:1403px;
  11737. width:200px;
  11738. height:1px;
  11739. display:flex;
  11740. }
  11741. #u97329 .text {
  11742. position:absolute;
  11743. align-self:center;
  11744. padding:2px 2px 2px 2px;
  11745. box-sizing:border-box;
  11746. width:100%;
  11747. }
  11748. #u97329_text {
  11749. border-width:0px;
  11750. word-wrap:break-word;
  11751. text-transform:none;
  11752. visibility:hidden;
  11753. }