styles.css 164 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295
  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. #u107794_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. #u107794 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u107794 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u107794_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u107795_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. #u107795 {
  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. #u107795 .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. #u107795_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u107796_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. #u107796 {
  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. #u107796 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u107796_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u107797 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u107798_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u107798 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u107798 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u107798_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u107799_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. #u107799 {
  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. #u107799 .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. #u107799_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u107800_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. #u107800 {
  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. #u107800 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u107800_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u107801 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u107802_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u107802_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u107802_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u107802 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u107802 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u107802_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u107802.disabled {
  356. }
  357. .u107802_input_option {
  358. font-size:14px;
  359. }
  360. #u107803_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u107803 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u107803 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u107803_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u107804_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u107804 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u107804 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u107804_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u107805_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u107805 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u107805 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u107805_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u107806 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u107807_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u107807 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u107807 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u107807_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u107808_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u107808 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u107808 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u107808_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u107809 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u107810_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u107810 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u107810 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u107810_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u107811_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u107811 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u107811 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u107811_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u107812 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u107813_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u107813 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u107813 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u107813_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u107814_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u107814 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u107814 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u107814_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u107815 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u107816_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u107816 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u107816 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u107816_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u107817_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u107817 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u107817 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u107817_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u107818 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u107819_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u107819 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u107819 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u107819_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u107820_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u107820 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u107820 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u107820_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u107821 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u107822_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u107822 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u107822 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u107822_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u107823_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u107823 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u107823 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u107823_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u107824 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u107825_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u107825 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u107825 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u107825_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u107826_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u107826 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u107826 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u107826_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u107827 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u107828_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u107828 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u107828 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u107828_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u107829_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u107829 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u107829 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u107829_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u107830 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u107831_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u107831 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u107831 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u107831_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u107832_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u107832 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u107832 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u107832_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u107833 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u107834_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u107834 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u107834 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u107834_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u107835_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u107835 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u107835 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u107835_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u107836_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u107836 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u107836 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u107836_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u107837_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u107837 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u107837 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u107837_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u107838_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u107838 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u107838 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u107838_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u107839_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u107839 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u107839 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u107839_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u107840 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u107841_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u107841 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u107841 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u107841_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u107842_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u107842 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u107842 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u107842_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u107843 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u107844_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u107844 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u107844 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u107844_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u107845_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u107845 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u107845 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u107845_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u107846_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1259px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u107846 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1259px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u107846 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u107846_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u107847 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:350px;
  1679. top:232px;
  1680. width:1219px;
  1681. height:313px;
  1682. }
  1683. #u107848_img {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:133px;
  1689. height:35px;
  1690. }
  1691. #u107848 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:133px;
  1697. height:35px;
  1698. display:flex;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:12px;
  1703. color:#FFFFFF;
  1704. }
  1705. #u107848 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u107848_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u107849_img {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:78px;
  1723. height:35px;
  1724. }
  1725. #u107849 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:133px;
  1729. top:0px;
  1730. width:78px;
  1731. height:35px;
  1732. display:flex;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:12px;
  1737. color:#FFFFFF;
  1738. }
  1739. #u107849 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u107849_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u107850_img {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:78px;
  1757. height:35px;
  1758. }
  1759. #u107850 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:211px;
  1763. top:0px;
  1764. width:78px;
  1765. height:35px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:12px;
  1771. color:#FFFFFF;
  1772. }
  1773. #u107850 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u107850_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. }
  1785. #u107851_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:78px;
  1791. height:35px;
  1792. }
  1793. #u107851 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:289px;
  1797. top:0px;
  1798. width:78px;
  1799. height:35px;
  1800. display:flex;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:12px;
  1805. color:#FFFFFF;
  1806. }
  1807. #u107851 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u107851_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u107852_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:78px;
  1825. height:35px;
  1826. }
  1827. #u107852 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:367px;
  1831. top:0px;
  1832. width:78px;
  1833. height:35px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. color:#FFFFFF;
  1840. }
  1841. #u107852 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u107852_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u107853_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:81px;
  1859. height:35px;
  1860. }
  1861. #u107853 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:445px;
  1865. top:0px;
  1866. width:81px;
  1867. height:35px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#FFFFFF;
  1874. }
  1875. #u107853 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u107853_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u107854_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:78px;
  1893. height:35px;
  1894. }
  1895. #u107854 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:526px;
  1899. top:0px;
  1900. width:78px;
  1901. height:35px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. color:#FFFFFF;
  1908. }
  1909. #u107854 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:2px 2px 2px 0px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u107854_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. }
  1921. #u107855_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:78px;
  1927. height:35px;
  1928. }
  1929. #u107855 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:604px;
  1933. top:0px;
  1934. width:78px;
  1935. height:35px;
  1936. display:flex;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#FFFFFF;
  1942. }
  1943. #u107855 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 2px 2px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u107855_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. }
  1955. #u107856_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:78px;
  1961. height:35px;
  1962. }
  1963. #u107856 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:682px;
  1967. top:0px;
  1968. width:78px;
  1969. height:35px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#FFFFFF;
  1976. }
  1977. #u107856 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u107856_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u107857_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:78px;
  1995. height:35px;
  1996. }
  1997. #u107857 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:760px;
  2001. top:0px;
  2002. width:78px;
  2003. height:35px;
  2004. display:flex;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. color:#FFFFFF;
  2010. }
  2011. #u107857 .text {
  2012. position:absolute;
  2013. align-self:center;
  2014. padding:2px 2px 2px 0px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u107857_text {
  2019. border-width:0px;
  2020. word-wrap:break-word;
  2021. text-transform:none;
  2022. }
  2023. #u107858_img {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:78px;
  2029. height:35px;
  2030. }
  2031. #u107858 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:838px;
  2035. top:0px;
  2036. width:78px;
  2037. height:35px;
  2038. display:flex;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:12px;
  2043. color:#FFFFFF;
  2044. }
  2045. #u107858 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 2px 2px 0px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u107858_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u107859_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:78px;
  2063. height:35px;
  2064. }
  2065. #u107859 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:916px;
  2069. top:0px;
  2070. width:78px;
  2071. height:35px;
  2072. display:flex;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:12px;
  2077. color:#FFFFFF;
  2078. }
  2079. #u107859 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:2px 2px 2px 0px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u107859_text {
  2087. border-width:0px;
  2088. word-wrap:break-word;
  2089. text-transform:none;
  2090. }
  2091. #u107860_img {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:78px;
  2097. height:35px;
  2098. }
  2099. #u107860 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:994px;
  2103. top:0px;
  2104. width:78px;
  2105. height:35px;
  2106. display:flex;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:12px;
  2111. color:#FFFFFF;
  2112. }
  2113. #u107860 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u107860_text {
  2121. border-width:0px;
  2122. word-wrap:break-word;
  2123. text-transform:none;
  2124. }
  2125. #u107861_img {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:78px;
  2131. height:35px;
  2132. }
  2133. #u107861 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:1072px;
  2137. top:0px;
  2138. width:78px;
  2139. height:35px;
  2140. display:flex;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#FFFFFF;
  2146. }
  2147. #u107861 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u107861_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. }
  2159. #u107862_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:69px;
  2165. height:35px;
  2166. }
  2167. #u107862 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:1150px;
  2171. top:0px;
  2172. width:69px;
  2173. height:35px;
  2174. display:flex;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:12px;
  2179. color:#FFFFFF;
  2180. }
  2181. #u107862 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 2px 2px 0px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u107862_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. }
  2193. #u107863_img {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:133px;
  2199. height:44px;
  2200. }
  2201. #u107863 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:35px;
  2206. width:133px;
  2207. height:44px;
  2208. display:flex;
  2209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:12px;
  2213. color:#333333;
  2214. line-height:40px;
  2215. }
  2216. #u107863 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 2px 2px 0px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u107863_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. }
  2228. #u107864_img {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:78px;
  2234. height:44px;
  2235. }
  2236. #u107864 {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:133px;
  2240. top:35px;
  2241. width:78px;
  2242. height:44px;
  2243. display:flex;
  2244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2245. font-weight:400;
  2246. font-style:normal;
  2247. font-size:12px;
  2248. color:#333333;
  2249. line-height:40px;
  2250. }
  2251. #u107864 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u107864_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u107865_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:78px;
  2270. height:44px;
  2271. }
  2272. #u107865 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:211px;
  2276. top:35px;
  2277. width:78px;
  2278. height:44px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:12px;
  2284. color:#333333;
  2285. line-height:40px;
  2286. }
  2287. #u107865 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u107865_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. visibility:hidden;
  2299. }
  2300. #u107866_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:78px;
  2306. height:44px;
  2307. }
  2308. #u107866 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:289px;
  2312. top:35px;
  2313. width:78px;
  2314. height:44px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. color:#333333;
  2321. line-height:40px;
  2322. }
  2323. #u107866 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u107866_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. visibility:hidden;
  2335. }
  2336. #u107867_img {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:78px;
  2342. height:44px;
  2343. }
  2344. #u107867 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:367px;
  2348. top:35px;
  2349. width:78px;
  2350. height:44px;
  2351. display:flex;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:12px;
  2356. color:#333333;
  2357. line-height:40px;
  2358. }
  2359. #u107867 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 0px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u107867_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. visibility:hidden;
  2371. }
  2372. #u107868_img {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:81px;
  2378. height:44px;
  2379. }
  2380. #u107868 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:445px;
  2384. top:35px;
  2385. width:81px;
  2386. height:44px;
  2387. display:flex;
  2388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2389. font-weight:400;
  2390. font-style:normal;
  2391. font-size:12px;
  2392. color:#333333;
  2393. line-height:40px;
  2394. }
  2395. #u107868 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 0px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u107868_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. visibility:hidden;
  2407. }
  2408. #u107869_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:78px;
  2414. height:44px;
  2415. }
  2416. #u107869 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:526px;
  2420. top:35px;
  2421. width:78px;
  2422. height:44px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. }
  2429. #u107869 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u107869_text {
  2437. border-width:0px;
  2438. word-wrap:break-word;
  2439. text-transform:none;
  2440. }
  2441. #u107870_img {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:78px;
  2447. height:44px;
  2448. }
  2449. #u107870 {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:604px;
  2453. top:35px;
  2454. width:78px;
  2455. height:44px;
  2456. display:flex;
  2457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:12px;
  2461. color:#606266;
  2462. }
  2463. #u107870 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 0px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u107870_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u107871_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:78px;
  2482. height:44px;
  2483. }
  2484. #u107871 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:682px;
  2488. top:35px;
  2489. width:78px;
  2490. height:44px;
  2491. display:flex;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:12px;
  2496. color:#333333;
  2497. }
  2498. #u107871 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u107871_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u107872_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:78px;
  2517. height:44px;
  2518. }
  2519. #u107872 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:760px;
  2523. top:35px;
  2524. width:78px;
  2525. height:44px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. color:#333333;
  2532. }
  2533. #u107872 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u107872_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. visibility:hidden;
  2545. }
  2546. #u107873_img {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:78px;
  2552. height:44px;
  2553. }
  2554. #u107873 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:838px;
  2558. top:35px;
  2559. width:78px;
  2560. height:44px;
  2561. display:flex;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:12px;
  2566. color:#333333;
  2567. }
  2568. #u107873 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 0px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u107873_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u107874_img {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:78px;
  2587. height:44px;
  2588. }
  2589. #u107874 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:916px;
  2593. top:35px;
  2594. width:78px;
  2595. height:44px;
  2596. display:flex;
  2597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. color:#333333;
  2602. }
  2603. #u107874 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 2px 2px 0px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u107874_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u107875_img {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:78px;
  2622. height:44px;
  2623. }
  2624. #u107875 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:994px;
  2628. top:35px;
  2629. width:78px;
  2630. height:44px;
  2631. display:flex;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:12px;
  2636. color:#333333;
  2637. }
  2638. #u107875 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u107875_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. }
  2650. #u107876_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:78px;
  2656. height:44px;
  2657. }
  2658. #u107876 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:1072px;
  2662. top:35px;
  2663. width:78px;
  2664. height:44px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:12px;
  2670. color:#333333;
  2671. }
  2672. #u107876 .text {
  2673. position:absolute;
  2674. align-self:center;
  2675. padding:2px 2px 2px 0px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u107876_text {
  2680. border-width:0px;
  2681. word-wrap:break-word;
  2682. text-transform:none;
  2683. visibility:hidden;
  2684. }
  2685. #u107877_img {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:69px;
  2691. height:44px;
  2692. }
  2693. #u107877 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:1150px;
  2697. top:35px;
  2698. width:69px;
  2699. height:44px;
  2700. display:flex;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:12px;
  2705. color:#298FFF;
  2706. line-height:35px;
  2707. }
  2708. #u107877 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u107877_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. }
  2720. #u107878_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:133px;
  2726. height:44px;
  2727. }
  2728. #u107878 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:79px;
  2733. width:133px;
  2734. height:44px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:12px;
  2740. color:#333333;
  2741. line-height:40px;
  2742. }
  2743. #u107878 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u107878_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. }
  2755. #u107879_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:78px;
  2761. height:44px;
  2762. }
  2763. #u107879 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:133px;
  2767. top:79px;
  2768. width:78px;
  2769. height:44px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:12px;
  2775. color:#333333;
  2776. line-height:40px;
  2777. }
  2778. #u107879 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u107879_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u107880_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:78px;
  2797. height:44px;
  2798. }
  2799. #u107880 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:211px;
  2803. top:79px;
  2804. width:78px;
  2805. height:44px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#333333;
  2812. line-height:40px;
  2813. }
  2814. #u107880 .text {
  2815. position:absolute;
  2816. align-self:center;
  2817. padding:2px 2px 2px 0px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u107880_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u107881_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:78px;
  2833. height:44px;
  2834. }
  2835. #u107881 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:289px;
  2839. top:79px;
  2840. width:78px;
  2841. height:44px;
  2842. display:flex;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:12px;
  2847. color:#333333;
  2848. line-height:40px;
  2849. }
  2850. #u107881 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u107881_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u107882_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:78px;
  2869. height:44px;
  2870. }
  2871. #u107882 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:367px;
  2875. top:79px;
  2876. width:78px;
  2877. height:44px;
  2878. display:flex;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. color:#333333;
  2884. line-height:40px;
  2885. }
  2886. #u107882 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 0px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u107882_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u107883_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:81px;
  2905. height:44px;
  2906. }
  2907. #u107883 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:445px;
  2911. top:79px;
  2912. width:81px;
  2913. height:44px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#333333;
  2920. line-height:40px;
  2921. }
  2922. #u107883 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 0px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u107883_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u107884_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:78px;
  2941. height:44px;
  2942. }
  2943. #u107884 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:526px;
  2947. top:79px;
  2948. width:78px;
  2949. height:44px;
  2950. display:flex;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:12px;
  2955. }
  2956. #u107884 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 0px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u107884_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u107885_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:78px;
  2975. height:44px;
  2976. }
  2977. #u107885 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:604px;
  2981. top:79px;
  2982. width:78px;
  2983. height:44px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:12px;
  2989. color:#606266;
  2990. }
  2991. #u107885 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 0px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u107885_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u107886_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:78px;
  3010. height:44px;
  3011. }
  3012. #u107886 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:682px;
  3016. top:79px;
  3017. width:78px;
  3018. height:44px;
  3019. display:flex;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:12px;
  3024. color:#333333;
  3025. }
  3026. #u107886 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u107886_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u107887_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:78px;
  3045. height:44px;
  3046. }
  3047. #u107887 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:760px;
  3051. top:79px;
  3052. width:78px;
  3053. height:44px;
  3054. display:flex;
  3055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:12px;
  3059. color:#333333;
  3060. }
  3061. #u107887 .text {
  3062. position:absolute;
  3063. align-self:center;
  3064. padding:2px 2px 2px 0px;
  3065. box-sizing:border-box;
  3066. width:100%;
  3067. }
  3068. #u107887_text {
  3069. border-width:0px;
  3070. word-wrap:break-word;
  3071. text-transform:none;
  3072. visibility:hidden;
  3073. }
  3074. #u107888_img {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:78px;
  3080. height:44px;
  3081. }
  3082. #u107888 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:838px;
  3086. top:79px;
  3087. width:78px;
  3088. height:44px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:12px;
  3094. color:#333333;
  3095. }
  3096. #u107888 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u107888_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. visibility:hidden;
  3108. }
  3109. #u107889_img {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:78px;
  3115. height:44px;
  3116. }
  3117. #u107889 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:916px;
  3121. top:79px;
  3122. width:78px;
  3123. height:44px;
  3124. display:flex;
  3125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3126. font-weight:400;
  3127. font-style:normal;
  3128. font-size:12px;
  3129. color:#333333;
  3130. }
  3131. #u107889 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 0px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u107889_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u107890_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:78px;
  3150. height:44px;
  3151. }
  3152. #u107890 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:994px;
  3156. top:79px;
  3157. width:78px;
  3158. height:44px;
  3159. display:flex;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. color:#333333;
  3165. }
  3166. #u107890 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 0px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u107890_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. }
  3178. #u107891_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:78px;
  3184. height:44px;
  3185. }
  3186. #u107891 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:1072px;
  3190. top:79px;
  3191. width:78px;
  3192. height:44px;
  3193. display:flex;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. color:#333333;
  3199. }
  3200. #u107891 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u107891_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u107892_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:69px;
  3219. height:44px;
  3220. }
  3221. #u107892 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:1150px;
  3225. top:79px;
  3226. width:69px;
  3227. height:44px;
  3228. display:flex;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#1890FF;
  3234. }
  3235. #u107892 .text {
  3236. position:absolute;
  3237. align-self:center;
  3238. padding:2px 2px 2px 0px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u107892_text {
  3243. border-width:0px;
  3244. word-wrap:break-word;
  3245. text-transform:none;
  3246. visibility:hidden;
  3247. }
  3248. #u107893_img {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:0px;
  3252. top:0px;
  3253. width:133px;
  3254. height:38px;
  3255. }
  3256. #u107893 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:123px;
  3261. width:133px;
  3262. height:38px;
  3263. display:flex;
  3264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3265. font-weight:400;
  3266. font-style:normal;
  3267. font-size:12px;
  3268. color:#333333;
  3269. line-height:40px;
  3270. }
  3271. #u107893 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 0px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u107893_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. visibility:hidden;
  3283. }
  3284. #u107894_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:78px;
  3290. height:38px;
  3291. }
  3292. #u107894 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:133px;
  3296. top:123px;
  3297. width:78px;
  3298. height:38px;
  3299. display:flex;
  3300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3301. font-weight:400;
  3302. font-style:normal;
  3303. font-size:12px;
  3304. color:#333333;
  3305. line-height:40px;
  3306. }
  3307. #u107894 .text {
  3308. position:absolute;
  3309. align-self:center;
  3310. padding:2px 2px 2px 0px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u107894_text {
  3315. border-width:0px;
  3316. word-wrap:break-word;
  3317. text-transform:none;
  3318. visibility:hidden;
  3319. }
  3320. #u107895_img {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:0px;
  3324. top:0px;
  3325. width:78px;
  3326. height:38px;
  3327. }
  3328. #u107895 {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:211px;
  3332. top:123px;
  3333. width:78px;
  3334. height:38px;
  3335. display:flex;
  3336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3337. font-weight:400;
  3338. font-style:normal;
  3339. font-size:12px;
  3340. color:#333333;
  3341. line-height:40px;
  3342. }
  3343. #u107895 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 0px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u107895_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. visibility:hidden;
  3355. }
  3356. #u107896_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:78px;
  3362. height:38px;
  3363. }
  3364. #u107896 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:289px;
  3368. top:123px;
  3369. width:78px;
  3370. height:38px;
  3371. display:flex;
  3372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3373. font-weight:400;
  3374. font-style:normal;
  3375. font-size:12px;
  3376. color:#333333;
  3377. line-height:40px;
  3378. }
  3379. #u107896 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u107896_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. visibility:hidden;
  3391. }
  3392. #u107897_img {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:78px;
  3398. height:38px;
  3399. }
  3400. #u107897 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:367px;
  3404. top:123px;
  3405. width:78px;
  3406. height:38px;
  3407. display:flex;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:12px;
  3412. color:#333333;
  3413. line-height:40px;
  3414. }
  3415. #u107897 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 0px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u107897_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. visibility:hidden;
  3427. }
  3428. #u107898_img {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:81px;
  3434. height:38px;
  3435. }
  3436. #u107898 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:445px;
  3440. top:123px;
  3441. width:81px;
  3442. height:38px;
  3443. display:flex;
  3444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3445. font-weight:400;
  3446. font-style:normal;
  3447. font-size:12px;
  3448. color:#333333;
  3449. line-height:40px;
  3450. }
  3451. #u107898 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 2px 2px 0px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u107898_text {
  3459. border-width:0px;
  3460. word-wrap:break-word;
  3461. text-transform:none;
  3462. visibility:hidden;
  3463. }
  3464. #u107899_img {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:78px;
  3470. height:38px;
  3471. }
  3472. #u107899 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:526px;
  3476. top:123px;
  3477. width:78px;
  3478. height:38px;
  3479. display:flex;
  3480. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:12px;
  3484. color:#606266;
  3485. }
  3486. #u107899 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 0px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u107899_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. visibility:hidden;
  3498. }
  3499. #u107900_img {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:78px;
  3505. height:38px;
  3506. }
  3507. #u107900 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:604px;
  3511. top:123px;
  3512. width:78px;
  3513. height:38px;
  3514. display:flex;
  3515. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:12px;
  3519. color:#606266;
  3520. }
  3521. #u107900 .text {
  3522. position:absolute;
  3523. align-self:center;
  3524. padding:2px 2px 2px 0px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u107900_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. visibility:hidden;
  3533. }
  3534. #u107901_img {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:78px;
  3540. height:38px;
  3541. }
  3542. #u107901 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:682px;
  3546. top:123px;
  3547. width:78px;
  3548. height:38px;
  3549. display:flex;
  3550. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:12px;
  3554. color:#606266;
  3555. }
  3556. #u107901 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u107901_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u107902_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:78px;
  3575. height:38px;
  3576. }
  3577. #u107902 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:760px;
  3581. top:123px;
  3582. width:78px;
  3583. height:38px;
  3584. display:flex;
  3585. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3586. font-weight:400;
  3587. font-style:normal;
  3588. font-size:12px;
  3589. color:#606266;
  3590. }
  3591. #u107902 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u107902_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u107903_img {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:78px;
  3610. height:38px;
  3611. }
  3612. #u107903 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:838px;
  3616. top:123px;
  3617. width:78px;
  3618. height:38px;
  3619. display:flex;
  3620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:12px;
  3624. color:#606266;
  3625. }
  3626. #u107903 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 0px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u107903_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u107904_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:78px;
  3645. height:38px;
  3646. }
  3647. #u107904 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:916px;
  3651. top:123px;
  3652. width:78px;
  3653. height:38px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:12px;
  3659. color:#606266;
  3660. }
  3661. #u107904 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 0px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u107904_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u107905_img {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:78px;
  3680. height:38px;
  3681. }
  3682. #u107905 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:994px;
  3686. top:123px;
  3687. width:78px;
  3688. height:38px;
  3689. display:flex;
  3690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. font-size:12px;
  3694. color:#606266;
  3695. }
  3696. #u107905 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 2px 2px 0px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u107905_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. }
  3708. #u107906_img {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:0px;
  3712. top:0px;
  3713. width:78px;
  3714. height:38px;
  3715. }
  3716. #u107906 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:1072px;
  3720. top:123px;
  3721. width:78px;
  3722. height:38px;
  3723. display:flex;
  3724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3725. font-weight:400;
  3726. font-style:normal;
  3727. font-size:12px;
  3728. color:#606266;
  3729. }
  3730. #u107906 .text {
  3731. position:absolute;
  3732. align-self:center;
  3733. padding:2px 2px 2px 0px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. #u107906_text {
  3738. border-width:0px;
  3739. word-wrap:break-word;
  3740. text-transform:none;
  3741. visibility:hidden;
  3742. }
  3743. #u107907_img {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:69px;
  3749. height:38px;
  3750. }
  3751. #u107907 {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:1150px;
  3755. top:123px;
  3756. width:69px;
  3757. height:38px;
  3758. display:flex;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:12px;
  3763. color:#1890FF;
  3764. }
  3765. #u107907 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:2px 2px 2px 0px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u107907_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. visibility:hidden;
  3777. }
  3778. #u107908_img {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:0px;
  3782. top:0px;
  3783. width:133px;
  3784. height:38px;
  3785. }
  3786. #u107908 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:161px;
  3791. width:133px;
  3792. height:38px;
  3793. display:flex;
  3794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3795. font-weight:400;
  3796. font-style:normal;
  3797. font-size:12px;
  3798. color:#606266;
  3799. }
  3800. #u107908 .text {
  3801. position:absolute;
  3802. align-self:center;
  3803. padding:2px 2px 2px 0px;
  3804. box-sizing:border-box;
  3805. width:100%;
  3806. }
  3807. #u107908_text {
  3808. border-width:0px;
  3809. word-wrap:break-word;
  3810. text-transform:none;
  3811. visibility:hidden;
  3812. }
  3813. #u107909_img {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:0px;
  3817. top:0px;
  3818. width:78px;
  3819. height:38px;
  3820. }
  3821. #u107909 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:133px;
  3825. top:161px;
  3826. width:78px;
  3827. height:38px;
  3828. display:flex;
  3829. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3830. font-weight:400;
  3831. font-style:normal;
  3832. font-size:12px;
  3833. color:#606266;
  3834. }
  3835. #u107909 .text {
  3836. position:absolute;
  3837. align-self:center;
  3838. padding:2px 2px 2px 0px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u107909_text {
  3843. border-width:0px;
  3844. word-wrap:break-word;
  3845. text-transform:none;
  3846. visibility:hidden;
  3847. }
  3848. #u107910_img {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:78px;
  3854. height:38px;
  3855. }
  3856. #u107910 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:211px;
  3860. top:161px;
  3861. width:78px;
  3862. height:38px;
  3863. display:flex;
  3864. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:12px;
  3868. color:#606266;
  3869. }
  3870. #u107910 .text {
  3871. position:absolute;
  3872. align-self:center;
  3873. padding:2px 2px 2px 0px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u107910_text {
  3878. border-width:0px;
  3879. word-wrap:break-word;
  3880. text-transform:none;
  3881. visibility:hidden;
  3882. }
  3883. #u107911_img {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:78px;
  3889. height:38px;
  3890. }
  3891. #u107911 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:289px;
  3895. top:161px;
  3896. width:78px;
  3897. height:38px;
  3898. display:flex;
  3899. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3900. font-weight:400;
  3901. font-style:normal;
  3902. font-size:12px;
  3903. color:#606266;
  3904. }
  3905. #u107911 .text {
  3906. position:absolute;
  3907. align-self:center;
  3908. padding:2px 2px 2px 0px;
  3909. box-sizing:border-box;
  3910. width:100%;
  3911. }
  3912. #u107911_text {
  3913. border-width:0px;
  3914. word-wrap:break-word;
  3915. text-transform:none;
  3916. visibility:hidden;
  3917. }
  3918. #u107912_img {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:0px;
  3923. width:78px;
  3924. height:38px;
  3925. }
  3926. #u107912 {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:367px;
  3930. top:161px;
  3931. width:78px;
  3932. height:38px;
  3933. display:flex;
  3934. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3935. font-weight:400;
  3936. font-style:normal;
  3937. font-size:12px;
  3938. color:#606266;
  3939. }
  3940. #u107912 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 2px 2px 0px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u107912_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. visibility:hidden;
  3952. }
  3953. #u107913_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:81px;
  3959. height:38px;
  3960. }
  3961. #u107913 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:445px;
  3965. top:161px;
  3966. width:81px;
  3967. height:38px;
  3968. display:flex;
  3969. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:12px;
  3973. color:#606266;
  3974. }
  3975. #u107913 .text {
  3976. position:absolute;
  3977. align-self:center;
  3978. padding:2px 2px 2px 0px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u107913_text {
  3983. border-width:0px;
  3984. word-wrap:break-word;
  3985. text-transform:none;
  3986. visibility:hidden;
  3987. }
  3988. #u107914_img {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:78px;
  3994. height:38px;
  3995. }
  3996. #u107914 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:526px;
  4000. top:161px;
  4001. width:78px;
  4002. height:38px;
  4003. display:flex;
  4004. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4005. font-weight:400;
  4006. font-style:normal;
  4007. font-size:12px;
  4008. color:#606266;
  4009. }
  4010. #u107914 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 0px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u107914_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u107915_img {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:78px;
  4029. height:38px;
  4030. }
  4031. #u107915 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:604px;
  4035. top:161px;
  4036. width:78px;
  4037. height:38px;
  4038. display:flex;
  4039. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:12px;
  4043. color:#606266;
  4044. }
  4045. #u107915 .text {
  4046. position:absolute;
  4047. align-self:center;
  4048. padding:2px 2px 2px 0px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u107915_text {
  4053. border-width:0px;
  4054. word-wrap:break-word;
  4055. text-transform:none;
  4056. visibility:hidden;
  4057. }
  4058. #u107916_img {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:78px;
  4064. height:38px;
  4065. }
  4066. #u107916 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:682px;
  4070. top:161px;
  4071. width:78px;
  4072. height:38px;
  4073. display:flex;
  4074. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:12px;
  4078. color:#606266;
  4079. }
  4080. #u107916 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 0px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u107916_text {
  4088. border-width:0px;
  4089. word-wrap:break-word;
  4090. text-transform:none;
  4091. visibility:hidden;
  4092. }
  4093. #u107917_img {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:78px;
  4099. height:38px;
  4100. }
  4101. #u107917 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:760px;
  4105. top:161px;
  4106. width:78px;
  4107. height:38px;
  4108. display:flex;
  4109. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4110. font-weight:400;
  4111. font-style:normal;
  4112. font-size:12px;
  4113. color:#606266;
  4114. }
  4115. #u107917 .text {
  4116. position:absolute;
  4117. align-self:center;
  4118. padding:2px 2px 2px 0px;
  4119. box-sizing:border-box;
  4120. width:100%;
  4121. }
  4122. #u107917_text {
  4123. border-width:0px;
  4124. word-wrap:break-word;
  4125. text-transform:none;
  4126. visibility:hidden;
  4127. }
  4128. #u107918_img {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:78px;
  4134. height:38px;
  4135. }
  4136. #u107918 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:838px;
  4140. top:161px;
  4141. width:78px;
  4142. height:38px;
  4143. display:flex;
  4144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:12px;
  4148. color:#606266;
  4149. }
  4150. #u107918 .text {
  4151. position:absolute;
  4152. align-self:center;
  4153. padding:2px 2px 2px 0px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u107918_text {
  4158. border-width:0px;
  4159. word-wrap:break-word;
  4160. text-transform:none;
  4161. visibility:hidden;
  4162. }
  4163. #u107919_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:78px;
  4169. height:38px;
  4170. }
  4171. #u107919 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:916px;
  4175. top:161px;
  4176. width:78px;
  4177. height:38px;
  4178. display:flex;
  4179. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:12px;
  4183. color:#606266;
  4184. }
  4185. #u107919 .text {
  4186. position:absolute;
  4187. align-self:center;
  4188. padding:2px 2px 2px 0px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u107919_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. visibility:hidden;
  4197. }
  4198. #u107920_img {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:78px;
  4204. height:38px;
  4205. }
  4206. #u107920 {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:994px;
  4210. top:161px;
  4211. width:78px;
  4212. height:38px;
  4213. display:flex;
  4214. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4215. font-weight:400;
  4216. font-style:normal;
  4217. font-size:12px;
  4218. color:#606266;
  4219. }
  4220. #u107920 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 2px 2px 0px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u107920_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u107921_img {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:78px;
  4239. height:38px;
  4240. }
  4241. #u107921 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:1072px;
  4245. top:161px;
  4246. width:78px;
  4247. height:38px;
  4248. display:flex;
  4249. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. font-size:12px;
  4253. color:#606266;
  4254. }
  4255. #u107921 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 0px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u107921_text {
  4263. border-width:0px;
  4264. word-wrap:break-word;
  4265. text-transform:none;
  4266. visibility:hidden;
  4267. }
  4268. #u107922_img {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:69px;
  4274. height:38px;
  4275. }
  4276. #u107922 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:1150px;
  4280. top:161px;
  4281. width:69px;
  4282. height:38px;
  4283. display:flex;
  4284. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:12px;
  4288. color:#606266;
  4289. }
  4290. #u107922 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:2px 2px 2px 0px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u107922_text {
  4298. border-width:0px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. visibility:hidden;
  4302. }
  4303. #u107923_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:133px;
  4309. height:38px;
  4310. }
  4311. #u107923 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:199px;
  4316. width:133px;
  4317. height:38px;
  4318. display:flex;
  4319. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:12px;
  4323. color:#606266;
  4324. }
  4325. #u107923 .text {
  4326. position:absolute;
  4327. align-self:center;
  4328. padding:2px 2px 2px 0px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u107923_text {
  4333. border-width:0px;
  4334. word-wrap:break-word;
  4335. text-transform:none;
  4336. visibility:hidden;
  4337. }
  4338. #u107924_img {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:78px;
  4344. height:38px;
  4345. }
  4346. #u107924 {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:133px;
  4350. top:199px;
  4351. width:78px;
  4352. height:38px;
  4353. display:flex;
  4354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4355. font-weight:400;
  4356. font-style:normal;
  4357. font-size:12px;
  4358. color:#606266;
  4359. }
  4360. #u107924 .text {
  4361. position:absolute;
  4362. align-self:center;
  4363. padding:2px 2px 2px 0px;
  4364. box-sizing:border-box;
  4365. width:100%;
  4366. }
  4367. #u107924_text {
  4368. border-width:0px;
  4369. word-wrap:break-word;
  4370. text-transform:none;
  4371. visibility:hidden;
  4372. }
  4373. #u107925_img {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:78px;
  4379. height:38px;
  4380. }
  4381. #u107925 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:211px;
  4385. top:199px;
  4386. width:78px;
  4387. height:38px;
  4388. display:flex;
  4389. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4390. font-weight:400;
  4391. font-style:normal;
  4392. font-size:12px;
  4393. color:#606266;
  4394. }
  4395. #u107925 .text {
  4396. position:absolute;
  4397. align-self:center;
  4398. padding:2px 2px 2px 0px;
  4399. box-sizing:border-box;
  4400. width:100%;
  4401. }
  4402. #u107925_text {
  4403. border-width:0px;
  4404. word-wrap:break-word;
  4405. text-transform:none;
  4406. visibility:hidden;
  4407. }
  4408. #u107926_img {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:78px;
  4414. height:38px;
  4415. }
  4416. #u107926 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:289px;
  4420. top:199px;
  4421. width:78px;
  4422. height:38px;
  4423. display:flex;
  4424. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4425. font-weight:400;
  4426. font-style:normal;
  4427. font-size:12px;
  4428. color:#606266;
  4429. }
  4430. #u107926 .text {
  4431. position:absolute;
  4432. align-self:center;
  4433. padding:2px 2px 2px 0px;
  4434. box-sizing:border-box;
  4435. width:100%;
  4436. }
  4437. #u107926_text {
  4438. border-width:0px;
  4439. word-wrap:break-word;
  4440. text-transform:none;
  4441. visibility:hidden;
  4442. }
  4443. #u107927_img {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:78px;
  4449. height:38px;
  4450. }
  4451. #u107927 {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:367px;
  4455. top:199px;
  4456. width:78px;
  4457. height:38px;
  4458. display:flex;
  4459. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4460. font-weight:400;
  4461. font-style:normal;
  4462. font-size:12px;
  4463. color:#606266;
  4464. }
  4465. #u107927 .text {
  4466. position:absolute;
  4467. align-self:center;
  4468. padding:2px 2px 2px 0px;
  4469. box-sizing:border-box;
  4470. width:100%;
  4471. }
  4472. #u107927_text {
  4473. border-width:0px;
  4474. word-wrap:break-word;
  4475. text-transform:none;
  4476. visibility:hidden;
  4477. }
  4478. #u107928_img {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:0px;
  4482. top:0px;
  4483. width:81px;
  4484. height:38px;
  4485. }
  4486. #u107928 {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:445px;
  4490. top:199px;
  4491. width:81px;
  4492. height:38px;
  4493. display:flex;
  4494. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. font-size:12px;
  4498. color:#606266;
  4499. }
  4500. #u107928 .text {
  4501. position:absolute;
  4502. align-self:center;
  4503. padding:2px 2px 2px 0px;
  4504. box-sizing:border-box;
  4505. width:100%;
  4506. }
  4507. #u107928_text {
  4508. border-width:0px;
  4509. word-wrap:break-word;
  4510. text-transform:none;
  4511. visibility:hidden;
  4512. }
  4513. #u107929_img {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:78px;
  4519. height:38px;
  4520. }
  4521. #u107929 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:526px;
  4525. top:199px;
  4526. width:78px;
  4527. height:38px;
  4528. display:flex;
  4529. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:12px;
  4533. color:#606266;
  4534. }
  4535. #u107929 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 0px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u107929_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u107930_img {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:78px;
  4554. height:38px;
  4555. }
  4556. #u107930 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:604px;
  4560. top:199px;
  4561. width:78px;
  4562. height:38px;
  4563. display:flex;
  4564. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4565. font-weight:400;
  4566. font-style:normal;
  4567. font-size:12px;
  4568. color:#606266;
  4569. }
  4570. #u107930 .text {
  4571. position:absolute;
  4572. align-self:center;
  4573. padding:2px 2px 2px 0px;
  4574. box-sizing:border-box;
  4575. width:100%;
  4576. }
  4577. #u107930_text {
  4578. border-width:0px;
  4579. word-wrap:break-word;
  4580. text-transform:none;
  4581. visibility:hidden;
  4582. }
  4583. #u107931_img {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:78px;
  4589. height:38px;
  4590. }
  4591. #u107931 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:682px;
  4595. top:199px;
  4596. width:78px;
  4597. height:38px;
  4598. display:flex;
  4599. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:12px;
  4603. color:#606266;
  4604. }
  4605. #u107931 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:2px 2px 2px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u107931_text {
  4613. border-width:0px;
  4614. word-wrap:break-word;
  4615. text-transform:none;
  4616. visibility:hidden;
  4617. }
  4618. #u107932_img {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:78px;
  4624. height:38px;
  4625. }
  4626. #u107932 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:760px;
  4630. top:199px;
  4631. width:78px;
  4632. height:38px;
  4633. display:flex;
  4634. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. font-size:12px;
  4638. color:#606266;
  4639. }
  4640. #u107932 .text {
  4641. position:absolute;
  4642. align-self:center;
  4643. padding:2px 2px 2px 0px;
  4644. box-sizing:border-box;
  4645. width:100%;
  4646. }
  4647. #u107932_text {
  4648. border-width:0px;
  4649. word-wrap:break-word;
  4650. text-transform:none;
  4651. visibility:hidden;
  4652. }
  4653. #u107933_img {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:0px;
  4657. top:0px;
  4658. width:78px;
  4659. height:38px;
  4660. }
  4661. #u107933 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:838px;
  4665. top:199px;
  4666. width:78px;
  4667. height:38px;
  4668. display:flex;
  4669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:12px;
  4673. color:#606266;
  4674. }
  4675. #u107933 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u107933_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. visibility:hidden;
  4687. }
  4688. #u107934_img {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:78px;
  4694. height:38px;
  4695. }
  4696. #u107934 {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:916px;
  4700. top:199px;
  4701. width:78px;
  4702. height:38px;
  4703. display:flex;
  4704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4705. font-weight:400;
  4706. font-style:normal;
  4707. font-size:12px;
  4708. color:#606266;
  4709. }
  4710. #u107934 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 2px 2px 0px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u107934_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u107935_img {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:78px;
  4729. height:38px;
  4730. }
  4731. #u107935 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:994px;
  4735. top:199px;
  4736. width:78px;
  4737. height:38px;
  4738. display:flex;
  4739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:12px;
  4743. color:#606266;
  4744. }
  4745. #u107935 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 0px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u107935_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u107936_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:78px;
  4764. height:38px;
  4765. }
  4766. #u107936 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:1072px;
  4770. top:199px;
  4771. width:78px;
  4772. height:38px;
  4773. display:flex;
  4774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4775. font-weight:400;
  4776. font-style:normal;
  4777. font-size:12px;
  4778. color:#606266;
  4779. }
  4780. #u107936 .text {
  4781. position:absolute;
  4782. align-self:center;
  4783. padding:2px 2px 2px 0px;
  4784. box-sizing:border-box;
  4785. width:100%;
  4786. }
  4787. #u107936_text {
  4788. border-width:0px;
  4789. word-wrap:break-word;
  4790. text-transform:none;
  4791. visibility:hidden;
  4792. }
  4793. #u107937_img {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:0px;
  4797. top:0px;
  4798. width:69px;
  4799. height:38px;
  4800. }
  4801. #u107937 {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:1150px;
  4805. top:199px;
  4806. width:69px;
  4807. height:38px;
  4808. display:flex;
  4809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:12px;
  4813. color:#606266;
  4814. }
  4815. #u107937 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:2px 2px 2px 0px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u107937_text {
  4823. border-width:0px;
  4824. word-wrap:break-word;
  4825. text-transform:none;
  4826. visibility:hidden;
  4827. }
  4828. #u107938_img {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:133px;
  4834. height:38px;
  4835. }
  4836. #u107938 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:237px;
  4841. width:133px;
  4842. height:38px;
  4843. display:flex;
  4844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4845. font-weight:400;
  4846. font-style:normal;
  4847. font-size:12px;
  4848. color:#606266;
  4849. }
  4850. #u107938 .text {
  4851. position:absolute;
  4852. align-self:center;
  4853. padding:2px 2px 2px 0px;
  4854. box-sizing:border-box;
  4855. width:100%;
  4856. }
  4857. #u107938_text {
  4858. border-width:0px;
  4859. word-wrap:break-word;
  4860. text-transform:none;
  4861. visibility:hidden;
  4862. }
  4863. #u107939_img {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:78px;
  4869. height:38px;
  4870. }
  4871. #u107939 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:133px;
  4875. top:237px;
  4876. width:78px;
  4877. height:38px;
  4878. display:flex;
  4879. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4880. font-weight:400;
  4881. font-style:normal;
  4882. font-size:12px;
  4883. color:#606266;
  4884. }
  4885. #u107939 .text {
  4886. position:absolute;
  4887. align-self:center;
  4888. padding:2px 2px 2px 0px;
  4889. box-sizing:border-box;
  4890. width:100%;
  4891. }
  4892. #u107939_text {
  4893. border-width:0px;
  4894. word-wrap:break-word;
  4895. text-transform:none;
  4896. visibility:hidden;
  4897. }
  4898. #u107940_img {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:78px;
  4904. height:38px;
  4905. }
  4906. #u107940 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:211px;
  4910. top:237px;
  4911. width:78px;
  4912. height:38px;
  4913. display:flex;
  4914. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:12px;
  4918. color:#606266;
  4919. }
  4920. #u107940 .text {
  4921. position:absolute;
  4922. align-self:center;
  4923. padding:2px 2px 2px 0px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u107940_text {
  4928. border-width:0px;
  4929. word-wrap:break-word;
  4930. text-transform:none;
  4931. visibility:hidden;
  4932. }
  4933. #u107941_img {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:78px;
  4939. height:38px;
  4940. }
  4941. #u107941 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:289px;
  4945. top:237px;
  4946. width:78px;
  4947. height:38px;
  4948. display:flex;
  4949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:12px;
  4953. color:#606266;
  4954. }
  4955. #u107941 .text {
  4956. position:absolute;
  4957. align-self:center;
  4958. padding:2px 2px 2px 0px;
  4959. box-sizing:border-box;
  4960. width:100%;
  4961. }
  4962. #u107941_text {
  4963. border-width:0px;
  4964. word-wrap:break-word;
  4965. text-transform:none;
  4966. visibility:hidden;
  4967. }
  4968. #u107942_img {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:78px;
  4974. height:38px;
  4975. }
  4976. #u107942 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:367px;
  4980. top:237px;
  4981. width:78px;
  4982. height:38px;
  4983. display:flex;
  4984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:12px;
  4988. color:#606266;
  4989. }
  4990. #u107942 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:2px 2px 2px 0px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u107942_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. visibility:hidden;
  5002. }
  5003. #u107943_img {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:81px;
  5009. height:38px;
  5010. }
  5011. #u107943 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:445px;
  5015. top:237px;
  5016. width:81px;
  5017. height:38px;
  5018. display:flex;
  5019. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:12px;
  5023. color:#606266;
  5024. }
  5025. #u107943 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:2px 2px 2px 0px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u107943_text {
  5033. border-width:0px;
  5034. word-wrap:break-word;
  5035. text-transform:none;
  5036. visibility:hidden;
  5037. }
  5038. #u107944_img {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:78px;
  5044. height:38px;
  5045. }
  5046. #u107944 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:526px;
  5050. top:237px;
  5051. width:78px;
  5052. height:38px;
  5053. display:flex;
  5054. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5055. font-weight:400;
  5056. font-style:normal;
  5057. font-size:12px;
  5058. color:#606266;
  5059. }
  5060. #u107944 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 2px 2px 0px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u107944_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. visibility:hidden;
  5072. }
  5073. #u107945_img {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:78px;
  5079. height:38px;
  5080. }
  5081. #u107945 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:604px;
  5085. top:237px;
  5086. width:78px;
  5087. height:38px;
  5088. display:flex;
  5089. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:12px;
  5093. color:#606266;
  5094. }
  5095. #u107945 .text {
  5096. position:absolute;
  5097. align-self:center;
  5098. padding:2px 2px 2px 0px;
  5099. box-sizing:border-box;
  5100. width:100%;
  5101. }
  5102. #u107945_text {
  5103. border-width:0px;
  5104. word-wrap:break-word;
  5105. text-transform:none;
  5106. visibility:hidden;
  5107. }
  5108. #u107946_img {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:78px;
  5114. height:38px;
  5115. }
  5116. #u107946 {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:682px;
  5120. top:237px;
  5121. width:78px;
  5122. height:38px;
  5123. display:flex;
  5124. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5125. font-weight:400;
  5126. font-style:normal;
  5127. font-size:12px;
  5128. color:#606266;
  5129. }
  5130. #u107946 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:2px 2px 2px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u107946_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. visibility:hidden;
  5142. }
  5143. #u107947_img {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:78px;
  5149. height:38px;
  5150. }
  5151. #u107947 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:760px;
  5155. top:237px;
  5156. width:78px;
  5157. height:38px;
  5158. display:flex;
  5159. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:12px;
  5163. color:#606266;
  5164. }
  5165. #u107947 .text {
  5166. position:absolute;
  5167. align-self:center;
  5168. padding:2px 2px 2px 0px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u107947_text {
  5173. border-width:0px;
  5174. word-wrap:break-word;
  5175. text-transform:none;
  5176. visibility:hidden;
  5177. }
  5178. #u107948_img {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:78px;
  5184. height:38px;
  5185. }
  5186. #u107948 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:838px;
  5190. top:237px;
  5191. width:78px;
  5192. height:38px;
  5193. display:flex;
  5194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. color:#606266;
  5199. }
  5200. #u107948 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 0px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u107948_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. visibility:hidden;
  5212. }
  5213. #u107949_img {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:78px;
  5219. height:38px;
  5220. }
  5221. #u107949 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:916px;
  5225. top:237px;
  5226. width:78px;
  5227. height:38px;
  5228. display:flex;
  5229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5230. font-weight:400;
  5231. font-style:normal;
  5232. font-size:12px;
  5233. color:#606266;
  5234. }
  5235. #u107949 .text {
  5236. position:absolute;
  5237. align-self:center;
  5238. padding:2px 2px 2px 0px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u107949_text {
  5243. border-width:0px;
  5244. word-wrap:break-word;
  5245. text-transform:none;
  5246. visibility:hidden;
  5247. }
  5248. #u107950_img {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:78px;
  5254. height:38px;
  5255. }
  5256. #u107950 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:994px;
  5260. top:237px;
  5261. width:78px;
  5262. height:38px;
  5263. display:flex;
  5264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:12px;
  5268. color:#606266;
  5269. }
  5270. #u107950 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 0px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u107950_text {
  5278. border-width:0px;
  5279. word-wrap:break-word;
  5280. text-transform:none;
  5281. visibility:hidden;
  5282. }
  5283. #u107951_img {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:78px;
  5289. height:38px;
  5290. }
  5291. #u107951 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:1072px;
  5295. top:237px;
  5296. width:78px;
  5297. height:38px;
  5298. display:flex;
  5299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:12px;
  5303. color:#606266;
  5304. }
  5305. #u107951 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:2px 2px 2px 0px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u107951_text {
  5313. border-width:0px;
  5314. word-wrap:break-word;
  5315. text-transform:none;
  5316. visibility:hidden;
  5317. }
  5318. #u107952_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:69px;
  5324. height:38px;
  5325. }
  5326. #u107952 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:1150px;
  5330. top:237px;
  5331. width:69px;
  5332. height:38px;
  5333. display:flex;
  5334. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:12px;
  5338. color:#606266;
  5339. }
  5340. #u107952 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 2px 2px 0px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u107952_text {
  5348. border-width:0px;
  5349. word-wrap:break-word;
  5350. text-transform:none;
  5351. visibility:hidden;
  5352. }
  5353. #u107953_img {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:133px;
  5359. height:38px;
  5360. }
  5361. #u107953 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:275px;
  5366. width:133px;
  5367. height:38px;
  5368. display:flex;
  5369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. color:#606266;
  5374. }
  5375. #u107953 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:2px 2px 2px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u107953_text {
  5383. border-width:0px;
  5384. word-wrap:break-word;
  5385. text-transform:none;
  5386. visibility:hidden;
  5387. }
  5388. #u107954_img {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:78px;
  5394. height:38px;
  5395. }
  5396. #u107954 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:133px;
  5400. top:275px;
  5401. width:78px;
  5402. height:38px;
  5403. display:flex;
  5404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:12px;
  5408. color:#606266;
  5409. }
  5410. #u107954 .text {
  5411. position:absolute;
  5412. align-self:center;
  5413. padding:2px 2px 2px 0px;
  5414. box-sizing:border-box;
  5415. width:100%;
  5416. }
  5417. #u107954_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u107955_img {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:78px;
  5429. height:38px;
  5430. }
  5431. #u107955 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:211px;
  5435. top:275px;
  5436. width:78px;
  5437. height:38px;
  5438. display:flex;
  5439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:12px;
  5443. color:#606266;
  5444. }
  5445. #u107955 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 2px 2px 0px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u107955_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u107956_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:78px;
  5464. height:38px;
  5465. }
  5466. #u107956 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:289px;
  5470. top:275px;
  5471. width:78px;
  5472. height:38px;
  5473. display:flex;
  5474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:12px;
  5478. color:#606266;
  5479. }
  5480. #u107956 .text {
  5481. position:absolute;
  5482. align-self:center;
  5483. padding:2px 2px 2px 0px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u107956_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. visibility:hidden;
  5492. }
  5493. #u107957_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:78px;
  5499. height:38px;
  5500. }
  5501. #u107957 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:367px;
  5505. top:275px;
  5506. width:78px;
  5507. height:38px;
  5508. display:flex;
  5509. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:12px;
  5513. color:#606266;
  5514. }
  5515. #u107957 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 0px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u107957_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u107958_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:81px;
  5534. height:38px;
  5535. }
  5536. #u107958 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:445px;
  5540. top:275px;
  5541. width:81px;
  5542. height:38px;
  5543. display:flex;
  5544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:12px;
  5548. color:#606266;
  5549. }
  5550. #u107958 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 2px 2px 0px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u107958_text {
  5558. border-width:0px;
  5559. word-wrap:break-word;
  5560. text-transform:none;
  5561. visibility:hidden;
  5562. }
  5563. #u107959_img {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:78px;
  5569. height:38px;
  5570. }
  5571. #u107959 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:526px;
  5575. top:275px;
  5576. width:78px;
  5577. height:38px;
  5578. display:flex;
  5579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:12px;
  5583. color:#606266;
  5584. }
  5585. #u107959 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:2px 2px 2px 0px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u107959_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. visibility:hidden;
  5597. }
  5598. #u107960_img {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:78px;
  5604. height:38px;
  5605. }
  5606. #u107960 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:604px;
  5610. top:275px;
  5611. width:78px;
  5612. height:38px;
  5613. display:flex;
  5614. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:12px;
  5618. color:#606266;
  5619. }
  5620. #u107960 .text {
  5621. position:absolute;
  5622. align-self:center;
  5623. padding:2px 2px 2px 0px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u107960_text {
  5628. border-width:0px;
  5629. word-wrap:break-word;
  5630. text-transform:none;
  5631. visibility:hidden;
  5632. }
  5633. #u107961_img {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:78px;
  5639. height:38px;
  5640. }
  5641. #u107961 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:682px;
  5645. top:275px;
  5646. width:78px;
  5647. height:38px;
  5648. display:flex;
  5649. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:12px;
  5653. color:#606266;
  5654. }
  5655. #u107961 .text {
  5656. position:absolute;
  5657. align-self:center;
  5658. padding:2px 2px 2px 0px;
  5659. box-sizing:border-box;
  5660. width:100%;
  5661. }
  5662. #u107961_text {
  5663. border-width:0px;
  5664. word-wrap:break-word;
  5665. text-transform:none;
  5666. visibility:hidden;
  5667. }
  5668. #u107962_img {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:78px;
  5674. height:38px;
  5675. }
  5676. #u107962 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:760px;
  5680. top:275px;
  5681. width:78px;
  5682. height:38px;
  5683. display:flex;
  5684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:12px;
  5688. color:#606266;
  5689. }
  5690. #u107962 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:2px 2px 2px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u107962_text {
  5698. border-width:0px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. visibility:hidden;
  5702. }
  5703. #u107963_img {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:78px;
  5709. height:38px;
  5710. }
  5711. #u107963 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:838px;
  5715. top:275px;
  5716. width:78px;
  5717. height:38px;
  5718. display:flex;
  5719. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:12px;
  5723. color:#606266;
  5724. }
  5725. #u107963 .text {
  5726. position:absolute;
  5727. align-self:center;
  5728. padding:2px 2px 2px 0px;
  5729. box-sizing:border-box;
  5730. width:100%;
  5731. }
  5732. #u107963_text {
  5733. border-width:0px;
  5734. word-wrap:break-word;
  5735. text-transform:none;
  5736. visibility:hidden;
  5737. }
  5738. #u107964_img {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:78px;
  5744. height:38px;
  5745. }
  5746. #u107964 {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:916px;
  5750. top:275px;
  5751. width:78px;
  5752. height:38px;
  5753. display:flex;
  5754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5755. font-weight:400;
  5756. font-style:normal;
  5757. font-size:12px;
  5758. color:#606266;
  5759. }
  5760. #u107964 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 0px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u107964_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u107965_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:78px;
  5779. height:38px;
  5780. }
  5781. #u107965 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:994px;
  5785. top:275px;
  5786. width:78px;
  5787. height:38px;
  5788. display:flex;
  5789. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:12px;
  5793. color:#606266;
  5794. }
  5795. #u107965 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 0px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u107965_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. visibility:hidden;
  5807. }
  5808. #u107966_img {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:78px;
  5814. height:38px;
  5815. }
  5816. #u107966 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1072px;
  5820. top:275px;
  5821. width:78px;
  5822. height:38px;
  5823. display:flex;
  5824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:12px;
  5828. color:#606266;
  5829. }
  5830. #u107966 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:2px 2px 2px 0px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u107966_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. visibility:hidden;
  5842. }
  5843. #u107967_img {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:69px;
  5849. height:38px;
  5850. }
  5851. #u107967 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:1150px;
  5855. top:275px;
  5856. width:69px;
  5857. height:38px;
  5858. display:flex;
  5859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:12px;
  5863. color:#606266;
  5864. }
  5865. #u107967 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 0px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u107967_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u107968_div {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:60px;
  5884. height:30px;
  5885. background:inherit;
  5886. background-color:rgba(255, 255, 255, 1);
  5887. box-sizing:border-box;
  5888. border-width:1px;
  5889. border-style:solid;
  5890. border-color:rgba(170, 170, 170, 1);
  5891. border-radius:4px;
  5892. -moz-box-shadow:none;
  5893. -webkit-box-shadow:none;
  5894. box-shadow:none;
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:14px;
  5899. }
  5900. #u107968 {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:490px;
  5904. top:192px;
  5905. width:60px;
  5906. height:30px;
  5907. display:flex;
  5908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5909. font-weight:400;
  5910. font-style:normal;
  5911. font-size:14px;
  5912. }
  5913. #u107968 .text {
  5914. position:absolute;
  5915. align-self:center;
  5916. padding:2px 2px 2px 2px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u107968_text {
  5921. border-width:0px;
  5922. word-wrap:break-word;
  5923. text-transform:none;
  5924. }
  5925. #u107969_div {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:60px;
  5931. height:30px;
  5932. background:inherit;
  5933. background-color:rgba(255, 255, 255, 1);
  5934. box-sizing:border-box;
  5935. border-width:1px;
  5936. border-style:solid;
  5937. border-color:rgba(170, 170, 170, 1);
  5938. border-radius:4px;
  5939. -moz-box-shadow:none;
  5940. -webkit-box-shadow:none;
  5941. box-shadow:none;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. }
  5947. #u107969 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:420px;
  5951. top:192px;
  5952. width:60px;
  5953. height:30px;
  5954. display:flex;
  5955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. font-size:14px;
  5959. }
  5960. #u107969 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:2px 2px 2px 2px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u107969_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. }
  5972. #u107970_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:60px;
  5978. height:30px;
  5979. background:inherit;
  5980. background-color:rgba(24, 144, 255, 1);
  5981. border:none;
  5982. border-radius:4px;
  5983. -moz-box-shadow:none;
  5984. -webkit-box-shadow:none;
  5985. box-shadow:none;
  5986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:14px;
  5990. color:#FFFFFF;
  5991. }
  5992. #u107970 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:350px;
  5996. top:192px;
  5997. width:60px;
  5998. height:30px;
  5999. display:flex;
  6000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:14px;
  6004. color:#FFFFFF;
  6005. }
  6006. #u107970 .text {
  6007. position:absolute;
  6008. align-self:center;
  6009. padding:2px 2px 2px 2px;
  6010. box-sizing:border-box;
  6011. width:100%;
  6012. }
  6013. #u107970_text {
  6014. border-width:0px;
  6015. word-wrap:break-word;
  6016. text-transform:none;
  6017. }
  6018. #u107971_div {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:73px;
  6024. height:50px;
  6025. background:inherit;
  6026. background-color:rgba(255, 255, 255, 0);
  6027. border:none;
  6028. border-left:0px;
  6029. border-top:0px;
  6030. border-right:0px;
  6031. border-radius:0px;
  6032. border-bottom-right-radius:0px;
  6033. border-bottom-left-radius:0px;
  6034. -moz-box-shadow:none;
  6035. -webkit-box-shadow:none;
  6036. box-shadow:none;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:18px;
  6041. }
  6042. #u107971 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:349px;
  6046. top:52px;
  6047. width:73px;
  6048. height:50px;
  6049. display:flex;
  6050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:18px;
  6054. }
  6055. #u107971 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:0px 0px 0px 0px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u107971_text {
  6063. border-width:0px;
  6064. white-space:nowrap;
  6065. text-transform:none;
  6066. }
  6067. #u107972 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:0px;
  6073. height:0px;
  6074. }
  6075. #u107973_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:100px;
  6081. height:100px;
  6082. background:inherit;
  6083. background-color:rgba(255, 255, 255, 1);
  6084. box-sizing:border-box;
  6085. border-width:1px;
  6086. border-style:solid;
  6087. border-color:rgba(242, 242, 242, 1);
  6088. border-radius:4px;
  6089. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6090. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6091. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:14px;
  6096. text-align:left;
  6097. }
  6098. #u107973 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:1461px;
  6102. top:298px;
  6103. width:100px;
  6104. height:100px;
  6105. display:flex;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:14px;
  6110. text-align:left;
  6111. }
  6112. #u107973 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 2px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u107973_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. visibility:hidden;
  6124. }
  6125. #u107974_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:83px;
  6131. height:40px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 1);
  6134. box-sizing:border-box;
  6135. border-width:1px;
  6136. border-style:solid;
  6137. border-color:rgba(215, 215, 215, 1);
  6138. border-left:0px;
  6139. border-top:0px;
  6140. border-right:0px;
  6141. border-radius:0px;
  6142. border-bottom-right-radius:0px;
  6143. border-bottom-left-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:14px;
  6151. }
  6152. #u107974 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:1469px;
  6156. top:308px;
  6157. width:83px;
  6158. height:40px;
  6159. display:flex;
  6160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:14px;
  6164. }
  6165. #u107974 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:2px 2px 2px 2px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u107974_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. }
  6177. #u107975_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:83px;
  6183. height:40px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 1);
  6186. border:none;
  6187. border-left:0px;
  6188. border-top:0px;
  6189. border-right:0px;
  6190. border-radius:0px;
  6191. border-bottom-right-radius:0px;
  6192. border-bottom-left-radius:0px;
  6193. -moz-box-shadow:none;
  6194. -webkit-box-shadow:none;
  6195. box-shadow:none;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:14px;
  6200. }
  6201. #u107975 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:1469px;
  6205. top:348px;
  6206. width:83px;
  6207. height:40px;
  6208. display:flex;
  6209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:14px;
  6213. }
  6214. #u107975 .text {
  6215. position:absolute;
  6216. align-self:center;
  6217. padding:2px 2px 2px 2px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u107975_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. }
  6226. #u107976_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:60px;
  6232. height:30px;
  6233. background:inherit;
  6234. background-color:rgba(24, 144, 255, 1);
  6235. border:none;
  6236. border-radius:4px;
  6237. -moz-box-shadow:none;
  6238. -webkit-box-shadow:none;
  6239. box-shadow:none;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:14px;
  6244. color:#FFFFFF;
  6245. }
  6246. #u107976 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:950px;
  6250. top:143px;
  6251. width:60px;
  6252. height:30px;
  6253. display:flex;
  6254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:14px;
  6258. color:#FFFFFF;
  6259. }
  6260. #u107976 .text {
  6261. position:absolute;
  6262. align-self:center;
  6263. padding:2px 2px 2px 2px;
  6264. box-sizing:border-box;
  6265. width:100%;
  6266. }
  6267. #u107976_text {
  6268. border-width:0px;
  6269. word-wrap:break-word;
  6270. text-transform:none;
  6271. }
  6272. #u107977_div {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:60px;
  6278. height:30px;
  6279. background:inherit;
  6280. background-color:rgba(255, 255, 255, 1);
  6281. box-sizing:border-box;
  6282. border-width:1px;
  6283. border-style:solid;
  6284. border-color:rgba(170, 170, 170, 1);
  6285. border-radius:4px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:14px;
  6293. }
  6294. #u107977 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:1020px;
  6298. top:143px;
  6299. width:60px;
  6300. height:30px;
  6301. display:flex;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:14px;
  6306. }
  6307. #u107977 .text {
  6308. position:absolute;
  6309. align-self:center;
  6310. padding:2px 2px 2px 2px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u107977_text {
  6315. border-width:0px;
  6316. word-wrap:break-word;
  6317. text-transform:none;
  6318. }
  6319. #u107978 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:0px;
  6325. height:0px;
  6326. }
  6327. #u107979_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:140px;
  6333. height:30px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 1);
  6336. box-sizing:border-box;
  6337. border-width:1px;
  6338. border-style:solid;
  6339. border-color:rgba(215, 215, 215, 1);
  6340. border-radius:4px;
  6341. -moz-box-shadow:none;
  6342. -webkit-box-shadow:none;
  6343. box-shadow:none;
  6344. font-size:14px;
  6345. }
  6346. #u107979 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:500px;
  6350. top:103px;
  6351. width:140px;
  6352. height:30px;
  6353. display:flex;
  6354. font-size:14px;
  6355. }
  6356. #u107979 .text {
  6357. position:absolute;
  6358. align-self:center;
  6359. padding:2px 2px 2px 2px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u107979_text {
  6364. border-width:0px;
  6365. word-wrap:break-word;
  6366. text-transform:none;
  6367. visibility:hidden;
  6368. }
  6369. #u107980_input {
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:134px;
  6374. height:23px;
  6375. padding:2px 2px 2px 2px;
  6376. font-family:'ArialMT', 'Arial', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:14px;
  6380. letter-spacing:normal;
  6381. color:#AAAAAA;
  6382. vertical-align:none;
  6383. text-align:left;
  6384. text-transform:none;
  6385. background-color:transparent;
  6386. border-color:transparent;
  6387. }
  6388. #u107980_input.disabled {
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:134px;
  6393. height:23px;
  6394. padding:2px 2px 2px 2px;
  6395. font-family:'ArialMT', 'Arial', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:14px;
  6399. letter-spacing:normal;
  6400. color:#AAAAAA;
  6401. vertical-align:none;
  6402. text-align:left;
  6403. text-transform:none;
  6404. background-color:transparent;
  6405. border-color:transparent;
  6406. }
  6407. #u107980_div {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:134px;
  6413. height:23px;
  6414. background:inherit;
  6415. background-color:rgba(255, 255, 255, 1);
  6416. border:none;
  6417. border-radius:0px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. font-size:14px;
  6422. color:#AAAAAA;
  6423. }
  6424. #u107980 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:504px;
  6428. top:105px;
  6429. width:134px;
  6430. height:23px;
  6431. display:flex;
  6432. font-size:14px;
  6433. color:#AAAAAA;
  6434. }
  6435. #u107980 .text {
  6436. position:absolute;
  6437. align-self:flex-start;
  6438. padding:2px 2px 2px 2px;
  6439. box-sizing:border-box;
  6440. width:100%;
  6441. }
  6442. #u107980_div.disabled {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:134px;
  6448. height:23px;
  6449. background:inherit;
  6450. background-color:rgba(240, 240, 240, 1);
  6451. border:none;
  6452. border-radius:0px;
  6453. -moz-box-shadow:none;
  6454. -webkit-box-shadow:none;
  6455. box-shadow:none;
  6456. font-size:14px;
  6457. color:#AAAAAA;
  6458. }
  6459. #u107980.disabled {
  6460. }
  6461. .u107980_input_option {
  6462. font-size:14px;
  6463. }
  6464. #u107981 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:0px;
  6468. top:0px;
  6469. width:0px;
  6470. height:0px;
  6471. }
  6472. #u107982_div {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:140px;
  6478. height:30px;
  6479. background:inherit;
  6480. background-color:rgba(255, 255, 255, 1);
  6481. box-sizing:border-box;
  6482. border-width:1px;
  6483. border-style:solid;
  6484. border-color:rgba(215, 215, 215, 1);
  6485. border-radius:4px;
  6486. -moz-box-shadow:none;
  6487. -webkit-box-shadow:none;
  6488. box-shadow:none;
  6489. font-size:14px;
  6490. }
  6491. #u107982 {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:650px;
  6495. top:103px;
  6496. width:140px;
  6497. height:30px;
  6498. display:flex;
  6499. font-size:14px;
  6500. }
  6501. #u107982 .text {
  6502. position:absolute;
  6503. align-self:center;
  6504. padding:2px 2px 2px 2px;
  6505. box-sizing:border-box;
  6506. width:100%;
  6507. }
  6508. #u107982_text {
  6509. border-width:0px;
  6510. word-wrap:break-word;
  6511. text-transform:none;
  6512. visibility:hidden;
  6513. }
  6514. #u107983_input {
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:134px;
  6519. height:23px;
  6520. padding:2px 2px 2px 2px;
  6521. font-family:'ArialMT', 'Arial', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. letter-spacing:normal;
  6526. color:#AAAAAA;
  6527. vertical-align:none;
  6528. text-align:left;
  6529. text-transform:none;
  6530. background-color:transparent;
  6531. border-color:transparent;
  6532. }
  6533. #u107983_input.disabled {
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:134px;
  6538. height:23px;
  6539. padding:2px 2px 2px 2px;
  6540. font-family:'ArialMT', 'Arial', sans-serif;
  6541. font-weight:400;
  6542. font-style:normal;
  6543. font-size:14px;
  6544. letter-spacing:normal;
  6545. color:#AAAAAA;
  6546. vertical-align:none;
  6547. text-align:left;
  6548. text-transform:none;
  6549. background-color:transparent;
  6550. border-color:transparent;
  6551. }
  6552. #u107983_div {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:134px;
  6558. height:23px;
  6559. background:inherit;
  6560. background-color:rgba(255, 255, 255, 1);
  6561. border:none;
  6562. border-radius:0px;
  6563. -moz-box-shadow:none;
  6564. -webkit-box-shadow:none;
  6565. box-shadow:none;
  6566. font-size:14px;
  6567. color:#AAAAAA;
  6568. }
  6569. #u107983 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:654px;
  6573. top:105px;
  6574. width:134px;
  6575. height:23px;
  6576. display:flex;
  6577. font-size:14px;
  6578. color:#AAAAAA;
  6579. }
  6580. #u107983 .text {
  6581. position:absolute;
  6582. align-self:flex-start;
  6583. padding:2px 2px 2px 2px;
  6584. box-sizing:border-box;
  6585. width:100%;
  6586. }
  6587. #u107983_div.disabled {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:134px;
  6593. height:23px;
  6594. background:inherit;
  6595. background-color:rgba(240, 240, 240, 1);
  6596. border:none;
  6597. border-radius:0px;
  6598. -moz-box-shadow:none;
  6599. -webkit-box-shadow:none;
  6600. box-shadow:none;
  6601. font-size:14px;
  6602. color:#AAAAAA;
  6603. }
  6604. #u107983.disabled {
  6605. }
  6606. .u107983_input_option {
  6607. font-size:14px;
  6608. }
  6609. #u107984 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:0px;
  6615. height:0px;
  6616. }
  6617. #u107985_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:140px;
  6623. height:30px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 1);
  6626. box-sizing:border-box;
  6627. border-width:1px;
  6628. border-style:solid;
  6629. border-color:rgba(215, 215, 215, 1);
  6630. border-radius:4px;
  6631. -moz-box-shadow:none;
  6632. -webkit-box-shadow:none;
  6633. box-shadow:none;
  6634. font-size:14px;
  6635. }
  6636. #u107985 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:800px;
  6640. top:103px;
  6641. width:140px;
  6642. height:30px;
  6643. display:flex;
  6644. font-size:14px;
  6645. }
  6646. #u107985 .text {
  6647. position:absolute;
  6648. align-self:center;
  6649. padding:2px 2px 2px 2px;
  6650. box-sizing:border-box;
  6651. width:100%;
  6652. }
  6653. #u107985_text {
  6654. border-width:0px;
  6655. word-wrap:break-word;
  6656. text-transform:none;
  6657. visibility:hidden;
  6658. }
  6659. #u107986_input {
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:134px;
  6664. height:23px;
  6665. padding:2px 2px 2px 2px;
  6666. font-family:'ArialMT', 'Arial', sans-serif;
  6667. font-weight:400;
  6668. font-style:normal;
  6669. font-size:14px;
  6670. letter-spacing:normal;
  6671. color:#AAAAAA;
  6672. vertical-align:none;
  6673. text-align:left;
  6674. text-transform:none;
  6675. background-color:transparent;
  6676. border-color:transparent;
  6677. }
  6678. #u107986_input.disabled {
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:134px;
  6683. height:23px;
  6684. padding:2px 2px 2px 2px;
  6685. font-family:'ArialMT', 'Arial', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:14px;
  6689. letter-spacing:normal;
  6690. color:#AAAAAA;
  6691. vertical-align:none;
  6692. text-align:left;
  6693. text-transform:none;
  6694. background-color:transparent;
  6695. border-color:transparent;
  6696. }
  6697. #u107986_div {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:134px;
  6703. height:23px;
  6704. background:inherit;
  6705. background-color:rgba(255, 255, 255, 1);
  6706. border:none;
  6707. border-radius:0px;
  6708. -moz-box-shadow:none;
  6709. -webkit-box-shadow:none;
  6710. box-shadow:none;
  6711. font-size:14px;
  6712. color:#AAAAAA;
  6713. }
  6714. #u107986 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:804px;
  6718. top:105px;
  6719. width:134px;
  6720. height:23px;
  6721. display:flex;
  6722. font-size:14px;
  6723. color:#AAAAAA;
  6724. }
  6725. #u107986 .text {
  6726. position:absolute;
  6727. align-self:flex-start;
  6728. padding:2px 2px 2px 2px;
  6729. box-sizing:border-box;
  6730. width:100%;
  6731. }
  6732. #u107986_div.disabled {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:134px;
  6738. height:23px;
  6739. background:inherit;
  6740. background-color:rgba(240, 240, 240, 1);
  6741. border:none;
  6742. border-radius:0px;
  6743. -moz-box-shadow:none;
  6744. -webkit-box-shadow:none;
  6745. box-shadow:none;
  6746. font-size:14px;
  6747. color:#AAAAAA;
  6748. }
  6749. #u107986.disabled {
  6750. }
  6751. .u107986_input_option {
  6752. font-size:14px;
  6753. }
  6754. #u107987 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:0px;
  6760. height:0px;
  6761. }
  6762. #u107988_div {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:140px;
  6768. height:30px;
  6769. background:inherit;
  6770. background-color:rgba(255, 255, 255, 1);
  6771. box-sizing:border-box;
  6772. border-width:1px;
  6773. border-style:solid;
  6774. border-color:rgba(215, 215, 215, 1);
  6775. border-radius:4px;
  6776. -moz-box-shadow:none;
  6777. -webkit-box-shadow:none;
  6778. box-shadow:none;
  6779. font-size:14px;
  6780. }
  6781. #u107988 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:950px;
  6785. top:103px;
  6786. width:140px;
  6787. height:30px;
  6788. display:flex;
  6789. font-size:14px;
  6790. }
  6791. #u107988 .text {
  6792. position:absolute;
  6793. align-self:center;
  6794. padding:2px 2px 2px 2px;
  6795. box-sizing:border-box;
  6796. width:100%;
  6797. }
  6798. #u107988_text {
  6799. border-width:0px;
  6800. word-wrap:break-word;
  6801. text-transform:none;
  6802. visibility:hidden;
  6803. }
  6804. #u107989_input {
  6805. position:absolute;
  6806. left:0px;
  6807. top:0px;
  6808. width:134px;
  6809. height:23px;
  6810. padding:2px 2px 2px 2px;
  6811. font-family:'ArialMT', 'Arial', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:14px;
  6815. letter-spacing:normal;
  6816. color:#AAAAAA;
  6817. vertical-align:none;
  6818. text-align:left;
  6819. text-transform:none;
  6820. background-color:transparent;
  6821. border-color:transparent;
  6822. }
  6823. #u107989_input.disabled {
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:134px;
  6828. height:23px;
  6829. padding:2px 2px 2px 2px;
  6830. font-family:'ArialMT', 'Arial', sans-serif;
  6831. font-weight:400;
  6832. font-style:normal;
  6833. font-size:14px;
  6834. letter-spacing:normal;
  6835. color:#AAAAAA;
  6836. vertical-align:none;
  6837. text-align:left;
  6838. text-transform:none;
  6839. background-color:transparent;
  6840. border-color:transparent;
  6841. }
  6842. #u107989_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:134px;
  6848. height:23px;
  6849. background:inherit;
  6850. background-color:rgba(255, 255, 255, 1);
  6851. border:none;
  6852. border-radius:0px;
  6853. -moz-box-shadow:none;
  6854. -webkit-box-shadow:none;
  6855. box-shadow:none;
  6856. font-size:14px;
  6857. color:#AAAAAA;
  6858. }
  6859. #u107989 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:954px;
  6863. top:105px;
  6864. width:134px;
  6865. height:23px;
  6866. display:flex;
  6867. font-size:14px;
  6868. color:#AAAAAA;
  6869. }
  6870. #u107989 .text {
  6871. position:absolute;
  6872. align-self:flex-start;
  6873. padding:2px 2px 2px 2px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u107989_div.disabled {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:134px;
  6883. height:23px;
  6884. background:inherit;
  6885. background-color:rgba(240, 240, 240, 1);
  6886. border:none;
  6887. border-radius:0px;
  6888. -moz-box-shadow:none;
  6889. -webkit-box-shadow:none;
  6890. box-shadow:none;
  6891. font-size:14px;
  6892. color:#AAAAAA;
  6893. }
  6894. #u107989.disabled {
  6895. }
  6896. .u107989_input_option {
  6897. font-size:14px;
  6898. }
  6899. #u107990 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:0px;
  6905. height:0px;
  6906. }
  6907. #u107991_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:140px;
  6913. height:30px;
  6914. background:inherit;
  6915. background-color:rgba(255, 255, 255, 1);
  6916. box-sizing:border-box;
  6917. border-width:1px;
  6918. border-style:solid;
  6919. border-color:rgba(201, 201, 201, 1);
  6920. border-radius:4px;
  6921. -moz-box-shadow:none;
  6922. -webkit-box-shadow:none;
  6923. box-shadow:none;
  6924. font-family:'Microsoft YaHei', sans-serif;
  6925. font-weight:400;
  6926. font-style:normal;
  6927. font-size:14px;
  6928. color:#CCCCCC;
  6929. text-align:left;
  6930. }
  6931. #u107991 {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:348px;
  6935. top:143px;
  6936. width:140px;
  6937. height:30px;
  6938. display:flex;
  6939. font-family:'Microsoft YaHei', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:14px;
  6943. color:#CCCCCC;
  6944. text-align:left;
  6945. }
  6946. #u107991 .text {
  6947. position:absolute;
  6948. align-self:center;
  6949. padding:2px 8px 2px 8px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u107991_text {
  6954. border-width:0px;
  6955. word-wrap:break-word;
  6956. text-transform:none;
  6957. visibility:hidden;
  6958. }
  6959. #u107992_input {
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:127px;
  6964. height:25px;
  6965. padding:2px 2px 2px 2px;
  6966. font-family:'Microsoft YaHei', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:10px;
  6970. letter-spacing:normal;
  6971. color:#000000;
  6972. vertical-align:none;
  6973. text-align:left;
  6974. text-transform:none;
  6975. background-color:transparent;
  6976. border-color:transparent;
  6977. }
  6978. #u107992_input.disabled {
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:127px;
  6983. height:25px;
  6984. padding:2px 2px 2px 2px;
  6985. font-family:'Microsoft YaHei', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:10px;
  6989. letter-spacing:normal;
  6990. color:#000000;
  6991. vertical-align:none;
  6992. text-align:left;
  6993. text-transform:none;
  6994. background-color:transparent;
  6995. border-color:transparent;
  6996. }
  6997. #u107992_div {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:127px;
  7003. height:25px;
  7004. background:inherit;
  7005. background-color:rgba(255, 255, 255, 1);
  7006. border:none;
  7007. border-radius:0px;
  7008. -moz-box-shadow:none;
  7009. -webkit-box-shadow:none;
  7010. box-shadow:none;
  7011. font-family:'Microsoft YaHei', sans-serif;
  7012. font-weight:400;
  7013. font-style:normal;
  7014. font-size:10px;
  7015. }
  7016. #u107992 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:356px;
  7020. top:144px;
  7021. width:127px;
  7022. height:25px;
  7023. display:flex;
  7024. font-family:'Microsoft YaHei', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:10px;
  7028. }
  7029. #u107992 .text {
  7030. position:absolute;
  7031. align-self:center;
  7032. padding:2px 2px 2px 2px;
  7033. box-sizing:border-box;
  7034. width:100%;
  7035. }
  7036. #u107992_div.disabled {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:127px;
  7042. height:25px;
  7043. background:inherit;
  7044. background-color:rgba(240, 240, 240, 1);
  7045. border:none;
  7046. border-radius:0px;
  7047. -moz-box-shadow:none;
  7048. -webkit-box-shadow:none;
  7049. box-shadow:none;
  7050. font-family:'Microsoft YaHei', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:10px;
  7054. }
  7055. #u107992.disabled {
  7056. }
  7057. #u107993 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:0px;
  7063. height:0px;
  7064. }
  7065. #u107994_div {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:0px;
  7069. top:0px;
  7070. width:140px;
  7071. height:30px;
  7072. background:inherit;
  7073. background-color:rgba(255, 255, 255, 1);
  7074. box-sizing:border-box;
  7075. border-width:1px;
  7076. border-style:solid;
  7077. border-color:rgba(201, 201, 201, 1);
  7078. border-radius:4px;
  7079. -moz-box-shadow:none;
  7080. -webkit-box-shadow:none;
  7081. box-shadow:none;
  7082. font-family:'Microsoft YaHei', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:14px;
  7086. color:#CCCCCC;
  7087. text-align:left;
  7088. }
  7089. #u107994 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:498px;
  7093. top:143px;
  7094. width:140px;
  7095. height:30px;
  7096. display:flex;
  7097. font-family:'Microsoft YaHei', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:14px;
  7101. color:#CCCCCC;
  7102. text-align:left;
  7103. }
  7104. #u107994 .text {
  7105. position:absolute;
  7106. align-self:center;
  7107. padding:2px 8px 2px 8px;
  7108. box-sizing:border-box;
  7109. width:100%;
  7110. }
  7111. #u107994_text {
  7112. border-width:0px;
  7113. word-wrap:break-word;
  7114. text-transform:none;
  7115. visibility:hidden;
  7116. }
  7117. #u107995_input {
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:127px;
  7122. height:25px;
  7123. padding:2px 2px 2px 2px;
  7124. font-family:'Microsoft YaHei', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:10px;
  7128. letter-spacing:normal;
  7129. color:#000000;
  7130. vertical-align:none;
  7131. text-align:left;
  7132. text-transform:none;
  7133. background-color:transparent;
  7134. border-color:transparent;
  7135. }
  7136. #u107995_input.disabled {
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:127px;
  7141. height:25px;
  7142. padding:2px 2px 2px 2px;
  7143. font-family:'Microsoft YaHei', sans-serif;
  7144. font-weight:400;
  7145. font-style:normal;
  7146. font-size:10px;
  7147. letter-spacing:normal;
  7148. color:#000000;
  7149. vertical-align:none;
  7150. text-align:left;
  7151. text-transform:none;
  7152. background-color:transparent;
  7153. border-color:transparent;
  7154. }
  7155. #u107995_div {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:127px;
  7161. height:25px;
  7162. background:inherit;
  7163. background-color:rgba(255, 255, 255, 1);
  7164. border:none;
  7165. border-radius:0px;
  7166. -moz-box-shadow:none;
  7167. -webkit-box-shadow:none;
  7168. box-shadow:none;
  7169. font-family:'Microsoft YaHei', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:10px;
  7173. }
  7174. #u107995 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:506px;
  7178. top:144px;
  7179. width:127px;
  7180. height:25px;
  7181. display:flex;
  7182. font-family:'Microsoft YaHei', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:10px;
  7186. }
  7187. #u107995 .text {
  7188. position:absolute;
  7189. align-self:center;
  7190. padding:2px 2px 2px 2px;
  7191. box-sizing:border-box;
  7192. width:100%;
  7193. }
  7194. #u107995_div.disabled {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:127px;
  7200. height:25px;
  7201. background:inherit;
  7202. background-color:rgba(240, 240, 240, 1);
  7203. border:none;
  7204. border-radius:0px;
  7205. -moz-box-shadow:none;
  7206. -webkit-box-shadow:none;
  7207. box-shadow:none;
  7208. font-family:'Microsoft YaHei', sans-serif;
  7209. font-weight:400;
  7210. font-style:normal;
  7211. font-size:10px;
  7212. }
  7213. #u107995.disabled {
  7214. }
  7215. #u107996 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:0px;
  7221. height:0px;
  7222. }
  7223. #u107997_div {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:140px;
  7229. height:30px;
  7230. background:inherit;
  7231. background-color:rgba(255, 255, 255, 1);
  7232. box-sizing:border-box;
  7233. border-width:1px;
  7234. border-style:solid;
  7235. border-color:rgba(215, 215, 215, 1);
  7236. border-radius:4px;
  7237. -moz-box-shadow:none;
  7238. -webkit-box-shadow:none;
  7239. box-shadow:none;
  7240. font-size:14px;
  7241. }
  7242. #u107997 {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:650px;
  7246. top:143px;
  7247. width:140px;
  7248. height:30px;
  7249. display:flex;
  7250. font-size:14px;
  7251. }
  7252. #u107997 .text {
  7253. position:absolute;
  7254. align-self:center;
  7255. padding:2px 2px 2px 2px;
  7256. box-sizing:border-box;
  7257. width:100%;
  7258. }
  7259. #u107997_text {
  7260. border-width:0px;
  7261. word-wrap:break-word;
  7262. text-transform:none;
  7263. visibility:hidden;
  7264. }
  7265. #u107998_input {
  7266. position:absolute;
  7267. left:0px;
  7268. top:0px;
  7269. width:134px;
  7270. height:23px;
  7271. padding:2px 2px 2px 2px;
  7272. font-family:'ArialMT', 'Arial', sans-serif;
  7273. font-weight:400;
  7274. font-style:normal;
  7275. font-size:14px;
  7276. letter-spacing:normal;
  7277. color:#AAAAAA;
  7278. vertical-align:none;
  7279. text-align:left;
  7280. text-transform:none;
  7281. background-color:transparent;
  7282. border-color:transparent;
  7283. }
  7284. #u107998_input.disabled {
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:134px;
  7289. height:23px;
  7290. padding:2px 2px 2px 2px;
  7291. font-family:'ArialMT', 'Arial', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. letter-spacing:normal;
  7296. color:#AAAAAA;
  7297. vertical-align:none;
  7298. text-align:left;
  7299. text-transform:none;
  7300. background-color:transparent;
  7301. border-color:transparent;
  7302. }
  7303. #u107998_div {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:134px;
  7309. height:23px;
  7310. background:inherit;
  7311. background-color:rgba(255, 255, 255, 1);
  7312. border:none;
  7313. border-radius:0px;
  7314. -moz-box-shadow:none;
  7315. -webkit-box-shadow:none;
  7316. box-shadow:none;
  7317. font-size:14px;
  7318. color:#AAAAAA;
  7319. }
  7320. #u107998 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:654px;
  7324. top:145px;
  7325. width:134px;
  7326. height:23px;
  7327. display:flex;
  7328. font-size:14px;
  7329. color:#AAAAAA;
  7330. }
  7331. #u107998 .text {
  7332. position:absolute;
  7333. align-self:flex-start;
  7334. padding:2px 2px 2px 2px;
  7335. box-sizing:border-box;
  7336. width:100%;
  7337. }
  7338. #u107998_div.disabled {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:134px;
  7344. height:23px;
  7345. background:inherit;
  7346. background-color:rgba(240, 240, 240, 1);
  7347. border:none;
  7348. border-radius:0px;
  7349. -moz-box-shadow:none;
  7350. -webkit-box-shadow:none;
  7351. box-shadow:none;
  7352. font-size:14px;
  7353. color:#AAAAAA;
  7354. }
  7355. #u107998.disabled {
  7356. }
  7357. .u107998_input_option {
  7358. font-size:14px;
  7359. }
  7360. #u107999 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:0px;
  7366. height:0px;
  7367. }
  7368. #u108000_div {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:140px;
  7374. height:30px;
  7375. background:inherit;
  7376. background-color:rgba(255, 255, 255, 1);
  7377. box-sizing:border-box;
  7378. border-width:1px;
  7379. border-style:solid;
  7380. border-color:rgba(201, 201, 201, 1);
  7381. border-radius:4px;
  7382. -moz-box-shadow:none;
  7383. -webkit-box-shadow:none;
  7384. box-shadow:none;
  7385. font-family:'Microsoft YaHei', sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:14px;
  7389. color:#CCCCCC;
  7390. text-align:left;
  7391. }
  7392. #u108000 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:800px;
  7396. top:143px;
  7397. width:140px;
  7398. height:30px;
  7399. display:flex;
  7400. font-family:'Microsoft YaHei', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:14px;
  7404. color:#CCCCCC;
  7405. text-align:left;
  7406. }
  7407. #u108000 .text {
  7408. position:absolute;
  7409. align-self:center;
  7410. padding:2px 8px 2px 8px;
  7411. box-sizing:border-box;
  7412. width:100%;
  7413. }
  7414. #u108000_text {
  7415. border-width:0px;
  7416. word-wrap:break-word;
  7417. text-transform:none;
  7418. visibility:hidden;
  7419. }
  7420. #u108001_input {
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:127px;
  7425. height:25px;
  7426. padding:2px 2px 2px 2px;
  7427. font-family:'Microsoft YaHei', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:10px;
  7431. letter-spacing:normal;
  7432. color:#000000;
  7433. vertical-align:none;
  7434. text-align:left;
  7435. text-transform:none;
  7436. background-color:transparent;
  7437. border-color:transparent;
  7438. }
  7439. #u108001_input.disabled {
  7440. position:absolute;
  7441. left:0px;
  7442. top:0px;
  7443. width:127px;
  7444. height:25px;
  7445. padding:2px 2px 2px 2px;
  7446. font-family:'Microsoft YaHei', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:10px;
  7450. letter-spacing:normal;
  7451. color:#000000;
  7452. vertical-align:none;
  7453. text-align:left;
  7454. text-transform:none;
  7455. background-color:transparent;
  7456. border-color:transparent;
  7457. }
  7458. #u108001_div {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:127px;
  7464. height:25px;
  7465. background:inherit;
  7466. background-color:rgba(255, 255, 255, 1);
  7467. border:none;
  7468. border-radius:0px;
  7469. -moz-box-shadow:none;
  7470. -webkit-box-shadow:none;
  7471. box-shadow:none;
  7472. font-family:'Microsoft YaHei', sans-serif;
  7473. font-weight:400;
  7474. font-style:normal;
  7475. font-size:10px;
  7476. }
  7477. #u108001 {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:808px;
  7481. top:144px;
  7482. width:127px;
  7483. height:25px;
  7484. display:flex;
  7485. font-family:'Microsoft YaHei', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:10px;
  7489. }
  7490. #u108001 .text {
  7491. position:absolute;
  7492. align-self:center;
  7493. padding:2px 2px 2px 2px;
  7494. box-sizing:border-box;
  7495. width:100%;
  7496. }
  7497. #u108001_div.disabled {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:127px;
  7503. height:25px;
  7504. background:inherit;
  7505. background-color:rgba(240, 240, 240, 1);
  7506. border:none;
  7507. border-radius:0px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. font-family:'Microsoft YaHei', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:10px;
  7515. }
  7516. #u108001.disabled {
  7517. }
  7518. #u108002 {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:0px;
  7522. top:0px;
  7523. width:0px;
  7524. height:0px;
  7525. }
  7526. #u108003_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:140px;
  7532. height:30px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 1);
  7535. box-sizing:border-box;
  7536. border-width:1px;
  7537. border-style:solid;
  7538. border-color:rgba(201, 201, 201, 1);
  7539. border-radius:4px;
  7540. -moz-box-shadow:none;
  7541. -webkit-box-shadow:none;
  7542. box-shadow:none;
  7543. font-family:'Microsoft YaHei', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:14px;
  7547. color:#CCCCCC;
  7548. text-align:left;
  7549. }
  7550. #u108003 {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:1250px;
  7554. top:103px;
  7555. width:140px;
  7556. height:30px;
  7557. display:flex;
  7558. font-family:'Microsoft YaHei', sans-serif;
  7559. font-weight:400;
  7560. font-style:normal;
  7561. font-size:14px;
  7562. color:#CCCCCC;
  7563. text-align:left;
  7564. }
  7565. #u108003 .text {
  7566. position:absolute;
  7567. align-self:center;
  7568. padding:2px 8px 2px 8px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u108003_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. visibility:hidden;
  7577. }
  7578. #u108004_input {
  7579. position:absolute;
  7580. left:0px;
  7581. top:0px;
  7582. width:127px;
  7583. height:25px;
  7584. padding:2px 2px 2px 2px;
  7585. font-family:'Microsoft YaHei', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. font-size:10px;
  7589. letter-spacing:normal;
  7590. color:#000000;
  7591. vertical-align:none;
  7592. text-align:left;
  7593. text-transform:none;
  7594. background-color:transparent;
  7595. border-color:transparent;
  7596. }
  7597. #u108004_input.disabled {
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:127px;
  7602. height:25px;
  7603. padding:2px 2px 2px 2px;
  7604. font-family:'Microsoft YaHei', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:10px;
  7608. letter-spacing:normal;
  7609. color:#000000;
  7610. vertical-align:none;
  7611. text-align:left;
  7612. text-transform:none;
  7613. background-color:transparent;
  7614. border-color:transparent;
  7615. }
  7616. #u108004_div {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:127px;
  7622. height:25px;
  7623. background:inherit;
  7624. background-color:rgba(255, 255, 255, 1);
  7625. border:none;
  7626. border-radius:0px;
  7627. -moz-box-shadow:none;
  7628. -webkit-box-shadow:none;
  7629. box-shadow:none;
  7630. font-family:'Microsoft YaHei', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:10px;
  7634. }
  7635. #u108004 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:1258px;
  7639. top:104px;
  7640. width:127px;
  7641. height:25px;
  7642. display:flex;
  7643. font-family:'Microsoft YaHei', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:10px;
  7647. }
  7648. #u108004 .text {
  7649. position:absolute;
  7650. align-self:center;
  7651. padding:2px 2px 2px 2px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u108004_div.disabled {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:0px;
  7659. top:0px;
  7660. width:127px;
  7661. height:25px;
  7662. background:inherit;
  7663. background-color:rgba(240, 240, 240, 1);
  7664. border:none;
  7665. border-radius:0px;
  7666. -moz-box-shadow:none;
  7667. -webkit-box-shadow:none;
  7668. box-shadow:none;
  7669. font-family:'Microsoft YaHei', sans-serif;
  7670. font-weight:400;
  7671. font-style:normal;
  7672. font-size:10px;
  7673. }
  7674. #u108004.disabled {
  7675. }
  7676. #u108005 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:0px;
  7682. height:0px;
  7683. }
  7684. #u108006_div {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:140px;
  7690. height:30px;
  7691. background:inherit;
  7692. background-color:rgba(255, 255, 255, 1);
  7693. box-sizing:border-box;
  7694. border-width:1px;
  7695. border-style:solid;
  7696. border-color:rgba(215, 215, 215, 1);
  7697. border-radius:4px;
  7698. -moz-box-shadow:none;
  7699. -webkit-box-shadow:none;
  7700. box-shadow:none;
  7701. font-size:14px;
  7702. }
  7703. #u108006 {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:1100px;
  7707. top:103px;
  7708. width:140px;
  7709. height:30px;
  7710. display:flex;
  7711. font-size:14px;
  7712. }
  7713. #u108006 .text {
  7714. position:absolute;
  7715. align-self:center;
  7716. padding:2px 2px 2px 2px;
  7717. box-sizing:border-box;
  7718. width:100%;
  7719. }
  7720. #u108006_text {
  7721. border-width:0px;
  7722. word-wrap:break-word;
  7723. text-transform:none;
  7724. visibility:hidden;
  7725. }
  7726. #u108007_input {
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:134px;
  7731. height:23px;
  7732. padding:2px 2px 2px 2px;
  7733. font-family:'ArialMT', 'Arial', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:14px;
  7737. letter-spacing:normal;
  7738. color:#AAAAAA;
  7739. vertical-align:none;
  7740. text-align:left;
  7741. text-transform:none;
  7742. background-color:transparent;
  7743. border-color:transparent;
  7744. }
  7745. #u108007_input.disabled {
  7746. position:absolute;
  7747. left:0px;
  7748. top:0px;
  7749. width:134px;
  7750. height:23px;
  7751. padding:2px 2px 2px 2px;
  7752. font-family:'ArialMT', 'Arial', sans-serif;
  7753. font-weight:400;
  7754. font-style:normal;
  7755. font-size:14px;
  7756. letter-spacing:normal;
  7757. color:#AAAAAA;
  7758. vertical-align:none;
  7759. text-align:left;
  7760. text-transform:none;
  7761. background-color:transparent;
  7762. border-color:transparent;
  7763. }
  7764. #u108007_div {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:0px;
  7768. top:0px;
  7769. width:134px;
  7770. height:23px;
  7771. background:inherit;
  7772. background-color:rgba(255, 255, 255, 1);
  7773. border:none;
  7774. border-radius:0px;
  7775. -moz-box-shadow:none;
  7776. -webkit-box-shadow:none;
  7777. box-shadow:none;
  7778. font-size:14px;
  7779. color:#AAAAAA;
  7780. }
  7781. #u108007 {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:1104px;
  7785. top:105px;
  7786. width:134px;
  7787. height:23px;
  7788. display:flex;
  7789. font-size:14px;
  7790. color:#AAAAAA;
  7791. }
  7792. #u108007 .text {
  7793. position:absolute;
  7794. align-self:flex-start;
  7795. padding:2px 2px 2px 2px;
  7796. box-sizing:border-box;
  7797. width:100%;
  7798. }
  7799. #u108007_div.disabled {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:0px;
  7803. top:0px;
  7804. width:134px;
  7805. height:23px;
  7806. background:inherit;
  7807. background-color:rgba(240, 240, 240, 1);
  7808. border:none;
  7809. border-radius:0px;
  7810. -moz-box-shadow:none;
  7811. -webkit-box-shadow:none;
  7812. box-shadow:none;
  7813. font-size:14px;
  7814. color:#AAAAAA;
  7815. }
  7816. #u108007.disabled {
  7817. }
  7818. .u108007_input_option {
  7819. font-size:14px;
  7820. }
  7821. #u108008 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:0px;
  7825. top:0px;
  7826. width:0px;
  7827. height:0px;
  7828. }
  7829. #u108009_div {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:400px;
  7835. height:160px;
  7836. background:inherit;
  7837. background-color:rgba(255, 255, 255, 1);
  7838. box-sizing:border-box;
  7839. border-width:1px;
  7840. border-style:solid;
  7841. border-color:rgba(204, 204, 204, 1);
  7842. border-radius:0px;
  7843. -moz-box-shadow:none;
  7844. -webkit-box-shadow:none;
  7845. box-shadow:none;
  7846. font-family:'Microsoft YaHei', sans-serif;
  7847. font-weight:400;
  7848. font-style:normal;
  7849. }
  7850. #u108009 {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:984px;
  7854. top:609px;
  7855. width:400px;
  7856. height:160px;
  7857. display:flex;
  7858. font-family:'Microsoft YaHei', sans-serif;
  7859. font-weight:400;
  7860. font-style:normal;
  7861. }
  7862. #u108009 .text {
  7863. position:absolute;
  7864. align-self:center;
  7865. padding:2px 2px 2px 2px;
  7866. box-sizing:border-box;
  7867. width:100%;
  7868. }
  7869. #u108009_text {
  7870. border-width:0px;
  7871. word-wrap:break-word;
  7872. text-transform:none;
  7873. visibility:hidden;
  7874. }
  7875. #u108010_div {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:0px;
  7880. width:127px;
  7881. height:21px;
  7882. background:inherit;
  7883. background-color:rgba(255, 255, 255, 0);
  7884. border:none;
  7885. border-radius:0px;
  7886. -moz-box-shadow:none;
  7887. -webkit-box-shadow:none;
  7888. box-shadow:none;
  7889. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7890. font-weight:650;
  7891. font-style:normal;
  7892. font-size:18px;
  7893. color:#000000;
  7894. line-height:22px;
  7895. }
  7896. #u108010 {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:1034px;
  7900. top:634px;
  7901. width:127px;
  7902. height:21px;
  7903. display:flex;
  7904. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7905. font-weight:650;
  7906. font-style:normal;
  7907. font-size:18px;
  7908. color:#000000;
  7909. line-height:22px;
  7910. }
  7911. #u108010 .text {
  7912. position:absolute;
  7913. align-self:flex-start;
  7914. padding:0px 0px 0px 0px;
  7915. box-sizing:border-box;
  7916. width:100%;
  7917. }
  7918. #u108010_text {
  7919. border-width:0px;
  7920. white-space:nowrap;
  7921. text-transform:none;
  7922. }
  7923. #u108011_div {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:61px;
  7929. height:32px;
  7930. background:inherit;
  7931. background-color:rgba(24, 144, 255, 1);
  7932. border:none;
  7933. border-radius:4px;
  7934. -moz-box-shadow:none;
  7935. -webkit-box-shadow:none;
  7936. box-shadow:none;
  7937. font-family:'Microsoft YaHei', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:14px;
  7941. color:#FFFFFF;
  7942. }
  7943. #u108011 {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:1303px;
  7947. top:717px;
  7948. width:61px;
  7949. height:32px;
  7950. display:flex;
  7951. font-family:'Microsoft YaHei', sans-serif;
  7952. font-weight:400;
  7953. font-style:normal;
  7954. font-size:14px;
  7955. color:#FFFFFF;
  7956. }
  7957. #u108011 .text {
  7958. position:absolute;
  7959. align-self:center;
  7960. padding:2px 16px 2px 16px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u108011_text {
  7965. border-width:0px;
  7966. white-space:nowrap;
  7967. text-transform:none;
  7968. }
  7969. #u108012_div {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:66px;
  7975. height:32px;
  7976. background:inherit;
  7977. background-color:rgba(255, 255, 255, 1);
  7978. box-sizing:border-box;
  7979. border-width:1px;
  7980. border-style:solid;
  7981. border-color:rgba(217, 217, 217, 1);
  7982. border-radius:4px;
  7983. -moz-box-shadow:none;
  7984. -webkit-box-shadow:none;
  7985. box-shadow:none;
  7986. font-family:'Microsoft YaHei', sans-serif;
  7987. font-weight:400;
  7988. font-style:normal;
  7989. font-size:14px;
  7990. color:rgba(0, 0, 0, 0.647058823529412);
  7991. line-height:21px;
  7992. }
  7993. #u108012 {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:1221px;
  7997. top:717px;
  7998. width:66px;
  7999. height:32px;
  8000. display:flex;
  8001. font-family:'Microsoft YaHei', sans-serif;
  8002. font-weight:400;
  8003. font-style:normal;
  8004. font-size:14px;
  8005. color:rgba(0, 0, 0, 0.647058823529412);
  8006. line-height:21px;
  8007. }
  8008. #u108012 .text {
  8009. position:absolute;
  8010. align-self:center;
  8011. padding:2px 16px 2px 16px;
  8012. box-sizing:border-box;
  8013. width:100%;
  8014. }
  8015. #u108012_text {
  8016. border-width:0px;
  8017. white-space:nowrap;
  8018. text-transform:none;
  8019. }
  8020. #u108013_img {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:24px;
  8026. height:24px;
  8027. }
  8028. #u108013 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:998px;
  8032. top:632px;
  8033. width:24px;
  8034. height:24px;
  8035. display:flex;
  8036. font-family:'Microsoft YaHei', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:52px;
  8040. color:#FAAD14;
  8041. }
  8042. #u108013 .text {
  8043. position:absolute;
  8044. align-self:center;
  8045. padding:2px 2px 2px 2px;
  8046. box-sizing:border-box;
  8047. width:100%;
  8048. }
  8049. #u108013_text {
  8050. border-width:0px;
  8051. word-wrap:break-word;
  8052. text-transform:none;
  8053. visibility:hidden;
  8054. }
  8055. #u108014_div {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:326px;
  8061. height:44px;
  8062. background:inherit;
  8063. background-color:rgba(255, 255, 255, 0);
  8064. border:none;
  8065. border-radius:0px;
  8066. -moz-box-shadow:none;
  8067. -webkit-box-shadow:none;
  8068. box-shadow:none;
  8069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:12px;
  8073. color:#7F7F7F;
  8074. line-height:22px;
  8075. }
  8076. #u108014 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:1034px;
  8080. top:666px;
  8081. width:326px;
  8082. height:44px;
  8083. display:flex;
  8084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. font-size:12px;
  8088. color:#7F7F7F;
  8089. line-height:22px;
  8090. }
  8091. #u108014 .text {
  8092. position:absolute;
  8093. align-self:flex-start;
  8094. padding:0px 0px 0px 0px;
  8095. box-sizing:border-box;
  8096. width:100%;
  8097. }
  8098. #u108014_text {
  8099. border-width:0px;
  8100. word-wrap:break-word;
  8101. text-transform:none;
  8102. }
  8103. #u108015 {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:0px;
  8107. top:0px;
  8108. width:0px;
  8109. height:0px;
  8110. }
  8111. #u108016_div {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:400px;
  8117. height:160px;
  8118. background:inherit;
  8119. background-color:rgba(255, 255, 255, 1);
  8120. box-sizing:border-box;
  8121. border-width:1px;
  8122. border-style:solid;
  8123. border-color:rgba(204, 204, 204, 1);
  8124. border-radius:0px;
  8125. -moz-box-shadow:none;
  8126. -webkit-box-shadow:none;
  8127. box-shadow:none;
  8128. font-family:'Microsoft YaHei', sans-serif;
  8129. font-weight:400;
  8130. font-style:normal;
  8131. }
  8132. #u108016 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:984px;
  8136. top:794px;
  8137. width:400px;
  8138. height:160px;
  8139. display:flex;
  8140. font-family:'Microsoft YaHei', sans-serif;
  8141. font-weight:400;
  8142. font-style:normal;
  8143. }
  8144. #u108016 .text {
  8145. position:absolute;
  8146. align-self:center;
  8147. padding:2px 2px 2px 2px;
  8148. box-sizing:border-box;
  8149. width:100%;
  8150. }
  8151. #u108016_text {
  8152. border-width:0px;
  8153. word-wrap:break-word;
  8154. text-transform:none;
  8155. visibility:hidden;
  8156. }
  8157. #u108017_div {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:127px;
  8163. height:21px;
  8164. background:inherit;
  8165. background-color:rgba(255, 255, 255, 0);
  8166. border:none;
  8167. border-radius:0px;
  8168. -moz-box-shadow:none;
  8169. -webkit-box-shadow:none;
  8170. box-shadow:none;
  8171. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8172. font-weight:650;
  8173. font-style:normal;
  8174. font-size:18px;
  8175. color:#000000;
  8176. line-height:22px;
  8177. }
  8178. #u108017 {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:1044px;
  8182. top:829px;
  8183. width:127px;
  8184. height:21px;
  8185. display:flex;
  8186. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8187. font-weight:650;
  8188. font-style:normal;
  8189. font-size:18px;
  8190. color:#000000;
  8191. line-height:22px;
  8192. }
  8193. #u108017 .text {
  8194. position:absolute;
  8195. align-self:flex-start;
  8196. padding:0px 0px 0px 0px;
  8197. box-sizing:border-box;
  8198. width:100%;
  8199. }
  8200. #u108017_text {
  8201. border-width:0px;
  8202. white-space:nowrap;
  8203. text-transform:none;
  8204. }
  8205. #u108018_div {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:61px;
  8211. height:32px;
  8212. background:inherit;
  8213. background-color:rgba(24, 144, 255, 1);
  8214. border:none;
  8215. border-radius:4px;
  8216. -moz-box-shadow:none;
  8217. -webkit-box-shadow:none;
  8218. box-shadow:none;
  8219. font-family:'Microsoft YaHei', sans-serif;
  8220. font-weight:400;
  8221. font-style:normal;
  8222. font-size:14px;
  8223. color:#FFFFFF;
  8224. }
  8225. #u108018 {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:1303px;
  8229. top:899px;
  8230. width:61px;
  8231. height:32px;
  8232. display:flex;
  8233. font-family:'Microsoft YaHei', sans-serif;
  8234. font-weight:400;
  8235. font-style:normal;
  8236. font-size:14px;
  8237. color:#FFFFFF;
  8238. }
  8239. #u108018 .text {
  8240. position:absolute;
  8241. align-self:center;
  8242. padding:2px 16px 2px 16px;
  8243. box-sizing:border-box;
  8244. width:100%;
  8245. }
  8246. #u108018_text {
  8247. border-width:0px;
  8248. white-space:nowrap;
  8249. text-transform:none;
  8250. }
  8251. #u108019_div {
  8252. border-width:0px;
  8253. position:absolute;
  8254. left:0px;
  8255. top:0px;
  8256. width:66px;
  8257. height:32px;
  8258. background:inherit;
  8259. background-color:rgba(255, 255, 255, 1);
  8260. box-sizing:border-box;
  8261. border-width:1px;
  8262. border-style:solid;
  8263. border-color:rgba(217, 217, 217, 1);
  8264. border-radius:4px;
  8265. -moz-box-shadow:none;
  8266. -webkit-box-shadow:none;
  8267. box-shadow:none;
  8268. font-family:'Microsoft YaHei', sans-serif;
  8269. font-weight:400;
  8270. font-style:normal;
  8271. font-size:14px;
  8272. color:rgba(0, 0, 0, 0.647058823529412);
  8273. line-height:21px;
  8274. }
  8275. #u108019 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:1221px;
  8279. top:899px;
  8280. width:66px;
  8281. height:32px;
  8282. display:flex;
  8283. font-family:'Microsoft YaHei', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:14px;
  8287. color:rgba(0, 0, 0, 0.647058823529412);
  8288. line-height:21px;
  8289. }
  8290. #u108019 .text {
  8291. position:absolute;
  8292. align-self:center;
  8293. padding:2px 16px 2px 16px;
  8294. box-sizing:border-box;
  8295. width:100%;
  8296. }
  8297. #u108019_text {
  8298. border-width:0px;
  8299. white-space:nowrap;
  8300. text-transform:none;
  8301. }
  8302. #u108020_div {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:0px;
  8306. top:0px;
  8307. width:241px;
  8308. height:22px;
  8309. background:inherit;
  8310. background-color:rgba(255, 255, 255, 0);
  8311. border:none;
  8312. border-radius:0px;
  8313. -moz-box-shadow:none;
  8314. -webkit-box-shadow:none;
  8315. box-shadow:none;
  8316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:12px;
  8320. color:#7F7F7F;
  8321. line-height:22px;
  8322. }
  8323. #u108020 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:1044px;
  8327. top:861px;
  8328. width:241px;
  8329. height:22px;
  8330. display:flex;
  8331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8332. font-weight:400;
  8333. font-style:normal;
  8334. font-size:12px;
  8335. color:#7F7F7F;
  8336. line-height:22px;
  8337. }
  8338. #u108020 .text {
  8339. position:absolute;
  8340. align-self:flex-start;
  8341. padding:0px 0px 0px 0px;
  8342. box-sizing:border-box;
  8343. width:100%;
  8344. }
  8345. #u108020_text {
  8346. border-width:0px;
  8347. white-space:nowrap;
  8348. text-transform:none;
  8349. }
  8350. #u108021_img {
  8351. border-width:0px;
  8352. position:absolute;
  8353. left:0px;
  8354. top:0px;
  8355. width:24px;
  8356. height:24px;
  8357. }
  8358. #u108021 {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:1008px;
  8362. top:829px;
  8363. width:24px;
  8364. height:24px;
  8365. display:flex;
  8366. }
  8367. #u108021 .text {
  8368. position:absolute;
  8369. align-self:center;
  8370. padding:2px 2px 2px 2px;
  8371. box-sizing:border-box;
  8372. width:100%;
  8373. }
  8374. #u108021_text {
  8375. border-width:0px;
  8376. word-wrap:break-word;
  8377. text-transform:none;
  8378. visibility:hidden;
  8379. }
  8380. #u108022 {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:0px;
  8384. top:0px;
  8385. width:0px;
  8386. height:0px;
  8387. }
  8388. #u108023_div {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:0px;
  8392. top:0px;
  8393. width:140px;
  8394. height:30px;
  8395. background:inherit;
  8396. background-color:rgba(255, 255, 255, 1);
  8397. box-sizing:border-box;
  8398. border-width:1px;
  8399. border-style:solid;
  8400. border-color:rgba(215, 215, 215, 1);
  8401. border-radius:4px;
  8402. -moz-box-shadow:none;
  8403. -webkit-box-shadow:none;
  8404. box-shadow:none;
  8405. font-size:14px;
  8406. }
  8407. #u108023 {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:350px;
  8411. top:103px;
  8412. width:140px;
  8413. height:30px;
  8414. display:flex;
  8415. font-size:14px;
  8416. }
  8417. #u108023 .text {
  8418. position:absolute;
  8419. align-self:center;
  8420. padding:2px 2px 2px 2px;
  8421. box-sizing:border-box;
  8422. width:100%;
  8423. }
  8424. #u108023_text {
  8425. border-width:0px;
  8426. word-wrap:break-word;
  8427. text-transform:none;
  8428. visibility:hidden;
  8429. }
  8430. #u108024_input {
  8431. position:absolute;
  8432. left:0px;
  8433. top:0px;
  8434. width:134px;
  8435. height:23px;
  8436. padding:2px 2px 2px 2px;
  8437. font-family:'ArialMT', 'Arial', sans-serif;
  8438. font-weight:400;
  8439. font-style:normal;
  8440. font-size:14px;
  8441. letter-spacing:normal;
  8442. color:#AAAAAA;
  8443. vertical-align:none;
  8444. text-align:left;
  8445. text-transform:none;
  8446. background-color:transparent;
  8447. border-color:transparent;
  8448. }
  8449. #u108024_input.disabled {
  8450. position:absolute;
  8451. left:0px;
  8452. top:0px;
  8453. width:134px;
  8454. height:23px;
  8455. padding:2px 2px 2px 2px;
  8456. font-family:'ArialMT', 'Arial', sans-serif;
  8457. font-weight:400;
  8458. font-style:normal;
  8459. font-size:14px;
  8460. letter-spacing:normal;
  8461. color:#AAAAAA;
  8462. vertical-align:none;
  8463. text-align:left;
  8464. text-transform:none;
  8465. background-color:transparent;
  8466. border-color:transparent;
  8467. }
  8468. #u108024_div {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:0px;
  8472. top:0px;
  8473. width:134px;
  8474. height:23px;
  8475. background:inherit;
  8476. background-color:rgba(255, 255, 255, 1);
  8477. border:none;
  8478. border-radius:0px;
  8479. -moz-box-shadow:none;
  8480. -webkit-box-shadow:none;
  8481. box-shadow:none;
  8482. font-size:14px;
  8483. color:#AAAAAA;
  8484. }
  8485. #u108024 {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:354px;
  8489. top:105px;
  8490. width:134px;
  8491. height:23px;
  8492. display:flex;
  8493. font-size:14px;
  8494. color:#AAAAAA;
  8495. }
  8496. #u108024 .text {
  8497. position:absolute;
  8498. align-self:flex-start;
  8499. padding:2px 2px 2px 2px;
  8500. box-sizing:border-box;
  8501. width:100%;
  8502. }
  8503. #u108024_div.disabled {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:134px;
  8509. height:23px;
  8510. background:inherit;
  8511. background-color:rgba(240, 240, 240, 1);
  8512. border:none;
  8513. border-radius:0px;
  8514. -moz-box-shadow:none;
  8515. -webkit-box-shadow:none;
  8516. box-shadow:none;
  8517. font-size:14px;
  8518. color:#AAAAAA;
  8519. }
  8520. #u108024.disabled {
  8521. }
  8522. .u108024_input_option {
  8523. font-size:14px;
  8524. }
  8525. #u108025 {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:0px;
  8531. height:0px;
  8532. }
  8533. #u108026_div {
  8534. border-width:0px;
  8535. position:absolute;
  8536. left:0px;
  8537. top:0px;
  8538. width:200px;
  8539. height:1180px;
  8540. background:inherit;
  8541. background-color:rgba(255, 255, 255, 1);
  8542. border:none;
  8543. border-radius:0px;
  8544. -moz-box-shadow:none;
  8545. -webkit-box-shadow:none;
  8546. box-shadow:none;
  8547. }
  8548. #u108026 {
  8549. border-width:0px;
  8550. position:absolute;
  8551. left:120px;
  8552. top:50px;
  8553. width:200px;
  8554. height:1180px;
  8555. display:flex;
  8556. }
  8557. #u108026 .text {
  8558. position:absolute;
  8559. align-self:center;
  8560. padding:2px 2px 2px 2px;
  8561. box-sizing:border-box;
  8562. width:100%;
  8563. }
  8564. #u108026_text {
  8565. border-width:0px;
  8566. word-wrap:break-word;
  8567. text-transform:none;
  8568. visibility:hidden;
  8569. }
  8570. #u108027_div {
  8571. border-width:0px;
  8572. position:absolute;
  8573. left:0px;
  8574. top:0px;
  8575. width:200px;
  8576. height:60px;
  8577. background:inherit;
  8578. background-color:rgba(224, 231, 247, 1);
  8579. border:none;
  8580. border-radius:0px;
  8581. -moz-box-shadow:none;
  8582. -webkit-box-shadow:none;
  8583. box-shadow:none;
  8584. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8585. font-weight:500;
  8586. font-style:normal;
  8587. font-size:18px;
  8588. }
  8589. #u108027 {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:120px;
  8593. top:50px;
  8594. width:200px;
  8595. height:60px;
  8596. display:flex;
  8597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8598. font-weight:500;
  8599. font-style:normal;
  8600. font-size:18px;
  8601. }
  8602. #u108027 .text {
  8603. position:absolute;
  8604. align-self:center;
  8605. padding:0px 0px 0px 20px;
  8606. box-sizing:border-box;
  8607. width:100%;
  8608. }
  8609. #u108027_text {
  8610. border-width:0px;
  8611. word-wrap:break-word;
  8612. text-transform:none;
  8613. }
  8614. #u108028_div {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:0px;
  8618. top:0px;
  8619. width:65px;
  8620. height:22px;
  8621. background:inherit;
  8622. background-color:rgba(255, 255, 255, 0);
  8623. border:none;
  8624. border-radius:0px;
  8625. -moz-box-shadow:none;
  8626. -webkit-box-shadow:none;
  8627. box-shadow:none;
  8628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8629. font-weight:400;
  8630. font-style:normal;
  8631. font-size:16px;
  8632. }
  8633. #u108028 {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:145px;
  8637. top:163px;
  8638. width:65px;
  8639. height:22px;
  8640. display:flex;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:16px;
  8645. }
  8646. #u108028 .text {
  8647. position:absolute;
  8648. align-self:flex-start;
  8649. padding:0px 0px 0px 0px;
  8650. box-sizing:border-box;
  8651. width:100%;
  8652. }
  8653. #u108028_text {
  8654. border-width:0px;
  8655. white-space:nowrap;
  8656. text-transform:none;
  8657. }
  8658. #u108029_div {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:65px;
  8664. height:22px;
  8665. background:inherit;
  8666. background-color:rgba(255, 255, 255, 0);
  8667. border:none;
  8668. border-radius:0px;
  8669. -moz-box-shadow:none;
  8670. -webkit-box-shadow:none;
  8671. box-shadow:none;
  8672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8673. font-weight:400;
  8674. font-style:normal;
  8675. font-size:16px;
  8676. }
  8677. #u108029 {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:145px;
  8681. top:205px;
  8682. width:65px;
  8683. height:22px;
  8684. display:flex;
  8685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8686. font-weight:400;
  8687. font-style:normal;
  8688. font-size:16px;
  8689. }
  8690. #u108029 .text {
  8691. position:absolute;
  8692. align-self:flex-start;
  8693. padding:0px 0px 0px 0px;
  8694. box-sizing:border-box;
  8695. width:100%;
  8696. }
  8697. #u108029_text {
  8698. border-width:0px;
  8699. white-space:nowrap;
  8700. text-transform:none;
  8701. }
  8702. #u108030_div {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:0px;
  8706. top:0px;
  8707. width:65px;
  8708. height:22px;
  8709. background:inherit;
  8710. background-color:rgba(255, 255, 255, 0);
  8711. border:none;
  8712. border-radius:0px;
  8713. -moz-box-shadow:none;
  8714. -webkit-box-shadow:none;
  8715. box-shadow:none;
  8716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8717. font-weight:400;
  8718. font-style:normal;
  8719. font-size:16px;
  8720. }
  8721. #u108030 {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:145px;
  8725. top:247px;
  8726. width:65px;
  8727. height:22px;
  8728. display:flex;
  8729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8730. font-weight:400;
  8731. font-style:normal;
  8732. font-size:16px;
  8733. }
  8734. #u108030 .text {
  8735. position:absolute;
  8736. align-self:flex-start;
  8737. padding:0px 0px 0px 0px;
  8738. box-sizing:border-box;
  8739. width:100%;
  8740. }
  8741. #u108030_text {
  8742. border-width:0px;
  8743. white-space:nowrap;
  8744. text-transform:none;
  8745. }
  8746. #u108031_div {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:0px;
  8750. top:0px;
  8751. width:81px;
  8752. height:22px;
  8753. background:inherit;
  8754. background-color:rgba(255, 255, 255, 0);
  8755. border:none;
  8756. border-radius:0px;
  8757. -moz-box-shadow:none;
  8758. -webkit-box-shadow:none;
  8759. box-shadow:none;
  8760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8761. font-weight:400;
  8762. font-style:normal;
  8763. font-size:16px;
  8764. }
  8765. #u108031 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:145px;
  8769. top:289px;
  8770. width:81px;
  8771. height:22px;
  8772. display:flex;
  8773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8774. font-weight:400;
  8775. font-style:normal;
  8776. font-size:16px;
  8777. }
  8778. #u108031 .text {
  8779. position:absolute;
  8780. align-self:flex-start;
  8781. padding:0px 0px 0px 0px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u108031_text {
  8786. border-width:0px;
  8787. white-space:nowrap;
  8788. text-transform:none;
  8789. }
  8790. #u108032_div {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:0px;
  8794. top:0px;
  8795. width:65px;
  8796. height:22px;
  8797. background:inherit;
  8798. background-color:rgba(255, 255, 255, 0);
  8799. border:none;
  8800. border-radius:0px;
  8801. -moz-box-shadow:none;
  8802. -webkit-box-shadow:none;
  8803. box-shadow:none;
  8804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8805. font-weight:400;
  8806. font-style:normal;
  8807. font-size:16px;
  8808. }
  8809. #u108032 {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:143px;
  8813. top:434px;
  8814. width:65px;
  8815. height:22px;
  8816. display:flex;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:16px;
  8821. }
  8822. #u108032 .text {
  8823. position:absolute;
  8824. align-self:flex-start;
  8825. padding:0px 0px 0px 0px;
  8826. box-sizing:border-box;
  8827. width:100%;
  8828. }
  8829. #u108032_text {
  8830. border-width:0px;
  8831. white-space:nowrap;
  8832. text-transform:none;
  8833. }
  8834. #u108033_img {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:0px;
  8838. top:0px;
  8839. width:201px;
  8840. height:2px;
  8841. }
  8842. #u108033 {
  8843. border-width:0px;
  8844. position:absolute;
  8845. left:120px;
  8846. top:381px;
  8847. width:200px;
  8848. height:1px;
  8849. display:flex;
  8850. }
  8851. #u108033 .text {
  8852. position:absolute;
  8853. align-self:center;
  8854. padding:2px 2px 2px 2px;
  8855. box-sizing:border-box;
  8856. width:100%;
  8857. }
  8858. #u108033_text {
  8859. border-width:0px;
  8860. word-wrap:break-word;
  8861. text-transform:none;
  8862. visibility:hidden;
  8863. }
  8864. #u108034_div {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:49px;
  8870. height:17px;
  8871. background:inherit;
  8872. background-color:rgba(255, 255, 255, 0);
  8873. border:none;
  8874. border-radius:0px;
  8875. -moz-box-shadow:none;
  8876. -webkit-box-shadow:none;
  8877. box-shadow:none;
  8878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8879. font-weight:400;
  8880. font-style:normal;
  8881. font-size:12px;
  8882. color:#AAAAAA;
  8883. }
  8884. #u108034 {
  8885. border-width:0px;
  8886. position:absolute;
  8887. left:143px;
  8888. top:401px;
  8889. width:49px;
  8890. height:17px;
  8891. display:flex;
  8892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:12px;
  8896. color:#AAAAAA;
  8897. }
  8898. #u108034 .text {
  8899. position:absolute;
  8900. align-self:flex-start;
  8901. padding:0px 0px 0px 0px;
  8902. box-sizing:border-box;
  8903. width:100%;
  8904. }
  8905. #u108034_text {
  8906. border-width:0px;
  8907. white-space:nowrap;
  8908. text-transform:none;
  8909. }
  8910. #u108035_div {
  8911. border-width:0px;
  8912. position:absolute;
  8913. left:0px;
  8914. top:0px;
  8915. width:65px;
  8916. height:22px;
  8917. background:inherit;
  8918. background-color:rgba(255, 255, 255, 0);
  8919. border:none;
  8920. border-radius:0px;
  8921. -moz-box-shadow:none;
  8922. -webkit-box-shadow:none;
  8923. box-shadow:none;
  8924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8925. font-weight:400;
  8926. font-style:normal;
  8927. font-size:16px;
  8928. }
  8929. #u108035 {
  8930. border-width:0px;
  8931. position:absolute;
  8932. left:143px;
  8933. top:476px;
  8934. width:65px;
  8935. height:22px;
  8936. display:flex;
  8937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8938. font-weight:400;
  8939. font-style:normal;
  8940. font-size:16px;
  8941. }
  8942. #u108035 .text {
  8943. position:absolute;
  8944. align-self:flex-start;
  8945. padding:0px 0px 0px 0px;
  8946. box-sizing:border-box;
  8947. width:100%;
  8948. }
  8949. #u108035_text {
  8950. border-width:0px;
  8951. white-space:nowrap;
  8952. text-transform:none;
  8953. }
  8954. #u108036_div {
  8955. border-width:0px;
  8956. position:absolute;
  8957. left:0px;
  8958. top:0px;
  8959. width:65px;
  8960. height:22px;
  8961. background:inherit;
  8962. background-color:rgba(255, 255, 255, 0);
  8963. border:none;
  8964. border-radius:0px;
  8965. -moz-box-shadow:none;
  8966. -webkit-box-shadow:none;
  8967. box-shadow:none;
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:16px;
  8972. }
  8973. #u108036 {
  8974. border-width:0px;
  8975. position:absolute;
  8976. left:145px;
  8977. top:331px;
  8978. width:65px;
  8979. height:22px;
  8980. display:flex;
  8981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8982. font-weight:400;
  8983. font-style:normal;
  8984. font-size:16px;
  8985. }
  8986. #u108036 .text {
  8987. position:absolute;
  8988. align-self:flex-start;
  8989. padding:0px 0px 0px 0px;
  8990. box-sizing:border-box;
  8991. width:100%;
  8992. }
  8993. #u108036_text {
  8994. border-width:0px;
  8995. white-space:nowrap;
  8996. text-transform:none;
  8997. }
  8998. #u108037_div {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:65px;
  9004. height:22px;
  9005. background:inherit;
  9006. background-color:rgba(255, 255, 255, 0);
  9007. border:none;
  9008. border-radius:0px;
  9009. -moz-box-shadow:none;
  9010. -webkit-box-shadow:none;
  9011. box-shadow:none;
  9012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9013. font-weight:400;
  9014. font-style:normal;
  9015. font-size:16px;
  9016. }
  9017. #u108037 {
  9018. border-width:0px;
  9019. position:absolute;
  9020. left:143px;
  9021. top:518px;
  9022. width:65px;
  9023. height:22px;
  9024. display:flex;
  9025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9026. font-weight:400;
  9027. font-style:normal;
  9028. font-size:16px;
  9029. }
  9030. #u108037 .text {
  9031. position:absolute;
  9032. align-self:flex-start;
  9033. padding:0px 0px 0px 0px;
  9034. box-sizing:border-box;
  9035. width:100%;
  9036. }
  9037. #u108037_text {
  9038. border-width:0px;
  9039. white-space:nowrap;
  9040. text-transform:none;
  9041. }
  9042. #u108038_div {
  9043. border-width:0px;
  9044. position:absolute;
  9045. left:0px;
  9046. top:0px;
  9047. width:65px;
  9048. height:22px;
  9049. background:inherit;
  9050. background-color:rgba(255, 255, 255, 0);
  9051. border:none;
  9052. border-radius:0px;
  9053. -moz-box-shadow:none;
  9054. -webkit-box-shadow:none;
  9055. box-shadow:none;
  9056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9057. font-weight:400;
  9058. font-style:normal;
  9059. font-size:16px;
  9060. }
  9061. #u108038 {
  9062. border-width:0px;
  9063. position:absolute;
  9064. left:143px;
  9065. top:560px;
  9066. width:65px;
  9067. height:22px;
  9068. display:flex;
  9069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9070. font-weight:400;
  9071. font-style:normal;
  9072. font-size:16px;
  9073. }
  9074. #u108038 .text {
  9075. position:absolute;
  9076. align-self:flex-start;
  9077. padding:0px 0px 0px 0px;
  9078. box-sizing:border-box;
  9079. width:100%;
  9080. }
  9081. #u108038_text {
  9082. border-width:0px;
  9083. white-space:nowrap;
  9084. text-transform:none;
  9085. }
  9086. #u108039_div {
  9087. border-width:0px;
  9088. position:absolute;
  9089. left:0px;
  9090. top:0px;
  9091. width:65px;
  9092. height:22px;
  9093. background:inherit;
  9094. background-color:rgba(255, 255, 255, 0);
  9095. border:none;
  9096. border-radius:0px;
  9097. -moz-box-shadow:none;
  9098. -webkit-box-shadow:none;
  9099. box-shadow:none;
  9100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9101. font-weight:400;
  9102. font-style:normal;
  9103. font-size:16px;
  9104. }
  9105. #u108039 {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:143px;
  9109. top:655px;
  9110. width:65px;
  9111. height:22px;
  9112. display:flex;
  9113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:16px;
  9117. }
  9118. #u108039 .text {
  9119. position:absolute;
  9120. align-self:flex-start;
  9121. padding:0px 0px 0px 0px;
  9122. box-sizing:border-box;
  9123. width:100%;
  9124. }
  9125. #u108039_text {
  9126. border-width:0px;
  9127. white-space:nowrap;
  9128. text-transform:none;
  9129. }
  9130. #u108040_img {
  9131. border-width:0px;
  9132. position:absolute;
  9133. left:0px;
  9134. top:0px;
  9135. width:201px;
  9136. height:2px;
  9137. }
  9138. #u108040 {
  9139. border-width:0px;
  9140. position:absolute;
  9141. left:120px;
  9142. top:602px;
  9143. width:200px;
  9144. height:1px;
  9145. display:flex;
  9146. }
  9147. #u108040 .text {
  9148. position:absolute;
  9149. align-self:center;
  9150. padding:2px 2px 2px 2px;
  9151. box-sizing:border-box;
  9152. width:100%;
  9153. }
  9154. #u108040_text {
  9155. border-width:0px;
  9156. word-wrap:break-word;
  9157. text-transform:none;
  9158. visibility:hidden;
  9159. }
  9160. #u108041_div {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:49px;
  9166. height:17px;
  9167. background:inherit;
  9168. background-color:rgba(255, 255, 255, 0);
  9169. border:none;
  9170. border-radius:0px;
  9171. -moz-box-shadow:none;
  9172. -webkit-box-shadow:none;
  9173. box-shadow:none;
  9174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9175. font-weight:400;
  9176. font-style:normal;
  9177. font-size:12px;
  9178. color:#AAAAAA;
  9179. }
  9180. #u108041 {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:143px;
  9184. top:622px;
  9185. width:49px;
  9186. height:17px;
  9187. display:flex;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. font-size:12px;
  9192. color:#AAAAAA;
  9193. }
  9194. #u108041 .text {
  9195. position:absolute;
  9196. align-self:flex-start;
  9197. padding:0px 0px 0px 0px;
  9198. box-sizing:border-box;
  9199. width:100%;
  9200. }
  9201. #u108041_text {
  9202. border-width:0px;
  9203. white-space:nowrap;
  9204. text-transform:none;
  9205. }
  9206. #u108042_div {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:0px;
  9210. top:0px;
  9211. width:81px;
  9212. height:22px;
  9213. background:inherit;
  9214. background-color:rgba(255, 255, 255, 0);
  9215. border:none;
  9216. border-radius:0px;
  9217. -moz-box-shadow:none;
  9218. -webkit-box-shadow:none;
  9219. box-shadow:none;
  9220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9221. font-weight:400;
  9222. font-style:normal;
  9223. font-size:16px;
  9224. }
  9225. #u108042 {
  9226. border-width:0px;
  9227. position:absolute;
  9228. left:143px;
  9229. top:697px;
  9230. width:81px;
  9231. height:22px;
  9232. display:flex;
  9233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9234. font-weight:400;
  9235. font-style:normal;
  9236. font-size:16px;
  9237. }
  9238. #u108042 .text {
  9239. position:absolute;
  9240. align-self:flex-start;
  9241. padding:0px 0px 0px 0px;
  9242. box-sizing:border-box;
  9243. width:100%;
  9244. }
  9245. #u108042_text {
  9246. border-width:0px;
  9247. white-space:nowrap;
  9248. text-transform:none;
  9249. }
  9250. #u108043_div {
  9251. border-width:0px;
  9252. position:absolute;
  9253. left:0px;
  9254. top:0px;
  9255. width:49px;
  9256. height:17px;
  9257. background:inherit;
  9258. background-color:rgba(255, 255, 255, 0);
  9259. border:none;
  9260. border-radius:0px;
  9261. -moz-box-shadow:none;
  9262. -webkit-box-shadow:none;
  9263. box-shadow:none;
  9264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9265. font-weight:400;
  9266. font-style:normal;
  9267. font-size:12px;
  9268. color:#AAAAAA;
  9269. }
  9270. #u108043 {
  9271. border-width:0px;
  9272. position:absolute;
  9273. left:143px;
  9274. top:130px;
  9275. width:49px;
  9276. height:17px;
  9277. display:flex;
  9278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9279. font-weight:400;
  9280. font-style:normal;
  9281. font-size:12px;
  9282. color:#AAAAAA;
  9283. }
  9284. #u108043 .text {
  9285. position:absolute;
  9286. align-self:flex-start;
  9287. padding:0px 0px 0px 0px;
  9288. box-sizing:border-box;
  9289. width:100%;
  9290. }
  9291. #u108043_text {
  9292. border-width:0px;
  9293. white-space:nowrap;
  9294. text-transform:none;
  9295. }