styles.css 139 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u79031_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. #u79031 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u79031 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u79031_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u79032_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. #u79032 {
  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. #u79032 .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. #u79032_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u79033_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. #u79033 {
  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. #u79033 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u79033_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u79034 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u79035_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u79035 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u79035 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u79035_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u79036_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. #u79036 {
  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. #u79036 .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. #u79036_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u79037_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. #u79037 {
  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. #u79037 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u79037_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u79038 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u79039_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u79039 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u79039 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u79039_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u79040_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u79040 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u79040 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u79040_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u79041 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u79042_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u79042 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u79042 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u79042_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u79043_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u79043 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u79043 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u79043_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u79044 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u79045_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u79045 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u79045 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u79045_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u79046_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u79046 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u79046 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u79046_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u79047 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u79048_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u79048 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u79048 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u79048_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u79049_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u79049 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u79049 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u79049_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u79050 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u79051_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u79051 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u79051 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u79051_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u79052_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u79052 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u79052 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u79052_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u79053 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u79054_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u79054 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u79054 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u79054_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u79055_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u79055 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u79055 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u79055_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u79056 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u79057_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u79057 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u79057 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u79057_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u79058_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u79058 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u79058 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u79058_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u79059 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u79060_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u79060 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u79060 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u79060_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u79061_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u79061 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u79061 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u79061_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u79062 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u79063_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u79063 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u79063 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u79063_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u79064_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u79064 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u79064 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u79064_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u79065_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u79065 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u79065 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u79065_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u79066_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u79066 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u79066 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u79066_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u79067_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u79067 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u79067 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u79067_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u79068_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u79068 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u79068 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u79068_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u79069 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u79070_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u79070 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u79070 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u79070_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u79071_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u79071 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u79071 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u79071_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u79072 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u79073_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u79073 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u79073 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u79073_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u79074_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u79074 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u79074 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u79074_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u79075 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u79076_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u79076_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u79076_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u79076 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u79076 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u79076_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u79076.disabled {
  1428. }
  1429. .u79076_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u79077_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u79077 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u79077 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u79077_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u79078_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u79078 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u79078 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u79078_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u79079_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u79079 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u79079 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u79079_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u79080_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:1191px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1552. }
  1553. #u79080 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:331px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1191px;
  1560. display:flex;
  1561. }
  1562. #u79080 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u79080_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u79081_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:73px;
  1581. height:25px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:18px;
  1593. }
  1594. #u79081 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:351px;
  1598. top:71px;
  1599. width:73px;
  1600. height:25px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:18px;
  1606. }
  1607. #u79081 .text {
  1608. position:absolute;
  1609. align-self:flex-start;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u79081_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u79082 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:351px;
  1623. top:246px;
  1624. width:1220px;
  1625. height:293px;
  1626. }
  1627. #u79083_img {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:82px;
  1633. height:34px;
  1634. }
  1635. #u79083 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:82px;
  1641. height:34px;
  1642. display:flex;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:14px;
  1647. color:#FFFFFF;
  1648. text-align:left;
  1649. line-height:30px;
  1650. }
  1651. #u79083 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 10px 2px 10px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u79083_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. }
  1663. #u79084_img {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:82px;
  1669. height:34px;
  1670. }
  1671. #u79084 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:82px;
  1675. top:0px;
  1676. width:82px;
  1677. height:34px;
  1678. display:flex;
  1679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. font-size:14px;
  1683. color:#FFFFFF;
  1684. text-align:left;
  1685. line-height:30px;
  1686. }
  1687. #u79084 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:2px 10px 2px 10px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u79084_text {
  1695. border-width:0px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. }
  1699. #u79085_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:119px;
  1705. height:34px;
  1706. }
  1707. #u79085 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:164px;
  1711. top:0px;
  1712. width:119px;
  1713. height:34px;
  1714. display:flex;
  1715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1716. font-weight:400;
  1717. font-style:normal;
  1718. font-size:14px;
  1719. color:#FFFFFF;
  1720. text-align:left;
  1721. line-height:30px;
  1722. }
  1723. #u79085 .text {
  1724. position:absolute;
  1725. align-self:center;
  1726. padding:2px 10px 2px 10px;
  1727. box-sizing:border-box;
  1728. width:100%;
  1729. }
  1730. #u79085_text {
  1731. border-width:0px;
  1732. word-wrap:break-word;
  1733. text-transform:none;
  1734. }
  1735. #u79086_img {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:119px;
  1741. height:34px;
  1742. }
  1743. #u79086 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:283px;
  1747. top:0px;
  1748. width:119px;
  1749. height:34px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:14px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. line-height:30px;
  1758. }
  1759. #u79086 .text {
  1760. position:absolute;
  1761. align-self:center;
  1762. padding:2px 10px 2px 10px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u79086_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. }
  1771. #u79087_img {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:123px;
  1777. height:34px;
  1778. }
  1779. #u79087 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:402px;
  1783. top:0px;
  1784. width:123px;
  1785. height:34px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:14px;
  1791. color:#FFFFFF;
  1792. text-align:left;
  1793. line-height:30px;
  1794. }
  1795. #u79087 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 10px 2px 10px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u79087_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. }
  1807. #u79088_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:119px;
  1813. height:34px;
  1814. }
  1815. #u79088 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:525px;
  1819. top:0px;
  1820. width:119px;
  1821. height:34px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#FFFFFF;
  1828. text-align:left;
  1829. line-height:30px;
  1830. }
  1831. #u79088 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:2px 10px 2px 10px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u79088_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. }
  1843. #u79089_img {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:153px;
  1849. height:34px;
  1850. }
  1851. #u79089 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:644px;
  1855. top:0px;
  1856. width:153px;
  1857. height:34px;
  1858. display:flex;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:14px;
  1863. color:#FFFFFF;
  1864. text-align:left;
  1865. line-height:30px;
  1866. }
  1867. #u79089 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 10px 2px 10px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u79089_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. }
  1879. #u79090_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:119px;
  1885. height:34px;
  1886. }
  1887. #u79090 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:797px;
  1891. top:0px;
  1892. width:119px;
  1893. height:34px;
  1894. display:flex;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:14px;
  1899. color:#FFFFFF;
  1900. text-align:left;
  1901. line-height:30px;
  1902. }
  1903. #u79090 .text {
  1904. position:absolute;
  1905. align-self:center;
  1906. padding:2px 10px 2px 10px;
  1907. box-sizing:border-box;
  1908. width:100%;
  1909. }
  1910. #u79090_text {
  1911. border-width:0px;
  1912. word-wrap:break-word;
  1913. text-transform:none;
  1914. }
  1915. #u79091_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:123px;
  1921. height:34px;
  1922. }
  1923. #u79091 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:916px;
  1927. top:0px;
  1928. width:123px;
  1929. height:34px;
  1930. display:flex;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:14px;
  1935. color:#FFFFFF;
  1936. text-align:left;
  1937. line-height:30px;
  1938. }
  1939. #u79091 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 10px 2px 10px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u79091_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. }
  1951. #u79092_img {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:181px;
  1957. height:34px;
  1958. }
  1959. #u79092 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:1039px;
  1963. top:0px;
  1964. width:181px;
  1965. height:34px;
  1966. display:flex;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:14px;
  1971. color:#FFFFFF;
  1972. text-align:left;
  1973. line-height:30px;
  1974. }
  1975. #u79092 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:2px 10px 2px 10px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u79092_text {
  1983. border-width:0px;
  1984. word-wrap:break-word;
  1985. text-transform:none;
  1986. }
  1987. #u79093_img {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:82px;
  1993. height:37px;
  1994. }
  1995. #u79093 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:34px;
  2000. width:82px;
  2001. height:37px;
  2002. display:flex;
  2003. font-size:14px;
  2004. text-align:left;
  2005. }
  2006. #u79093 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 10px 2px 10px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u79093_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. visibility:hidden;
  2018. }
  2019. #u79094_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:82px;
  2025. height:37px;
  2026. }
  2027. #u79094 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:82px;
  2031. top:34px;
  2032. width:82px;
  2033. height:37px;
  2034. display:flex;
  2035. font-size:14px;
  2036. text-align:left;
  2037. }
  2038. #u79094 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:2px 10px 2px 10px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u79094_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. visibility:hidden;
  2050. }
  2051. #u79095_img {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:119px;
  2057. height:37px;
  2058. }
  2059. #u79095 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:164px;
  2063. top:34px;
  2064. width:119px;
  2065. height:37px;
  2066. display:flex;
  2067. font-size:14px;
  2068. text-align:left;
  2069. }
  2070. #u79095 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:2px 10px 2px 10px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u79095_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. }
  2082. #u79096_img {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:119px;
  2088. height:37px;
  2089. }
  2090. #u79096 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:283px;
  2094. top:34px;
  2095. width:119px;
  2096. height:37px;
  2097. display:flex;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:14px;
  2102. text-align:left;
  2103. }
  2104. #u79096 .text {
  2105. position:absolute;
  2106. align-self:center;
  2107. padding:2px 10px 2px 10px;
  2108. box-sizing:border-box;
  2109. width:100%;
  2110. }
  2111. #u79096_text {
  2112. border-width:0px;
  2113. word-wrap:break-word;
  2114. text-transform:none;
  2115. }
  2116. #u79097_img {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:123px;
  2122. height:37px;
  2123. }
  2124. #u79097 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:402px;
  2128. top:34px;
  2129. width:123px;
  2130. height:37px;
  2131. display:flex;
  2132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2133. font-weight:400;
  2134. font-style:normal;
  2135. font-size:14px;
  2136. text-align:left;
  2137. }
  2138. #u79097 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 10px 2px 10px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u79097_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. visibility:hidden;
  2150. }
  2151. #u79098_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:119px;
  2157. height:37px;
  2158. }
  2159. #u79098 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:525px;
  2163. top:34px;
  2164. width:119px;
  2165. height:37px;
  2166. display:flex;
  2167. font-size:14px;
  2168. text-align:left;
  2169. }
  2170. #u79098 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 10px 2px 10px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u79098_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. visibility:hidden;
  2182. }
  2183. #u79099_img {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:153px;
  2189. height:37px;
  2190. }
  2191. #u79099 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:644px;
  2195. top:34px;
  2196. width:153px;
  2197. height:37px;
  2198. display:flex;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:14px;
  2203. text-align:left;
  2204. }
  2205. #u79099 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 10px 2px 10px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u79099_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. }
  2217. #u79100_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:119px;
  2223. height:37px;
  2224. }
  2225. #u79100 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:797px;
  2229. top:34px;
  2230. width:119px;
  2231. height:37px;
  2232. display:flex;
  2233. font-size:14px;
  2234. text-align:left;
  2235. }
  2236. #u79100 .text {
  2237. position:absolute;
  2238. align-self:center;
  2239. padding:2px 10px 2px 10px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u79100_text {
  2244. border-width:0px;
  2245. word-wrap:break-word;
  2246. text-transform:none;
  2247. visibility:hidden;
  2248. }
  2249. #u79101_img {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:123px;
  2255. height:37px;
  2256. }
  2257. #u79101 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:916px;
  2261. top:34px;
  2262. width:123px;
  2263. height:37px;
  2264. display:flex;
  2265. font-size:14px;
  2266. text-align:left;
  2267. }
  2268. #u79101 .text {
  2269. position:absolute;
  2270. align-self:center;
  2271. padding:2px 10px 2px 10px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u79101_text {
  2276. border-width:0px;
  2277. word-wrap:break-word;
  2278. text-transform:none;
  2279. visibility:hidden;
  2280. }
  2281. #u79102_img {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:181px;
  2287. height:37px;
  2288. }
  2289. #u79102 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:1039px;
  2293. top:34px;
  2294. width:181px;
  2295. height:37px;
  2296. display:flex;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:14px;
  2301. text-align:left;
  2302. }
  2303. #u79102 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 10px 2px 10px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u79102_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. }
  2315. #u79103_img {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:82px;
  2321. height:37px;
  2322. }
  2323. #u79103 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:71px;
  2328. width:82px;
  2329. height:37px;
  2330. display:flex;
  2331. font-size:14px;
  2332. text-align:left;
  2333. }
  2334. #u79103 .text {
  2335. position:absolute;
  2336. align-self:center;
  2337. padding:2px 10px 2px 10px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u79103_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. visibility:hidden;
  2346. }
  2347. #u79104_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:82px;
  2353. height:37px;
  2354. }
  2355. #u79104 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:82px;
  2359. top:71px;
  2360. width:82px;
  2361. height:37px;
  2362. display:flex;
  2363. font-size:14px;
  2364. text-align:left;
  2365. }
  2366. #u79104 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 10px 2px 10px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u79104_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u79105_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:119px;
  2385. height:37px;
  2386. }
  2387. #u79105 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:164px;
  2391. top:71px;
  2392. width:119px;
  2393. height:37px;
  2394. display:flex;
  2395. font-size:14px;
  2396. text-align:left;
  2397. }
  2398. #u79105 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:2px 10px 2px 10px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u79105_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. }
  2410. #u79106_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:119px;
  2416. height:37px;
  2417. }
  2418. #u79106 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:283px;
  2422. top:71px;
  2423. width:119px;
  2424. height:37px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:14px;
  2430. text-align:left;
  2431. }
  2432. #u79106 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 10px 2px 10px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u79106_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. }
  2444. #u79107_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:123px;
  2450. height:37px;
  2451. }
  2452. #u79107 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:402px;
  2456. top:71px;
  2457. width:123px;
  2458. height:37px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:14px;
  2464. text-align:left;
  2465. }
  2466. #u79107 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 10px 2px 10px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u79107_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u79108_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:119px;
  2485. height:37px;
  2486. }
  2487. #u79108 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:525px;
  2491. top:71px;
  2492. width:119px;
  2493. height:37px;
  2494. display:flex;
  2495. font-size:14px;
  2496. text-align:left;
  2497. }
  2498. #u79108 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 10px 2px 10px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u79108_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u79109_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:153px;
  2517. height:37px;
  2518. }
  2519. #u79109 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:644px;
  2523. top:71px;
  2524. width:153px;
  2525. height:37px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:14px;
  2531. text-align:left;
  2532. }
  2533. #u79109 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 10px 2px 10px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u79109_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. }
  2545. #u79110_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:119px;
  2551. height:37px;
  2552. }
  2553. #u79110 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:797px;
  2557. top:71px;
  2558. width:119px;
  2559. height:37px;
  2560. display:flex;
  2561. font-size:14px;
  2562. text-align:left;
  2563. }
  2564. #u79110 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 10px 2px 10px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u79110_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u79111_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:123px;
  2583. height:37px;
  2584. }
  2585. #u79111 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:916px;
  2589. top:71px;
  2590. width:123px;
  2591. height:37px;
  2592. display:flex;
  2593. font-size:14px;
  2594. text-align:left;
  2595. }
  2596. #u79111 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 10px 2px 10px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u79111_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. visibility:hidden;
  2608. }
  2609. #u79112_img {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:181px;
  2615. height:37px;
  2616. }
  2617. #u79112 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:1039px;
  2621. top:71px;
  2622. width:181px;
  2623. height:37px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:14px;
  2629. text-align:left;
  2630. }
  2631. #u79112 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 10px 2px 10px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u79112_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. }
  2643. #u79113_img {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:82px;
  2649. height:37px;
  2650. }
  2651. #u79113 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:108px;
  2656. width:82px;
  2657. height:37px;
  2658. display:flex;
  2659. font-size:14px;
  2660. text-align:left;
  2661. }
  2662. #u79113 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 10px 2px 10px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u79113_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u79114_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:82px;
  2681. height:37px;
  2682. }
  2683. #u79114 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:82px;
  2687. top:108px;
  2688. width:82px;
  2689. height:37px;
  2690. display:flex;
  2691. font-size:14px;
  2692. text-align:left;
  2693. }
  2694. #u79114 .text {
  2695. position:absolute;
  2696. align-self:center;
  2697. padding:2px 10px 2px 10px;
  2698. box-sizing:border-box;
  2699. width:100%;
  2700. }
  2701. #u79114_text {
  2702. border-width:0px;
  2703. word-wrap:break-word;
  2704. text-transform:none;
  2705. visibility:hidden;
  2706. }
  2707. #u79115_img {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:119px;
  2713. height:37px;
  2714. }
  2715. #u79115 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:164px;
  2719. top:108px;
  2720. width:119px;
  2721. height:37px;
  2722. display:flex;
  2723. font-size:14px;
  2724. text-align:left;
  2725. }
  2726. #u79115 .text {
  2727. position:absolute;
  2728. align-self:center;
  2729. padding:2px 10px 2px 10px;
  2730. box-sizing:border-box;
  2731. width:100%;
  2732. }
  2733. #u79115_text {
  2734. border-width:0px;
  2735. word-wrap:break-word;
  2736. text-transform:none;
  2737. }
  2738. #u79116_img {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:119px;
  2744. height:37px;
  2745. }
  2746. #u79116 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:283px;
  2750. top:108px;
  2751. width:119px;
  2752. height:37px;
  2753. display:flex;
  2754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:14px;
  2758. text-align:left;
  2759. }
  2760. #u79116 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 10px 2px 10px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u79116_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. }
  2772. #u79117_img {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:123px;
  2778. height:37px;
  2779. }
  2780. #u79117 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:402px;
  2784. top:108px;
  2785. width:123px;
  2786. height:37px;
  2787. display:flex;
  2788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:14px;
  2792. text-align:left;
  2793. }
  2794. #u79117 .text {
  2795. position:absolute;
  2796. align-self:center;
  2797. padding:2px 10px 2px 10px;
  2798. box-sizing:border-box;
  2799. width:100%;
  2800. }
  2801. #u79117_text {
  2802. border-width:0px;
  2803. word-wrap:break-word;
  2804. text-transform:none;
  2805. visibility:hidden;
  2806. }
  2807. #u79118_img {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:119px;
  2813. height:37px;
  2814. }
  2815. #u79118 {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:525px;
  2819. top:108px;
  2820. width:119px;
  2821. height:37px;
  2822. display:flex;
  2823. font-size:14px;
  2824. text-align:left;
  2825. }
  2826. #u79118 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 10px 2px 10px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u79118_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. visibility:hidden;
  2838. }
  2839. #u79119_img {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:153px;
  2845. height:37px;
  2846. }
  2847. #u79119 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:644px;
  2851. top:108px;
  2852. width:153px;
  2853. height:37px;
  2854. display:flex;
  2855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2856. font-weight:400;
  2857. font-style:normal;
  2858. font-size:14px;
  2859. text-align:left;
  2860. }
  2861. #u79119 .text {
  2862. position:absolute;
  2863. align-self:center;
  2864. padding:2px 10px 2px 10px;
  2865. box-sizing:border-box;
  2866. width:100%;
  2867. }
  2868. #u79119_text {
  2869. border-width:0px;
  2870. word-wrap:break-word;
  2871. text-transform:none;
  2872. }
  2873. #u79120_img {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:119px;
  2879. height:37px;
  2880. }
  2881. #u79120 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:797px;
  2885. top:108px;
  2886. width:119px;
  2887. height:37px;
  2888. display:flex;
  2889. font-size:14px;
  2890. text-align:left;
  2891. }
  2892. #u79120 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 10px 2px 10px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u79120_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. visibility:hidden;
  2904. }
  2905. #u79121_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:123px;
  2911. height:37px;
  2912. }
  2913. #u79121 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:916px;
  2917. top:108px;
  2918. width:123px;
  2919. height:37px;
  2920. display:flex;
  2921. font-size:14px;
  2922. text-align:left;
  2923. }
  2924. #u79121 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 10px 2px 10px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u79121_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u79122_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:181px;
  2943. height:37px;
  2944. }
  2945. #u79122 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:1039px;
  2949. top:108px;
  2950. width:181px;
  2951. height:37px;
  2952. display:flex;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:14px;
  2957. color:#1890FF;
  2958. text-align:left;
  2959. }
  2960. #u79122 .text {
  2961. position:absolute;
  2962. align-self:center;
  2963. padding:2px 10px 2px 10px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u79122_text {
  2968. border-width:0px;
  2969. word-wrap:break-word;
  2970. text-transform:none;
  2971. }
  2972. #u79123_img {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:82px;
  2978. height:37px;
  2979. }
  2980. #u79123 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:145px;
  2985. width:82px;
  2986. height:37px;
  2987. display:flex;
  2988. font-size:14px;
  2989. text-align:left;
  2990. }
  2991. #u79123 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 10px 2px 10px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u79123_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u79124_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:82px;
  3010. height:37px;
  3011. }
  3012. #u79124 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:82px;
  3016. top:145px;
  3017. width:82px;
  3018. height:37px;
  3019. display:flex;
  3020. font-size:14px;
  3021. text-align:left;
  3022. }
  3023. #u79124 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 10px 2px 10px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u79124_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u79125_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:119px;
  3042. height:37px;
  3043. }
  3044. #u79125 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:164px;
  3048. top:145px;
  3049. width:119px;
  3050. height:37px;
  3051. display:flex;
  3052. font-size:14px;
  3053. text-align:left;
  3054. }
  3055. #u79125 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 10px 2px 10px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u79125_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u79126_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:119px;
  3074. height:37px;
  3075. }
  3076. #u79126 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:283px;
  3080. top:145px;
  3081. width:119px;
  3082. height:37px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. text-align:left;
  3089. }
  3090. #u79126 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 10px 2px 10px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u79126_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u79127_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:123px;
  3109. height:37px;
  3110. }
  3111. #u79127 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:402px;
  3115. top:145px;
  3116. width:123px;
  3117. height:37px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:14px;
  3123. text-align:left;
  3124. }
  3125. #u79127 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 10px 2px 10px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u79127_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u79128_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:119px;
  3144. height:37px;
  3145. }
  3146. #u79128 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:525px;
  3150. top:145px;
  3151. width:119px;
  3152. height:37px;
  3153. display:flex;
  3154. font-size:14px;
  3155. text-align:left;
  3156. }
  3157. #u79128 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 10px 2px 10px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u79128_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u79129_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:153px;
  3176. height:37px;
  3177. }
  3178. #u79129 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:644px;
  3182. top:145px;
  3183. width:153px;
  3184. height:37px;
  3185. display:flex;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:14px;
  3190. text-align:left;
  3191. }
  3192. #u79129 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 10px 2px 10px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u79129_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u79130_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:119px;
  3211. height:37px;
  3212. }
  3213. #u79130 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:797px;
  3217. top:145px;
  3218. width:119px;
  3219. height:37px;
  3220. display:flex;
  3221. font-size:14px;
  3222. text-align:left;
  3223. }
  3224. #u79130 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 10px 2px 10px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u79130_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u79131_img {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:123px;
  3243. height:37px;
  3244. }
  3245. #u79131 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:916px;
  3249. top:145px;
  3250. width:123px;
  3251. height:37px;
  3252. display:flex;
  3253. font-size:14px;
  3254. text-align:left;
  3255. }
  3256. #u79131 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 10px 2px 10px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u79131_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u79132_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:181px;
  3275. height:37px;
  3276. }
  3277. #u79132 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:1039px;
  3281. top:145px;
  3282. width:181px;
  3283. height:37px;
  3284. display:flex;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:14px;
  3289. color:#1890FF;
  3290. text-align:left;
  3291. }
  3292. #u79132 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 10px 2px 10px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u79132_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u79133_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:82px;
  3311. height:37px;
  3312. }
  3313. #u79133 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:182px;
  3318. width:82px;
  3319. height:37px;
  3320. display:flex;
  3321. font-size:14px;
  3322. text-align:left;
  3323. }
  3324. #u79133 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 10px 2px 10px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u79133_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. visibility:hidden;
  3336. }
  3337. #u79134_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:82px;
  3343. height:37px;
  3344. }
  3345. #u79134 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:82px;
  3349. top:182px;
  3350. width:82px;
  3351. height:37px;
  3352. display:flex;
  3353. font-size:14px;
  3354. text-align:left;
  3355. }
  3356. #u79134 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 10px 2px 10px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u79134_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u79135_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:119px;
  3375. height:37px;
  3376. }
  3377. #u79135 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:164px;
  3381. top:182px;
  3382. width:119px;
  3383. height:37px;
  3384. display:flex;
  3385. font-size:14px;
  3386. text-align:left;
  3387. }
  3388. #u79135 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 10px 2px 10px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u79135_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u79136_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:119px;
  3407. height:37px;
  3408. }
  3409. #u79136 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:283px;
  3413. top:182px;
  3414. width:119px;
  3415. height:37px;
  3416. display:flex;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:14px;
  3421. text-align:left;
  3422. }
  3423. #u79136 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 10px 2px 10px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u79136_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u79137_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:123px;
  3442. height:37px;
  3443. }
  3444. #u79137 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:402px;
  3448. top:182px;
  3449. width:123px;
  3450. height:37px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:14px;
  3456. text-align:left;
  3457. }
  3458. #u79137 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 10px 2px 10px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u79137_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u79138_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:119px;
  3477. height:37px;
  3478. }
  3479. #u79138 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:525px;
  3483. top:182px;
  3484. width:119px;
  3485. height:37px;
  3486. display:flex;
  3487. font-size:14px;
  3488. text-align:left;
  3489. }
  3490. #u79138 .text {
  3491. position:absolute;
  3492. align-self:center;
  3493. padding:2px 10px 2px 10px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u79138_text {
  3498. border-width:0px;
  3499. word-wrap:break-word;
  3500. text-transform:none;
  3501. visibility:hidden;
  3502. }
  3503. #u79139_img {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:153px;
  3509. height:37px;
  3510. }
  3511. #u79139 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:644px;
  3515. top:182px;
  3516. width:153px;
  3517. height:37px;
  3518. display:flex;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. text-align:left;
  3523. }
  3524. #u79139 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 10px 2px 10px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u79139_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u79140_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:119px;
  3543. height:37px;
  3544. }
  3545. #u79140 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:797px;
  3549. top:182px;
  3550. width:119px;
  3551. height:37px;
  3552. display:flex;
  3553. font-size:14px;
  3554. text-align:left;
  3555. }
  3556. #u79140 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 10px 2px 10px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u79140_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u79141_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:123px;
  3575. height:37px;
  3576. }
  3577. #u79141 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:916px;
  3581. top:182px;
  3582. width:123px;
  3583. height:37px;
  3584. display:flex;
  3585. font-size:14px;
  3586. text-align:left;
  3587. }
  3588. #u79141 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 10px 2px 10px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u79141_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u79142_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:181px;
  3607. height:37px;
  3608. }
  3609. #u79142 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:1039px;
  3613. top:182px;
  3614. width:181px;
  3615. height:37px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:14px;
  3621. color:#1890FF;
  3622. text-align:left;
  3623. }
  3624. #u79142 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 10px 2px 10px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u79142_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u79143_img {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:82px;
  3643. height:37px;
  3644. }
  3645. #u79143 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:219px;
  3650. width:82px;
  3651. height:37px;
  3652. display:flex;
  3653. font-size:14px;
  3654. text-align:left;
  3655. }
  3656. #u79143 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 10px 2px 10px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u79143_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u79144_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:82px;
  3675. height:37px;
  3676. }
  3677. #u79144 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:82px;
  3681. top:219px;
  3682. width:82px;
  3683. height:37px;
  3684. display:flex;
  3685. font-size:14px;
  3686. text-align:left;
  3687. }
  3688. #u79144 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 10px 2px 10px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u79144_text {
  3696. border-width:0px;
  3697. word-wrap:break-word;
  3698. text-transform:none;
  3699. visibility:hidden;
  3700. }
  3701. #u79145_img {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:119px;
  3707. height:37px;
  3708. }
  3709. #u79145 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:164px;
  3713. top:219px;
  3714. width:119px;
  3715. height:37px;
  3716. display:flex;
  3717. font-size:14px;
  3718. text-align:left;
  3719. }
  3720. #u79145 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 10px 2px 10px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u79145_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u79146_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:119px;
  3739. height:37px;
  3740. }
  3741. #u79146 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:283px;
  3745. top:219px;
  3746. width:119px;
  3747. height:37px;
  3748. display:flex;
  3749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:14px;
  3753. text-align:left;
  3754. }
  3755. #u79146 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 10px 2px 10px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u79146_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u79147_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:123px;
  3774. height:37px;
  3775. }
  3776. #u79147 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:402px;
  3780. top:219px;
  3781. width:123px;
  3782. height:37px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:14px;
  3788. text-align:left;
  3789. }
  3790. #u79147 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 10px 2px 10px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u79147_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. visibility:hidden;
  3802. }
  3803. #u79148_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:119px;
  3809. height:37px;
  3810. }
  3811. #u79148 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:525px;
  3815. top:219px;
  3816. width:119px;
  3817. height:37px;
  3818. display:flex;
  3819. font-size:14px;
  3820. text-align:left;
  3821. }
  3822. #u79148 .text {
  3823. position:absolute;
  3824. align-self:center;
  3825. padding:2px 10px 2px 10px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u79148_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. visibility:hidden;
  3834. }
  3835. #u79149_img {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:153px;
  3841. height:37px;
  3842. }
  3843. #u79149 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:644px;
  3847. top:219px;
  3848. width:153px;
  3849. height:37px;
  3850. display:flex;
  3851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3852. font-weight:400;
  3853. font-style:normal;
  3854. text-align:left;
  3855. }
  3856. #u79149 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 10px 2px 10px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u79149_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u79150_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:119px;
  3875. height:37px;
  3876. }
  3877. #u79150 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:797px;
  3881. top:219px;
  3882. width:119px;
  3883. height:37px;
  3884. display:flex;
  3885. font-size:14px;
  3886. text-align:left;
  3887. }
  3888. #u79150 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 10px 2px 10px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u79150_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. visibility:hidden;
  3900. }
  3901. #u79151_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:123px;
  3907. height:37px;
  3908. }
  3909. #u79151 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:916px;
  3913. top:219px;
  3914. width:123px;
  3915. height:37px;
  3916. display:flex;
  3917. font-size:14px;
  3918. text-align:left;
  3919. }
  3920. #u79151 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 10px 2px 10px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u79151_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u79152_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:181px;
  3939. height:37px;
  3940. }
  3941. #u79152 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:1039px;
  3945. top:219px;
  3946. width:181px;
  3947. height:37px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:14px;
  3953. color:#1890FF;
  3954. text-align:left;
  3955. }
  3956. #u79152 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 10px 2px 10px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u79152_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u79153_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:82px;
  3975. height:37px;
  3976. }
  3977. #u79153 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:256px;
  3982. width:82px;
  3983. height:37px;
  3984. display:flex;
  3985. font-size:14px;
  3986. text-align:left;
  3987. }
  3988. #u79153 .text {
  3989. position:absolute;
  3990. align-self:center;
  3991. padding:2px 10px 2px 10px;
  3992. box-sizing:border-box;
  3993. width:100%;
  3994. }
  3995. #u79153_text {
  3996. border-width:0px;
  3997. word-wrap:break-word;
  3998. text-transform:none;
  3999. visibility:hidden;
  4000. }
  4001. #u79154_img {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:82px;
  4007. height:37px;
  4008. }
  4009. #u79154 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:82px;
  4013. top:256px;
  4014. width:82px;
  4015. height:37px;
  4016. display:flex;
  4017. font-size:14px;
  4018. text-align:left;
  4019. }
  4020. #u79154 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 10px 2px 10px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u79154_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u79155_img {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:119px;
  4039. height:37px;
  4040. }
  4041. #u79155 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:164px;
  4045. top:256px;
  4046. width:119px;
  4047. height:37px;
  4048. display:flex;
  4049. font-size:14px;
  4050. text-align:left;
  4051. }
  4052. #u79155 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:2px 10px 2px 10px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u79155_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. visibility:hidden;
  4064. }
  4065. #u79156_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:119px;
  4071. height:37px;
  4072. }
  4073. #u79156 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:283px;
  4077. top:256px;
  4078. width:119px;
  4079. height:37px;
  4080. display:flex;
  4081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4082. font-weight:400;
  4083. font-style:normal;
  4084. font-size:14px;
  4085. text-align:left;
  4086. }
  4087. #u79156 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 10px 2px 10px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u79156_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u79157_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:123px;
  4106. height:37px;
  4107. }
  4108. #u79157 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:402px;
  4112. top:256px;
  4113. width:123px;
  4114. height:37px;
  4115. display:flex;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:14px;
  4120. text-align:left;
  4121. }
  4122. #u79157 .text {
  4123. position:absolute;
  4124. align-self:center;
  4125. padding:2px 10px 2px 10px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u79157_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u79158_img {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:119px;
  4141. height:37px;
  4142. }
  4143. #u79158 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:525px;
  4147. top:256px;
  4148. width:119px;
  4149. height:37px;
  4150. display:flex;
  4151. font-size:14px;
  4152. text-align:left;
  4153. }
  4154. #u79158 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 10px 2px 10px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u79158_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u79159_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:153px;
  4173. height:37px;
  4174. }
  4175. #u79159 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:644px;
  4179. top:256px;
  4180. width:153px;
  4181. height:37px;
  4182. display:flex;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. text-align:left;
  4187. }
  4188. #u79159 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 10px 2px 10px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u79159_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u79160_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:119px;
  4207. height:37px;
  4208. }
  4209. #u79160 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:797px;
  4213. top:256px;
  4214. width:119px;
  4215. height:37px;
  4216. display:flex;
  4217. font-size:14px;
  4218. text-align:left;
  4219. }
  4220. #u79160 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 10px 2px 10px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u79160_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u79161_img {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:123px;
  4239. height:37px;
  4240. }
  4241. #u79161 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:916px;
  4245. top:256px;
  4246. width:123px;
  4247. height:37px;
  4248. display:flex;
  4249. font-size:14px;
  4250. text-align:left;
  4251. }
  4252. #u79161 .text {
  4253. position:absolute;
  4254. align-self:center;
  4255. padding:2px 10px 2px 10px;
  4256. box-sizing:border-box;
  4257. width:100%;
  4258. }
  4259. #u79161_text {
  4260. border-width:0px;
  4261. word-wrap:break-word;
  4262. text-transform:none;
  4263. visibility:hidden;
  4264. }
  4265. #u79162_img {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:181px;
  4271. height:37px;
  4272. }
  4273. #u79162 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:1039px;
  4277. top:256px;
  4278. width:181px;
  4279. height:37px;
  4280. display:flex;
  4281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4282. font-weight:400;
  4283. font-style:normal;
  4284. font-size:14px;
  4285. color:#1890FF;
  4286. text-align:left;
  4287. }
  4288. #u79162 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 10px 2px 10px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u79162_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. visibility:hidden;
  4300. }
  4301. #u79163_div {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:55px;
  4307. height:30px;
  4308. background:inherit;
  4309. background-color:rgba(255, 255, 255, 1);
  4310. box-sizing:border-box;
  4311. border-width:1px;
  4312. border-style:solid;
  4313. border-color:rgba(170, 170, 170, 1);
  4314. border-radius:4px;
  4315. -moz-box-shadow:none;
  4316. -webkit-box-shadow:none;
  4317. box-shadow:none;
  4318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4319. font-weight:400;
  4320. font-style:normal;
  4321. font-size:12px;
  4322. color:#555555;
  4323. }
  4324. #u79163 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:571px;
  4328. top:156px;
  4329. width:55px;
  4330. height:30px;
  4331. display:flex;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:12px;
  4336. color:#555555;
  4337. }
  4338. #u79163 .text {
  4339. position:absolute;
  4340. align-self:center;
  4341. padding:5px 15px 5px 15px;
  4342. box-sizing:border-box;
  4343. width:100%;
  4344. }
  4345. #u79163_text {
  4346. border-width:0px;
  4347. white-space:nowrap;
  4348. text-transform:none;
  4349. }
  4350. #u79164 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:0px;
  4355. width:0px;
  4356. height:0px;
  4357. }
  4358. #u79165_div {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:140px;
  4364. height:30px;
  4365. background:inherit;
  4366. background-color:rgba(255, 255, 255, 1);
  4367. box-sizing:border-box;
  4368. border-width:1px;
  4369. border-style:solid;
  4370. border-color:rgba(201, 201, 201, 1);
  4371. border-radius:4px;
  4372. -moz-box-shadow:none;
  4373. -webkit-box-shadow:none;
  4374. box-shadow:none;
  4375. font-family:'Microsoft YaHei', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:14px;
  4379. color:#CCCCCC;
  4380. text-align:left;
  4381. }
  4382. #u79165 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:352px;
  4386. top:156px;
  4387. width:140px;
  4388. height:30px;
  4389. display:flex;
  4390. font-family:'Microsoft YaHei', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:14px;
  4394. color:#CCCCCC;
  4395. text-align:left;
  4396. }
  4397. #u79165 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 8px 2px 8px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u79165_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u79166_input {
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:127px;
  4415. height:25px;
  4416. padding:2px 2px 2px 2px;
  4417. font-family:'Microsoft YaHei', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. font-size:10px;
  4421. letter-spacing:normal;
  4422. color:#000000;
  4423. vertical-align:none;
  4424. text-align:left;
  4425. text-transform:none;
  4426. background-color:transparent;
  4427. border-color:transparent;
  4428. }
  4429. #u79166_input.disabled {
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:127px;
  4434. height:25px;
  4435. padding:2px 2px 2px 2px;
  4436. font-family:'Microsoft YaHei', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:10px;
  4440. letter-spacing:normal;
  4441. color:#000000;
  4442. vertical-align:none;
  4443. text-align:left;
  4444. text-transform:none;
  4445. background-color:transparent;
  4446. border-color:transparent;
  4447. }
  4448. #u79166_div {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:127px;
  4454. height:25px;
  4455. background:inherit;
  4456. background-color:rgba(255, 255, 255, 1);
  4457. border:none;
  4458. border-radius:0px;
  4459. -moz-box-shadow:none;
  4460. -webkit-box-shadow:none;
  4461. box-shadow:none;
  4462. font-family:'Microsoft YaHei', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:10px;
  4466. }
  4467. #u79166 {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:360px;
  4471. top:157px;
  4472. width:127px;
  4473. height:25px;
  4474. display:flex;
  4475. font-family:'Microsoft YaHei', sans-serif;
  4476. font-weight:400;
  4477. font-style:normal;
  4478. font-size:10px;
  4479. }
  4480. #u79166 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 2px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u79166_div.disabled {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:127px;
  4493. height:25px;
  4494. background:inherit;
  4495. background-color:rgba(240, 240, 240, 1);
  4496. border:none;
  4497. border-radius:0px;
  4498. -moz-box-shadow:none;
  4499. -webkit-box-shadow:none;
  4500. box-shadow:none;
  4501. font-family:'Microsoft YaHei', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:10px;
  4505. }
  4506. #u79166.disabled {
  4507. }
  4508. #u79167_div {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:59px;
  4514. height:30px;
  4515. background:inherit;
  4516. background-color:rgba(0, 153, 255, 1);
  4517. box-sizing:border-box;
  4518. border-width:1px;
  4519. border-style:solid;
  4520. border-color:rgba(0, 153, 255, 1);
  4521. border-radius:4px;
  4522. -moz-box-shadow:none;
  4523. -webkit-box-shadow:none;
  4524. box-shadow:none;
  4525. font-family:'Microsoft YaHei', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:14px;
  4529. color:#FFFFFF;
  4530. }
  4531. #u79167 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:502px;
  4535. top:156px;
  4536. width:59px;
  4537. height:30px;
  4538. display:flex;
  4539. font-family:'Microsoft YaHei', sans-serif;
  4540. font-weight:400;
  4541. font-style:normal;
  4542. font-size:14px;
  4543. color:#FFFFFF;
  4544. }
  4545. #u79167 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:5px 15px 5px 15px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u79167_text {
  4553. border-width:0px;
  4554. white-space:nowrap;
  4555. text-transform:none;
  4556. }
  4557. #u79168 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:0px;
  4563. height:0px;
  4564. }
  4565. #u79169_div {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:140px;
  4571. height:30px;
  4572. background:inherit;
  4573. background-color:rgba(255, 255, 255, 1);
  4574. box-sizing:border-box;
  4575. border-width:1px;
  4576. border-style:solid;
  4577. border-color:rgba(201, 201, 201, 1);
  4578. border-radius:4px;
  4579. -moz-box-shadow:none;
  4580. -webkit-box-shadow:none;
  4581. box-shadow:none;
  4582. font-family:'Microsoft YaHei', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:14px;
  4586. color:#CCCCCC;
  4587. text-align:left;
  4588. }
  4589. #u79169 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:1102px;
  4593. top:116px;
  4594. width:140px;
  4595. height:30px;
  4596. display:flex;
  4597. font-family:'Microsoft YaHei', sans-serif;
  4598. font-weight:400;
  4599. font-style:normal;
  4600. font-size:14px;
  4601. color:#CCCCCC;
  4602. text-align:left;
  4603. }
  4604. #u79169 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 8px 2px 8px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u79169_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u79170_input {
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:127px;
  4622. height:25px;
  4623. padding:2px 2px 2px 2px;
  4624. font-family:'Microsoft YaHei', sans-serif;
  4625. font-weight:400;
  4626. font-style:normal;
  4627. font-size:10px;
  4628. letter-spacing:normal;
  4629. color:#000000;
  4630. vertical-align:none;
  4631. text-align:left;
  4632. text-transform:none;
  4633. background-color:transparent;
  4634. border-color:transparent;
  4635. }
  4636. #u79170_input.disabled {
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:127px;
  4641. height:25px;
  4642. padding:2px 2px 2px 2px;
  4643. font-family:'Microsoft YaHei', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:10px;
  4647. letter-spacing:normal;
  4648. color:#000000;
  4649. vertical-align:none;
  4650. text-align:left;
  4651. text-transform:none;
  4652. background-color:transparent;
  4653. border-color:transparent;
  4654. }
  4655. #u79170_div {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:127px;
  4661. height:25px;
  4662. background:inherit;
  4663. background-color:rgba(255, 255, 255, 1);
  4664. border:none;
  4665. border-radius:0px;
  4666. -moz-box-shadow:none;
  4667. -webkit-box-shadow:none;
  4668. box-shadow:none;
  4669. font-family:'Microsoft YaHei', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:10px;
  4673. }
  4674. #u79170 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:1110px;
  4678. top:117px;
  4679. width:127px;
  4680. height:25px;
  4681. display:flex;
  4682. font-family:'Microsoft YaHei', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:10px;
  4686. }
  4687. #u79170 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:2px 2px 2px 2px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u79170_div.disabled {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:127px;
  4700. height:25px;
  4701. background:inherit;
  4702. background-color:rgba(240, 240, 240, 1);
  4703. border:none;
  4704. border-radius:0px;
  4705. -moz-box-shadow:none;
  4706. -webkit-box-shadow:none;
  4707. box-shadow:none;
  4708. font-family:'Microsoft YaHei', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:10px;
  4712. }
  4713. #u79170.disabled {
  4714. }
  4715. #u79171 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:0px;
  4721. height:0px;
  4722. }
  4723. #u79172_div {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:140px;
  4729. height:30px;
  4730. background:inherit;
  4731. background-color:rgba(255, 255, 255, 1);
  4732. box-sizing:border-box;
  4733. border-width:1px;
  4734. border-style:solid;
  4735. border-color:rgba(215, 215, 215, 1);
  4736. border-radius:4px;
  4737. -moz-box-shadow:none;
  4738. -webkit-box-shadow:none;
  4739. box-shadow:none;
  4740. font-size:11px;
  4741. }
  4742. #u79172 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:502px;
  4746. top:116px;
  4747. width:140px;
  4748. height:30px;
  4749. display:flex;
  4750. font-size:11px;
  4751. }
  4752. #u79172 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u79172_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. visibility:hidden;
  4764. }
  4765. #u79173_input {
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:123px;
  4770. height:23px;
  4771. padding:2px 2px 2px 2px;
  4772. font-family:'ArialMT', 'Arial', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:11px;
  4776. letter-spacing:normal;
  4777. color:#AAAAAA;
  4778. vertical-align:none;
  4779. text-align:left;
  4780. text-transform:none;
  4781. background-color:transparent;
  4782. border-color:transparent;
  4783. }
  4784. #u79173_input.disabled {
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:123px;
  4789. height:23px;
  4790. padding:2px 2px 2px 2px;
  4791. font-family:'ArialMT', 'Arial', sans-serif;
  4792. font-weight:400;
  4793. font-style:normal;
  4794. font-size:11px;
  4795. letter-spacing:normal;
  4796. color:#AAAAAA;
  4797. vertical-align:none;
  4798. text-align:left;
  4799. text-transform:none;
  4800. background-color:transparent;
  4801. border-color:transparent;
  4802. }
  4803. #u79173_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:123px;
  4809. height:23px;
  4810. background:inherit;
  4811. background-color:rgba(255, 255, 255, 1);
  4812. border:none;
  4813. border-radius:0px;
  4814. -moz-box-shadow:none;
  4815. -webkit-box-shadow:none;
  4816. box-shadow:none;
  4817. font-size:11px;
  4818. color:#AAAAAA;
  4819. }
  4820. #u79173 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:508px;
  4824. top:118px;
  4825. width:123px;
  4826. height:23px;
  4827. display:flex;
  4828. font-size:11px;
  4829. color:#AAAAAA;
  4830. }
  4831. #u79173 .text {
  4832. position:absolute;
  4833. align-self:flex-start;
  4834. padding:2px 2px 2px 2px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u79173_div.disabled {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:123px;
  4844. height:23px;
  4845. background:inherit;
  4846. background-color:rgba(240, 240, 240, 1);
  4847. border:none;
  4848. border-radius:0px;
  4849. -moz-box-shadow:none;
  4850. -webkit-box-shadow:none;
  4851. box-shadow:none;
  4852. font-size:11px;
  4853. color:#AAAAAA;
  4854. }
  4855. #u79173.disabled {
  4856. }
  4857. .u79173_input_option {
  4858. font-size:11px;
  4859. }
  4860. #u79174 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:0px;
  4866. height:0px;
  4867. }
  4868. #u79175_div {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:140px;
  4874. height:30px;
  4875. background:inherit;
  4876. background-color:rgba(255, 255, 255, 1);
  4877. box-sizing:border-box;
  4878. border-width:1px;
  4879. border-style:solid;
  4880. border-color:rgba(215, 215, 215, 1);
  4881. border-radius:4px;
  4882. -moz-box-shadow:none;
  4883. -webkit-box-shadow:none;
  4884. box-shadow:none;
  4885. font-size:11px;
  4886. }
  4887. #u79175 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:652px;
  4891. top:116px;
  4892. width:140px;
  4893. height:30px;
  4894. display:flex;
  4895. font-size:11px;
  4896. }
  4897. #u79175 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 2px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u79175_text {
  4905. border-width:0px;
  4906. word-wrap:break-word;
  4907. text-transform:none;
  4908. visibility:hidden;
  4909. }
  4910. #u79176_input {
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:123px;
  4915. height:23px;
  4916. padding:2px 2px 2px 2px;
  4917. font-family:'ArialMT', 'Arial', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:11px;
  4921. letter-spacing:normal;
  4922. color:#AAAAAA;
  4923. vertical-align:none;
  4924. text-align:left;
  4925. text-transform:none;
  4926. background-color:transparent;
  4927. border-color:transparent;
  4928. }
  4929. #u79176_input.disabled {
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:123px;
  4934. height:23px;
  4935. padding:2px 2px 2px 2px;
  4936. font-family:'ArialMT', 'Arial', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:11px;
  4940. letter-spacing:normal;
  4941. color:#AAAAAA;
  4942. vertical-align:none;
  4943. text-align:left;
  4944. text-transform:none;
  4945. background-color:transparent;
  4946. border-color:transparent;
  4947. }
  4948. #u79176_div {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:123px;
  4954. height:23px;
  4955. background:inherit;
  4956. background-color:rgba(255, 255, 255, 1);
  4957. border:none;
  4958. border-radius:0px;
  4959. -moz-box-shadow:none;
  4960. -webkit-box-shadow:none;
  4961. box-shadow:none;
  4962. font-size:11px;
  4963. color:#AAAAAA;
  4964. }
  4965. #u79176 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:658px;
  4969. top:118px;
  4970. width:123px;
  4971. height:23px;
  4972. display:flex;
  4973. font-size:11px;
  4974. color:#AAAAAA;
  4975. }
  4976. #u79176 .text {
  4977. position:absolute;
  4978. align-self:flex-start;
  4979. padding:2px 2px 2px 2px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u79176_div.disabled {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:123px;
  4989. height:23px;
  4990. background:inherit;
  4991. background-color:rgba(240, 240, 240, 1);
  4992. border:none;
  4993. border-radius:0px;
  4994. -moz-box-shadow:none;
  4995. -webkit-box-shadow:none;
  4996. box-shadow:none;
  4997. font-size:11px;
  4998. color:#AAAAAA;
  4999. }
  5000. #u79176.disabled {
  5001. }
  5002. .u79176_input_option {
  5003. font-size:11px;
  5004. }
  5005. #u79177 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:0px;
  5011. height:0px;
  5012. }
  5013. #u79178_div {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:140px;
  5019. height:30px;
  5020. background:inherit;
  5021. background-color:rgba(255, 255, 255, 1);
  5022. box-sizing:border-box;
  5023. border-width:1px;
  5024. border-style:solid;
  5025. border-color:rgba(215, 215, 215, 1);
  5026. border-radius:4px;
  5027. -moz-box-shadow:none;
  5028. -webkit-box-shadow:none;
  5029. box-shadow:none;
  5030. font-size:11px;
  5031. }
  5032. #u79178 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:352px;
  5036. top:115px;
  5037. width:140px;
  5038. height:30px;
  5039. display:flex;
  5040. font-size:11px;
  5041. }
  5042. #u79178 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:2px 2px 2px 2px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u79178_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. visibility:hidden;
  5054. }
  5055. #u79179_input {
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:123px;
  5060. height:23px;
  5061. padding:2px 2px 2px 2px;
  5062. font-family:'ArialMT', 'Arial', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:11px;
  5066. letter-spacing:normal;
  5067. color:#AAAAAA;
  5068. vertical-align:none;
  5069. text-align:left;
  5070. text-transform:none;
  5071. background-color:transparent;
  5072. border-color:transparent;
  5073. }
  5074. #u79179_input.disabled {
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:123px;
  5079. height:23px;
  5080. padding:2px 2px 2px 2px;
  5081. font-family:'ArialMT', 'Arial', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:11px;
  5085. letter-spacing:normal;
  5086. color:#AAAAAA;
  5087. vertical-align:none;
  5088. text-align:left;
  5089. text-transform:none;
  5090. background-color:transparent;
  5091. border-color:transparent;
  5092. }
  5093. #u79179_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:123px;
  5099. height:23px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 1);
  5102. border:none;
  5103. border-radius:0px;
  5104. -moz-box-shadow:none;
  5105. -webkit-box-shadow:none;
  5106. box-shadow:none;
  5107. font-size:11px;
  5108. color:#AAAAAA;
  5109. }
  5110. #u79179 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:358px;
  5114. top:117px;
  5115. width:123px;
  5116. height:23px;
  5117. display:flex;
  5118. font-size:11px;
  5119. color:#AAAAAA;
  5120. }
  5121. #u79179 .text {
  5122. position:absolute;
  5123. align-self:flex-start;
  5124. padding:2px 2px 2px 2px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u79179_div.disabled {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:123px;
  5134. height:23px;
  5135. background:inherit;
  5136. background-color:rgba(240, 240, 240, 1);
  5137. border:none;
  5138. border-radius:0px;
  5139. -moz-box-shadow:none;
  5140. -webkit-box-shadow:none;
  5141. box-shadow:none;
  5142. font-size:11px;
  5143. color:#AAAAAA;
  5144. }
  5145. #u79179.disabled {
  5146. }
  5147. .u79179_input_option {
  5148. font-size:11px;
  5149. }
  5150. #u79180 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:0px;
  5156. height:0px;
  5157. }
  5158. #u79181_div {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:140px;
  5164. height:30px;
  5165. background:inherit;
  5166. background-color:rgba(255, 255, 255, 1);
  5167. box-sizing:border-box;
  5168. border-width:1px;
  5169. border-style:solid;
  5170. border-color:rgba(201, 201, 201, 1);
  5171. border-radius:4px;
  5172. -moz-box-shadow:none;
  5173. -webkit-box-shadow:none;
  5174. box-shadow:none;
  5175. font-family:'Microsoft YaHei', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:14px;
  5179. color:#CCCCCC;
  5180. text-align:left;
  5181. }
  5182. #u79181 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:1252px;
  5186. top:116px;
  5187. width:140px;
  5188. height:30px;
  5189. display:flex;
  5190. font-family:'Microsoft YaHei', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:14px;
  5194. color:#CCCCCC;
  5195. text-align:left;
  5196. }
  5197. #u79181 .text {
  5198. position:absolute;
  5199. align-self:center;
  5200. padding:2px 8px 2px 8px;
  5201. box-sizing:border-box;
  5202. width:100%;
  5203. }
  5204. #u79181_text {
  5205. border-width:0px;
  5206. word-wrap:break-word;
  5207. text-transform:none;
  5208. visibility:hidden;
  5209. }
  5210. #u79182_input {
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:127px;
  5215. height:25px;
  5216. padding:2px 2px 2px 2px;
  5217. font-family:'Microsoft YaHei', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:10px;
  5221. letter-spacing:normal;
  5222. color:#000000;
  5223. vertical-align:none;
  5224. text-align:left;
  5225. text-transform:none;
  5226. background-color:transparent;
  5227. border-color:transparent;
  5228. }
  5229. #u79182_input.disabled {
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:127px;
  5234. height:25px;
  5235. padding:2px 2px 2px 2px;
  5236. font-family:'Microsoft YaHei', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:10px;
  5240. letter-spacing:normal;
  5241. color:#000000;
  5242. vertical-align:none;
  5243. text-align:left;
  5244. text-transform:none;
  5245. background-color:transparent;
  5246. border-color:transparent;
  5247. }
  5248. #u79182_div {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:127px;
  5254. height:25px;
  5255. background:inherit;
  5256. background-color:rgba(255, 255, 255, 1);
  5257. border:none;
  5258. border-radius:0px;
  5259. -moz-box-shadow:none;
  5260. -webkit-box-shadow:none;
  5261. box-shadow:none;
  5262. font-family:'Microsoft YaHei', sans-serif;
  5263. font-weight:400;
  5264. font-style:normal;
  5265. font-size:10px;
  5266. }
  5267. #u79182 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:1260px;
  5271. top:117px;
  5272. width:127px;
  5273. height:25px;
  5274. display:flex;
  5275. font-family:'Microsoft YaHei', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:10px;
  5279. }
  5280. #u79182 .text {
  5281. position:absolute;
  5282. align-self:center;
  5283. padding:2px 2px 2px 2px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u79182_div.disabled {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:127px;
  5293. height:25px;
  5294. background:inherit;
  5295. background-color:rgba(240, 240, 240, 1);
  5296. border:none;
  5297. border-radius:0px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'Microsoft YaHei', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:10px;
  5305. }
  5306. #u79182.disabled {
  5307. }
  5308. #u79183_div {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:55px;
  5314. height:30px;
  5315. background:inherit;
  5316. background-color:rgba(255, 255, 255, 1);
  5317. box-sizing:border-box;
  5318. border-width:1px;
  5319. border-style:solid;
  5320. border-color:rgba(170, 170, 170, 1);
  5321. border-radius:4px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:12px;
  5329. color:#555555;
  5330. }
  5331. #u79183 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:352px;
  5335. top:205px;
  5336. width:55px;
  5337. height:30px;
  5338. display:flex;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:12px;
  5343. color:#555555;
  5344. }
  5345. #u79183 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:5px 15px 5px 15px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u79183_text {
  5353. border-width:0px;
  5354. white-space:nowrap;
  5355. text-transform:none;
  5356. }
  5357. #u79184 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:0px;
  5363. height:0px;
  5364. }
  5365. #u79185_div {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:140px;
  5371. height:30px;
  5372. background:inherit;
  5373. background-color:rgba(255, 255, 255, 1);
  5374. box-sizing:border-box;
  5375. border-width:1px;
  5376. border-style:solid;
  5377. border-color:rgba(215, 215, 215, 1);
  5378. border-radius:4px;
  5379. -moz-box-shadow:none;
  5380. -webkit-box-shadow:none;
  5381. box-shadow:none;
  5382. font-size:11px;
  5383. }
  5384. #u79185 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:802px;
  5388. top:116px;
  5389. width:140px;
  5390. height:30px;
  5391. display:flex;
  5392. font-size:11px;
  5393. }
  5394. #u79185 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:2px 2px 2px 2px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u79185_text {
  5402. border-width:0px;
  5403. word-wrap:break-word;
  5404. text-transform:none;
  5405. visibility:hidden;
  5406. }
  5407. #u79186_input {
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:123px;
  5412. height:23px;
  5413. padding:2px 2px 2px 2px;
  5414. font-family:'ArialMT', 'Arial', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:11px;
  5418. letter-spacing:normal;
  5419. color:#AAAAAA;
  5420. vertical-align:none;
  5421. text-align:left;
  5422. text-transform:none;
  5423. background-color:transparent;
  5424. border-color:transparent;
  5425. }
  5426. #u79186_input.disabled {
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:123px;
  5431. height:23px;
  5432. padding:2px 2px 2px 2px;
  5433. font-family:'ArialMT', 'Arial', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:11px;
  5437. letter-spacing:normal;
  5438. color:#AAAAAA;
  5439. vertical-align:none;
  5440. text-align:left;
  5441. text-transform:none;
  5442. background-color:transparent;
  5443. border-color:transparent;
  5444. }
  5445. #u79186_div {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:123px;
  5451. height:23px;
  5452. background:inherit;
  5453. background-color:rgba(255, 255, 255, 1);
  5454. border:none;
  5455. border-radius:0px;
  5456. -moz-box-shadow:none;
  5457. -webkit-box-shadow:none;
  5458. box-shadow:none;
  5459. font-size:11px;
  5460. color:#AAAAAA;
  5461. }
  5462. #u79186 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:808px;
  5466. top:118px;
  5467. width:123px;
  5468. height:23px;
  5469. display:flex;
  5470. font-size:11px;
  5471. color:#AAAAAA;
  5472. }
  5473. #u79186 .text {
  5474. position:absolute;
  5475. align-self:flex-start;
  5476. padding:2px 2px 2px 2px;
  5477. box-sizing:border-box;
  5478. width:100%;
  5479. }
  5480. #u79186_div.disabled {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:123px;
  5486. height:23px;
  5487. background:inherit;
  5488. background-color:rgba(240, 240, 240, 1);
  5489. border:none;
  5490. border-radius:0px;
  5491. -moz-box-shadow:none;
  5492. -webkit-box-shadow:none;
  5493. box-shadow:none;
  5494. font-size:11px;
  5495. color:#AAAAAA;
  5496. }
  5497. #u79186.disabled {
  5498. }
  5499. .u79186_input_option {
  5500. font-size:11px;
  5501. }
  5502. #u79187 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:0px;
  5508. height:0px;
  5509. }
  5510. #u79188_div {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:140px;
  5516. height:30px;
  5517. background:inherit;
  5518. background-color:rgba(255, 255, 255, 1);
  5519. box-sizing:border-box;
  5520. border-width:1px;
  5521. border-style:solid;
  5522. border-color:rgba(215, 215, 215, 1);
  5523. border-radius:4px;
  5524. -moz-box-shadow:none;
  5525. -webkit-box-shadow:none;
  5526. box-shadow:none;
  5527. font-size:11px;
  5528. }
  5529. #u79188 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:952px;
  5533. top:116px;
  5534. width:140px;
  5535. height:30px;
  5536. display:flex;
  5537. font-size:11px;
  5538. }
  5539. #u79188 .text {
  5540. position:absolute;
  5541. align-self:center;
  5542. padding:2px 2px 2px 2px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u79188_text {
  5547. border-width:0px;
  5548. word-wrap:break-word;
  5549. text-transform:none;
  5550. visibility:hidden;
  5551. }
  5552. #u79189_input {
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:123px;
  5557. height:23px;
  5558. padding:2px 2px 2px 2px;
  5559. font-family:'ArialMT', 'Arial', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:11px;
  5563. letter-spacing:normal;
  5564. color:#AAAAAA;
  5565. vertical-align:none;
  5566. text-align:left;
  5567. text-transform:none;
  5568. background-color:transparent;
  5569. border-color:transparent;
  5570. }
  5571. #u79189_input.disabled {
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:123px;
  5576. height:23px;
  5577. padding:2px 2px 2px 2px;
  5578. font-family:'ArialMT', 'Arial', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:11px;
  5582. letter-spacing:normal;
  5583. color:#AAAAAA;
  5584. vertical-align:none;
  5585. text-align:left;
  5586. text-transform:none;
  5587. background-color:transparent;
  5588. border-color:transparent;
  5589. }
  5590. #u79189_div {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:0px;
  5594. top:0px;
  5595. width:123px;
  5596. height:23px;
  5597. background:inherit;
  5598. background-color:rgba(255, 255, 255, 1);
  5599. border:none;
  5600. border-radius:0px;
  5601. -moz-box-shadow:none;
  5602. -webkit-box-shadow:none;
  5603. box-shadow:none;
  5604. font-size:11px;
  5605. color:#AAAAAA;
  5606. }
  5607. #u79189 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:958px;
  5611. top:118px;
  5612. width:123px;
  5613. height:23px;
  5614. display:flex;
  5615. font-size:11px;
  5616. color:#AAAAAA;
  5617. }
  5618. #u79189 .text {
  5619. position:absolute;
  5620. align-self:flex-start;
  5621. padding:2px 2px 2px 2px;
  5622. box-sizing:border-box;
  5623. width:100%;
  5624. }
  5625. #u79189_div.disabled {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:123px;
  5631. height:23px;
  5632. background:inherit;
  5633. background-color:rgba(240, 240, 240, 1);
  5634. border:none;
  5635. border-radius:0px;
  5636. -moz-box-shadow:none;
  5637. -webkit-box-shadow:none;
  5638. box-shadow:none;
  5639. font-size:11px;
  5640. color:#AAAAAA;
  5641. }
  5642. #u79189.disabled {
  5643. }
  5644. .u79189_input_option {
  5645. font-size:11px;
  5646. }
  5647. #u79191 {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:0px;
  5653. height:0px;
  5654. }
  5655. #u79192_img {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:200px;
  5661. height:1191px;
  5662. }
  5663. #u79192 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:120px;
  5667. top:50px;
  5668. width:200px;
  5669. height:1191px;
  5670. display:flex;
  5671. }
  5672. #u79192 .text {
  5673. position:absolute;
  5674. align-self:center;
  5675. padding:2px 2px 2px 2px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u79192_text {
  5680. border-width:0px;
  5681. word-wrap:break-word;
  5682. text-transform:none;
  5683. visibility:hidden;
  5684. }
  5685. #u79193_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:200px;
  5691. height:60px;
  5692. background:inherit;
  5693. background-color:rgba(224, 231, 247, 1);
  5694. border:none;
  5695. border-radius:0px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5700. font-weight:500;
  5701. font-style:normal;
  5702. font-size:18px;
  5703. }
  5704. #u79193 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:120px;
  5708. top:50px;
  5709. width:200px;
  5710. height:60px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5713. font-weight:500;
  5714. font-style:normal;
  5715. font-size:18px;
  5716. }
  5717. #u79193 .text {
  5718. position:absolute;
  5719. align-self:center;
  5720. padding:0px 0px 0px 20px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u79193_text {
  5725. border-width:0px;
  5726. word-wrap:break-word;
  5727. text-transform:none;
  5728. }
  5729. #u79194 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:120px;
  5733. top:130px;
  5734. width:200px;
  5735. height:1078px;
  5736. }
  5737. #u79194_state0 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:200px;
  5743. height:1078px;
  5744. overflow:auto;
  5745. -webkit-overflow-scrolling:touch;
  5746. -ms-overflow-x:hidden;
  5747. overflow-x:hidden;
  5748. background-image:none;
  5749. border:none;
  5750. border-radius:0px;
  5751. -moz-box-shadow:none;
  5752. -webkit-box-shadow:none;
  5753. box-shadow:none;
  5754. }
  5755. #u79194_state0_content {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:1px;
  5761. height:1px;
  5762. }
  5763. #u79195_div {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:97px;
  5769. height:22px;
  5770. background:inherit;
  5771. background-color:rgba(255, 255, 255, 0);
  5772. border:none;
  5773. border-radius:0px;
  5774. -moz-box-shadow:none;
  5775. -webkit-box-shadow:none;
  5776. box-shadow:none;
  5777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. font-size:16px;
  5781. }
  5782. #u79195 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:30px;
  5786. top:0px;
  5787. width:97px;
  5788. height:22px;
  5789. display:flex;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:16px;
  5794. }
  5795. #u79195 .text {
  5796. position:absolute;
  5797. align-self:flex-start;
  5798. padding:0px 0px 0px 0px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u79195_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. }
  5807. #u79196_div {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:65px;
  5813. height:22px;
  5814. background:inherit;
  5815. background-color:rgba(255, 255, 255, 0);
  5816. border:none;
  5817. border-radius:0px;
  5818. -moz-box-shadow:none;
  5819. -webkit-box-shadow:none;
  5820. box-shadow:none;
  5821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:16px;
  5825. }
  5826. #u79196 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:30px;
  5830. top:42px;
  5831. width:65px;
  5832. height:22px;
  5833. display:flex;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:16px;
  5838. }
  5839. #u79196 .text {
  5840. position:absolute;
  5841. align-self:flex-start;
  5842. padding:0px 0px 0px 0px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u79196_text {
  5847. border-width:0px;
  5848. white-space:nowrap;
  5849. text-transform:none;
  5850. }
  5851. #u79197_div {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:49px;
  5857. height:22px;
  5858. background:inherit;
  5859. background-color:rgba(255, 255, 255, 0);
  5860. border:none;
  5861. border-radius:0px;
  5862. -moz-box-shadow:none;
  5863. -webkit-box-shadow:none;
  5864. box-shadow:none;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:16px;
  5869. }
  5870. #u79197 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:30px;
  5874. top:145px;
  5875. width:49px;
  5876. height:22px;
  5877. display:flex;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:16px;
  5882. }
  5883. #u79197 .text {
  5884. position:absolute;
  5885. align-self:flex-start;
  5886. padding:0px 0px 0px 0px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u79197_text {
  5891. border-width:0px;
  5892. white-space:nowrap;
  5893. text-transform:none;
  5894. }
  5895. #u79198_div {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:0px;
  5899. top:0px;
  5900. width:97px;
  5901. height:22px;
  5902. background:inherit;
  5903. background-color:rgba(255, 255, 255, 0);
  5904. border:none;
  5905. border-radius:0px;
  5906. -moz-box-shadow:none;
  5907. -webkit-box-shadow:none;
  5908. box-shadow:none;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:16px;
  5913. }
  5914. #u79198 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:30px;
  5918. top:187px;
  5919. width:97px;
  5920. height:22px;
  5921. display:flex;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:16px;
  5926. }
  5927. #u79198 .text {
  5928. position:absolute;
  5929. align-self:flex-start;
  5930. padding:0px 0px 0px 0px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u79198_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. }
  5939. #u79199_img {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:201px;
  5945. height:2px;
  5946. }
  5947. #u79199 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:84px;
  5952. width:200px;
  5953. height:1px;
  5954. display:flex;
  5955. }
  5956. #u79199 .text {
  5957. position:absolute;
  5958. align-self:center;
  5959. padding:2px 2px 2px 2px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u79199_text {
  5964. border-width:0px;
  5965. word-wrap:break-word;
  5966. text-transform:none;
  5967. visibility:hidden;
  5968. }
  5969. #u79200_div {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:49px;
  5975. height:17px;
  5976. background:inherit;
  5977. background-color:rgba(255, 255, 255, 0);
  5978. border:none;
  5979. border-radius:0px;
  5980. -moz-box-shadow:none;
  5981. -webkit-box-shadow:none;
  5982. box-shadow:none;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:12px;
  5987. color:#AAAAAA;
  5988. }
  5989. #u79200 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:30px;
  5993. top:105px;
  5994. width:49px;
  5995. height:17px;
  5996. display:flex;
  5997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:12px;
  6001. color:#AAAAAA;
  6002. }
  6003. #u79200 .text {
  6004. position:absolute;
  6005. align-self:flex-start;
  6006. padding:0px 0px 0px 0px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u79200_text {
  6011. border-width:0px;
  6012. white-space:nowrap;
  6013. text-transform:none;
  6014. }
  6015. #u79201_div {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:97px;
  6021. height:22px;
  6022. background:inherit;
  6023. background-color:rgba(255, 255, 255, 0);
  6024. border:none;
  6025. border-radius:0px;
  6026. -moz-box-shadow:none;
  6027. -webkit-box-shadow:none;
  6028. box-shadow:none;
  6029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. font-size:16px;
  6033. }
  6034. #u79201 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:30px;
  6038. top:229px;
  6039. width:97px;
  6040. height:22px;
  6041. display:flex;
  6042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6043. font-weight:400;
  6044. font-style:normal;
  6045. font-size:16px;
  6046. }
  6047. #u79201 .text {
  6048. position:absolute;
  6049. align-self:flex-start;
  6050. padding:0px 0px 0px 0px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u79201_text {
  6055. border-width:0px;
  6056. word-wrap:break-word;
  6057. text-transform:none;
  6058. }
  6059. #u79202_div {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:65px;
  6065. height:22px;
  6066. background:inherit;
  6067. background-color:rgba(255, 255, 255, 0);
  6068. border:none;
  6069. border-radius:0px;
  6070. -moz-box-shadow:none;
  6071. -webkit-box-shadow:none;
  6072. box-shadow:none;
  6073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. font-size:16px;
  6077. }
  6078. #u79202 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:30px;
  6082. top:271px;
  6083. width:65px;
  6084. height:22px;
  6085. display:flex;
  6086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. font-size:16px;
  6090. }
  6091. #u79202 .text {
  6092. position:absolute;
  6093. align-self:flex-start;
  6094. padding:0px 0px 0px 0px;
  6095. box-sizing:border-box;
  6096. width:100%;
  6097. }
  6098. #u79202_text {
  6099. border-width:0px;
  6100. white-space:nowrap;
  6101. text-transform:none;
  6102. }
  6103. #u79203_img {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:201px;
  6109. height:2px;
  6110. }
  6111. #u79203 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:313px;
  6116. width:200px;
  6117. height:1px;
  6118. display:flex;
  6119. }
  6120. #u79203 .text {
  6121. position:absolute;
  6122. align-self:center;
  6123. padding:2px 2px 2px 2px;
  6124. box-sizing:border-box;
  6125. width:100%;
  6126. }
  6127. #u79203_text {
  6128. border-width:0px;
  6129. word-wrap:break-word;
  6130. text-transform:none;
  6131. visibility:hidden;
  6132. }
  6133. #u79204_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:65px;
  6139. height:22px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 0);
  6142. border:none;
  6143. border-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:16px;
  6151. }
  6152. #u79204 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:30px;
  6156. top:370px;
  6157. width:65px;
  6158. height:22px;
  6159. display:flex;
  6160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:16px;
  6164. }
  6165. #u79204 .text {
  6166. position:absolute;
  6167. align-self:flex-start;
  6168. padding:0px 0px 0px 0px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u79204_text {
  6173. border-width:0px;
  6174. white-space:nowrap;
  6175. text-transform:none;
  6176. }
  6177. #u79205_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:49px;
  6183. height:17px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 0);
  6186. border:none;
  6187. border-radius:0px;
  6188. -moz-box-shadow:none;
  6189. -webkit-box-shadow:none;
  6190. box-shadow:none;
  6191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. font-size:12px;
  6195. color:#AAAAAA;
  6196. }
  6197. #u79205 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:30px;
  6201. top:334px;
  6202. width:49px;
  6203. height:17px;
  6204. display:flex;
  6205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:12px;
  6209. color:#AAAAAA;
  6210. }
  6211. #u79205 .text {
  6212. position:absolute;
  6213. align-self:flex-start;
  6214. padding:0px 0px 0px 0px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u79205_text {
  6219. border-width:0px;
  6220. white-space:nowrap;
  6221. text-transform:none;
  6222. }
  6223. #u79206_div {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:65px;
  6229. height:22px;
  6230. background:inherit;
  6231. background-color:rgba(255, 255, 255, 0);
  6232. border:none;
  6233. border-radius:0px;
  6234. -moz-box-shadow:none;
  6235. -webkit-box-shadow:none;
  6236. box-shadow:none;
  6237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:16px;
  6241. }
  6242. #u79206 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:30px;
  6246. top:412px;
  6247. width:65px;
  6248. height:22px;
  6249. display:flex;
  6250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:16px;
  6254. }
  6255. #u79206 .text {
  6256. position:absolute;
  6257. align-self:flex-start;
  6258. padding:0px 0px 0px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u79206_text {
  6263. border-width:0px;
  6264. white-space:nowrap;
  6265. text-transform:none;
  6266. }
  6267. #u79207_div {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:65px;
  6273. height:22px;
  6274. background:inherit;
  6275. background-color:rgba(255, 255, 255, 0);
  6276. border:none;
  6277. border-radius:0px;
  6278. -moz-box-shadow:none;
  6279. -webkit-box-shadow:none;
  6280. box-shadow:none;
  6281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:16px;
  6285. }
  6286. #u79207 {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:30px;
  6290. top:454px;
  6291. width:65px;
  6292. height:22px;
  6293. display:flex;
  6294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. font-size:16px;
  6298. }
  6299. #u79207 .text {
  6300. position:absolute;
  6301. align-self:flex-start;
  6302. padding:0px 0px 0px 0px;
  6303. box-sizing:border-box;
  6304. width:100%;
  6305. }
  6306. #u79207_text {
  6307. border-width:0px;
  6308. white-space:nowrap;
  6309. text-transform:none;
  6310. }
  6311. #u79208_div {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:0px;
  6315. top:0px;
  6316. width:65px;
  6317. height:22px;
  6318. background:inherit;
  6319. background-color:rgba(255, 255, 255, 0);
  6320. border:none;
  6321. border-radius:0px;
  6322. -moz-box-shadow:none;
  6323. -webkit-box-shadow:none;
  6324. box-shadow:none;
  6325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:16px;
  6329. }
  6330. #u79208 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:30px;
  6334. top:496px;
  6335. width:65px;
  6336. height:22px;
  6337. display:flex;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:16px;
  6342. }
  6343. #u79208 .text {
  6344. position:absolute;
  6345. align-self:flex-start;
  6346. padding:0px 0px 0px 0px;
  6347. box-sizing:border-box;
  6348. width:100%;
  6349. }
  6350. #u79208_text {
  6351. border-width:0px;
  6352. white-space:nowrap;
  6353. text-transform:none;
  6354. }
  6355. #u79209_div {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:0px;
  6359. top:0px;
  6360. width:65px;
  6361. height:22px;
  6362. background:inherit;
  6363. background-color:rgba(255, 255, 255, 0);
  6364. border:none;
  6365. border-radius:0px;
  6366. -moz-box-shadow:none;
  6367. -webkit-box-shadow:none;
  6368. box-shadow:none;
  6369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. font-size:16px;
  6373. }
  6374. #u79209 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:30px;
  6378. top:538px;
  6379. width:65px;
  6380. height:22px;
  6381. display:flex;
  6382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:16px;
  6386. }
  6387. #u79209 .text {
  6388. position:absolute;
  6389. align-self:flex-start;
  6390. padding:0px 0px 0px 0px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u79209_text {
  6395. border-width:0px;
  6396. white-space:nowrap;
  6397. text-transform:none;
  6398. }
  6399. #u79210_div {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:65px;
  6405. height:22px;
  6406. background:inherit;
  6407. background-color:rgba(255, 255, 255, 0);
  6408. border:none;
  6409. border-radius:0px;
  6410. -moz-box-shadow:none;
  6411. -webkit-box-shadow:none;
  6412. box-shadow:none;
  6413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. font-size:16px;
  6417. }
  6418. #u79210 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:30px;
  6422. top:580px;
  6423. width:65px;
  6424. height:22px;
  6425. display:flex;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:16px;
  6430. }
  6431. #u79210 .text {
  6432. position:absolute;
  6433. align-self:flex-start;
  6434. padding:0px 0px 0px 0px;
  6435. box-sizing:border-box;
  6436. width:100%;
  6437. }
  6438. #u79210_text {
  6439. border-width:0px;
  6440. white-space:nowrap;
  6441. text-transform:none;
  6442. }
  6443. #u79211_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:201px;
  6449. height:2px;
  6450. }
  6451. #u79211 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:1289px;
  6456. width:200px;
  6457. height:1px;
  6458. display:flex;
  6459. }
  6460. #u79211 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 2px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u79211_text {
  6468. border-width:0px;
  6469. word-wrap:break-word;
  6470. text-transform:none;
  6471. visibility:hidden;
  6472. }
  6473. #u79212_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:65px;
  6479. height:22px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 0);
  6482. border:none;
  6483. border-radius:0px;
  6484. -moz-box-shadow:none;
  6485. -webkit-box-shadow:none;
  6486. box-shadow:none;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:16px;
  6491. }
  6492. #u79212 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:30px;
  6496. top:1346px;
  6497. width:65px;
  6498. height:22px;
  6499. display:flex;
  6500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:16px;
  6504. }
  6505. #u79212 .text {
  6506. position:absolute;
  6507. align-self:flex-start;
  6508. padding:0px 0px 0px 0px;
  6509. box-sizing:border-box;
  6510. width:100%;
  6511. }
  6512. #u79212_text {
  6513. border-width:0px;
  6514. white-space:nowrap;
  6515. text-transform:none;
  6516. }
  6517. #u79213_div {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:49px;
  6523. height:17px;
  6524. background:inherit;
  6525. background-color:rgba(255, 255, 255, 0);
  6526. border:none;
  6527. border-radius:0px;
  6528. -moz-box-shadow:none;
  6529. -webkit-box-shadow:none;
  6530. box-shadow:none;
  6531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6532. font-weight:400;
  6533. font-style:normal;
  6534. font-size:12px;
  6535. color:#AAAAAA;
  6536. }
  6537. #u79213 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:30px;
  6541. top:1310px;
  6542. width:49px;
  6543. height:17px;
  6544. display:flex;
  6545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. font-size:12px;
  6549. color:#AAAAAA;
  6550. }
  6551. #u79213 .text {
  6552. position:absolute;
  6553. align-self:flex-start;
  6554. padding:0px 0px 0px 0px;
  6555. box-sizing:border-box;
  6556. width:100%;
  6557. }
  6558. #u79213_text {
  6559. border-width:0px;
  6560. white-space:nowrap;
  6561. text-transform:none;
  6562. }
  6563. #u79214_div {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:65px;
  6569. height:22px;
  6570. background:inherit;
  6571. background-color:rgba(255, 255, 255, 0);
  6572. border:none;
  6573. border-radius:0px;
  6574. -moz-box-shadow:none;
  6575. -webkit-box-shadow:none;
  6576. box-shadow:none;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:16px;
  6581. }
  6582. #u79214 {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:30px;
  6586. top:1388px;
  6587. width:65px;
  6588. height:22px;
  6589. display:flex;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:16px;
  6594. }
  6595. #u79214 .text {
  6596. position:absolute;
  6597. align-self:flex-start;
  6598. padding:0px 0px 0px 0px;
  6599. box-sizing:border-box;
  6600. width:100%;
  6601. }
  6602. #u79214_text {
  6603. border-width:0px;
  6604. white-space:nowrap;
  6605. text-transform:none;
  6606. }
  6607. #u79215_div {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:65px;
  6613. height:22px;
  6614. background:inherit;
  6615. background-color:rgba(255, 255, 255, 0);
  6616. border:none;
  6617. border-radius:0px;
  6618. -moz-box-shadow:none;
  6619. -webkit-box-shadow:none;
  6620. box-shadow:none;
  6621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6622. font-weight:400;
  6623. font-style:normal;
  6624. font-size:16px;
  6625. }
  6626. #u79215 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:30px;
  6630. top:1472px;
  6631. width:65px;
  6632. height:22px;
  6633. display:flex;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:16px;
  6638. }
  6639. #u79215 .text {
  6640. position:absolute;
  6641. align-self:flex-start;
  6642. padding:0px 0px 0px 0px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u79215_text {
  6647. border-width:0px;
  6648. white-space:nowrap;
  6649. text-transform:none;
  6650. }
  6651. #u79216_img {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:201px;
  6657. height:2px;
  6658. }
  6659. #u79216 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:1514px;
  6664. width:200px;
  6665. height:1px;
  6666. display:flex;
  6667. }
  6668. #u79216 .text {
  6669. position:absolute;
  6670. align-self:center;
  6671. padding:2px 2px 2px 2px;
  6672. box-sizing:border-box;
  6673. width:100%;
  6674. }
  6675. #u79216_text {
  6676. border-width:0px;
  6677. word-wrap:break-word;
  6678. text-transform:none;
  6679. visibility:hidden;
  6680. }
  6681. #u79217_div {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:49px;
  6687. height:22px;
  6688. background:inherit;
  6689. background-color:rgba(255, 255, 255, 0);
  6690. border:none;
  6691. border-radius:0px;
  6692. -moz-box-shadow:none;
  6693. -webkit-box-shadow:none;
  6694. box-shadow:none;
  6695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6696. font-weight:400;
  6697. font-style:normal;
  6698. font-size:16px;
  6699. }
  6700. #u79217 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:30px;
  6704. top:1571px;
  6705. width:49px;
  6706. height:22px;
  6707. display:flex;
  6708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. font-size:16px;
  6712. }
  6713. #u79217 .text {
  6714. position:absolute;
  6715. align-self:flex-start;
  6716. padding:0px 0px 0px 0px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u79217_text {
  6721. border-width:0px;
  6722. white-space:nowrap;
  6723. text-transform:none;
  6724. }
  6725. #u79218_div {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:49px;
  6731. height:17px;
  6732. background:inherit;
  6733. background-color:rgba(255, 255, 255, 0);
  6734. border:none;
  6735. border-radius:0px;
  6736. -moz-box-shadow:none;
  6737. -webkit-box-shadow:none;
  6738. box-shadow:none;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. color:#AAAAAA;
  6744. }
  6745. #u79218 {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:30px;
  6749. top:1535px;
  6750. width:49px;
  6751. height:17px;
  6752. display:flex;
  6753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:12px;
  6757. color:#AAAAAA;
  6758. }
  6759. #u79218 .text {
  6760. position:absolute;
  6761. align-self:flex-start;
  6762. padding:0px 0px 0px 0px;
  6763. box-sizing:border-box;
  6764. width:100%;
  6765. }
  6766. #u79218_text {
  6767. border-width:0px;
  6768. white-space:nowrap;
  6769. text-transform:none;
  6770. }
  6771. #u79219_div {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:49px;
  6777. height:22px;
  6778. background:inherit;
  6779. background-color:rgba(255, 255, 255, 0);
  6780. border:none;
  6781. border-radius:0px;
  6782. -moz-box-shadow:none;
  6783. -webkit-box-shadow:none;
  6784. box-shadow:none;
  6785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:16px;
  6789. }
  6790. #u79219 {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:30px;
  6794. top:1613px;
  6795. width:49px;
  6796. height:22px;
  6797. display:flex;
  6798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6799. font-weight:400;
  6800. font-style:normal;
  6801. font-size:16px;
  6802. }
  6803. #u79219 .text {
  6804. position:absolute;
  6805. align-self:flex-start;
  6806. padding:0px 0px 0px 0px;
  6807. box-sizing:border-box;
  6808. width:100%;
  6809. }
  6810. #u79219_text {
  6811. border-width:0px;
  6812. white-space:nowrap;
  6813. text-transform:none;
  6814. }
  6815. #u79220_div {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:0px;
  6819. top:0px;
  6820. width:65px;
  6821. height:22px;
  6822. background:inherit;
  6823. background-color:rgba(255, 255, 255, 0);
  6824. border:none;
  6825. border-radius:0px;
  6826. -moz-box-shadow:none;
  6827. -webkit-box-shadow:none;
  6828. box-shadow:none;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:16px;
  6833. }
  6834. #u79220 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:30px;
  6838. top:1655px;
  6839. width:65px;
  6840. height:22px;
  6841. display:flex;
  6842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6843. font-weight:400;
  6844. font-style:normal;
  6845. font-size:16px;
  6846. }
  6847. #u79220 .text {
  6848. position:absolute;
  6849. align-self:flex-start;
  6850. padding:0px 0px 0px 0px;
  6851. box-sizing:border-box;
  6852. width:100%;
  6853. }
  6854. #u79220_text {
  6855. border-width:0px;
  6856. white-space:nowrap;
  6857. text-transform:none;
  6858. }
  6859. #u79221_img {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:201px;
  6865. height:2px;
  6866. }
  6867. #u79221 {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:1697px;
  6872. width:200px;
  6873. height:1px;
  6874. display:flex;
  6875. }
  6876. #u79221 .text {
  6877. position:absolute;
  6878. align-self:center;
  6879. padding:2px 2px 2px 2px;
  6880. box-sizing:border-box;
  6881. width:100%;
  6882. }
  6883. #u79221_text {
  6884. border-width:0px;
  6885. word-wrap:break-word;
  6886. text-transform:none;
  6887. visibility:hidden;
  6888. }
  6889. #u79222_div {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:0px;
  6893. top:0px;
  6894. width:81px;
  6895. height:22px;
  6896. background:inherit;
  6897. background-color:rgba(255, 255, 255, 0);
  6898. border:none;
  6899. border-radius:0px;
  6900. -moz-box-shadow:none;
  6901. -webkit-box-shadow:none;
  6902. box-shadow:none;
  6903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:16px;
  6907. }
  6908. #u79222 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:30px;
  6912. top:1754px;
  6913. width:81px;
  6914. height:22px;
  6915. display:flex;
  6916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:16px;
  6920. }
  6921. #u79222 .text {
  6922. position:absolute;
  6923. align-self:flex-start;
  6924. padding:0px 0px 0px 0px;
  6925. box-sizing:border-box;
  6926. width:100%;
  6927. }
  6928. #u79222_text {
  6929. border-width:0px;
  6930. white-space:nowrap;
  6931. text-transform:none;
  6932. }
  6933. #u79223_div {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:0px;
  6937. top:0px;
  6938. width:49px;
  6939. height:17px;
  6940. background:inherit;
  6941. background-color:rgba(255, 255, 255, 0);
  6942. border:none;
  6943. border-radius:0px;
  6944. -moz-box-shadow:none;
  6945. -webkit-box-shadow:none;
  6946. box-shadow:none;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:12px;
  6951. color:#AAAAAA;
  6952. }
  6953. #u79223 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:30px;
  6957. top:1718px;
  6958. width:49px;
  6959. height:17px;
  6960. display:flex;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:12px;
  6965. color:#AAAAAA;
  6966. }
  6967. #u79223 .text {
  6968. position:absolute;
  6969. align-self:flex-start;
  6970. padding:0px 0px 0px 0px;
  6971. box-sizing:border-box;
  6972. width:100%;
  6973. }
  6974. #u79223_text {
  6975. border-width:0px;
  6976. white-space:nowrap;
  6977. text-transform:none;
  6978. }
  6979. #u79224_div {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:0px;
  6983. top:0px;
  6984. width:81px;
  6985. height:22px;
  6986. background:inherit;
  6987. background-color:rgba(255, 255, 255, 0);
  6988. border:none;
  6989. border-radius:0px;
  6990. -moz-box-shadow:none;
  6991. -webkit-box-shadow:none;
  6992. box-shadow:none;
  6993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6994. font-weight:400;
  6995. font-style:normal;
  6996. font-size:16px;
  6997. }
  6998. #u79224 {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:30px;
  7002. top:1796px;
  7003. width:81px;
  7004. height:22px;
  7005. display:flex;
  7006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7007. font-weight:400;
  7008. font-style:normal;
  7009. font-size:16px;
  7010. }
  7011. #u79224 .text {
  7012. position:absolute;
  7013. align-self:flex-start;
  7014. padding:0px 0px 0px 0px;
  7015. box-sizing:border-box;
  7016. width:100%;
  7017. }
  7018. #u79224_text {
  7019. border-width:0px;
  7020. white-space:nowrap;
  7021. text-transform:none;
  7022. }
  7023. #u79225_div {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:81px;
  7029. height:22px;
  7030. background:inherit;
  7031. background-color:rgba(255, 255, 255, 0);
  7032. border:none;
  7033. border-radius:0px;
  7034. -moz-box-shadow:none;
  7035. -webkit-box-shadow:none;
  7036. box-shadow:none;
  7037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7038. font-weight:400;
  7039. font-style:normal;
  7040. font-size:16px;
  7041. }
  7042. #u79225 {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:30px;
  7046. top:1838px;
  7047. width:81px;
  7048. height:22px;
  7049. display:flex;
  7050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:16px;
  7054. }
  7055. #u79225 .text {
  7056. position:absolute;
  7057. align-self:flex-start;
  7058. padding:0px 0px 0px 0px;
  7059. box-sizing:border-box;
  7060. width:100%;
  7061. }
  7062. #u79225_text {
  7063. border-width:0px;
  7064. white-space:nowrap;
  7065. text-transform:none;
  7066. }
  7067. #u79226_div {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:65px;
  7073. height:22px;
  7074. background:inherit;
  7075. background-color:rgba(255, 255, 255, 0);
  7076. border:none;
  7077. border-radius:0px;
  7078. -moz-box-shadow:none;
  7079. -webkit-box-shadow:none;
  7080. box-shadow:none;
  7081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7082. font-weight:400;
  7083. font-style:normal;
  7084. font-size:16px;
  7085. }
  7086. #u79226 {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:30px;
  7090. top:1430px;
  7091. width:65px;
  7092. height:22px;
  7093. display:flex;
  7094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7095. font-weight:400;
  7096. font-style:normal;
  7097. font-size:16px;
  7098. }
  7099. #u79226 .text {
  7100. position:absolute;
  7101. align-self:flex-start;
  7102. padding:0px 0px 0px 0px;
  7103. box-sizing:border-box;
  7104. width:100%;
  7105. }
  7106. #u79226_text {
  7107. border-width:0px;
  7108. white-space:nowrap;
  7109. text-transform:none;
  7110. }
  7111. #u79227_img {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:201px;
  7117. height:2px;
  7118. }
  7119. #u79227 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:669px;
  7124. width:200px;
  7125. height:1px;
  7126. display:flex;
  7127. }
  7128. #u79227 .text {
  7129. position:absolute;
  7130. align-self:center;
  7131. padding:2px 2px 2px 2px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u79227_text {
  7136. border-width:0px;
  7137. word-wrap:break-word;
  7138. text-transform:none;
  7139. visibility:hidden;
  7140. }
  7141. #u79228_div {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:65px;
  7147. height:22px;
  7148. background:inherit;
  7149. background-color:rgba(255, 255, 255, 0);
  7150. border:none;
  7151. border-radius:0px;
  7152. -moz-box-shadow:none;
  7153. -webkit-box-shadow:none;
  7154. box-shadow:none;
  7155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:16px;
  7159. }
  7160. #u79228 {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:30px;
  7164. top:726px;
  7165. width:65px;
  7166. height:22px;
  7167. display:flex;
  7168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7169. font-weight:400;
  7170. font-style:normal;
  7171. font-size:16px;
  7172. }
  7173. #u79228 .text {
  7174. position:absolute;
  7175. align-self:flex-start;
  7176. padding:0px 0px 0px 0px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u79228_text {
  7181. border-width:0px;
  7182. white-space:nowrap;
  7183. text-transform:none;
  7184. }
  7185. #u79229_div {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:0px;
  7190. width:49px;
  7191. height:17px;
  7192. background:inherit;
  7193. background-color:rgba(255, 255, 255, 0);
  7194. border:none;
  7195. border-radius:0px;
  7196. -moz-box-shadow:none;
  7197. -webkit-box-shadow:none;
  7198. box-shadow:none;
  7199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:12px;
  7203. color:#AAAAAA;
  7204. }
  7205. #u79229 {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:30px;
  7209. top:690px;
  7210. width:49px;
  7211. height:17px;
  7212. display:flex;
  7213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7214. font-weight:400;
  7215. font-style:normal;
  7216. font-size:12px;
  7217. color:#AAAAAA;
  7218. }
  7219. #u79229 .text {
  7220. position:absolute;
  7221. align-self:flex-start;
  7222. padding:0px 0px 0px 0px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u79229_text {
  7227. border-width:0px;
  7228. white-space:nowrap;
  7229. text-transform:none;
  7230. }
  7231. #u79230_div {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:65px;
  7237. height:22px;
  7238. background:inherit;
  7239. background-color:rgba(255, 255, 255, 0);
  7240. border:none;
  7241. border-radius:0px;
  7242. -moz-box-shadow:none;
  7243. -webkit-box-shadow:none;
  7244. box-shadow:none;
  7245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:16px;
  7249. }
  7250. #u79230 {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:30px;
  7254. top:768px;
  7255. width:65px;
  7256. height:22px;
  7257. display:flex;
  7258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:16px;
  7262. }
  7263. #u79230 .text {
  7264. position:absolute;
  7265. align-self:flex-start;
  7266. padding:0px 0px 0px 0px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u79230_text {
  7271. border-width:0px;
  7272. white-space:nowrap;
  7273. text-transform:none;
  7274. }
  7275. #u79231_div {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:65px;
  7281. height:22px;
  7282. background:inherit;
  7283. background-color:rgba(255, 255, 255, 0);
  7284. border:none;
  7285. border-radius:0px;
  7286. -moz-box-shadow:none;
  7287. -webkit-box-shadow:none;
  7288. box-shadow:none;
  7289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:16px;
  7293. }
  7294. #u79231 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:30px;
  7298. top:852px;
  7299. width:65px;
  7300. height:22px;
  7301. display:flex;
  7302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:16px;
  7306. }
  7307. #u79231 .text {
  7308. position:absolute;
  7309. align-self:flex-start;
  7310. padding:0px 0px 0px 0px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u79231_text {
  7315. border-width:0px;
  7316. white-space:nowrap;
  7317. text-transform:none;
  7318. }
  7319. #u79232_div {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:65px;
  7325. height:22px;
  7326. background:inherit;
  7327. background-color:rgba(255, 255, 255, 0);
  7328. border:none;
  7329. border-radius:0px;
  7330. -moz-box-shadow:none;
  7331. -webkit-box-shadow:none;
  7332. box-shadow:none;
  7333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7334. font-weight:400;
  7335. font-style:normal;
  7336. font-size:16px;
  7337. }
  7338. #u79232 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:30px;
  7342. top:810px;
  7343. width:65px;
  7344. height:22px;
  7345. display:flex;
  7346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:16px;
  7350. }
  7351. #u79232 .text {
  7352. position:absolute;
  7353. align-self:flex-start;
  7354. padding:0px 0px 0px 0px;
  7355. box-sizing:border-box;
  7356. width:100%;
  7357. }
  7358. #u79232_text {
  7359. border-width:0px;
  7360. white-space:nowrap;
  7361. text-transform:none;
  7362. }
  7363. #u79233_div {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:0px;
  7367. top:0px;
  7368. width:65px;
  7369. height:22px;
  7370. background:inherit;
  7371. background-color:rgba(255, 255, 255, 0);
  7372. border:none;
  7373. border-radius:0px;
  7374. -moz-box-shadow:none;
  7375. -webkit-box-shadow:none;
  7376. box-shadow:none;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:16px;
  7381. }
  7382. #u79233 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:30px;
  7386. top:894px;
  7387. width:65px;
  7388. height:22px;
  7389. display:flex;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:16px;
  7394. }
  7395. #u79233 .text {
  7396. position:absolute;
  7397. align-self:flex-start;
  7398. padding:0px 0px 0px 0px;
  7399. box-sizing:border-box;
  7400. width:100%;
  7401. }
  7402. #u79233_text {
  7403. border-width:0px;
  7404. white-space:nowrap;
  7405. text-transform:none;
  7406. }
  7407. #u79234_div {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:65px;
  7413. height:22px;
  7414. background:inherit;
  7415. background-color:rgba(255, 255, 255, 0);
  7416. border:none;
  7417. border-radius:0px;
  7418. -moz-box-shadow:none;
  7419. -webkit-box-shadow:none;
  7420. box-shadow:none;
  7421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7422. font-weight:400;
  7423. font-style:normal;
  7424. font-size:16px;
  7425. }
  7426. #u79234 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:30px;
  7430. top:936px;
  7431. width:65px;
  7432. height:22px;
  7433. display:flex;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:16px;
  7438. }
  7439. #u79234 .text {
  7440. position:absolute;
  7441. align-self:flex-start;
  7442. padding:0px 0px 0px 0px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u79234_text {
  7447. border-width:0px;
  7448. white-space:nowrap;
  7449. text-transform:none;
  7450. }
  7451. #u79235_img {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:201px;
  7457. height:2px;
  7458. }
  7459. #u79235 {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:0px;
  7463. top:1018px;
  7464. width:200px;
  7465. height:1px;
  7466. display:flex;
  7467. }
  7468. #u79235 .text {
  7469. position:absolute;
  7470. align-self:center;
  7471. padding:2px 2px 2px 2px;
  7472. box-sizing:border-box;
  7473. width:100%;
  7474. }
  7475. #u79235_text {
  7476. border-width:0px;
  7477. word-wrap:break-word;
  7478. text-transform:none;
  7479. visibility:hidden;
  7480. }
  7481. #u79236_div {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:0px;
  7485. top:0px;
  7486. width:65px;
  7487. height:22px;
  7488. background:inherit;
  7489. background-color:rgba(255, 255, 255, 0);
  7490. border:none;
  7491. border-radius:0px;
  7492. -moz-box-shadow:none;
  7493. -webkit-box-shadow:none;
  7494. box-shadow:none;
  7495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7496. font-weight:400;
  7497. font-style:normal;
  7498. font-size:16px;
  7499. }
  7500. #u79236 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:30px;
  7504. top:1075px;
  7505. width:65px;
  7506. height:22px;
  7507. display:flex;
  7508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7509. font-weight:400;
  7510. font-style:normal;
  7511. font-size:16px;
  7512. }
  7513. #u79236 .text {
  7514. position:absolute;
  7515. align-self:flex-start;
  7516. padding:0px 0px 0px 0px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u79236_text {
  7521. border-width:0px;
  7522. white-space:nowrap;
  7523. text-transform:none;
  7524. }
  7525. #u79237_div {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:49px;
  7531. height:17px;
  7532. background:inherit;
  7533. background-color:rgba(255, 255, 255, 0);
  7534. border:none;
  7535. border-radius:0px;
  7536. -moz-box-shadow:none;
  7537. -webkit-box-shadow:none;
  7538. box-shadow:none;
  7539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. font-size:12px;
  7543. color:#AAAAAA;
  7544. }
  7545. #u79237 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:30px;
  7549. top:1039px;
  7550. width:49px;
  7551. height:17px;
  7552. display:flex;
  7553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:12px;
  7557. color:#AAAAAA;
  7558. }
  7559. #u79237 .text {
  7560. position:absolute;
  7561. align-self:flex-start;
  7562. padding:0px 0px 0px 0px;
  7563. box-sizing:border-box;
  7564. width:100%;
  7565. }
  7566. #u79237_text {
  7567. border-width:0px;
  7568. white-space:nowrap;
  7569. text-transform:none;
  7570. }
  7571. #u79238_div {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:65px;
  7577. height:22px;
  7578. background:inherit;
  7579. background-color:rgba(255, 255, 255, 0);
  7580. border:none;
  7581. border-radius:0px;
  7582. -moz-box-shadow:none;
  7583. -webkit-box-shadow:none;
  7584. box-shadow:none;
  7585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. font-size:16px;
  7589. }
  7590. #u79238 {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:30px;
  7594. top:1117px;
  7595. width:65px;
  7596. height:22px;
  7597. display:flex;
  7598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7599. font-weight:400;
  7600. font-style:normal;
  7601. font-size:16px;
  7602. }
  7603. #u79238 .text {
  7604. position:absolute;
  7605. align-self:flex-start;
  7606. padding:0px 0px 0px 0px;
  7607. box-sizing:border-box;
  7608. width:100%;
  7609. }
  7610. #u79238_text {
  7611. border-width:0px;
  7612. white-space:nowrap;
  7613. text-transform:none;
  7614. }
  7615. #u79239_div {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:65px;
  7621. height:22px;
  7622. background:inherit;
  7623. background-color:rgba(255, 255, 255, 0);
  7624. border:none;
  7625. border-radius:0px;
  7626. -moz-box-shadow:none;
  7627. -webkit-box-shadow:none;
  7628. box-shadow:none;
  7629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:16px;
  7633. }
  7634. #u79239 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:30px;
  7638. top:1201px;
  7639. width:65px;
  7640. height:22px;
  7641. display:flex;
  7642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7643. font-weight:400;
  7644. font-style:normal;
  7645. font-size:16px;
  7646. }
  7647. #u79239 .text {
  7648. position:absolute;
  7649. align-self:flex-start;
  7650. padding:0px 0px 0px 0px;
  7651. box-sizing:border-box;
  7652. width:100%;
  7653. }
  7654. #u79239_text {
  7655. border-width:0px;
  7656. white-space:nowrap;
  7657. text-transform:none;
  7658. }
  7659. #u79240_div {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:0px;
  7663. top:0px;
  7664. width:65px;
  7665. height:22px;
  7666. background:inherit;
  7667. background-color:rgba(255, 255, 255, 0);
  7668. border:none;
  7669. border-radius:0px;
  7670. -moz-box-shadow:none;
  7671. -webkit-box-shadow:none;
  7672. box-shadow:none;
  7673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7674. font-weight:400;
  7675. font-style:normal;
  7676. font-size:16px;
  7677. }
  7678. #u79240 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:30px;
  7682. top:1159px;
  7683. width:65px;
  7684. height:22px;
  7685. display:flex;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:16px;
  7690. }
  7691. #u79240 .text {
  7692. position:absolute;
  7693. align-self:flex-start;
  7694. padding:0px 0px 0px 0px;
  7695. box-sizing:border-box;
  7696. width:100%;
  7697. }
  7698. #u79240_text {
  7699. border-width:0px;
  7700. white-space:nowrap;
  7701. text-transform:none;
  7702. }
  7703. #u79241_div {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:65px;
  7709. height:22px;
  7710. background:inherit;
  7711. background-color:rgba(255, 255, 255, 0);
  7712. border:none;
  7713. border-radius:0px;
  7714. -moz-box-shadow:none;
  7715. -webkit-box-shadow:none;
  7716. box-shadow:none;
  7717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7718. font-weight:400;
  7719. font-style:normal;
  7720. font-size:16px;
  7721. }
  7722. #u79241 {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:30px;
  7726. top:1243px;
  7727. width:65px;
  7728. height:22px;
  7729. display:flex;
  7730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7731. font-weight:400;
  7732. font-style:normal;
  7733. font-size:16px;
  7734. }
  7735. #u79241 .text {
  7736. position:absolute;
  7737. align-self:flex-start;
  7738. padding:0px 0px 0px 0px;
  7739. box-sizing:border-box;
  7740. width:100%;
  7741. }
  7742. #u79241_text {
  7743. border-width:0px;
  7744. white-space:nowrap;
  7745. text-transform:none;
  7746. }
  7747. #u79242_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:65px;
  7753. height:22px;
  7754. background:inherit;
  7755. background-color:rgba(255, 255, 255, 0);
  7756. border:none;
  7757. border-radius:0px;
  7758. -moz-box-shadow:none;
  7759. -webkit-box-shadow:none;
  7760. box-shadow:none;
  7761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7762. font-weight:400;
  7763. font-style:normal;
  7764. font-size:16px;
  7765. }
  7766. #u79242 {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:30px;
  7770. top:978px;
  7771. width:65px;
  7772. height:22px;
  7773. display:flex;
  7774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7775. font-weight:400;
  7776. font-style:normal;
  7777. font-size:16px;
  7778. }
  7779. #u79242 .text {
  7780. position:absolute;
  7781. align-self:flex-start;
  7782. padding:0px 0px 0px 0px;
  7783. box-sizing:border-box;
  7784. width:100%;
  7785. }
  7786. #u79242_text {
  7787. border-width:0px;
  7788. white-space:nowrap;
  7789. text-transform:none;
  7790. }
  7791. #u79243_div {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:65px;
  7797. height:22px;
  7798. background:inherit;
  7799. background-color:rgba(255, 255, 255, 0);
  7800. border:none;
  7801. border-radius:0px;
  7802. -moz-box-shadow:none;
  7803. -webkit-box-shadow:none;
  7804. box-shadow:none;
  7805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:16px;
  7809. }
  7810. #u79243 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:30px;
  7814. top:622px;
  7815. width:65px;
  7816. height:22px;
  7817. display:flex;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:16px;
  7822. }
  7823. #u79243 .text {
  7824. position:absolute;
  7825. align-self:flex-start;
  7826. padding:0px 0px 0px 0px;
  7827. box-sizing:border-box;
  7828. width:100%;
  7829. }
  7830. #u79243_text {
  7831. border-width:0px;
  7832. white-space:nowrap;
  7833. text-transform:none;
  7834. }
  7835. #u79244_div {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:38px;
  7841. height:24px;
  7842. background:inherit;
  7843. background-color:rgba(255, 255, 255, 1);
  7844. box-sizing:border-box;
  7845. border-width:1px;
  7846. border-style:solid;
  7847. border-color:rgba(170, 170, 170, 1);
  7848. border-radius:4px;
  7849. -moz-box-shadow:none;
  7850. -webkit-box-shadow:none;
  7851. box-shadow:none;
  7852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7853. font-weight:400;
  7854. font-style:normal;
  7855. font-size:10px;
  7856. color:#555555;
  7857. }
  7858. #u79244 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:1278px;
  7862. top:287px;
  7863. width:38px;
  7864. height:24px;
  7865. display:flex;
  7866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7867. font-weight:400;
  7868. font-style:normal;
  7869. font-size:10px;
  7870. color:#555555;
  7871. }
  7872. #u79244 .text {
  7873. position:absolute;
  7874. align-self:center;
  7875. padding:5px 0px 5px 0px;
  7876. box-sizing:border-box;
  7877. width:100%;
  7878. }
  7879. #u79244_text {
  7880. border-width:0px;
  7881. word-wrap:break-word;
  7882. text-transform:none;
  7883. }
  7884. #u79245_div {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:0px;
  7888. top:0px;
  7889. width:38px;
  7890. height:24px;
  7891. background:inherit;
  7892. background-color:rgba(255, 255, 255, 1);
  7893. box-sizing:border-box;
  7894. border-width:1px;
  7895. border-style:solid;
  7896. border-color:rgba(217, 0, 27, 1);
  7897. border-radius:4px;
  7898. -moz-box-shadow:none;
  7899. -webkit-box-shadow:none;
  7900. box-shadow:none;
  7901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:10px;
  7905. color:#D9001B;
  7906. }
  7907. #u79245 {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:1278px;
  7911. top:360px;
  7912. width:38px;
  7913. height:24px;
  7914. display:flex;
  7915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7916. font-weight:400;
  7917. font-style:normal;
  7918. font-size:10px;
  7919. color:#D9001B;
  7920. }
  7921. #u79245 .text {
  7922. position:absolute;
  7923. align-self:center;
  7924. padding:5px 0px 5px 0px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u79245_text {
  7929. border-width:0px;
  7930. word-wrap:break-word;
  7931. text-transform:none;
  7932. }
  7933. #u79246_div {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:38px;
  7939. height:24px;
  7940. background:inherit;
  7941. background-color:rgba(255, 255, 255, 1);
  7942. box-sizing:border-box;
  7943. border-width:1px;
  7944. border-style:solid;
  7945. border-color:rgba(170, 170, 170, 1);
  7946. border-radius:4px;
  7947. -moz-box-shadow:none;
  7948. -webkit-box-shadow:none;
  7949. box-shadow:none;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:10px;
  7954. color:#555555;
  7955. }
  7956. #u79246 {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:1278px;
  7960. top:323px;
  7961. width:38px;
  7962. height:24px;
  7963. display:flex;
  7964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7965. font-weight:400;
  7966. font-style:normal;
  7967. font-size:10px;
  7968. color:#555555;
  7969. }
  7970. #u79246 .text {
  7971. position:absolute;
  7972. align-self:center;
  7973. padding:5px 0px 5px 0px;
  7974. box-sizing:border-box;
  7975. width:100%;
  7976. }
  7977. #u79246_text {
  7978. border-width:0px;
  7979. word-wrap:break-word;
  7980. text-transform:none;
  7981. }