styles.css 167 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1711px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u111019_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. #u111019 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u111019 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u111019_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u111020_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. #u111020 {
  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. #u111020 .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. #u111020_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u111021_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. #u111021 {
  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. #u111021 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u111021_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u111022 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u111023_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u111023 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u111023 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u111023_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u111024_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. #u111024 {
  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. #u111024 .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. #u111024_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u111025_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. #u111025 {
  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. #u111025 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u111025_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u111026 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u111027_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. #u111027_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. #u111027_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. #u111027 {
  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. #u111027 .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. #u111027_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. #u111027.disabled {
  356. }
  357. .u111027_input_option {
  358. font-size:14px;
  359. }
  360. #u111028_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u111028 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u111028 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u111028_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u111029_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. #u111029 {
  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. #u111029 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u111029_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u111030_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. #u111030 {
  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. #u111030 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u111030_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u111031 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u111032_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. #u111032 {
  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. #u111032 .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. #u111032_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u111033_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u111033 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u111033 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u111033_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u111034 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u111035_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. #u111035 {
  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. #u111035 .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. #u111035_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u111036_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u111036 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u111036 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u111036_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u111037 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u111038_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. #u111038 {
  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. #u111038 .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. #u111038_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u111039_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u111039 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u111039 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u111039_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u111040 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u111041_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. #u111041 {
  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. #u111041 .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. #u111041_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u111042_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u111042 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u111042 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u111042_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u111043 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u111044_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. #u111044 {
  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. #u111044 .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. #u111044_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u111045_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u111045 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u111045 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u111045_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u111046 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u111047_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. #u111047 {
  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. #u111047 .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. #u111047_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u111048_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u111048 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u111048 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u111048_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u111049 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u111050_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. #u111050 {
  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. #u111050 .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. #u111050_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u111051_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u111051 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u111051 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u111051_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u111052 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u111053_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. #u111053 {
  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. #u111053 .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. #u111053_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u111054_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u111054 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u111054 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u111054_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u111055 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u111056_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. #u111056 {
  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. #u111056 .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. #u111056_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u111057_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u111057 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u111057 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u111057_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u111058 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u111059_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. #u111059 {
  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. #u111059 .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. #u111059_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u111060_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u111060 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u111060 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u111060_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u111061_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. #u111061 {
  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. #u111061 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u111061_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u111062_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u111062 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u111062 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u111062_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u111063_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. #u111063 {
  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. #u111063 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u111063_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u111064_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u111064 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u111064 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u111064_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u111065 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u111066_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. #u111066 {
  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. #u111066 .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. #u111066_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u111067_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u111067 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u111067 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u111067_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u111068 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u111069_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. #u111069 {
  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. #u111069 .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. #u111069_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u111070_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u111070 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u111070 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u111070_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u111071_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1381px;
  1644. height:1522px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(215, 215, 215, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. text-align:left;
  1661. }
  1662. #u111071 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:330px;
  1666. top:50px;
  1667. width:1381px;
  1668. height:1522px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#FFFFFF;
  1675. text-align:left;
  1676. }
  1677. #u111071 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 50px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u111071_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u111072_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:1381px;
  1696. height:1154px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 1);
  1699. border:none;
  1700. border-radius:0px;
  1701. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1702. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1703. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1704. }
  1705. #u111072 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:330px;
  1709. top:51px;
  1710. width:1381px;
  1711. height:1154px;
  1712. display:flex;
  1713. }
  1714. #u111072 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:2px 2px 2px 2px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u111072_text {
  1722. border-width:0px;
  1723. word-wrap:break-word;
  1724. text-transform:none;
  1725. visibility:hidden;
  1726. }
  1727. #u111073_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:930px;
  1733. height:1095px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 1);
  1736. box-sizing:border-box;
  1737. border-width:1px;
  1738. border-style:solid;
  1739. border-color:rgba(215, 215, 215, 1);
  1740. border-radius:4px;
  1741. -moz-box-shadow:none;
  1742. -webkit-box-shadow:none;
  1743. box-shadow:none;
  1744. }
  1745. #u111073 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:755px;
  1749. top:101px;
  1750. width:930px;
  1751. height:1095px;
  1752. display:flex;
  1753. }
  1754. #u111073 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 2px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u111073_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u111074_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:929px;
  1773. height:240px;
  1774. background:inherit;
  1775. background-color:rgba(242, 242, 242, 1);
  1776. box-sizing:border-box;
  1777. border-width:1px;
  1778. border-style:solid;
  1779. border-color:rgba(242, 242, 242, 1);
  1780. border-radius:0px;
  1781. -moz-box-shadow:none;
  1782. -webkit-box-shadow:none;
  1783. box-shadow:none;
  1784. }
  1785. #u111074 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:756px;
  1789. top:102px;
  1790. width:929px;
  1791. height:240px;
  1792. display:flex;
  1793. }
  1794. #u111074 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:2px 2px 2px 2px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u111074_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. visibility:hidden;
  1806. }
  1807. #u111075 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:0px;
  1813. height:0px;
  1814. }
  1815. #u111076_img {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:527px;
  1821. height:591px;
  1822. }
  1823. #u111076 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:1784px;
  1827. top:510px;
  1828. width:527px;
  1829. height:591px;
  1830. display:flex;
  1831. }
  1832. #u111076 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 2px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u111076_text {
  1840. border-width:0px;
  1841. word-wrap:break-word;
  1842. text-transform:none;
  1843. visibility:hidden;
  1844. }
  1845. #u111077_img {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:523px;
  1851. height:493px;
  1852. }
  1853. #u111077 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:1788px;
  1857. top:17px;
  1858. width:523px;
  1859. height:493px;
  1860. display:flex;
  1861. }
  1862. #u111077 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 2px 2px 2px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u111077_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. visibility:hidden;
  1874. }
  1875. #u111078_img {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:527px;
  1881. height:590px;
  1882. }
  1883. #u111078 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:1784px;
  1887. top:1101px;
  1888. width:527px;
  1889. height:590px;
  1890. display:flex;
  1891. }
  1892. #u111078 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 2px 2px 2px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u111078_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. visibility:hidden;
  1904. }
  1905. #u111079_img {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:529px;
  1911. height:711px;
  1912. }
  1913. #u111079 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:1784px;
  1917. top:1691px;
  1918. width:529px;
  1919. height:711px;
  1920. display:flex;
  1921. }
  1922. #u111079 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:2px 2px 2px 2px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u111079_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. visibility:hidden;
  1934. }
  1935. #u111080_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:11px;
  1941. height:11px;
  1942. }
  1943. #u111080 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:1077px;
  1947. top:1275px;
  1948. width:11px;
  1949. height:11px;
  1950. display:flex;
  1951. color:#FFFFFF;
  1952. }
  1953. #u111080 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 2px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u111080_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. visibility:hidden;
  1965. }
  1966. #u111081_div {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:109px;
  1972. height:50px;
  1973. background:inherit;
  1974. background-color:rgba(255, 255, 255, 0);
  1975. border:none;
  1976. border-left:0px;
  1977. border-top:0px;
  1978. border-right:0px;
  1979. border-radius:0px;
  1980. border-bottom-right-radius:0px;
  1981. border-bottom-left-radius:0px;
  1982. -moz-box-shadow:none;
  1983. -webkit-box-shadow:none;
  1984. box-shadow:none;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:18px;
  1989. }
  1990. #u111081 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:349px;
  1994. top:51px;
  1995. width:109px;
  1996. height:50px;
  1997. display:flex;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:18px;
  2002. }
  2003. #u111081 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:0px 0px 0px 0px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u111081_text {
  2011. border-width:0px;
  2012. white-space:nowrap;
  2013. text-transform:none;
  2014. }
  2015. #u111082 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:0px;
  2021. height:0px;
  2022. }
  2023. #u111083_div {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:320px;
  2029. height:130px;
  2030. background:inherit;
  2031. background-color:rgba(255, 255, 255, 1);
  2032. box-sizing:border-box;
  2033. border-width:2px;
  2034. border-style:solid;
  2035. border-color:rgba(121, 121, 121, 1);
  2036. border-radius:0px;
  2037. -moz-box-shadow:none;
  2038. -webkit-box-shadow:none;
  2039. box-shadow:none;
  2040. }
  2041. #u111083 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:1067px;
  2045. top:163px;
  2046. width:320px;
  2047. height:130px;
  2048. display:flex;
  2049. }
  2050. #u111083 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 2px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u111083_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. visibility:hidden;
  2062. }
  2063. #u111084_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:138px;
  2069. height:68px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 1);
  2072. border:none;
  2073. border-left:0px;
  2074. border-top:0px;
  2075. border-right:0px;
  2076. border-radius:0px;
  2077. border-bottom-right-radius:0px;
  2078. border-bottom-left-radius:0px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2083. font-weight:650;
  2084. font-style:normal;
  2085. font-size:24px;
  2086. color:#000000;
  2087. }
  2088. #u111084 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:1244px;
  2092. top:169px;
  2093. width:138px;
  2094. height:68px;
  2095. display:flex;
  2096. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2097. font-weight:650;
  2098. font-style:normal;
  2099. font-size:24px;
  2100. color:#000000;
  2101. }
  2102. #u111084 .text {
  2103. position:absolute;
  2104. align-self:center;
  2105. padding:0px 0px 0px 0px;
  2106. box-sizing:border-box;
  2107. width:100%;
  2108. }
  2109. #u111084_text {
  2110. border-width:0px;
  2111. word-wrap:break-word;
  2112. text-transform:none;
  2113. }
  2114. #u111085_img {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:42px;
  2120. height:42px;
  2121. }
  2122. #u111085 {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:1196px;
  2126. top:183px;
  2127. width:42px;
  2128. height:42px;
  2129. display:flex;
  2130. color:#000000;
  2131. }
  2132. #u111085 .text {
  2133. position:absolute;
  2134. align-self:center;
  2135. padding:2px 2px 2px 2px;
  2136. box-sizing:border-box;
  2137. width:100%;
  2138. }
  2139. #u111085_text {
  2140. border-width:0px;
  2141. word-wrap:break-word;
  2142. text-transform:none;
  2143. visibility:hidden;
  2144. }
  2145. #u111086_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:161px;
  2151. height:20px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 1);
  2154. border:none;
  2155. border-left:0px;
  2156. border-top:0px;
  2157. border-right:0px;
  2158. border-radius:0px;
  2159. border-bottom-right-radius:0px;
  2160. border-bottom-left-radius:0px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2165. font-weight:500;
  2166. font-style:normal;
  2167. font-size:14px;
  2168. }
  2169. #u111086 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:1194px;
  2173. top:243px;
  2174. width:161px;
  2175. height:20px;
  2176. display:flex;
  2177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2178. font-weight:500;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. }
  2182. #u111086 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:0px 0px 0px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u111086_text {
  2190. border-width:0px;
  2191. white-space:nowrap;
  2192. text-transform:none;
  2193. }
  2194. #u111087_img {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:101px;
  2200. height:102px;
  2201. }
  2202. #u111087 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:1077px;
  2206. top:177px;
  2207. width:101px;
  2208. height:102px;
  2209. display:flex;
  2210. }
  2211. #u111087 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:2px 2px 2px 2px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u111087_text {
  2219. border-width:0px;
  2220. word-wrap:break-word;
  2221. text-transform:none;
  2222. visibility:hidden;
  2223. }
  2224. #u111088_div {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:44px;
  2230. height:50px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 0);
  2233. border:none;
  2234. border-left:0px;
  2235. border-top:0px;
  2236. border-right:0px;
  2237. border-radius:0px;
  2238. border-bottom-right-radius:0px;
  2239. border-bottom-left-radius:0px;
  2240. -moz-box-shadow:none;
  2241. -webkit-box-shadow:none;
  2242. box-shadow:none;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:18px;
  2247. text-align:center;
  2248. }
  2249. #u111088 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:919px;
  2253. top:203px;
  2254. width:44px;
  2255. height:50px;
  2256. display:flex;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:18px;
  2261. text-align:center;
  2262. }
  2263. #u111088 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:0px 0px 0px 0px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u111088_text {
  2271. border-width:0px;
  2272. white-space:nowrap;
  2273. text-transform:none;
  2274. }
  2275. #u111089 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:0px;
  2281. height:0px;
  2282. }
  2283. #u111090_div {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:380px;
  2289. height:1079px;
  2290. background:inherit;
  2291. background-color:rgba(242, 242, 242, 1);
  2292. box-sizing:border-box;
  2293. border-width:1px;
  2294. border-style:solid;
  2295. border-color:rgba(215, 215, 215, 1);
  2296. border-radius:4px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. }
  2301. #u111090 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:349px;
  2305. top:101px;
  2306. width:380px;
  2307. height:1079px;
  2308. display:flex;
  2309. }
  2310. #u111090 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 2px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u111090_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u111091 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:0px;
  2329. height:0px;
  2330. }
  2331. #u111092_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:160px;
  2337. height:65px;
  2338. background:inherit;
  2339. background-color:rgba(255, 255, 255, 1);
  2340. box-sizing:border-box;
  2341. border-width:2px;
  2342. border-style:solid;
  2343. border-color:rgba(24, 144, 255, 1);
  2344. border-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. }
  2349. #u111092 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:367px;
  2353. top:118px;
  2354. width:160px;
  2355. height:65px;
  2356. display:flex;
  2357. }
  2358. #u111092 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 2px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u111092_text {
  2366. border-width:0px;
  2367. word-wrap:break-word;
  2368. text-transform:none;
  2369. visibility:hidden;
  2370. }
  2371. #u111093_img {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:52px;
  2377. height:51px;
  2378. }
  2379. #u111093 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:372px;
  2383. top:125px;
  2384. width:52px;
  2385. height:51px;
  2386. display:flex;
  2387. }
  2388. #u111093 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 2px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u111093_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u111094_div {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:69px;
  2407. height:34px;
  2408. background:inherit;
  2409. background-color:rgba(255, 255, 255, 1);
  2410. border:none;
  2411. border-left:0px;
  2412. border-top:0px;
  2413. border-right:0px;
  2414. border-radius:0px;
  2415. border-bottom-right-radius:0px;
  2416. border-bottom-left-radius:0px;
  2417. -moz-box-shadow:none;
  2418. -webkit-box-shadow:none;
  2419. box-shadow:none;
  2420. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2421. font-weight:500;
  2422. font-style:normal;
  2423. font-size:14px;
  2424. }
  2425. #u111094 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:453px;
  2429. top:121px;
  2430. width:69px;
  2431. height:34px;
  2432. display:flex;
  2433. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2434. font-weight:500;
  2435. font-style:normal;
  2436. font-size:14px;
  2437. }
  2438. #u111094 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:0px 0px 0px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u111094_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. }
  2450. #u111095_img {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:21px;
  2456. height:21px;
  2457. }
  2458. #u111095 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:429px;
  2462. top:128px;
  2463. width:21px;
  2464. height:21px;
  2465. display:flex;
  2466. }
  2467. #u111095 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 2px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u111095_text {
  2475. border-width:0px;
  2476. word-wrap:break-word;
  2477. text-transform:none;
  2478. visibility:hidden;
  2479. }
  2480. #u111096_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:59px;
  2486. height:11px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 1);
  2489. border:none;
  2490. border-left:0px;
  2491. border-top:0px;
  2492. border-right:0px;
  2493. border-radius:0px;
  2494. border-bottom-right-radius:0px;
  2495. border-bottom-left-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:8px;
  2503. }
  2504. #u111096 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:453px;
  2508. top:160px;
  2509. width:59px;
  2510. height:11px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:8px;
  2516. }
  2517. #u111096 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:0px 0px 0px 0px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u111096_text {
  2525. border-width:0px;
  2526. white-space:nowrap;
  2527. text-transform:none;
  2528. }
  2529. #u111097 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:0px;
  2535. height:0px;
  2536. }
  2537. #u111098_div {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:160px;
  2543. height:65px;
  2544. background:inherit;
  2545. background-color:rgba(255, 255, 255, 1);
  2546. box-sizing:border-box;
  2547. border-width:2px;
  2548. border-style:solid;
  2549. border-color:rgba(121, 121, 121, 1);
  2550. border-radius:0px;
  2551. -moz-box-shadow:none;
  2552. -webkit-box-shadow:none;
  2553. box-shadow:none;
  2554. }
  2555. #u111098 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:547px;
  2559. top:118px;
  2560. width:160px;
  2561. height:65px;
  2562. display:flex;
  2563. }
  2564. #u111098 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 2px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u111098_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u111099_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:52px;
  2583. height:51px;
  2584. }
  2585. #u111099 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:552px;
  2589. top:125px;
  2590. width:52px;
  2591. height:51px;
  2592. display:flex;
  2593. }
  2594. #u111099 .text {
  2595. position:absolute;
  2596. align-self:center;
  2597. padding:2px 2px 2px 2px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u111099_text {
  2602. border-width:0px;
  2603. word-wrap:break-word;
  2604. text-transform:none;
  2605. visibility:hidden;
  2606. }
  2607. #u111100_div {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:69px;
  2613. height:34px;
  2614. background:inherit;
  2615. background-color:rgba(255, 255, 255, 1);
  2616. border:none;
  2617. border-left:0px;
  2618. border-top:0px;
  2619. border-right:0px;
  2620. border-radius:0px;
  2621. border-bottom-right-radius:0px;
  2622. border-bottom-left-radius:0px;
  2623. -moz-box-shadow:none;
  2624. -webkit-box-shadow:none;
  2625. box-shadow:none;
  2626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2627. font-weight:500;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. }
  2631. #u111100 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:633px;
  2635. top:121px;
  2636. width:69px;
  2637. height:34px;
  2638. display:flex;
  2639. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2640. font-weight:500;
  2641. font-style:normal;
  2642. font-size:14px;
  2643. }
  2644. #u111100 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:0px 0px 0px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u111100_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. }
  2656. #u111101_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:21px;
  2662. height:21px;
  2663. }
  2664. #u111101 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:609px;
  2668. top:128px;
  2669. width:21px;
  2670. height:21px;
  2671. display:flex;
  2672. }
  2673. #u111101 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 2px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u111101_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u111102_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:60px;
  2692. height:22px;
  2693. background:inherit;
  2694. background-color:rgba(255, 255, 255, 1);
  2695. border:none;
  2696. border-left:0px;
  2697. border-top:0px;
  2698. border-right:0px;
  2699. border-radius:0px;
  2700. border-bottom-right-radius:0px;
  2701. border-bottom-left-radius:0px;
  2702. -moz-box-shadow:none;
  2703. -webkit-box-shadow:none;
  2704. box-shadow:none;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:8px;
  2709. }
  2710. #u111102 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:633px;
  2714. top:154px;
  2715. width:60px;
  2716. height:22px;
  2717. display:flex;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:8px;
  2722. }
  2723. #u111102 .text {
  2724. position:absolute;
  2725. align-self:center;
  2726. padding:0px 0px 0px 0px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u111102_text {
  2731. border-width:0px;
  2732. white-space:nowrap;
  2733. text-transform:none;
  2734. }
  2735. #u111103_div {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:44px;
  2741. height:50px;
  2742. background:inherit;
  2743. background-color:rgba(255, 255, 255, 0);
  2744. border:none;
  2745. border-left:0px;
  2746. border-top:0px;
  2747. border-right:0px;
  2748. border-radius:0px;
  2749. border-bottom-right-radius:0px;
  2750. border-bottom-left-radius:0px;
  2751. -moz-box-shadow:none;
  2752. -webkit-box-shadow:none;
  2753. box-shadow:none;
  2754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:18px;
  2758. text-align:center;
  2759. }
  2760. #u111103 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:418px;
  2764. top:183px;
  2765. width:44px;
  2766. height:50px;
  2767. display:flex;
  2768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2769. font-weight:400;
  2770. font-style:normal;
  2771. font-size:18px;
  2772. text-align:center;
  2773. }
  2774. #u111103 .text {
  2775. position:absolute;
  2776. align-self:center;
  2777. padding:0px 0px 0px 0px;
  2778. box-sizing:border-box;
  2779. width:100%;
  2780. }
  2781. #u111103_text {
  2782. border-width:0px;
  2783. white-space:nowrap;
  2784. text-transform:none;
  2785. }
  2786. #u111104_div {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:48px;
  2792. height:50px;
  2793. background:inherit;
  2794. background-color:rgba(255, 255, 255, 0);
  2795. border:none;
  2796. border-left:0px;
  2797. border-top:0px;
  2798. border-right:0px;
  2799. border-radius:0px;
  2800. border-bottom-right-radius:0px;
  2801. border-bottom-left-radius:0px;
  2802. -moz-box-shadow:none;
  2803. -webkit-box-shadow:none;
  2804. box-shadow:none;
  2805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2806. font-weight:400;
  2807. font-style:normal;
  2808. font-size:18px;
  2809. text-align:center;
  2810. }
  2811. #u111104 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:603px;
  2815. top:183px;
  2816. width:48px;
  2817. height:50px;
  2818. display:flex;
  2819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:18px;
  2823. text-align:center;
  2824. }
  2825. #u111104 .text {
  2826. position:absolute;
  2827. align-self:center;
  2828. padding:0px 0px 0px 0px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u111104_text {
  2833. border-width:0px;
  2834. white-space:nowrap;
  2835. text-transform:none;
  2836. }
  2837. #u111105 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:0px;
  2843. height:0px;
  2844. }
  2845. #u111106_div {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:160px;
  2851. height:65px;
  2852. background:inherit;
  2853. background-color:rgba(255, 255, 255, 1);
  2854. box-sizing:border-box;
  2855. border-width:2px;
  2856. border-style:solid;
  2857. border-color:rgba(121, 121, 121, 1);
  2858. border-radius:0px;
  2859. -moz-box-shadow:none;
  2860. -webkit-box-shadow:none;
  2861. box-shadow:none;
  2862. }
  2863. #u111106 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:367px;
  2867. top:233px;
  2868. width:160px;
  2869. height:65px;
  2870. display:flex;
  2871. }
  2872. #u111106 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 2px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u111106_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u111107_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:52px;
  2891. height:51px;
  2892. }
  2893. #u111107 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:372px;
  2897. top:240px;
  2898. width:52px;
  2899. height:51px;
  2900. display:flex;
  2901. }
  2902. #u111107 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:2px 2px 2px 2px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u111107_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. visibility:hidden;
  2914. }
  2915. #u111108_div {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:60px;
  2921. height:45px;
  2922. background:inherit;
  2923. background-color:rgba(255, 255, 255, 1);
  2924. border:none;
  2925. border-left:0px;
  2926. border-top:0px;
  2927. border-right:0px;
  2928. border-radius:0px;
  2929. border-bottom-right-radius:0px;
  2930. border-bottom-left-radius:0px;
  2931. -moz-box-shadow:none;
  2932. -webkit-box-shadow:none;
  2933. box-shadow:none;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:8px;
  2938. line-height:15px;
  2939. }
  2940. #u111108 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:453px;
  2944. top:243px;
  2945. width:60px;
  2946. height:45px;
  2947. display:flex;
  2948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2949. font-weight:400;
  2950. font-style:normal;
  2951. font-size:8px;
  2952. line-height:15px;
  2953. }
  2954. #u111108 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:0px 0px 0px 0px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u111108_text {
  2962. border-width:0px;
  2963. white-space:nowrap;
  2964. text-transform:none;
  2965. }
  2966. #u111109_div {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:48px;
  2972. height:50px;
  2973. background:inherit;
  2974. background-color:rgba(255, 255, 255, 0);
  2975. border:none;
  2976. border-left:0px;
  2977. border-top:0px;
  2978. border-right:0px;
  2979. border-radius:0px;
  2980. border-bottom-right-radius:0px;
  2981. border-bottom-left-radius:0px;
  2982. -moz-box-shadow:none;
  2983. -webkit-box-shadow:none;
  2984. box-shadow:none;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:18px;
  2989. text-align:center;
  2990. }
  2991. #u111109 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:416px;
  2995. top:298px;
  2996. width:48px;
  2997. height:50px;
  2998. display:flex;
  2999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3000. font-weight:400;
  3001. font-style:normal;
  3002. font-size:18px;
  3003. text-align:center;
  3004. }
  3005. #u111109 .text {
  3006. position:absolute;
  3007. align-self:center;
  3008. padding:0px 0px 0px 0px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u111109_text {
  3013. border-width:0px;
  3014. white-space:nowrap;
  3015. text-transform:none;
  3016. }
  3017. #u111110_div {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:48px;
  3023. height:50px;
  3024. background:inherit;
  3025. background-color:rgba(255, 255, 255, 0);
  3026. border:none;
  3027. border-left:0px;
  3028. border-top:0px;
  3029. border-right:0px;
  3030. border-radius:0px;
  3031. border-bottom-right-radius:0px;
  3032. border-bottom-left-radius:0px;
  3033. -moz-box-shadow:none;
  3034. -webkit-box-shadow:none;
  3035. box-shadow:none;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:18px;
  3040. text-align:center;
  3041. }
  3042. #u111110 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:603px;
  3046. top:298px;
  3047. width:48px;
  3048. height:50px;
  3049. display:flex;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:18px;
  3054. text-align:center;
  3055. }
  3056. #u111110 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:0px 0px 0px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u111110_text {
  3064. border-width:0px;
  3065. white-space:nowrap;
  3066. text-transform:none;
  3067. }
  3068. #u111111 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:0px;
  3074. height:0px;
  3075. }
  3076. #u111112_div {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:160px;
  3082. height:65px;
  3083. background:inherit;
  3084. background-color:rgba(255, 255, 255, 1);
  3085. box-sizing:border-box;
  3086. border-width:2px;
  3087. border-style:solid;
  3088. border-color:rgba(121, 121, 121, 1);
  3089. border-radius:0px;
  3090. -moz-box-shadow:none;
  3091. -webkit-box-shadow:none;
  3092. box-shadow:none;
  3093. }
  3094. #u111112 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:547px;
  3098. top:233px;
  3099. width:160px;
  3100. height:65px;
  3101. display:flex;
  3102. }
  3103. #u111112 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 2px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u111112_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u111113_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:52px;
  3122. height:51px;
  3123. }
  3124. #u111113 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:552px;
  3128. top:240px;
  3129. width:52px;
  3130. height:51px;
  3131. display:flex;
  3132. }
  3133. #u111113 .text {
  3134. position:absolute;
  3135. align-self:center;
  3136. padding:2px 2px 2px 2px;
  3137. box-sizing:border-box;
  3138. width:100%;
  3139. }
  3140. #u111113_text {
  3141. border-width:0px;
  3142. word-wrap:break-word;
  3143. text-transform:none;
  3144. visibility:hidden;
  3145. }
  3146. #u111114_div {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:60px;
  3152. height:56px;
  3153. background:inherit;
  3154. background-color:rgba(255, 255, 255, 1);
  3155. border:none;
  3156. border-left:0px;
  3157. border-top:0px;
  3158. border-right:0px;
  3159. border-radius:0px;
  3160. border-bottom-right-radius:0px;
  3161. border-bottom-left-radius:0px;
  3162. -moz-box-shadow:none;
  3163. -webkit-box-shadow:none;
  3164. box-shadow:none;
  3165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:8px;
  3169. line-height:14px;
  3170. }
  3171. #u111114 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:633px;
  3175. top:237px;
  3176. width:60px;
  3177. height:56px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:8px;
  3183. line-height:14px;
  3184. }
  3185. #u111114 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:0px 0px 0px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u111114_text {
  3193. border-width:0px;
  3194. white-space:nowrap;
  3195. text-transform:none;
  3196. }
  3197. #u111115 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:0px;
  3203. height:0px;
  3204. }
  3205. #u111116_div {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:160px;
  3211. height:80px;
  3212. background:inherit;
  3213. background-color:rgba(255, 255, 255, 1);
  3214. box-sizing:border-box;
  3215. border-width:2px;
  3216. border-style:solid;
  3217. border-color:rgba(121, 121, 121, 1);
  3218. border-radius:0px;
  3219. -moz-box-shadow:none;
  3220. -webkit-box-shadow:none;
  3221. box-shadow:none;
  3222. }
  3223. #u111116 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:367px;
  3227. top:348px;
  3228. width:160px;
  3229. height:80px;
  3230. display:flex;
  3231. }
  3232. #u111116 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 2px 2px 2px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u111116_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. visibility:hidden;
  3244. }
  3245. #u111117_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:52px;
  3251. height:51px;
  3252. }
  3253. #u111117 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:372px;
  3257. top:355px;
  3258. width:52px;
  3259. height:51px;
  3260. display:flex;
  3261. }
  3262. #u111117 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 2px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u111117_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u111118_div {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:60px;
  3281. height:45px;
  3282. background:inherit;
  3283. background-color:rgba(255, 255, 255, 1);
  3284. border:none;
  3285. border-left:0px;
  3286. border-top:0px;
  3287. border-right:0px;
  3288. border-radius:0px;
  3289. border-bottom-right-radius:0px;
  3290. border-bottom-left-radius:0px;
  3291. -moz-box-shadow:none;
  3292. -webkit-box-shadow:none;
  3293. box-shadow:none;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:8px;
  3298. line-height:15px;
  3299. }
  3300. #u111118 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:453px;
  3304. top:358px;
  3305. width:60px;
  3306. height:45px;
  3307. display:flex;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:8px;
  3312. line-height:15px;
  3313. }
  3314. #u111118 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:0px 0px 0px 0px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u111118_text {
  3322. border-width:0px;
  3323. white-space:nowrap;
  3324. text-transform:none;
  3325. }
  3326. #u111119_div {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:105px;
  3332. height:15px;
  3333. background:inherit;
  3334. background-color:rgba(255, 255, 255, 1);
  3335. border:none;
  3336. border-left:0px;
  3337. border-top:0px;
  3338. border-right:0px;
  3339. border-radius:0px;
  3340. border-bottom-right-radius:0px;
  3341. border-bottom-left-radius:0px;
  3342. -moz-box-shadow:none;
  3343. -webkit-box-shadow:none;
  3344. box-shadow:none;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:8px;
  3349. line-height:15px;
  3350. }
  3351. #u111119 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:395px;
  3355. top:410px;
  3356. width:105px;
  3357. height:15px;
  3358. display:flex;
  3359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:8px;
  3363. line-height:15px;
  3364. }
  3365. #u111119 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:0px 0px 0px 0px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u111119_text {
  3373. border-width:0px;
  3374. white-space:nowrap;
  3375. text-transform:none;
  3376. }
  3377. #u111120_div {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:48px;
  3383. height:50px;
  3384. background:inherit;
  3385. background-color:rgba(255, 255, 255, 0);
  3386. border:none;
  3387. border-left:0px;
  3388. border-top:0px;
  3389. border-right:0px;
  3390. border-radius:0px;
  3391. border-bottom-right-radius:0px;
  3392. border-bottom-left-radius:0px;
  3393. -moz-box-shadow:none;
  3394. -webkit-box-shadow:none;
  3395. box-shadow:none;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:18px;
  3400. text-align:center;
  3401. }
  3402. #u111120 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:416px;
  3406. top:428px;
  3407. width:48px;
  3408. height:50px;
  3409. display:flex;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:18px;
  3414. text-align:center;
  3415. }
  3416. #u111120 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:0px 0px 0px 0px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u111120_text {
  3424. border-width:0px;
  3425. white-space:nowrap;
  3426. text-transform:none;
  3427. }
  3428. #u111121_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:48px;
  3434. height:50px;
  3435. background:inherit;
  3436. background-color:rgba(255, 255, 255, 0);
  3437. border:none;
  3438. border-left:0px;
  3439. border-top:0px;
  3440. border-right:0px;
  3441. border-radius:0px;
  3442. border-bottom-right-radius:0px;
  3443. border-bottom-left-radius:0px;
  3444. -moz-box-shadow:none;
  3445. -webkit-box-shadow:none;
  3446. box-shadow:none;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:18px;
  3451. text-align:center;
  3452. }
  3453. #u111121 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:603px;
  3457. top:428px;
  3458. width:48px;
  3459. height:50px;
  3460. display:flex;
  3461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3462. font-weight:400;
  3463. font-style:normal;
  3464. font-size:18px;
  3465. text-align:center;
  3466. }
  3467. #u111121 .text {
  3468. position:absolute;
  3469. align-self:center;
  3470. padding:0px 0px 0px 0px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u111121_text {
  3475. border-width:0px;
  3476. white-space:nowrap;
  3477. text-transform:none;
  3478. }
  3479. #u111122 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:0px;
  3485. height:0px;
  3486. }
  3487. #u111123_div {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:0px;
  3492. width:160px;
  3493. height:80px;
  3494. background:inherit;
  3495. background-color:rgba(255, 255, 255, 1);
  3496. box-sizing:border-box;
  3497. border-width:2px;
  3498. border-style:solid;
  3499. border-color:rgba(121, 121, 121, 1);
  3500. border-radius:0px;
  3501. -moz-box-shadow:none;
  3502. -webkit-box-shadow:none;
  3503. box-shadow:none;
  3504. }
  3505. #u111123 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:547px;
  3509. top:348px;
  3510. width:160px;
  3511. height:80px;
  3512. display:flex;
  3513. }
  3514. #u111123 .text {
  3515. position:absolute;
  3516. align-self:center;
  3517. padding:2px 2px 2px 2px;
  3518. box-sizing:border-box;
  3519. width:100%;
  3520. }
  3521. #u111123_text {
  3522. border-width:0px;
  3523. word-wrap:break-word;
  3524. text-transform:none;
  3525. visibility:hidden;
  3526. }
  3527. #u111124_img {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:52px;
  3533. height:51px;
  3534. }
  3535. #u111124 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:552px;
  3539. top:355px;
  3540. width:52px;
  3541. height:51px;
  3542. display:flex;
  3543. }
  3544. #u111124 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 2px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u111124_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. visibility:hidden;
  3556. }
  3557. #u111125_div {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:60px;
  3563. height:56px;
  3564. background:inherit;
  3565. background-color:rgba(255, 255, 255, 1);
  3566. border:none;
  3567. border-left:0px;
  3568. border-top:0px;
  3569. border-right:0px;
  3570. border-radius:0px;
  3571. border-bottom-right-radius:0px;
  3572. border-bottom-left-radius:0px;
  3573. -moz-box-shadow:none;
  3574. -webkit-box-shadow:none;
  3575. box-shadow:none;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:8px;
  3580. line-height:14px;
  3581. }
  3582. #u111125 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:633px;
  3586. top:352px;
  3587. width:60px;
  3588. height:56px;
  3589. display:flex;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:8px;
  3594. line-height:14px;
  3595. }
  3596. #u111125 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:0px 0px 0px 0px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u111125_text {
  3604. border-width:0px;
  3605. white-space:nowrap;
  3606. text-transform:none;
  3607. }
  3608. #u111126_div {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:105px;
  3614. height:15px;
  3615. background:inherit;
  3616. background-color:rgba(255, 255, 255, 1);
  3617. border:none;
  3618. border-left:0px;
  3619. border-top:0px;
  3620. border-right:0px;
  3621. border-radius:0px;
  3622. border-bottom-right-radius:0px;
  3623. border-bottom-left-radius:0px;
  3624. -moz-box-shadow:none;
  3625. -webkit-box-shadow:none;
  3626. box-shadow:none;
  3627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:8px;
  3631. line-height:15px;
  3632. }
  3633. #u111126 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:575px;
  3637. top:408px;
  3638. width:105px;
  3639. height:15px;
  3640. display:flex;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:8px;
  3645. line-height:15px;
  3646. }
  3647. #u111126 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:0px 0px 0px 0px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u111126_text {
  3655. border-width:0px;
  3656. white-space:nowrap;
  3657. text-transform:none;
  3658. }
  3659. #u111127 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:0px;
  3665. height:0px;
  3666. }
  3667. #u111128_div {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:160px;
  3673. height:80px;
  3674. background:inherit;
  3675. background-color:rgba(255, 255, 255, 1);
  3676. box-sizing:border-box;
  3677. border-width:2px;
  3678. border-style:solid;
  3679. border-color:rgba(121, 121, 121, 1);
  3680. border-radius:0px;
  3681. -moz-box-shadow:none;
  3682. -webkit-box-shadow:none;
  3683. box-shadow:none;
  3684. }
  3685. #u111128 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:367px;
  3689. top:478px;
  3690. width:160px;
  3691. height:80px;
  3692. display:flex;
  3693. }
  3694. #u111128 .text {
  3695. position:absolute;
  3696. align-self:center;
  3697. padding:2px 2px 2px 2px;
  3698. box-sizing:border-box;
  3699. width:100%;
  3700. }
  3701. #u111128_text {
  3702. border-width:0px;
  3703. word-wrap:break-word;
  3704. text-transform:none;
  3705. visibility:hidden;
  3706. }
  3707. #u111129_img {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:52px;
  3713. height:51px;
  3714. }
  3715. #u111129 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:372px;
  3719. top:503px;
  3720. width:52px;
  3721. height:51px;
  3722. display:flex;
  3723. }
  3724. #u111129 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 2px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u111129_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u111130_div {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:60px;
  3743. height:45px;
  3744. background:inherit;
  3745. background-color:rgba(255, 255, 255, 1);
  3746. border:none;
  3747. border-left:0px;
  3748. border-top:0px;
  3749. border-right:0px;
  3750. border-radius:0px;
  3751. border-bottom-right-radius:0px;
  3752. border-bottom-left-radius:0px;
  3753. -moz-box-shadow:none;
  3754. -webkit-box-shadow:none;
  3755. box-shadow:none;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:8px;
  3760. line-height:15px;
  3761. }
  3762. #u111130 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:453px;
  3766. top:506px;
  3767. width:60px;
  3768. height:45px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:8px;
  3774. line-height:15px;
  3775. }
  3776. #u111130 .text {
  3777. position:absolute;
  3778. align-self:center;
  3779. padding:0px 0px 0px 0px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u111130_text {
  3784. border-width:0px;
  3785. white-space:nowrap;
  3786. text-transform:none;
  3787. }
  3788. #u111131_div {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:156px;
  3794. height:15px;
  3795. background:inherit;
  3796. background-color:rgba(255, 255, 255, 1);
  3797. box-sizing:border-box;
  3798. border-width:1px;
  3799. border-style:solid;
  3800. border-color:rgba(215, 215, 215, 1);
  3801. border-left:0px;
  3802. border-top:0px;
  3803. border-right:0px;
  3804. border-radius:0px;
  3805. border-bottom-right-radius:0px;
  3806. border-bottom-left-radius:0px;
  3807. -moz-box-shadow:none;
  3808. -webkit-box-shadow:none;
  3809. box-shadow:none;
  3810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3811. font-weight:400;
  3812. font-style:normal;
  3813. font-size:8px;
  3814. text-align:center;
  3815. line-height:15px;
  3816. }
  3817. #u111131 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:369px;
  3821. top:482px;
  3822. width:156px;
  3823. height:15px;
  3824. display:flex;
  3825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:8px;
  3829. text-align:center;
  3830. line-height:15px;
  3831. }
  3832. #u111131 .text {
  3833. position:absolute;
  3834. align-self:center;
  3835. padding:0px 0px 0px 0px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u111131_text {
  3840. border-width:0px;
  3841. word-wrap:break-word;
  3842. text-transform:none;
  3843. }
  3844. #u111132_div {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:47px;
  3850. height:50px;
  3851. background:inherit;
  3852. background-color:rgba(255, 255, 255, 0);
  3853. border:none;
  3854. border-left:0px;
  3855. border-top:0px;
  3856. border-right:0px;
  3857. border-radius:0px;
  3858. border-bottom-right-radius:0px;
  3859. border-bottom-left-radius:0px;
  3860. -moz-box-shadow:none;
  3861. -webkit-box-shadow:none;
  3862. box-shadow:none;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:18px;
  3867. text-align:center;
  3868. }
  3869. #u111132 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:417px;
  3873. top:558px;
  3874. width:47px;
  3875. height:50px;
  3876. display:flex;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:18px;
  3881. text-align:center;
  3882. }
  3883. #u111132 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:0px 0px 0px 0px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u111132_text {
  3891. border-width:0px;
  3892. white-space:nowrap;
  3893. text-transform:none;
  3894. }
  3895. #u111133_div {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:48px;
  3901. height:50px;
  3902. background:inherit;
  3903. background-color:rgba(255, 255, 255, 0);
  3904. border:none;
  3905. border-left:0px;
  3906. border-top:0px;
  3907. border-right:0px;
  3908. border-radius:0px;
  3909. border-bottom-right-radius:0px;
  3910. border-bottom-left-radius:0px;
  3911. -moz-box-shadow:none;
  3912. -webkit-box-shadow:none;
  3913. box-shadow:none;
  3914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:18px;
  3918. text-align:center;
  3919. }
  3920. #u111133 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:603px;
  3924. top:558px;
  3925. width:48px;
  3926. height:50px;
  3927. display:flex;
  3928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:18px;
  3932. text-align:center;
  3933. }
  3934. #u111133 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:0px 0px 0px 0px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u111133_text {
  3942. border-width:0px;
  3943. white-space:nowrap;
  3944. text-transform:none;
  3945. }
  3946. #u111134 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:0px;
  3952. height:0px;
  3953. }
  3954. #u111135_div {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:160px;
  3960. height:80px;
  3961. background:inherit;
  3962. background-color:rgba(255, 255, 255, 1);
  3963. box-sizing:border-box;
  3964. border-width:2px;
  3965. border-style:solid;
  3966. border-color:rgba(121, 121, 121, 1);
  3967. border-radius:0px;
  3968. -moz-box-shadow:none;
  3969. -webkit-box-shadow:none;
  3970. box-shadow:none;
  3971. }
  3972. #u111135 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:547px;
  3976. top:478px;
  3977. width:160px;
  3978. height:80px;
  3979. display:flex;
  3980. }
  3981. #u111135 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u111135_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u111136_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:52px;
  4000. height:51px;
  4001. }
  4002. #u111136 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:552px;
  4006. top:503px;
  4007. width:52px;
  4008. height:51px;
  4009. display:flex;
  4010. }
  4011. #u111136 .text {
  4012. position:absolute;
  4013. align-self:center;
  4014. padding:2px 2px 2px 2px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u111136_text {
  4019. border-width:0px;
  4020. word-wrap:break-word;
  4021. text-transform:none;
  4022. visibility:hidden;
  4023. }
  4024. #u111137_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:60px;
  4030. height:56px;
  4031. background:inherit;
  4032. background-color:rgba(255, 255, 255, 1);
  4033. border:none;
  4034. border-left:0px;
  4035. border-top:0px;
  4036. border-right:0px;
  4037. border-radius:0px;
  4038. border-bottom-right-radius:0px;
  4039. border-bottom-left-radius:0px;
  4040. -moz-box-shadow:none;
  4041. -webkit-box-shadow:none;
  4042. box-shadow:none;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:8px;
  4047. line-height:14px;
  4048. }
  4049. #u111137 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:633px;
  4053. top:500px;
  4054. width:60px;
  4055. height:56px;
  4056. display:flex;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:8px;
  4061. line-height:14px;
  4062. }
  4063. #u111137 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:0px 0px 0px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u111137_text {
  4071. border-width:0px;
  4072. white-space:nowrap;
  4073. text-transform:none;
  4074. }
  4075. #u111138_div {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:156px;
  4081. height:15px;
  4082. background:inherit;
  4083. background-color:rgba(255, 255, 255, 1);
  4084. box-sizing:border-box;
  4085. border-width:1px;
  4086. border-style:solid;
  4087. border-color:rgba(215, 215, 215, 1);
  4088. border-left:0px;
  4089. border-top:0px;
  4090. border-right:0px;
  4091. border-radius:0px;
  4092. border-bottom-right-radius:0px;
  4093. border-bottom-left-radius:0px;
  4094. -moz-box-shadow:none;
  4095. -webkit-box-shadow:none;
  4096. box-shadow:none;
  4097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:8px;
  4101. text-align:center;
  4102. line-height:15px;
  4103. }
  4104. #u111138 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:549px;
  4108. top:482px;
  4109. width:156px;
  4110. height:15px;
  4111. display:flex;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:8px;
  4116. text-align:center;
  4117. line-height:15px;
  4118. }
  4119. #u111138 .text {
  4120. position:absolute;
  4121. align-self:center;
  4122. padding:0px 0px 0px 0px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u111138_text {
  4127. border-width:0px;
  4128. word-wrap:break-word;
  4129. text-transform:none;
  4130. }
  4131. #u111139 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:0px;
  4137. height:0px;
  4138. }
  4139. #u111140_div {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:0px;
  4143. top:0px;
  4144. width:160px;
  4145. height:80px;
  4146. background:inherit;
  4147. background-color:rgba(255, 255, 255, 1);
  4148. box-sizing:border-box;
  4149. border-width:2px;
  4150. border-style:solid;
  4151. border-color:rgba(121, 121, 121, 1);
  4152. border-radius:0px;
  4153. -moz-box-shadow:none;
  4154. -webkit-box-shadow:none;
  4155. box-shadow:none;
  4156. }
  4157. #u111140 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:367px;
  4161. top:608px;
  4162. width:160px;
  4163. height:80px;
  4164. display:flex;
  4165. }
  4166. #u111140 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 2px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u111140_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. visibility:hidden;
  4178. }
  4179. #u111141_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:52px;
  4185. height:51px;
  4186. }
  4187. #u111141 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:421px;
  4191. top:632px;
  4192. width:52px;
  4193. height:51px;
  4194. display:flex;
  4195. }
  4196. #u111141 .text {
  4197. position:absolute;
  4198. align-self:center;
  4199. padding:2px 2px 2px 2px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u111141_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u111142_div {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:156px;
  4215. height:15px;
  4216. background:inherit;
  4217. background-color:rgba(255, 255, 255, 1);
  4218. border:none;
  4219. border-left:0px;
  4220. border-top:0px;
  4221. border-right:0px;
  4222. border-radius:0px;
  4223. border-bottom-right-radius:0px;
  4224. border-bottom-left-radius:0px;
  4225. -moz-box-shadow:none;
  4226. -webkit-box-shadow:none;
  4227. box-shadow:none;
  4228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4229. font-weight:400;
  4230. font-style:normal;
  4231. font-size:8px;
  4232. text-align:center;
  4233. line-height:15px;
  4234. }
  4235. #u111142 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:369px;
  4239. top:613px;
  4240. width:156px;
  4241. height:15px;
  4242. display:flex;
  4243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:8px;
  4247. text-align:center;
  4248. line-height:15px;
  4249. }
  4250. #u111142 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:0px 0px 0px 0px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u111142_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. }
  4262. #u111143_div {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:48px;
  4268. height:50px;
  4269. background:inherit;
  4270. background-color:rgba(255, 255, 255, 0);
  4271. border:none;
  4272. border-left:0px;
  4273. border-top:0px;
  4274. border-right:0px;
  4275. border-radius:0px;
  4276. border-bottom-right-radius:0px;
  4277. border-bottom-left-radius:0px;
  4278. -moz-box-shadow:none;
  4279. -webkit-box-shadow:none;
  4280. box-shadow:none;
  4281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4282. font-weight:400;
  4283. font-style:normal;
  4284. font-size:18px;
  4285. text-align:center;
  4286. }
  4287. #u111143 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:416px;
  4291. top:688px;
  4292. width:48px;
  4293. height:50px;
  4294. display:flex;
  4295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:18px;
  4299. text-align:center;
  4300. }
  4301. #u111143 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:0px 0px 0px 0px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u111143_text {
  4309. border-width:0px;
  4310. white-space:nowrap;
  4311. text-transform:none;
  4312. }
  4313. #u111144_div {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:55px;
  4319. height:50px;
  4320. background:inherit;
  4321. background-color:rgba(255, 255, 255, 0);
  4322. border:none;
  4323. border-left:0px;
  4324. border-top:0px;
  4325. border-right:0px;
  4326. border-radius:0px;
  4327. border-bottom-right-radius:0px;
  4328. border-bottom-left-radius:0px;
  4329. -moz-box-shadow:none;
  4330. -webkit-box-shadow:none;
  4331. box-shadow:none;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:18px;
  4336. text-align:center;
  4337. }
  4338. #u111144 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:600px;
  4342. top:688px;
  4343. width:55px;
  4344. height:50px;
  4345. display:flex;
  4346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:18px;
  4350. text-align:center;
  4351. }
  4352. #u111144 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:0px 0px 0px 0px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u111144_text {
  4360. border-width:0px;
  4361. white-space:nowrap;
  4362. text-transform:none;
  4363. }
  4364. #u111145 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:0px;
  4370. height:0px;
  4371. }
  4372. #u111146_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:160px;
  4378. height:80px;
  4379. background:inherit;
  4380. background-color:rgba(255, 255, 255, 1);
  4381. box-sizing:border-box;
  4382. border-width:2px;
  4383. border-style:solid;
  4384. border-color:rgba(121, 121, 121, 1);
  4385. border-radius:0px;
  4386. -moz-box-shadow:none;
  4387. -webkit-box-shadow:none;
  4388. box-shadow:none;
  4389. }
  4390. #u111146 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:547px;
  4394. top:608px;
  4395. width:160px;
  4396. height:80px;
  4397. display:flex;
  4398. }
  4399. #u111146 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 2px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u111146_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u111147_img {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:52px;
  4418. height:51px;
  4419. }
  4420. #u111147 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:601px;
  4424. top:616px;
  4425. width:52px;
  4426. height:51px;
  4427. display:flex;
  4428. }
  4429. #u111147 .text {
  4430. position:absolute;
  4431. align-self:center;
  4432. padding:2px 2px 2px 2px;
  4433. box-sizing:border-box;
  4434. width:100%;
  4435. }
  4436. #u111147_text {
  4437. border-width:0px;
  4438. word-wrap:break-word;
  4439. text-transform:none;
  4440. visibility:hidden;
  4441. }
  4442. #u111148_div {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:156px;
  4448. height:15px;
  4449. background:inherit;
  4450. background-color:rgba(255, 255, 255, 1);
  4451. border:none;
  4452. border-left:0px;
  4453. border-top:0px;
  4454. border-right:0px;
  4455. border-radius:0px;
  4456. border-bottom-right-radius:0px;
  4457. border-bottom-left-radius:0px;
  4458. -moz-box-shadow:none;
  4459. -webkit-box-shadow:none;
  4460. box-shadow:none;
  4461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4462. font-weight:400;
  4463. font-style:normal;
  4464. font-size:8px;
  4465. text-align:center;
  4466. line-height:15px;
  4467. }
  4468. #u111148 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:549px;
  4472. top:671px;
  4473. width:156px;
  4474. height:15px;
  4475. display:flex;
  4476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4477. font-weight:400;
  4478. font-style:normal;
  4479. font-size:8px;
  4480. text-align:center;
  4481. line-height:15px;
  4482. }
  4483. #u111148 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:0px 0px 0px 0px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u111148_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. }
  4495. #u111149 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:0px;
  4501. height:0px;
  4502. }
  4503. #u111150_div {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:160px;
  4509. height:80px;
  4510. background:inherit;
  4511. background-color:rgba(255, 255, 255, 1);
  4512. box-sizing:border-box;
  4513. border-width:2px;
  4514. border-style:solid;
  4515. border-color:rgba(121, 121, 121, 1);
  4516. border-radius:0px;
  4517. -moz-box-shadow:none;
  4518. -webkit-box-shadow:none;
  4519. box-shadow:none;
  4520. }
  4521. #u111150 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:367px;
  4525. top:738px;
  4526. width:160px;
  4527. height:80px;
  4528. display:flex;
  4529. }
  4530. #u111150 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 2px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u111150_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u111151_div {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:156px;
  4549. height:45px;
  4550. background:inherit;
  4551. background-color:rgba(255, 255, 255, 1);
  4552. border:none;
  4553. border-left:0px;
  4554. border-top:0px;
  4555. border-right:0px;
  4556. border-radius:0px;
  4557. border-bottom-right-radius:0px;
  4558. border-bottom-left-radius:0px;
  4559. -moz-box-shadow:none;
  4560. -webkit-box-shadow:none;
  4561. box-shadow:none;
  4562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. font-size:8px;
  4566. text-align:center;
  4567. line-height:15px;
  4568. }
  4569. #u111151 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:369px;
  4573. top:741px;
  4574. width:156px;
  4575. height:45px;
  4576. display:flex;
  4577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. font-size:8px;
  4581. text-align:center;
  4582. line-height:15px;
  4583. }
  4584. #u111151 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:0px 0px 0px 0px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u111151_text {
  4592. border-width:0px;
  4593. word-wrap:break-word;
  4594. text-transform:none;
  4595. }
  4596. #u111152_img {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:138px;
  4602. height:26px;
  4603. }
  4604. #u111152 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:378px;
  4608. top:787px;
  4609. width:138px;
  4610. height:26px;
  4611. display:flex;
  4612. }
  4613. #u111152 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u111152_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u111153_div {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:51px;
  4632. height:50px;
  4633. background:inherit;
  4634. background-color:rgba(255, 255, 255, 0);
  4635. border:none;
  4636. border-left:0px;
  4637. border-top:0px;
  4638. border-right:0px;
  4639. border-radius:0px;
  4640. border-bottom-right-radius:0px;
  4641. border-bottom-left-radius:0px;
  4642. -moz-box-shadow:none;
  4643. -webkit-box-shadow:none;
  4644. box-shadow:none;
  4645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:18px;
  4649. text-align:center;
  4650. }
  4651. #u111153 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:415px;
  4655. top:818px;
  4656. width:51px;
  4657. height:50px;
  4658. display:flex;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:18px;
  4663. text-align:center;
  4664. }
  4665. #u111153 .text {
  4666. position:absolute;
  4667. align-self:center;
  4668. padding:0px 0px 0px 0px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u111153_text {
  4673. border-width:0px;
  4674. white-space:nowrap;
  4675. text-transform:none;
  4676. }
  4677. #u111154_div {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:55px;
  4683. height:50px;
  4684. background:inherit;
  4685. background-color:rgba(255, 255, 255, 0);
  4686. border:none;
  4687. border-left:0px;
  4688. border-top:0px;
  4689. border-right:0px;
  4690. border-radius:0px;
  4691. border-bottom-right-radius:0px;
  4692. border-bottom-left-radius:0px;
  4693. -moz-box-shadow:none;
  4694. -webkit-box-shadow:none;
  4695. box-shadow:none;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:18px;
  4700. text-align:center;
  4701. }
  4702. #u111154 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:600px;
  4706. top:818px;
  4707. width:55px;
  4708. height:50px;
  4709. display:flex;
  4710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:18px;
  4714. text-align:center;
  4715. }
  4716. #u111154 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:0px 0px 0px 0px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u111154_text {
  4724. border-width:0px;
  4725. white-space:nowrap;
  4726. text-transform:none;
  4727. }
  4728. #u111155 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:0px;
  4734. height:0px;
  4735. }
  4736. #u111156_div {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:0px;
  4741. width:160px;
  4742. height:80px;
  4743. background:inherit;
  4744. background-color:rgba(255, 255, 255, 1);
  4745. box-sizing:border-box;
  4746. border-width:2px;
  4747. border-style:solid;
  4748. border-color:rgba(121, 121, 121, 1);
  4749. border-radius:0px;
  4750. -moz-box-shadow:none;
  4751. -webkit-box-shadow:none;
  4752. box-shadow:none;
  4753. }
  4754. #u111156 {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:547px;
  4758. top:738px;
  4759. width:160px;
  4760. height:80px;
  4761. display:flex;
  4762. }
  4763. #u111156 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:2px 2px 2px 2px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u111156_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. visibility:hidden;
  4775. }
  4776. #u111157_div {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:156px;
  4782. height:48px;
  4783. background:inherit;
  4784. background-color:rgba(255, 255, 255, 0);
  4785. border:none;
  4786. border-left:0px;
  4787. border-top:0px;
  4788. border-right:0px;
  4789. border-radius:0px;
  4790. border-bottom-right-radius:0px;
  4791. border-bottom-left-radius:0px;
  4792. -moz-box-shadow:none;
  4793. -webkit-box-shadow:none;
  4794. box-shadow:none;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:8px;
  4799. text-align:center;
  4800. line-height:12px;
  4801. }
  4802. #u111157 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:549px;
  4806. top:740px;
  4807. width:156px;
  4808. height:48px;
  4809. display:flex;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:8px;
  4814. text-align:center;
  4815. line-height:12px;
  4816. }
  4817. #u111157 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:0px 0px 0px 0px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u111157_text {
  4825. border-width:0px;
  4826. word-wrap:break-word;
  4827. text-transform:none;
  4828. }
  4829. #u111158_img {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:138px;
  4835. height:26px;
  4836. }
  4837. #u111158 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:558px;
  4841. top:787px;
  4842. width:138px;
  4843. height:26px;
  4844. display:flex;
  4845. }
  4846. #u111158 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 2px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u111158_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u111159_div {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:55px;
  4865. height:50px;
  4866. background:inherit;
  4867. background-color:rgba(255, 255, 255, 0);
  4868. border:none;
  4869. border-left:0px;
  4870. border-top:0px;
  4871. border-right:0px;
  4872. border-radius:0px;
  4873. border-bottom-right-radius:0px;
  4874. border-bottom-left-radius:0px;
  4875. -moz-box-shadow:none;
  4876. -webkit-box-shadow:none;
  4877. box-shadow:none;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:18px;
  4882. text-align:center;
  4883. }
  4884. #u111159 {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:413px;
  4888. top:933px;
  4889. width:55px;
  4890. height:50px;
  4891. display:flex;
  4892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4893. font-weight:400;
  4894. font-style:normal;
  4895. font-size:18px;
  4896. text-align:center;
  4897. }
  4898. #u111159 .text {
  4899. position:absolute;
  4900. align-self:center;
  4901. padding:0px 0px 0px 0px;
  4902. box-sizing:border-box;
  4903. width:100%;
  4904. }
  4905. #u111159_text {
  4906. border-width:0px;
  4907. white-space:nowrap;
  4908. text-transform:none;
  4909. }
  4910. #u111160_div {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:55px;
  4916. height:50px;
  4917. background:inherit;
  4918. background-color:rgba(255, 255, 255, 0);
  4919. border:none;
  4920. border-left:0px;
  4921. border-top:0px;
  4922. border-right:0px;
  4923. border-radius:0px;
  4924. border-bottom-right-radius:0px;
  4925. border-bottom-left-radius:0px;
  4926. -moz-box-shadow:none;
  4927. -webkit-box-shadow:none;
  4928. box-shadow:none;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:18px;
  4933. text-align:center;
  4934. }
  4935. #u111160 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:600px;
  4939. top:933px;
  4940. width:55px;
  4941. height:50px;
  4942. display:flex;
  4943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:18px;
  4947. text-align:center;
  4948. }
  4949. #u111160 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:0px 0px 0px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u111160_text {
  4957. border-width:0px;
  4958. white-space:nowrap;
  4959. text-transform:none;
  4960. }
  4961. #u111161 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:0px;
  4967. height:0px;
  4968. }
  4969. #u111162_div {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:160px;
  4975. height:65px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 1);
  4978. box-sizing:border-box;
  4979. border-width:2px;
  4980. border-style:solid;
  4981. border-color:rgba(121, 121, 121, 1);
  4982. border-radius:0px;
  4983. -moz-box-shadow:none;
  4984. -webkit-box-shadow:none;
  4985. box-shadow:none;
  4986. }
  4987. #u111162 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:547px;
  4991. top:868px;
  4992. width:160px;
  4993. height:65px;
  4994. display:flex;
  4995. }
  4996. #u111162 .text {
  4997. position:absolute;
  4998. align-self:center;
  4999. padding:2px 2px 2px 2px;
  5000. box-sizing:border-box;
  5001. width:100%;
  5002. }
  5003. #u111162_text {
  5004. border-width:0px;
  5005. word-wrap:break-word;
  5006. text-transform:none;
  5007. visibility:hidden;
  5008. }
  5009. #u111163_div {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:156px;
  5015. height:12px;
  5016. background:inherit;
  5017. background-color:rgba(255, 255, 255, 0);
  5018. border:none;
  5019. border-left:0px;
  5020. border-top:0px;
  5021. border-right:0px;
  5022. border-radius:0px;
  5023. border-bottom-right-radius:0px;
  5024. border-bottom-left-radius:0px;
  5025. -moz-box-shadow:none;
  5026. -webkit-box-shadow:none;
  5027. box-shadow:none;
  5028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5029. font-weight:400;
  5030. font-style:normal;
  5031. font-size:8px;
  5032. text-align:center;
  5033. line-height:12px;
  5034. }
  5035. #u111163 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:549px;
  5039. top:880px;
  5040. width:156px;
  5041. height:12px;
  5042. display:flex;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:8px;
  5047. text-align:center;
  5048. line-height:12px;
  5049. }
  5050. #u111163 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:0px 0px 0px 0px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u111163_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. }
  5062. #u111164_img {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:138px;
  5068. height:26px;
  5069. }
  5070. #u111164 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:558px;
  5074. top:902px;
  5075. width:138px;
  5076. height:26px;
  5077. display:flex;
  5078. }
  5079. #u111164 .text {
  5080. position:absolute;
  5081. align-self:center;
  5082. padding:2px 2px 2px 2px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u111164_text {
  5087. border-width:0px;
  5088. word-wrap:break-word;
  5089. text-transform:none;
  5090. visibility:hidden;
  5091. }
  5092. #u111165 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:0px;
  5098. height:0px;
  5099. }
  5100. #u111166_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:160px;
  5106. height:65px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 255, 1);
  5109. box-sizing:border-box;
  5110. border-width:2px;
  5111. border-style:solid;
  5112. border-color:rgba(121, 121, 121, 1);
  5113. border-radius:0px;
  5114. -moz-box-shadow:none;
  5115. -webkit-box-shadow:none;
  5116. box-shadow:none;
  5117. }
  5118. #u111166 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:367px;
  5122. top:868px;
  5123. width:160px;
  5124. height:65px;
  5125. display:flex;
  5126. }
  5127. #u111166 .text {
  5128. position:absolute;
  5129. align-self:center;
  5130. padding:2px 2px 2px 2px;
  5131. box-sizing:border-box;
  5132. width:100%;
  5133. }
  5134. #u111166_text {
  5135. border-width:0px;
  5136. word-wrap:break-word;
  5137. text-transform:none;
  5138. visibility:hidden;
  5139. }
  5140. #u111167_img {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:0px;
  5144. top:0px;
  5145. width:52px;
  5146. height:51px;
  5147. }
  5148. #u111167 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:372px;
  5152. top:875px;
  5153. width:52px;
  5154. height:51px;
  5155. display:flex;
  5156. }
  5157. #u111167 .text {
  5158. position:absolute;
  5159. align-self:center;
  5160. padding:2px 2px 2px 2px;
  5161. box-sizing:border-box;
  5162. width:100%;
  5163. }
  5164. #u111167_text {
  5165. border-width:0px;
  5166. word-wrap:break-word;
  5167. text-transform:none;
  5168. visibility:hidden;
  5169. }
  5170. #u111168_div {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:57px;
  5176. height:11px;
  5177. background:inherit;
  5178. background-color:rgba(255, 255, 255, 1);
  5179. border:none;
  5180. border-left:0px;
  5181. border-top:0px;
  5182. border-right:0px;
  5183. border-radius:0px;
  5184. border-bottom-right-radius:0px;
  5185. border-bottom-left-radius:0px;
  5186. -moz-box-shadow:none;
  5187. -webkit-box-shadow:none;
  5188. box-shadow:none;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:8px;
  5193. }
  5194. #u111168 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:437px;
  5198. top:895px;
  5199. width:57px;
  5200. height:11px;
  5201. display:flex;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:8px;
  5206. }
  5207. #u111168 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:0px 0px 0px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u111168_text {
  5215. border-width:0px;
  5216. white-space:nowrap;
  5217. text-transform:none;
  5218. }
  5219. #u111169_div {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:55px;
  5225. height:50px;
  5226. background:inherit;
  5227. background-color:rgba(255, 255, 255, 0);
  5228. border:none;
  5229. border-left:0px;
  5230. border-top:0px;
  5231. border-right:0px;
  5232. border-radius:0px;
  5233. border-bottom-right-radius:0px;
  5234. border-bottom-left-radius:0px;
  5235. -moz-box-shadow:none;
  5236. -webkit-box-shadow:none;
  5237. box-shadow:none;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:18px;
  5242. text-align:center;
  5243. }
  5244. #u111169 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:413px;
  5248. top:1063px;
  5249. width:55px;
  5250. height:50px;
  5251. display:flex;
  5252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:18px;
  5256. text-align:center;
  5257. }
  5258. #u111169 .text {
  5259. position:absolute;
  5260. align-self:center;
  5261. padding:0px 0px 0px 0px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u111169_text {
  5266. border-width:0px;
  5267. white-space:nowrap;
  5268. text-transform:none;
  5269. }
  5270. #u111170_div {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:55px;
  5276. height:50px;
  5277. background:inherit;
  5278. background-color:rgba(255, 255, 255, 0);
  5279. border:none;
  5280. border-left:0px;
  5281. border-top:0px;
  5282. border-right:0px;
  5283. border-radius:0px;
  5284. border-bottom-right-radius:0px;
  5285. border-bottom-left-radius:0px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:18px;
  5293. text-align:center;
  5294. }
  5295. #u111170 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:600px;
  5299. top:1063px;
  5300. width:55px;
  5301. height:50px;
  5302. display:flex;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:18px;
  5307. text-align:center;
  5308. }
  5309. #u111170 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:0px 0px 0px 0px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u111170_text {
  5317. border-width:0px;
  5318. white-space:nowrap;
  5319. text-transform:none;
  5320. }
  5321. #u111171 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:0px;
  5327. height:0px;
  5328. }
  5329. #u111172_div {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:160px;
  5335. height:80px;
  5336. background:inherit;
  5337. background-color:rgba(255, 255, 255, 1);
  5338. box-sizing:border-box;
  5339. border-width:2px;
  5340. border-style:solid;
  5341. border-color:rgba(121, 121, 121, 1);
  5342. border-radius:0px;
  5343. -moz-box-shadow:none;
  5344. -webkit-box-shadow:none;
  5345. box-shadow:none;
  5346. }
  5347. #u111172 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:365px;
  5351. top:983px;
  5352. width:160px;
  5353. height:80px;
  5354. display:flex;
  5355. }
  5356. #u111172 .text {
  5357. position:absolute;
  5358. align-self:center;
  5359. padding:2px 2px 2px 2px;
  5360. box-sizing:border-box;
  5361. width:100%;
  5362. }
  5363. #u111172_text {
  5364. border-width:0px;
  5365. word-wrap:break-word;
  5366. text-transform:none;
  5367. visibility:hidden;
  5368. }
  5369. #u111173_div {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:69px;
  5375. height:34px;
  5376. background:inherit;
  5377. background-color:rgba(255, 255, 255, 1);
  5378. border:none;
  5379. border-left:0px;
  5380. border-top:0px;
  5381. border-right:0px;
  5382. border-radius:0px;
  5383. border-bottom-right-radius:0px;
  5384. border-bottom-left-radius:0px;
  5385. -moz-box-shadow:none;
  5386. -webkit-box-shadow:none;
  5387. box-shadow:none;
  5388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5389. font-weight:500;
  5390. font-style:normal;
  5391. font-size:14px;
  5392. }
  5393. #u111173 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:423px;
  5397. top:986px;
  5398. width:69px;
  5399. height:34px;
  5400. display:flex;
  5401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5402. font-weight:500;
  5403. font-style:normal;
  5404. font-size:14px;
  5405. }
  5406. #u111173 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:0px 0px 0px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u111173_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. }
  5418. #u111174_img {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:21px;
  5424. height:21px;
  5425. }
  5426. #u111174 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:396px;
  5430. top:993px;
  5431. width:21px;
  5432. height:21px;
  5433. display:flex;
  5434. }
  5435. #u111174 .text {
  5436. position:absolute;
  5437. align-self:center;
  5438. padding:2px 2px 2px 2px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u111174_text {
  5443. border-width:0px;
  5444. word-wrap:break-word;
  5445. text-transform:none;
  5446. visibility:hidden;
  5447. }
  5448. #u111175_div {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:60px;
  5454. height:30px;
  5455. background:inherit;
  5456. background-color:rgba(255, 255, 255, 1);
  5457. border:none;
  5458. border-left:0px;
  5459. border-top:0px;
  5460. border-right:0px;
  5461. border-radius:0px;
  5462. border-bottom-right-radius:0px;
  5463. border-bottom-left-radius:0px;
  5464. -moz-box-shadow:none;
  5465. -webkit-box-shadow:none;
  5466. box-shadow:none;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:8px;
  5471. line-height:15px;
  5472. }
  5473. #u111175 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:423px;
  5477. top:1023px;
  5478. width:60px;
  5479. height:30px;
  5480. display:flex;
  5481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:8px;
  5485. line-height:15px;
  5486. }
  5487. #u111175 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:0px 0px 0px 0px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u111175_text {
  5495. border-width:0px;
  5496. white-space:nowrap;
  5497. text-transform:none;
  5498. }
  5499. #u111176 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:0px;
  5505. height:0px;
  5506. }
  5507. #u111177_div {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:160px;
  5513. height:80px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 1);
  5516. box-sizing:border-box;
  5517. border-width:2px;
  5518. border-style:solid;
  5519. border-color:rgba(121, 121, 121, 1);
  5520. border-radius:0px;
  5521. -moz-box-shadow:none;
  5522. -webkit-box-shadow:none;
  5523. box-shadow:none;
  5524. }
  5525. #u111177 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:547px;
  5529. top:983px;
  5530. width:160px;
  5531. height:80px;
  5532. display:flex;
  5533. }
  5534. #u111177 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:2px 2px 2px 2px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u111177_text {
  5542. border-width:0px;
  5543. word-wrap:break-word;
  5544. text-transform:none;
  5545. visibility:hidden;
  5546. }
  5547. #u111178_img {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:52px;
  5553. height:51px;
  5554. }
  5555. #u111178 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:552px;
  5559. top:1008px;
  5560. width:52px;
  5561. height:51px;
  5562. display:flex;
  5563. }
  5564. #u111178 .text {
  5565. position:absolute;
  5566. align-self:center;
  5567. padding:2px 2px 2px 2px;
  5568. box-sizing:border-box;
  5569. width:100%;
  5570. }
  5571. #u111178_text {
  5572. border-width:0px;
  5573. word-wrap:break-word;
  5574. text-transform:none;
  5575. visibility:hidden;
  5576. }
  5577. #u111179_div {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:57px;
  5583. height:14px;
  5584. background:inherit;
  5585. background-color:rgba(255, 255, 255, 1);
  5586. border:none;
  5587. border-left:0px;
  5588. border-top:0px;
  5589. border-right:0px;
  5590. border-radius:0px;
  5591. border-bottom-right-radius:0px;
  5592. border-bottom-left-radius:0px;
  5593. -moz-box-shadow:none;
  5594. -webkit-box-shadow:none;
  5595. box-shadow:none;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:8px;
  5600. line-height:14px;
  5601. }
  5602. #u111179 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:633px;
  5606. top:1026px;
  5607. width:57px;
  5608. height:14px;
  5609. display:flex;
  5610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5611. font-weight:400;
  5612. font-style:normal;
  5613. font-size:8px;
  5614. line-height:14px;
  5615. }
  5616. #u111179 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:0px 0px 0px 0px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u111179_text {
  5624. border-width:0px;
  5625. white-space:nowrap;
  5626. text-transform:none;
  5627. }
  5628. #u111180_div {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:156px;
  5634. height:15px;
  5635. background:inherit;
  5636. background-color:rgba(255, 255, 255, 1);
  5637. box-sizing:border-box;
  5638. border-width:1px;
  5639. border-style:solid;
  5640. border-color:rgba(215, 215, 215, 1);
  5641. border-left:0px;
  5642. border-top:0px;
  5643. border-right:0px;
  5644. border-radius:0px;
  5645. border-bottom-right-radius:0px;
  5646. border-bottom-left-radius:0px;
  5647. -moz-box-shadow:none;
  5648. -webkit-box-shadow:none;
  5649. box-shadow:none;
  5650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:8px;
  5654. text-align:center;
  5655. line-height:15px;
  5656. }
  5657. #u111180 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:549px;
  5661. top:987px;
  5662. width:156px;
  5663. height:15px;
  5664. display:flex;
  5665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. font-size:8px;
  5669. text-align:center;
  5670. line-height:15px;
  5671. }
  5672. #u111180 .text {
  5673. position:absolute;
  5674. align-self:center;
  5675. padding:0px 0px 0px 0px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u111180_text {
  5680. border-width:0px;
  5681. word-wrap:break-word;
  5682. text-transform:none;
  5683. }
  5684. #u111181_div {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:137px;
  5690. height:25px;
  5691. background:inherit;
  5692. background-color:rgba(51, 51, 51, 0);
  5693. box-sizing:border-box;
  5694. border-width:3px;
  5695. border-style:solid;
  5696. border-color:rgba(51, 51, 51, 1);
  5697. border-top:0px;
  5698. border-right:0px;
  5699. border-bottom:0px;
  5700. border-radius:0px;
  5701. border-top-left-radius:0px;
  5702. border-bottom-left-radius:0px;
  5703. -moz-box-shadow:none;
  5704. -webkit-box-shadow:none;
  5705. box-shadow:none;
  5706. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5707. font-weight:650;
  5708. font-style:normal;
  5709. font-size:18px;
  5710. }
  5711. #u111181 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:775px;
  5715. top:116px;
  5716. width:137px;
  5717. height:25px;
  5718. display:flex;
  5719. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5720. font-weight:650;
  5721. font-style:normal;
  5722. font-size:18px;
  5723. }
  5724. #u111181 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:0px 0px 0px 10px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u111181_text {
  5732. border-width:0px;
  5733. white-space:nowrap;
  5734. text-transform:none;
  5735. }
  5736. #u111182_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:119px;
  5742. height:25px;
  5743. background:inherit;
  5744. background-color:rgba(51, 51, 51, 0);
  5745. box-sizing:border-box;
  5746. border-width:3px;
  5747. border-style:solid;
  5748. border-color:rgba(51, 51, 51, 1);
  5749. border-top:0px;
  5750. border-right:0px;
  5751. border-bottom:0px;
  5752. border-radius:0px;
  5753. border-top-left-radius:0px;
  5754. border-bottom-left-radius:0px;
  5755. -moz-box-shadow:none;
  5756. -webkit-box-shadow:none;
  5757. box-shadow:none;
  5758. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5759. font-weight:650;
  5760. font-style:normal;
  5761. font-size:18px;
  5762. }
  5763. #u111182 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:775px;
  5767. top:365px;
  5768. width:119px;
  5769. height:25px;
  5770. display:flex;
  5771. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5772. font-weight:650;
  5773. font-style:normal;
  5774. font-size:18px;
  5775. }
  5776. #u111182 .text {
  5777. position:absolute;
  5778. align-self:center;
  5779. padding:0px 0px 0px 10px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u111182_text {
  5784. border-width:0px;
  5785. white-space:nowrap;
  5786. text-transform:none;
  5787. }
  5788. #u111183_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:57px;
  5794. height:20px;
  5795. background:inherit;
  5796. background-color:rgba(51, 51, 51, 0);
  5797. border:none;
  5798. border-top:0px;
  5799. border-right:0px;
  5800. border-bottom:0px;
  5801. border-radius:0px;
  5802. border-top-left-radius:0px;
  5803. border-bottom-left-radius:0px;
  5804. -moz-box-shadow:none;
  5805. -webkit-box-shadow:none;
  5806. box-shadow:none;
  5807. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5808. font-weight:650;
  5809. font-style:normal;
  5810. font-size:14px;
  5811. }
  5812. #u111183 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:793px;
  5816. top:420px;
  5817. width:57px;
  5818. height:20px;
  5819. display:flex;
  5820. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5821. font-weight:650;
  5822. font-style:normal;
  5823. font-size:14px;
  5824. }
  5825. #u111183 .text {
  5826. position:absolute;
  5827. align-self:center;
  5828. padding:0px 0px 0px 0px;
  5829. box-sizing:border-box;
  5830. width:100%;
  5831. }
  5832. #u111183_text {
  5833. border-width:0px;
  5834. white-space:nowrap;
  5835. text-transform:none;
  5836. }
  5837. #u111184 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:0px;
  5843. height:0px;
  5844. }
  5845. #u111185_div {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:222px;
  5851. height:40px;
  5852. background:inherit;
  5853. background-color:rgba(255, 255, 255, 1);
  5854. box-sizing:border-box;
  5855. border-width:1px;
  5856. border-style:solid;
  5857. border-color:rgba(215, 215, 215, 1);
  5858. border-radius:4px;
  5859. -moz-box-shadow:none;
  5860. -webkit-box-shadow:none;
  5861. box-shadow:none;
  5862. font-size:11px;
  5863. }
  5864. #u111185 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:793px;
  5868. top:450px;
  5869. width:222px;
  5870. height:40px;
  5871. display:flex;
  5872. font-size:11px;
  5873. }
  5874. #u111185 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 2px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u111185_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. visibility:hidden;
  5886. }
  5887. #u111186_input {
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:211px;
  5892. height:31px;
  5893. padding:2px 2px 2px 2px;
  5894. font-family:'ArialMT', 'Arial', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:11px;
  5898. letter-spacing:normal;
  5899. color:#AAAAAA;
  5900. vertical-align:none;
  5901. text-align:left;
  5902. text-transform:none;
  5903. background-color:transparent;
  5904. border-color:transparent;
  5905. }
  5906. #u111186_input.disabled {
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:211px;
  5911. height:31px;
  5912. padding:2px 2px 2px 2px;
  5913. font-family:'ArialMT', 'Arial', sans-serif;
  5914. font-weight:400;
  5915. font-style:normal;
  5916. font-size:11px;
  5917. letter-spacing:normal;
  5918. color:#AAAAAA;
  5919. vertical-align:none;
  5920. text-align:left;
  5921. text-transform:none;
  5922. background-color:transparent;
  5923. border-color:transparent;
  5924. }
  5925. #u111186_div {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:211px;
  5931. height:31px;
  5932. background:inherit;
  5933. background-color:rgba(255, 255, 255, 1);
  5934. border:none;
  5935. border-radius:0px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-size:11px;
  5940. color:#AAAAAA;
  5941. }
  5942. #u111186 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:800px;
  5946. top:453px;
  5947. width:211px;
  5948. height:31px;
  5949. display:flex;
  5950. font-size:11px;
  5951. color:#AAAAAA;
  5952. }
  5953. #u111186 .text {
  5954. position:absolute;
  5955. align-self:flex-start;
  5956. padding:2px 2px 2px 2px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u111186_div.disabled {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:211px;
  5966. height:31px;
  5967. background:inherit;
  5968. background-color:rgba(240, 240, 240, 1);
  5969. border:none;
  5970. border-radius:0px;
  5971. -moz-box-shadow:none;
  5972. -webkit-box-shadow:none;
  5973. box-shadow:none;
  5974. font-size:11px;
  5975. color:#AAAAAA;
  5976. }
  5977. #u111186.disabled {
  5978. }
  5979. .u111186_input_option {
  5980. font-size:11px;
  5981. }
  5982. #u111187 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:0px;
  5988. height:0px;
  5989. }
  5990. #u111188_div {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:100px;
  5996. height:40px;
  5997. background:inherit;
  5998. background-color:rgba(255, 255, 255, 1);
  5999. box-sizing:border-box;
  6000. border-width:1px;
  6001. border-style:solid;
  6002. border-color:rgba(201, 201, 201, 1);
  6003. border-radius:4px;
  6004. -moz-box-shadow:none;
  6005. -webkit-box-shadow:none;
  6006. box-shadow:none;
  6007. font-family:'Microsoft YaHei', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:14px;
  6011. color:#CCCCCC;
  6012. text-align:left;
  6013. }
  6014. #u111188 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:1023px;
  6018. top:450px;
  6019. width:100px;
  6020. height:40px;
  6021. display:flex;
  6022. font-family:'Microsoft YaHei', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:14px;
  6026. color:#CCCCCC;
  6027. text-align:left;
  6028. }
  6029. #u111188 .text {
  6030. position:absolute;
  6031. align-self:center;
  6032. padding:2px 8px 2px 8px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u111188_text {
  6037. border-width:0px;
  6038. word-wrap:break-word;
  6039. text-transform:none;
  6040. visibility:hidden;
  6041. }
  6042. #u111189_input {
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:95px;
  6047. height:38px;
  6048. padding:2px 2px 2px 2px;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:14px;
  6053. letter-spacing:normal;
  6054. color:#000000;
  6055. vertical-align:none;
  6056. text-align:left;
  6057. text-transform:none;
  6058. background-color:transparent;
  6059. border-color:transparent;
  6060. }
  6061. #u111189_input.disabled {
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:95px;
  6066. height:38px;
  6067. padding:2px 2px 2px 2px;
  6068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:14px;
  6072. letter-spacing:normal;
  6073. color:#000000;
  6074. vertical-align:none;
  6075. text-align:left;
  6076. text-transform:none;
  6077. background-color:transparent;
  6078. border-color:transparent;
  6079. }
  6080. #u111189_div {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:95px;
  6086. height:38px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 1);
  6089. border:none;
  6090. border-radius:0px;
  6091. -moz-box-shadow:none;
  6092. -webkit-box-shadow:none;
  6093. box-shadow:none;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:14px;
  6098. }
  6099. #u111189 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:1026px;
  6103. top:451px;
  6104. width:95px;
  6105. height:38px;
  6106. display:flex;
  6107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:14px;
  6111. }
  6112. #u111189 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 2px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u111189_div.disabled {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:95px;
  6125. height:38px;
  6126. background:inherit;
  6127. background-color:rgba(240, 240, 240, 1);
  6128. border:none;
  6129. border-radius:0px;
  6130. -moz-box-shadow:none;
  6131. -webkit-box-shadow:none;
  6132. box-shadow:none;
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. }
  6138. #u111189.disabled {
  6139. }
  6140. #u111190 label {
  6141. left:0px;
  6142. width:100%;
  6143. }
  6144. #u111190_img {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:4px;
  6149. width:12px;
  6150. height:12px;
  6151. }
  6152. #u111190 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:1136px;
  6156. top:460px;
  6157. width:100px;
  6158. height:20px;
  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. #u111190 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:0px 2px 0px 2px;
  6169. box-sizing:border-box;
  6170. }
  6171. #u111190_img.selected {
  6172. }
  6173. #u111190.selected {
  6174. }
  6175. #u111190_img.disabled {
  6176. }
  6177. #u111190.disabled {
  6178. }
  6179. #u111190_img.selectedDisabled {
  6180. }
  6181. #u111190.selectedDisabled {
  6182. }
  6183. #u111190_text {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:14px;
  6187. top:0px;
  6188. width:84px;
  6189. word-wrap:break-word;
  6190. text-transform:none;
  6191. }
  6192. #u111190_input {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:0px;
  6198. height:0px;
  6199. opacity:0;
  6200. }
  6201. #u111191_div {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:98px;
  6207. height:20px;
  6208. background:inherit;
  6209. background-color:rgba(51, 51, 51, 0);
  6210. border:none;
  6211. border-top:0px;
  6212. border-right:0px;
  6213. border-bottom:0px;
  6214. border-radius:0px;
  6215. border-top-left-radius:0px;
  6216. border-bottom-left-radius:0px;
  6217. -moz-box-shadow:none;
  6218. -webkit-box-shadow:none;
  6219. box-shadow:none;
  6220. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6221. font-weight:650;
  6222. font-style:normal;
  6223. font-size:14px;
  6224. }
  6225. #u111191 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:793px;
  6229. top:510px;
  6230. width:98px;
  6231. height:20px;
  6232. display:flex;
  6233. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6234. font-weight:650;
  6235. font-style:normal;
  6236. font-size:14px;
  6237. }
  6238. #u111191 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:0px 0px 0px 0px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u111191_text {
  6246. border-width:0px;
  6247. white-space:nowrap;
  6248. text-transform:none;
  6249. }
  6250. #u111192_div {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:278px;
  6256. height:17px;
  6257. background:inherit;
  6258. background-color:rgba(51, 51, 51, 0);
  6259. border:none;
  6260. border-top:0px;
  6261. border-right:0px;
  6262. border-bottom:0px;
  6263. border-radius:0px;
  6264. border-top-left-radius:0px;
  6265. border-bottom-left-radius:0px;
  6266. -moz-box-shadow:none;
  6267. -webkit-box-shadow:none;
  6268. box-shadow:none;
  6269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:12px;
  6273. }
  6274. #u111192 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:1136px;
  6278. top:583px;
  6279. width:278px;
  6280. height:17px;
  6281. display:flex;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:12px;
  6286. }
  6287. #u111192 .text {
  6288. position:absolute;
  6289. align-self:center;
  6290. padding:0px 0px 0px 0px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u111192_text {
  6295. border-width:0px;
  6296. white-space:nowrap;
  6297. text-transform:none;
  6298. }
  6299. #u111193_div {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:85px;
  6305. height:20px;
  6306. background:inherit;
  6307. background-color:rgba(51, 51, 51, 0);
  6308. border:none;
  6309. border-top:0px;
  6310. border-right:0px;
  6311. border-bottom:0px;
  6312. border-radius:0px;
  6313. border-top-left-radius:0px;
  6314. border-bottom-left-radius:0px;
  6315. -moz-box-shadow:none;
  6316. -webkit-box-shadow:none;
  6317. box-shadow:none;
  6318. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6319. font-weight:650;
  6320. font-style:normal;
  6321. font-size:14px;
  6322. }
  6323. #u111193 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:793px;
  6327. top:663px;
  6328. width:85px;
  6329. height:20px;
  6330. display:flex;
  6331. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6332. font-weight:650;
  6333. font-style:normal;
  6334. font-size:14px;
  6335. }
  6336. #u111193 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:0px 0px 0px 0px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u111193_text {
  6344. border-width:0px;
  6345. white-space:nowrap;
  6346. text-transform:none;
  6347. }
  6348. #u111194_img {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:333px;
  6354. height:106px;
  6355. }
  6356. #u111194 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:793px;
  6360. top:540px;
  6361. width:333px;
  6362. height:106px;
  6363. display:flex;
  6364. }
  6365. #u111194 .text {
  6366. position:absolute;
  6367. align-self:center;
  6368. padding:2px 2px 2px 2px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u111194_text {
  6373. border-width:0px;
  6374. word-wrap:break-word;
  6375. text-transform:none;
  6376. visibility:hidden;
  6377. }
  6378. #u111195 label {
  6379. left:0px;
  6380. width:100%;
  6381. }
  6382. #u111195_img {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:0px;
  6386. top:4px;
  6387. width:12px;
  6388. height:12px;
  6389. }
  6390. #u111195 {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:793px;
  6394. top:698px;
  6395. width:328px;
  6396. height:20px;
  6397. display:flex;
  6398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6399. font-weight:400;
  6400. font-style:normal;
  6401. font-size:14px;
  6402. }
  6403. #u111195 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:0px 2px 0px 2px;
  6407. box-sizing:border-box;
  6408. }
  6409. #u111195_img.selected {
  6410. }
  6411. #u111195.selected {
  6412. }
  6413. #u111195_img.disabled {
  6414. }
  6415. #u111195.disabled {
  6416. }
  6417. #u111195_img.selectedDisabled {
  6418. }
  6419. #u111195.selectedDisabled {
  6420. }
  6421. #u111195_text {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:14px;
  6425. top:0px;
  6426. width:312px;
  6427. word-wrap:break-word;
  6428. text-transform:none;
  6429. }
  6430. #u111195_input {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:0px;
  6436. height:0px;
  6437. opacity:0;
  6438. }
  6439. #u111196 label {
  6440. left:0px;
  6441. width:100%;
  6442. }
  6443. #u111196_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:4px;
  6448. width:12px;
  6449. height:12px;
  6450. }
  6451. #u111196 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:793px;
  6455. top:733px;
  6456. width:328px;
  6457. height:20px;
  6458. display:flex;
  6459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:14px;
  6463. }
  6464. #u111196 .text {
  6465. position:absolute;
  6466. align-self:center;
  6467. padding:0px 2px 0px 2px;
  6468. box-sizing:border-box;
  6469. }
  6470. #u111196_img.selected {
  6471. }
  6472. #u111196.selected {
  6473. }
  6474. #u111196_img.disabled {
  6475. }
  6476. #u111196.disabled {
  6477. }
  6478. #u111196_img.selectedDisabled {
  6479. }
  6480. #u111196.selectedDisabled {
  6481. }
  6482. #u111196_text {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:14px;
  6486. top:0px;
  6487. width:312px;
  6488. word-wrap:break-word;
  6489. text-transform:none;
  6490. }
  6491. #u111196_input {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:0px;
  6497. height:0px;
  6498. opacity:0;
  6499. }
  6500. #u111197 label {
  6501. left:0px;
  6502. width:100%;
  6503. }
  6504. #u111197_img {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:4px;
  6509. width:12px;
  6510. height:12px;
  6511. }
  6512. #u111197 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:793px;
  6516. top:768px;
  6517. width:328px;
  6518. height:20px;
  6519. display:flex;
  6520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:14px;
  6524. }
  6525. #u111197 .text {
  6526. position:absolute;
  6527. align-self:center;
  6528. padding:0px 2px 0px 2px;
  6529. box-sizing:border-box;
  6530. }
  6531. #u111197_img.selected {
  6532. }
  6533. #u111197.selected {
  6534. }
  6535. #u111197_img.disabled {
  6536. }
  6537. #u111197.disabled {
  6538. }
  6539. #u111197_img.selectedDisabled {
  6540. }
  6541. #u111197.selectedDisabled {
  6542. }
  6543. #u111197_text {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:14px;
  6547. top:0px;
  6548. width:312px;
  6549. word-wrap:break-word;
  6550. text-transform:none;
  6551. }
  6552. #u111197_input {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:0px;
  6558. height:0px;
  6559. opacity:0;
  6560. }
  6561. #u111198_div {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:85px;
  6567. height:20px;
  6568. background:inherit;
  6569. background-color:rgba(51, 51, 51, 0);
  6570. border:none;
  6571. border-top:0px;
  6572. border-right:0px;
  6573. border-bottom:0px;
  6574. border-radius:0px;
  6575. border-top-left-radius:0px;
  6576. border-bottom-left-radius:0px;
  6577. -moz-box-shadow:none;
  6578. -webkit-box-shadow:none;
  6579. box-shadow:none;
  6580. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6581. font-weight:650;
  6582. font-style:normal;
  6583. font-size:14px;
  6584. }
  6585. #u111198 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:793px;
  6589. top:808px;
  6590. width:85px;
  6591. height:20px;
  6592. display:flex;
  6593. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6594. font-weight:650;
  6595. font-style:normal;
  6596. font-size:14px;
  6597. }
  6598. #u111198 .text {
  6599. position:absolute;
  6600. align-self:center;
  6601. padding:0px 0px 0px 0px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u111198_text {
  6606. border-width:0px;
  6607. white-space:nowrap;
  6608. text-transform:none;
  6609. }
  6610. #u111199 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:0px;
  6616. height:0px;
  6617. }
  6618. #u111200_div {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:162px;
  6624. height:40px;
  6625. background:inherit;
  6626. background-color:rgba(255, 255, 255, 1);
  6627. box-sizing:border-box;
  6628. border-width:1px;
  6629. border-style:solid;
  6630. border-color:rgba(201, 201, 201, 1);
  6631. border-radius:4px;
  6632. -moz-box-shadow:none;
  6633. -webkit-box-shadow:none;
  6634. box-shadow:none;
  6635. font-family:'Microsoft YaHei', sans-serif;
  6636. font-weight:400;
  6637. font-style:normal;
  6638. font-size:14px;
  6639. color:#CCCCCC;
  6640. text-align:left;
  6641. }
  6642. #u111200 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:850px;
  6646. top:838px;
  6647. width:162px;
  6648. height:40px;
  6649. display:flex;
  6650. font-family:'Microsoft YaHei', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:14px;
  6654. color:#CCCCCC;
  6655. text-align:left;
  6656. }
  6657. #u111200 .text {
  6658. position:absolute;
  6659. align-self:center;
  6660. padding:2px 8px 2px 8px;
  6661. box-sizing:border-box;
  6662. width:100%;
  6663. }
  6664. #u111200_text {
  6665. border-width:0px;
  6666. word-wrap:break-word;
  6667. text-transform:none;
  6668. visibility:hidden;
  6669. }
  6670. #u111201_input {
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:154px;
  6675. height:38px;
  6676. padding:2px 2px 2px 2px;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:14px;
  6681. letter-spacing:normal;
  6682. color:#000000;
  6683. vertical-align:none;
  6684. text-align:left;
  6685. text-transform:none;
  6686. background-color:transparent;
  6687. border-color:transparent;
  6688. }
  6689. #u111201_input.disabled {
  6690. position:absolute;
  6691. left:0px;
  6692. top:0px;
  6693. width:154px;
  6694. height:38px;
  6695. padding:2px 2px 2px 2px;
  6696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6697. font-weight:400;
  6698. font-style:normal;
  6699. font-size:14px;
  6700. letter-spacing:normal;
  6701. color:#000000;
  6702. vertical-align:none;
  6703. text-align:left;
  6704. text-transform:none;
  6705. background-color:transparent;
  6706. border-color:transparent;
  6707. }
  6708. #u111201_div {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:0px;
  6712. top:0px;
  6713. width:154px;
  6714. height:38px;
  6715. background:inherit;
  6716. background-color:rgba(255, 255, 255, 1);
  6717. border:none;
  6718. border-radius:0px;
  6719. -moz-box-shadow:none;
  6720. -webkit-box-shadow:none;
  6721. box-shadow:none;
  6722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6723. font-weight:400;
  6724. font-style:normal;
  6725. font-size:14px;
  6726. }
  6727. #u111201 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:855px;
  6731. top:839px;
  6732. width:154px;
  6733. height:38px;
  6734. display:flex;
  6735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:14px;
  6739. }
  6740. #u111201 .text {
  6741. position:absolute;
  6742. align-self:center;
  6743. padding:2px 2px 2px 2px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u111201_div.disabled {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:154px;
  6753. height:38px;
  6754. background:inherit;
  6755. background-color:rgba(240, 240, 240, 1);
  6756. border:none;
  6757. border-radius:0px;
  6758. -moz-box-shadow:none;
  6759. -webkit-box-shadow:none;
  6760. box-shadow:none;
  6761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6762. font-weight:400;
  6763. font-style:normal;
  6764. font-size:14px;
  6765. }
  6766. #u111201.disabled {
  6767. }
  6768. #u111202_div {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:57px;
  6774. height:20px;
  6775. background:inherit;
  6776. background-color:rgba(51, 51, 51, 0);
  6777. border:none;
  6778. border-top:0px;
  6779. border-right:0px;
  6780. border-bottom:0px;
  6781. border-radius:0px;
  6782. border-top-left-radius:0px;
  6783. border-bottom-left-radius:0px;
  6784. -moz-box-shadow:none;
  6785. -webkit-box-shadow:none;
  6786. box-shadow:none;
  6787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:14px;
  6791. }
  6792. #u111202 {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:793px;
  6796. top:848px;
  6797. width:57px;
  6798. height:20px;
  6799. display:flex;
  6800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6801. font-weight:400;
  6802. font-style:normal;
  6803. font-size:14px;
  6804. }
  6805. #u111202 .text {
  6806. position:absolute;
  6807. align-self:center;
  6808. padding:0px 0px 0px 0px;
  6809. box-sizing:border-box;
  6810. width:100%;
  6811. }
  6812. #u111202_text {
  6813. border-width:0px;
  6814. white-space:nowrap;
  6815. text-transform:none;
  6816. }
  6817. #u111203_div {
  6818. border-width:0px;
  6819. position:absolute;
  6820. left:0px;
  6821. top:0px;
  6822. width:85px;
  6823. height:20px;
  6824. background:inherit;
  6825. background-color:rgba(255, 255, 255, 0);
  6826. border:none;
  6827. border-radius:0px;
  6828. -moz-box-shadow:none;
  6829. -webkit-box-shadow:none;
  6830. box-shadow:none;
  6831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6832. font-weight:400;
  6833. font-style:normal;
  6834. font-size:14px;
  6835. color:#1890FF;
  6836. }
  6837. #u111203 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:1012px;
  6841. top:848px;
  6842. width:85px;
  6843. height:20px;
  6844. display:flex;
  6845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:14px;
  6849. color:#1890FF;
  6850. }
  6851. #u111203 .text {
  6852. position:absolute;
  6853. align-self:flex-start;
  6854. padding:0px 0px 0px 0px;
  6855. box-sizing:border-box;
  6856. width:100%;
  6857. }
  6858. #u111203_text {
  6859. border-width:0px;
  6860. white-space:nowrap;
  6861. text-transform:none;
  6862. }
  6863. #u111204_div {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:57px;
  6869. height:20px;
  6870. background:inherit;
  6871. background-color:rgba(51, 51, 51, 0);
  6872. border:none;
  6873. border-top:0px;
  6874. border-right:0px;
  6875. border-bottom:0px;
  6876. border-radius:0px;
  6877. border-top-left-radius:0px;
  6878. border-bottom-left-radius:0px;
  6879. -moz-box-shadow:none;
  6880. -webkit-box-shadow:none;
  6881. box-shadow:none;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:14px;
  6886. }
  6887. #u111204 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:793px;
  6891. top:898px;
  6892. width:57px;
  6893. height:20px;
  6894. display:flex;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:14px;
  6899. }
  6900. #u111204 .text {
  6901. position:absolute;
  6902. align-self:center;
  6903. padding:0px 0px 0px 0px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u111204_text {
  6908. border-width:0px;
  6909. white-space:nowrap;
  6910. text-transform:none;
  6911. }
  6912. #u111205_div {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:85px;
  6918. height:20px;
  6919. background:inherit;
  6920. background-color:rgba(255, 255, 255, 0);
  6921. border:none;
  6922. border-radius:0px;
  6923. -moz-box-shadow:none;
  6924. -webkit-box-shadow:none;
  6925. box-shadow:none;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:14px;
  6930. color:#1890FF;
  6931. }
  6932. #u111205 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:1012px;
  6936. top:898px;
  6937. width:85px;
  6938. height:20px;
  6939. display:flex;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:14px;
  6944. color:#1890FF;
  6945. }
  6946. #u111205 .text {
  6947. position:absolute;
  6948. align-self:flex-start;
  6949. padding:0px 0px 0px 0px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u111205_text {
  6954. border-width:0px;
  6955. white-space:nowrap;
  6956. text-transform:none;
  6957. }
  6958. #u111206 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:0px;
  6964. height:0px;
  6965. }
  6966. #u111207_div {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:162px;
  6972. height:40px;
  6973. background:inherit;
  6974. background-color:rgba(255, 255, 255, 1);
  6975. box-sizing:border-box;
  6976. border-width:1px;
  6977. border-style:solid;
  6978. border-color:rgba(201, 201, 201, 1);
  6979. border-radius:4px;
  6980. -moz-box-shadow:none;
  6981. -webkit-box-shadow:none;
  6982. box-shadow:none;
  6983. font-family:'Microsoft YaHei', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:14px;
  6987. color:#CCCCCC;
  6988. text-align:left;
  6989. }
  6990. #u111207 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:850px;
  6994. top:888px;
  6995. width:162px;
  6996. height:40px;
  6997. display:flex;
  6998. font-family:'Microsoft YaHei', sans-serif;
  6999. font-weight:400;
  7000. font-style:normal;
  7001. font-size:14px;
  7002. color:#CCCCCC;
  7003. text-align:left;
  7004. }
  7005. #u111207 .text {
  7006. position:absolute;
  7007. align-self:center;
  7008. padding:2px 8px 2px 8px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u111207_text {
  7013. border-width:0px;
  7014. word-wrap:break-word;
  7015. text-transform:none;
  7016. visibility:hidden;
  7017. }
  7018. #u111208_input {
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:154px;
  7023. height:38px;
  7024. padding:2px 2px 2px 2px;
  7025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7026. font-weight:400;
  7027. font-style:normal;
  7028. font-size:14px;
  7029. letter-spacing:normal;
  7030. color:#000000;
  7031. vertical-align:none;
  7032. text-align:left;
  7033. text-transform:none;
  7034. background-color:transparent;
  7035. border-color:transparent;
  7036. }
  7037. #u111208_input.disabled {
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:154px;
  7042. height:38px;
  7043. padding:2px 2px 2px 2px;
  7044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:14px;
  7048. letter-spacing:normal;
  7049. color:#000000;
  7050. vertical-align:none;
  7051. text-align:left;
  7052. text-transform:none;
  7053. background-color:transparent;
  7054. border-color:transparent;
  7055. }
  7056. #u111208_div {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:154px;
  7062. height:38px;
  7063. background:inherit;
  7064. background-color:rgba(255, 255, 255, 1);
  7065. border:none;
  7066. border-radius:0px;
  7067. -moz-box-shadow:none;
  7068. -webkit-box-shadow:none;
  7069. box-shadow:none;
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:14px;
  7074. }
  7075. #u111208 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:855px;
  7079. top:889px;
  7080. width:154px;
  7081. height:38px;
  7082. display:flex;
  7083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:14px;
  7087. }
  7088. #u111208 .text {
  7089. position:absolute;
  7090. align-self:center;
  7091. padding:2px 2px 2px 2px;
  7092. box-sizing:border-box;
  7093. width:100%;
  7094. }
  7095. #u111208_div.disabled {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:154px;
  7101. height:38px;
  7102. background:inherit;
  7103. background-color:rgba(240, 240, 240, 1);
  7104. border:none;
  7105. border-radius:0px;
  7106. -moz-box-shadow:none;
  7107. -webkit-box-shadow:none;
  7108. box-shadow:none;
  7109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7110. font-weight:400;
  7111. font-style:normal;
  7112. font-size:14px;
  7113. }
  7114. #u111208.disabled {
  7115. }
  7116. #u111209 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:0px;
  7122. height:0px;
  7123. }
  7124. #u111210_div {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:930px;
  7130. height:60px;
  7131. background:inherit;
  7132. background-color:rgba(255, 255, 255, 1);
  7133. box-sizing:border-box;
  7134. border-width:1px;
  7135. border-style:solid;
  7136. border-color:rgba(215, 215, 215, 1);
  7137. border-radius:0px;
  7138. -moz-box-shadow:none;
  7139. -webkit-box-shadow:none;
  7140. box-shadow:none;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:14px;
  7145. color:#AAAAAA;
  7146. text-align:center;
  7147. line-height:30px;
  7148. }
  7149. #u111210 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:755px;
  7153. top:1136px;
  7154. width:930px;
  7155. height:60px;
  7156. display:flex;
  7157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:14px;
  7161. color:#AAAAAA;
  7162. text-align:center;
  7163. line-height:30px;
  7164. }
  7165. #u111210 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:5px 10px 5px 10px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u111210_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u111211_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:60px;
  7184. height:30px;
  7185. background:inherit;
  7186. background-color:rgba(24, 144, 255, 1);
  7187. border:none;
  7188. border-radius:4px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:14px;
  7196. color:#FFFFFF;
  7197. }
  7198. #u111211 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:1605px;
  7202. top:1151px;
  7203. width:60px;
  7204. height:30px;
  7205. display:flex;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:14px;
  7210. color:#FFFFFF;
  7211. }
  7212. #u111211 .text {
  7213. position:absolute;
  7214. align-self:center;
  7215. padding:2px 2px 2px 2px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u111211_text {
  7220. border-width:0px;
  7221. word-wrap:break-word;
  7222. text-transform:none;
  7223. }
  7224. #u111212 label {
  7225. left:0px;
  7226. width:100%;
  7227. }
  7228. #u111212_img {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:4px;
  7233. width:12px;
  7234. height:12px;
  7235. }
  7236. #u111212 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:1263px;
  7240. top:460px;
  7241. width:100px;
  7242. height:20px;
  7243. display:flex;
  7244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7245. font-weight:400;
  7246. font-style:normal;
  7247. font-size:14px;
  7248. }
  7249. #u111212 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:0px 2px 0px 2px;
  7253. box-sizing:border-box;
  7254. }
  7255. #u111212_img.selected {
  7256. }
  7257. #u111212.selected {
  7258. }
  7259. #u111212_img.disabled {
  7260. }
  7261. #u111212.disabled {
  7262. }
  7263. #u111212_img.selectedDisabled {
  7264. }
  7265. #u111212.selectedDisabled {
  7266. }
  7267. #u111212_text {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:14px;
  7271. top:0px;
  7272. width:84px;
  7273. word-wrap:break-word;
  7274. text-transform:none;
  7275. }
  7276. #u111212_input {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:0px;
  7280. top:0px;
  7281. width:0px;
  7282. height:0px;
  7283. opacity:0;
  7284. }
  7285. #u111213 {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:0px;
  7291. height:0px;
  7292. }
  7293. #u111214_div {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:200px;
  7299. height:1702px;
  7300. background:inherit;
  7301. background-color:rgba(255, 255, 255, 1);
  7302. box-sizing:border-box;
  7303. border-width:1px;
  7304. border-style:solid;
  7305. border-color:rgba(215, 215, 215, 1);
  7306. border-radius:0px;
  7307. -moz-box-shadow:none;
  7308. -webkit-box-shadow:none;
  7309. box-shadow:none;
  7310. }
  7311. #u111214 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:120px;
  7315. top:50px;
  7316. width:200px;
  7317. height:1702px;
  7318. display:flex;
  7319. }
  7320. #u111214 .text {
  7321. position:absolute;
  7322. align-self:center;
  7323. padding:2px 2px 2px 2px;
  7324. box-sizing:border-box;
  7325. width:100%;
  7326. }
  7327. #u111214_text {
  7328. border-width:0px;
  7329. word-wrap:break-word;
  7330. text-transform:none;
  7331. visibility:hidden;
  7332. }
  7333. #u111215_div {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:200px;
  7339. height:60px;
  7340. background:inherit;
  7341. background-color:rgba(224, 231, 247, 1);
  7342. border:none;
  7343. border-radius:0px;
  7344. -moz-box-shadow:none;
  7345. -webkit-box-shadow:none;
  7346. box-shadow:none;
  7347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7348. font-weight:500;
  7349. font-style:normal;
  7350. font-size:18px;
  7351. }
  7352. #u111215 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:120px;
  7356. top:50px;
  7357. width:200px;
  7358. height:60px;
  7359. display:flex;
  7360. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7361. font-weight:500;
  7362. font-style:normal;
  7363. font-size:18px;
  7364. }
  7365. #u111215 .text {
  7366. position:absolute;
  7367. align-self:center;
  7368. padding:0px 0px 0px 20px;
  7369. box-sizing:border-box;
  7370. width:100%;
  7371. }
  7372. #u111215_text {
  7373. border-width:0px;
  7374. word-wrap:break-word;
  7375. text-transform:none;
  7376. }
  7377. #u111216_img {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:201px;
  7383. height:2px;
  7384. }
  7385. #u111216 {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:120px;
  7389. top:1180px;
  7390. width:200px;
  7391. height:1px;
  7392. display:flex;
  7393. }
  7394. #u111216 .text {
  7395. position:absolute;
  7396. align-self:center;
  7397. padding:2px 2px 2px 2px;
  7398. box-sizing:border-box;
  7399. width:100%;
  7400. }
  7401. #u111216_text {
  7402. border-width:0px;
  7403. word-wrap:break-word;
  7404. text-transform:none;
  7405. visibility:hidden;
  7406. }
  7407. #u111217_div {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:97px;
  7413. height:22px;
  7414. background:inherit;
  7415. background-color:rgba(255, 255, 255, 0);
  7416. border:none;
  7417. border-radius:0px;
  7418. -moz-box-shadow:none;
  7419. -webkit-box-shadow:none;
  7420. box-shadow:none;
  7421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7422. font-weight:400;
  7423. font-style:normal;
  7424. font-size:16px;
  7425. }
  7426. #u111217 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:147px;
  7430. top:1459px;
  7431. width:97px;
  7432. height:22px;
  7433. display:flex;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:16px;
  7438. }
  7439. #u111217 .text {
  7440. position:absolute;
  7441. align-self:flex-start;
  7442. padding:0px 0px 0px 0px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u111217_text {
  7447. border-width:0px;
  7448. word-wrap:break-word;
  7449. text-transform:none;
  7450. }
  7451. #u111218_div {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:49px;
  7457. height:17px;
  7458. background:inherit;
  7459. background-color:rgba(255, 255, 255, 0);
  7460. border:none;
  7461. border-radius:0px;
  7462. -moz-box-shadow:none;
  7463. -webkit-box-shadow:none;
  7464. box-shadow:none;
  7465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7466. font-weight:400;
  7467. font-style:normal;
  7468. font-size:12px;
  7469. color:#AAAAAA;
  7470. }
  7471. #u111218 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:147px;
  7475. top:1423px;
  7476. width:49px;
  7477. height:17px;
  7478. display:flex;
  7479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7480. font-weight:400;
  7481. font-style:normal;
  7482. font-size:12px;
  7483. color:#AAAAAA;
  7484. }
  7485. #u111218 .text {
  7486. position:absolute;
  7487. align-self:flex-start;
  7488. padding:0px 0px 0px 0px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u111218_text {
  7493. border-width:0px;
  7494. white-space:nowrap;
  7495. text-transform:none;
  7496. }
  7497. #u111219_div {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:97px;
  7503. height:22px;
  7504. background:inherit;
  7505. background-color:rgba(255, 255, 255, 0);
  7506. border:none;
  7507. border-radius:0px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:16px;
  7515. }
  7516. #u111219 {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:147px;
  7520. top:340px;
  7521. width:97px;
  7522. height:22px;
  7523. display:flex;
  7524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7525. font-weight:400;
  7526. font-style:normal;
  7527. font-size:16px;
  7528. }
  7529. #u111219 .text {
  7530. position:absolute;
  7531. align-self:flex-start;
  7532. padding:0px 0px 0px 0px;
  7533. box-sizing:border-box;
  7534. width:100%;
  7535. }
  7536. #u111219_text {
  7537. border-width:0px;
  7538. word-wrap:break-word;
  7539. text-transform:none;
  7540. }
  7541. #u111220_div {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:97px;
  7547. height:22px;
  7548. background:inherit;
  7549. background-color:rgba(255, 255, 255, 0);
  7550. border:none;
  7551. border-radius:0px;
  7552. -moz-box-shadow:none;
  7553. -webkit-box-shadow:none;
  7554. box-shadow:none;
  7555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7556. font-weight:400;
  7557. font-style:normal;
  7558. font-size:16px;
  7559. }
  7560. #u111220 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:147px;
  7564. top:424px;
  7565. width:97px;
  7566. height:22px;
  7567. display:flex;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:16px;
  7572. }
  7573. #u111220 .text {
  7574. position:absolute;
  7575. align-self:flex-start;
  7576. padding:0px 0px 0px 0px;
  7577. box-sizing:border-box;
  7578. width:100%;
  7579. }
  7580. #u111220_text {
  7581. border-width:0px;
  7582. word-wrap:break-word;
  7583. text-transform:none;
  7584. }
  7585. #u111221_div {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:0px;
  7589. top:0px;
  7590. width:97px;
  7591. height:22px;
  7592. background:inherit;
  7593. background-color:rgba(255, 255, 255, 0);
  7594. border:none;
  7595. border-radius:0px;
  7596. -moz-box-shadow:none;
  7597. -webkit-box-shadow:none;
  7598. box-shadow:none;
  7599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7600. font-weight:400;
  7601. font-style:normal;
  7602. font-size:16px;
  7603. }
  7604. #u111221 {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:147px;
  7608. top:1501px;
  7609. width:97px;
  7610. height:22px;
  7611. display:flex;
  7612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7613. font-weight:400;
  7614. font-style:normal;
  7615. font-size:16px;
  7616. }
  7617. #u111221 .text {
  7618. position:absolute;
  7619. align-self:flex-start;
  7620. padding:0px 0px 0px 0px;
  7621. box-sizing:border-box;
  7622. width:100%;
  7623. }
  7624. #u111221_text {
  7625. border-width:0px;
  7626. word-wrap:break-word;
  7627. text-transform:none;
  7628. }
  7629. #u111222_div {
  7630. border-width:0px;
  7631. position:absolute;
  7632. left:0px;
  7633. top:0px;
  7634. width:129px;
  7635. height:22px;
  7636. background:inherit;
  7637. background-color:rgba(255, 255, 255, 0);
  7638. border:none;
  7639. border-radius:0px;
  7640. -moz-box-shadow:none;
  7641. -webkit-box-shadow:none;
  7642. box-shadow:none;
  7643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:16px;
  7647. }
  7648. #u111222 {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:147px;
  7652. top:1543px;
  7653. width:129px;
  7654. height:22px;
  7655. display:flex;
  7656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7657. font-weight:400;
  7658. font-style:normal;
  7659. font-size:16px;
  7660. }
  7661. #u111222 .text {
  7662. position:absolute;
  7663. align-self:flex-start;
  7664. padding:0px 0px 0px 0px;
  7665. box-sizing:border-box;
  7666. width:100%;
  7667. }
  7668. #u111222_text {
  7669. border-width:0px;
  7670. white-space:nowrap;
  7671. text-transform:none;
  7672. }
  7673. #u111223_div {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:0px;
  7677. top:0px;
  7678. width:49px;
  7679. height:17px;
  7680. background:inherit;
  7681. background-color:rgba(255, 255, 255, 0);
  7682. border:none;
  7683. border-radius:0px;
  7684. -moz-box-shadow:none;
  7685. -webkit-box-shadow:none;
  7686. box-shadow:none;
  7687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:12px;
  7691. color:#AAAAAA;
  7692. }
  7693. #u111223 {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:147px;
  7697. top:120px;
  7698. width:49px;
  7699. height:17px;
  7700. display:flex;
  7701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:12px;
  7705. color:#AAAAAA;
  7706. }
  7707. #u111223 .text {
  7708. position:absolute;
  7709. align-self:flex-start;
  7710. padding:0px 0px 0px 0px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u111223_text {
  7715. border-width:0px;
  7716. white-space:nowrap;
  7717. text-transform:none;
  7718. }
  7719. #u111224_div {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:0px;
  7723. top:0px;
  7724. width:97px;
  7725. height:22px;
  7726. background:inherit;
  7727. background-color:rgba(255, 255, 255, 0);
  7728. border:none;
  7729. border-radius:0px;
  7730. -moz-box-shadow:none;
  7731. -webkit-box-shadow:none;
  7732. box-shadow:none;
  7733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:16px;
  7737. }
  7738. #u111224 {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:147px;
  7742. top:157px;
  7743. width:97px;
  7744. height:22px;
  7745. display:flex;
  7746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7747. font-weight:400;
  7748. font-style:normal;
  7749. font-size:16px;
  7750. }
  7751. #u111224 .text {
  7752. position:absolute;
  7753. align-self:flex-start;
  7754. padding:0px 0px 0px 0px;
  7755. box-sizing:border-box;
  7756. width:100%;
  7757. }
  7758. #u111224_text {
  7759. border-width:0px;
  7760. word-wrap:break-word;
  7761. text-transform:none;
  7762. }
  7763. #u111225_img {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:0px;
  7767. top:0px;
  7768. width:201px;
  7769. height:2px;
  7770. }
  7771. #u111225 {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:120px;
  7775. top:241px;
  7776. width:200px;
  7777. height:1px;
  7778. display:flex;
  7779. }
  7780. #u111225 .text {
  7781. position:absolute;
  7782. align-self:center;
  7783. padding:2px 2px 2px 2px;
  7784. box-sizing:border-box;
  7785. width:100%;
  7786. }
  7787. #u111225_text {
  7788. border-width:0px;
  7789. word-wrap:break-word;
  7790. text-transform:none;
  7791. visibility:hidden;
  7792. }
  7793. #u111226_div {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:0px;
  7797. top:0px;
  7798. width:49px;
  7799. height:17px;
  7800. background:inherit;
  7801. background-color:rgba(255, 255, 255, 0);
  7802. border:none;
  7803. border-radius:0px;
  7804. -moz-box-shadow:none;
  7805. -webkit-box-shadow:none;
  7806. box-shadow:none;
  7807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7808. font-weight:400;
  7809. font-style:normal;
  7810. font-size:12px;
  7811. color:#AAAAAA;
  7812. }
  7813. #u111226 {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:147px;
  7817. top:261px;
  7818. width:49px;
  7819. height:17px;
  7820. display:flex;
  7821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7822. font-weight:400;
  7823. font-style:normal;
  7824. font-size:12px;
  7825. color:#AAAAAA;
  7826. }
  7827. #u111226 .text {
  7828. position:absolute;
  7829. align-self:flex-start;
  7830. padding:0px 0px 0px 0px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u111226_text {
  7835. border-width:0px;
  7836. white-space:nowrap;
  7837. text-transform:none;
  7838. }
  7839. #u111227_div {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:97px;
  7845. height:22px;
  7846. background:inherit;
  7847. background-color:rgba(255, 255, 255, 0);
  7848. border:none;
  7849. border-radius:0px;
  7850. -moz-box-shadow:none;
  7851. -webkit-box-shadow:none;
  7852. box-shadow:none;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:16px;
  7857. }
  7858. #u111227 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:147px;
  7862. top:298px;
  7863. width:97px;
  7864. height:22px;
  7865. display:flex;
  7866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7867. font-weight:400;
  7868. font-style:normal;
  7869. font-size:16px;
  7870. }
  7871. #u111227 .text {
  7872. position:absolute;
  7873. align-self:flex-start;
  7874. padding:0px 0px 0px 0px;
  7875. box-sizing:border-box;
  7876. width:100%;
  7877. }
  7878. #u111227_text {
  7879. border-width:0px;
  7880. word-wrap:break-word;
  7881. text-transform:none;
  7882. }
  7883. #u111228_div {
  7884. border-width:0px;
  7885. position:absolute;
  7886. left:0px;
  7887. top:0px;
  7888. width:97px;
  7889. height:22px;
  7890. background:inherit;
  7891. background-color:rgba(255, 255, 255, 0);
  7892. border:none;
  7893. border-radius:0px;
  7894. -moz-box-shadow:none;
  7895. -webkit-box-shadow:none;
  7896. box-shadow:none;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:16px;
  7901. }
  7902. #u111228 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:147px;
  7906. top:199px;
  7907. width:97px;
  7908. height:22px;
  7909. display:flex;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:16px;
  7914. }
  7915. #u111228 .text {
  7916. position:absolute;
  7917. align-self:flex-start;
  7918. padding:0px 0px 0px 0px;
  7919. box-sizing:border-box;
  7920. width:100%;
  7921. }
  7922. #u111228_text {
  7923. border-width:0px;
  7924. word-wrap:break-word;
  7925. text-transform:none;
  7926. }
  7927. #u111229_div {
  7928. border-width:0px;
  7929. position:absolute;
  7930. left:0px;
  7931. top:0px;
  7932. width:97px;
  7933. height:22px;
  7934. background:inherit;
  7935. background-color:rgba(255, 255, 255, 0);
  7936. border:none;
  7937. border-radius:0px;
  7938. -moz-box-shadow:none;
  7939. -webkit-box-shadow:none;
  7940. box-shadow:none;
  7941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:16px;
  7945. }
  7946. #u111229 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:147px;
  7950. top:382px;
  7951. width:97px;
  7952. height:22px;
  7953. display:flex;
  7954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7955. font-weight:400;
  7956. font-style:normal;
  7957. font-size:16px;
  7958. }
  7959. #u111229 .text {
  7960. position:absolute;
  7961. align-self:flex-start;
  7962. padding:0px 0px 0px 0px;
  7963. box-sizing:border-box;
  7964. width:100%;
  7965. }
  7966. #u111229_text {
  7967. border-width:0px;
  7968. word-wrap:break-word;
  7969. text-transform:none;
  7970. }
  7971. #u111230_div {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:0px;
  7975. top:0px;
  7976. width:97px;
  7977. height:22px;
  7978. background:inherit;
  7979. background-color:rgba(255, 255, 255, 0);
  7980. border:none;
  7981. border-radius:0px;
  7982. -moz-box-shadow:none;
  7983. -webkit-box-shadow:none;
  7984. box-shadow:none;
  7985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:16px;
  7989. }
  7990. #u111230 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:147px;
  7994. top:466px;
  7995. width:97px;
  7996. height:22px;
  7997. display:flex;
  7998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7999. font-weight:400;
  8000. font-style:normal;
  8001. font-size:16px;
  8002. }
  8003. #u111230 .text {
  8004. position:absolute;
  8005. align-self:flex-start;
  8006. padding:0px 0px 0px 0px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u111230_text {
  8011. border-width:0px;
  8012. word-wrap:break-word;
  8013. text-transform:none;
  8014. }
  8015. #u111231_div {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:97px;
  8021. height:22px;
  8022. background:inherit;
  8023. background-color:rgba(255, 255, 255, 0);
  8024. border:none;
  8025. border-radius:0px;
  8026. -moz-box-shadow:none;
  8027. -webkit-box-shadow:none;
  8028. box-shadow:none;
  8029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8030. font-weight:400;
  8031. font-style:normal;
  8032. font-size:16px;
  8033. }
  8034. #u111231 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:147px;
  8038. top:508px;
  8039. width:97px;
  8040. height:22px;
  8041. display:flex;
  8042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:16px;
  8046. }
  8047. #u111231 .text {
  8048. position:absolute;
  8049. align-self:flex-start;
  8050. padding:0px 0px 0px 0px;
  8051. box-sizing:border-box;
  8052. width:100%;
  8053. }
  8054. #u111231_text {
  8055. border-width:0px;
  8056. word-wrap:break-word;
  8057. text-transform:none;
  8058. }
  8059. #u111232_div {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:0px;
  8063. top:0px;
  8064. width:97px;
  8065. height:22px;
  8066. background:inherit;
  8067. background-color:rgba(255, 255, 255, 0);
  8068. border:none;
  8069. border-radius:0px;
  8070. -moz-box-shadow:none;
  8071. -webkit-box-shadow:none;
  8072. box-shadow:none;
  8073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8074. font-weight:400;
  8075. font-style:normal;
  8076. font-size:16px;
  8077. }
  8078. #u111232 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:147px;
  8082. top:550px;
  8083. width:97px;
  8084. height:22px;
  8085. display:flex;
  8086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8087. font-weight:400;
  8088. font-style:normal;
  8089. font-size:16px;
  8090. }
  8091. #u111232 .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. #u111232_text {
  8099. border-width:0px;
  8100. word-wrap:break-word;
  8101. text-transform:none;
  8102. }
  8103. #u111233_div {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:0px;
  8107. top:0px;
  8108. width:97px;
  8109. height:22px;
  8110. background:inherit;
  8111. background-color:rgba(255, 255, 255, 0);
  8112. border:none;
  8113. border-radius:0px;
  8114. -moz-box-shadow:none;
  8115. -webkit-box-shadow:none;
  8116. box-shadow:none;
  8117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8118. font-weight:400;
  8119. font-style:normal;
  8120. font-size:16px;
  8121. }
  8122. #u111233 {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:147px;
  8126. top:592px;
  8127. width:97px;
  8128. height:22px;
  8129. display:flex;
  8130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8131. font-weight:400;
  8132. font-style:normal;
  8133. font-size:16px;
  8134. }
  8135. #u111233 .text {
  8136. position:absolute;
  8137. align-self:flex-start;
  8138. padding:0px 0px 0px 0px;
  8139. box-sizing:border-box;
  8140. width:100%;
  8141. }
  8142. #u111233_text {
  8143. border-width:0px;
  8144. word-wrap:break-word;
  8145. text-transform:none;
  8146. }
  8147. #u111234_div {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:0px;
  8151. top:0px;
  8152. width:97px;
  8153. height:22px;
  8154. background:inherit;
  8155. background-color:rgba(255, 255, 255, 0);
  8156. border:none;
  8157. border-radius:0px;
  8158. -moz-box-shadow:none;
  8159. -webkit-box-shadow:none;
  8160. box-shadow:none;
  8161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8162. font-weight:400;
  8163. font-style:normal;
  8164. font-size:16px;
  8165. }
  8166. #u111234 {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:147px;
  8170. top:634px;
  8171. width:97px;
  8172. height:22px;
  8173. display:flex;
  8174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8175. font-weight:400;
  8176. font-style:normal;
  8177. font-size:16px;
  8178. }
  8179. #u111234 .text {
  8180. position:absolute;
  8181. align-self:flex-start;
  8182. padding:0px 0px 0px 0px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u111234_text {
  8187. border-width:0px;
  8188. word-wrap:break-word;
  8189. text-transform:none;
  8190. }
  8191. #u111235_img {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:201px;
  8197. height:2px;
  8198. }
  8199. #u111235 {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:120px;
  8203. top:680px;
  8204. width:200px;
  8205. height:1px;
  8206. display:flex;
  8207. }
  8208. #u111235 .text {
  8209. position:absolute;
  8210. align-self:center;
  8211. padding:2px 2px 2px 2px;
  8212. box-sizing:border-box;
  8213. width:100%;
  8214. }
  8215. #u111235_text {
  8216. border-width:0px;
  8217. word-wrap:break-word;
  8218. text-transform:none;
  8219. visibility:hidden;
  8220. }
  8221. #u111236_div {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:49px;
  8227. height:17px;
  8228. background:inherit;
  8229. background-color:rgba(255, 255, 255, 0);
  8230. border:none;
  8231. border-radius:0px;
  8232. -moz-box-shadow:none;
  8233. -webkit-box-shadow:none;
  8234. box-shadow:none;
  8235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8236. font-weight:400;
  8237. font-style:normal;
  8238. font-size:12px;
  8239. color:#AAAAAA;
  8240. }
  8241. #u111236 {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:147px;
  8245. top:886px;
  8246. width:49px;
  8247. height:17px;
  8248. display:flex;
  8249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8250. font-weight:400;
  8251. font-style:normal;
  8252. font-size:12px;
  8253. color:#AAAAAA;
  8254. }
  8255. #u111236 .text {
  8256. position:absolute;
  8257. align-self:flex-start;
  8258. padding:0px 0px 0px 0px;
  8259. box-sizing:border-box;
  8260. width:100%;
  8261. }
  8262. #u111236_text {
  8263. border-width:0px;
  8264. white-space:nowrap;
  8265. text-transform:none;
  8266. }
  8267. #u111237_div {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:0px;
  8271. top:0px;
  8272. width:113px;
  8273. height:22px;
  8274. background:inherit;
  8275. background-color:rgba(255, 255, 255, 0);
  8276. border:none;
  8277. border-radius:0px;
  8278. -moz-box-shadow:none;
  8279. -webkit-box-shadow:none;
  8280. box-shadow:none;
  8281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8282. font-weight:400;
  8283. font-style:normal;
  8284. font-size:16px;
  8285. }
  8286. #u111237 {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:147px;
  8290. top:923px;
  8291. width:113px;
  8292. height:22px;
  8293. display:flex;
  8294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8295. font-weight:400;
  8296. font-style:normal;
  8297. font-size:16px;
  8298. }
  8299. #u111237 .text {
  8300. position:absolute;
  8301. align-self:flex-start;
  8302. padding:0px 0px 0px 0px;
  8303. box-sizing:border-box;
  8304. width:100%;
  8305. }
  8306. #u111237_text {
  8307. border-width:0px;
  8308. white-space:nowrap;
  8309. text-transform:none;
  8310. }
  8311. #u111238_div {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:145px;
  8317. height:22px;
  8318. background:inherit;
  8319. background-color:rgba(255, 255, 255, 0);
  8320. border:none;
  8321. border-radius:0px;
  8322. -moz-box-shadow:none;
  8323. -webkit-box-shadow:none;
  8324. box-shadow:none;
  8325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:16px;
  8329. }
  8330. #u111238 {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:147px;
  8334. top:965px;
  8335. width:145px;
  8336. height:22px;
  8337. display:flex;
  8338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8339. font-weight:400;
  8340. font-style:normal;
  8341. font-size:16px;
  8342. }
  8343. #u111238 .text {
  8344. position:absolute;
  8345. align-self:flex-start;
  8346. padding:0px 0px 0px 0px;
  8347. box-sizing:border-box;
  8348. width:100%;
  8349. }
  8350. #u111238_text {
  8351. border-width:0px;
  8352. white-space:nowrap;
  8353. text-transform:none;
  8354. }
  8355. #u111239_div {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:0px;
  8359. top:0px;
  8360. width:145px;
  8361. height:22px;
  8362. background:inherit;
  8363. background-color:rgba(255, 255, 255, 0);
  8364. border:none;
  8365. border-radius:0px;
  8366. -moz-box-shadow:none;
  8367. -webkit-box-shadow:none;
  8368. box-shadow:none;
  8369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8370. font-weight:400;
  8371. font-style:normal;
  8372. font-size:16px;
  8373. }
  8374. #u111239 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:147px;
  8378. top:1007px;
  8379. width:145px;
  8380. height:22px;
  8381. display:flex;
  8382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8383. font-weight:400;
  8384. font-style:normal;
  8385. font-size:16px;
  8386. }
  8387. #u111239 .text {
  8388. position:absolute;
  8389. align-self:flex-start;
  8390. padding:0px 0px 0px 0px;
  8391. box-sizing:border-box;
  8392. width:100%;
  8393. }
  8394. #u111239_text {
  8395. border-width:0px;
  8396. white-space:nowrap;
  8397. text-transform:none;
  8398. }
  8399. #u111240_div {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:0px;
  8403. top:0px;
  8404. width:145px;
  8405. height:22px;
  8406. background:inherit;
  8407. background-color:rgba(255, 255, 255, 0);
  8408. border:none;
  8409. border-radius:0px;
  8410. -moz-box-shadow:none;
  8411. -webkit-box-shadow:none;
  8412. box-shadow:none;
  8413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8414. font-weight:400;
  8415. font-style:normal;
  8416. font-size:16px;
  8417. }
  8418. #u111240 {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:147px;
  8422. top:1049px;
  8423. width:145px;
  8424. height:22px;
  8425. display:flex;
  8426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8427. font-weight:400;
  8428. font-style:normal;
  8429. font-size:16px;
  8430. }
  8431. #u111240 .text {
  8432. position:absolute;
  8433. align-self:flex-start;
  8434. padding:0px 0px 0px 0px;
  8435. box-sizing:border-box;
  8436. width:100%;
  8437. }
  8438. #u111240_text {
  8439. border-width:0px;
  8440. white-space:nowrap;
  8441. text-transform:none;
  8442. }
  8443. #u111241_div {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:145px;
  8449. height:22px;
  8450. background:inherit;
  8451. background-color:rgba(255, 255, 255, 0);
  8452. border:none;
  8453. border-radius:0px;
  8454. -moz-box-shadow:none;
  8455. -webkit-box-shadow:none;
  8456. box-shadow:none;
  8457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:16px;
  8461. }
  8462. #u111241 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:147px;
  8466. top:1091px;
  8467. width:145px;
  8468. height:22px;
  8469. display:flex;
  8470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8471. font-weight:400;
  8472. font-style:normal;
  8473. font-size:16px;
  8474. }
  8475. #u111241 .text {
  8476. position:absolute;
  8477. align-self:flex-start;
  8478. padding:0px 0px 0px 0px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u111241_text {
  8483. border-width:0px;
  8484. white-space:nowrap;
  8485. text-transform:none;
  8486. }
  8487. #u111242_div {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:113px;
  8493. height:22px;
  8494. background:inherit;
  8495. background-color:rgba(255, 255, 255, 0);
  8496. border:none;
  8497. border-radius:0px;
  8498. -moz-box-shadow:none;
  8499. -webkit-box-shadow:none;
  8500. box-shadow:none;
  8501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8502. font-weight:400;
  8503. font-style:normal;
  8504. font-size:16px;
  8505. }
  8506. #u111242 {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:147px;
  8510. top:1133px;
  8511. width:113px;
  8512. height:22px;
  8513. display:flex;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:16px;
  8518. }
  8519. #u111242 .text {
  8520. position:absolute;
  8521. align-self:flex-start;
  8522. padding:0px 0px 0px 0px;
  8523. box-sizing:border-box;
  8524. width:100%;
  8525. }
  8526. #u111242_text {
  8527. border-width:0px;
  8528. white-space:nowrap;
  8529. text-transform:none;
  8530. }
  8531. #u111243_div {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:0px;
  8535. top:0px;
  8536. width:97px;
  8537. height:22px;
  8538. background:inherit;
  8539. background-color:rgba(255, 255, 255, 0);
  8540. border:none;
  8541. border-radius:0px;
  8542. -moz-box-shadow:none;
  8543. -webkit-box-shadow:none;
  8544. box-shadow:none;
  8545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8546. font-weight:400;
  8547. font-style:normal;
  8548. font-size:16px;
  8549. }
  8550. #u111243 {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:147px;
  8554. top:1585px;
  8555. width:97px;
  8556. height:22px;
  8557. display:flex;
  8558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8559. font-weight:400;
  8560. font-style:normal;
  8561. font-size:16px;
  8562. }
  8563. #u111243 .text {
  8564. position:absolute;
  8565. align-self:flex-start;
  8566. padding:0px 0px 0px 0px;
  8567. box-sizing:border-box;
  8568. width:100%;
  8569. }
  8570. #u111243_text {
  8571. border-width:0px;
  8572. white-space:nowrap;
  8573. text-transform:none;
  8574. }
  8575. #u111244_div {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:97px;
  8581. height:22px;
  8582. background:inherit;
  8583. background-color:rgba(255, 255, 255, 0);
  8584. border:none;
  8585. border-radius:0px;
  8586. -moz-box-shadow:none;
  8587. -webkit-box-shadow:none;
  8588. box-shadow:none;
  8589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8590. font-weight:400;
  8591. font-style:normal;
  8592. font-size:16px;
  8593. }
  8594. #u111244 {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:147px;
  8598. top:1627px;
  8599. width:97px;
  8600. height:22px;
  8601. display:flex;
  8602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8603. font-weight:400;
  8604. font-style:normal;
  8605. font-size:16px;
  8606. }
  8607. #u111244 .text {
  8608. position:absolute;
  8609. align-self:flex-start;
  8610. padding:0px 0px 0px 0px;
  8611. box-sizing:border-box;
  8612. width:100%;
  8613. }
  8614. #u111244_text {
  8615. border-width:0px;
  8616. white-space:nowrap;
  8617. text-transform:none;
  8618. }
  8619. #u111245_div {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:0px;
  8623. top:0px;
  8624. width:97px;
  8625. height:22px;
  8626. background:inherit;
  8627. background-color:rgba(255, 255, 255, 0);
  8628. border:none;
  8629. border-radius:0px;
  8630. -moz-box-shadow:none;
  8631. -webkit-box-shadow:none;
  8632. box-shadow:none;
  8633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8634. font-weight:400;
  8635. font-style:normal;
  8636. font-size:16px;
  8637. }
  8638. #u111245 {
  8639. border-width:0px;
  8640. position:absolute;
  8641. left:147px;
  8642. top:1669px;
  8643. width:97px;
  8644. height:22px;
  8645. display:flex;
  8646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8647. font-weight:400;
  8648. font-style:normal;
  8649. font-size:16px;
  8650. }
  8651. #u111245 .text {
  8652. position:absolute;
  8653. align-self:flex-start;
  8654. padding:0px 0px 0px 0px;
  8655. box-sizing:border-box;
  8656. width:100%;
  8657. }
  8658. #u111245_text {
  8659. border-width:0px;
  8660. white-space:nowrap;
  8661. text-transform:none;
  8662. }
  8663. #u111246_div {
  8664. border-width:0px;
  8665. position:absolute;
  8666. left:0px;
  8667. top:0px;
  8668. width:97px;
  8669. height:22px;
  8670. background:inherit;
  8671. background-color:rgba(255, 255, 255, 0);
  8672. border:none;
  8673. border-radius:0px;
  8674. -moz-box-shadow:none;
  8675. -webkit-box-shadow:none;
  8676. box-shadow:none;
  8677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:16px;
  8681. }
  8682. #u111246 {
  8683. border-width:0px;
  8684. position:absolute;
  8685. left:147px;
  8686. top:1711px;
  8687. width:97px;
  8688. height:22px;
  8689. display:flex;
  8690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8691. font-weight:400;
  8692. font-style:normal;
  8693. font-size:16px;
  8694. }
  8695. #u111246 .text {
  8696. position:absolute;
  8697. align-self:flex-start;
  8698. padding:0px 0px 0px 0px;
  8699. box-sizing:border-box;
  8700. width:100%;
  8701. }
  8702. #u111246_text {
  8703. border-width:0px;
  8704. white-space:nowrap;
  8705. text-transform:none;
  8706. }
  8707. #u111247_div {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:97px;
  8713. height:22px;
  8714. background:inherit;
  8715. background-color:rgba(255, 255, 255, 0);
  8716. border:none;
  8717. border-radius:0px;
  8718. -moz-box-shadow:none;
  8719. -webkit-box-shadow:none;
  8720. box-shadow:none;
  8721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8722. font-weight:400;
  8723. font-style:normal;
  8724. font-size:16px;
  8725. }
  8726. #u111247 {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:147px;
  8730. top:824px;
  8731. width:97px;
  8732. height:22px;
  8733. display:flex;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:16px;
  8738. }
  8739. #u111247 .text {
  8740. position:absolute;
  8741. align-self:flex-start;
  8742. padding:0px 0px 0px 0px;
  8743. box-sizing:border-box;
  8744. width:100%;
  8745. }
  8746. #u111247_text {
  8747. border-width:0px;
  8748. word-wrap:break-word;
  8749. text-transform:none;
  8750. }
  8751. #u111248_div {
  8752. border-width:0px;
  8753. position:absolute;
  8754. left:0px;
  8755. top:0px;
  8756. width:97px;
  8757. height:22px;
  8758. background:inherit;
  8759. background-color:rgba(255, 255, 255, 0);
  8760. border:none;
  8761. border-radius:0px;
  8762. -moz-box-shadow:none;
  8763. -webkit-box-shadow:none;
  8764. box-shadow:none;
  8765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8766. font-weight:400;
  8767. font-style:normal;
  8768. font-size:16px;
  8769. }
  8770. #u111248 {
  8771. border-width:0px;
  8772. position:absolute;
  8773. left:147px;
  8774. top:738px;
  8775. width:97px;
  8776. height:22px;
  8777. display:flex;
  8778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8779. font-weight:400;
  8780. font-style:normal;
  8781. font-size:16px;
  8782. }
  8783. #u111248 .text {
  8784. position:absolute;
  8785. align-self:flex-start;
  8786. padding:0px 0px 0px 0px;
  8787. box-sizing:border-box;
  8788. width:100%;
  8789. }
  8790. #u111248_text {
  8791. border-width:0px;
  8792. word-wrap:break-word;
  8793. text-transform:none;
  8794. }
  8795. #u111249_div {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:0px;
  8799. top:0px;
  8800. width:49px;
  8801. height:17px;
  8802. background:inherit;
  8803. background-color:rgba(255, 255, 255, 0);
  8804. border:none;
  8805. border-radius:0px;
  8806. -moz-box-shadow:none;
  8807. -webkit-box-shadow:none;
  8808. box-shadow:none;
  8809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8810. font-weight:400;
  8811. font-style:normal;
  8812. font-size:12px;
  8813. color:#AAAAAA;
  8814. }
  8815. #u111249 {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:147px;
  8819. top:701px;
  8820. width:49px;
  8821. height:17px;
  8822. display:flex;
  8823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8824. font-weight:400;
  8825. font-style:normal;
  8826. font-size:12px;
  8827. color:#AAAAAA;
  8828. }
  8829. #u111249 .text {
  8830. position:absolute;
  8831. align-self:flex-start;
  8832. padding:0px 0px 0px 0px;
  8833. box-sizing:border-box;
  8834. width:100%;
  8835. }
  8836. #u111249_text {
  8837. border-width:0px;
  8838. white-space:nowrap;
  8839. text-transform:none;
  8840. }
  8841. #u111250_div {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:0px;
  8845. top:0px;
  8846. width:97px;
  8847. height:22px;
  8848. background:inherit;
  8849. background-color:rgba(255, 255, 255, 0);
  8850. border:none;
  8851. border-radius:0px;
  8852. -moz-box-shadow:none;
  8853. -webkit-box-shadow:none;
  8854. box-shadow:none;
  8855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8856. font-weight:400;
  8857. font-style:normal;
  8858. font-size:16px;
  8859. }
  8860. #u111250 {
  8861. border-width:0px;
  8862. position:absolute;
  8863. left:147px;
  8864. top:780px;
  8865. width:97px;
  8866. height:22px;
  8867. display:flex;
  8868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8869. font-weight:400;
  8870. font-style:normal;
  8871. font-size:16px;
  8872. }
  8873. #u111250 .text {
  8874. position:absolute;
  8875. align-self:flex-start;
  8876. padding:0px 0px 0px 0px;
  8877. box-sizing:border-box;
  8878. width:100%;
  8879. }
  8880. #u111250_text {
  8881. border-width:0px;
  8882. word-wrap:break-word;
  8883. text-transform:none;
  8884. }
  8885. #u111251_img {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:0px;
  8889. top:0px;
  8890. width:201px;
  8891. height:2px;
  8892. }
  8893. #u111251 {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:120px;
  8897. top:866px;
  8898. width:200px;
  8899. height:1px;
  8900. display:flex;
  8901. }
  8902. #u111251 .text {
  8903. position:absolute;
  8904. align-self:center;
  8905. padding:2px 2px 2px 2px;
  8906. box-sizing:border-box;
  8907. width:100%;
  8908. }
  8909. #u111251_text {
  8910. border-width:0px;
  8911. word-wrap:break-word;
  8912. text-transform:none;
  8913. visibility:hidden;
  8914. }
  8915. #u111252_div {
  8916. border-width:0px;
  8917. position:absolute;
  8918. left:0px;
  8919. top:0px;
  8920. width:97px;
  8921. height:22px;
  8922. background:inherit;
  8923. background-color:rgba(255, 255, 255, 0);
  8924. border:none;
  8925. border-radius:0px;
  8926. -moz-box-shadow:none;
  8927. -webkit-box-shadow:none;
  8928. box-shadow:none;
  8929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8930. font-weight:400;
  8931. font-style:normal;
  8932. font-size:16px;
  8933. }
  8934. #u111252 {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:147px;
  8938. top:1237px;
  8939. width:97px;
  8940. height:22px;
  8941. display:flex;
  8942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8943. font-weight:400;
  8944. font-style:normal;
  8945. font-size:16px;
  8946. }
  8947. #u111252 .text {
  8948. position:absolute;
  8949. align-self:flex-start;
  8950. padding:0px 0px 0px 0px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u111252_text {
  8955. border-width:0px;
  8956. word-wrap:break-word;
  8957. text-transform:none;
  8958. }
  8959. #u111253_div {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:0px;
  8964. width:49px;
  8965. height:17px;
  8966. background:inherit;
  8967. background-color:rgba(255, 255, 255, 0);
  8968. border:none;
  8969. border-radius:0px;
  8970. -moz-box-shadow:none;
  8971. -webkit-box-shadow:none;
  8972. box-shadow:none;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. font-size:12px;
  8977. color:#AAAAAA;
  8978. }
  8979. #u111253 {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:147px;
  8983. top:1201px;
  8984. width:49px;
  8985. height:17px;
  8986. display:flex;
  8987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:12px;
  8991. color:#AAAAAA;
  8992. }
  8993. #u111253 .text {
  8994. position:absolute;
  8995. align-self:flex-start;
  8996. padding:0px 0px 0px 0px;
  8997. box-sizing:border-box;
  8998. width:100%;
  8999. }
  9000. #u111253_text {
  9001. border-width:0px;
  9002. white-space:nowrap;
  9003. text-transform:none;
  9004. }
  9005. #u111254_div {
  9006. border-width:0px;
  9007. position:absolute;
  9008. left:0px;
  9009. top:0px;
  9010. width:97px;
  9011. height:22px;
  9012. background:inherit;
  9013. background-color:rgba(255, 255, 255, 0);
  9014. border:none;
  9015. border-radius:0px;
  9016. -moz-box-shadow:none;
  9017. -webkit-box-shadow:none;
  9018. box-shadow:none;
  9019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9020. font-weight:400;
  9021. font-style:normal;
  9022. font-size:16px;
  9023. }
  9024. #u111254 {
  9025. border-width:0px;
  9026. position:absolute;
  9027. left:147px;
  9028. top:1279px;
  9029. width:97px;
  9030. height:22px;
  9031. display:flex;
  9032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9033. font-weight:400;
  9034. font-style:normal;
  9035. font-size:16px;
  9036. }
  9037. #u111254 .text {
  9038. position:absolute;
  9039. align-self:flex-start;
  9040. padding:0px 0px 0px 0px;
  9041. box-sizing:border-box;
  9042. width:100%;
  9043. }
  9044. #u111254_text {
  9045. border-width:0px;
  9046. word-wrap:break-word;
  9047. text-transform:none;
  9048. }
  9049. #u111255_div {
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:0px;
  9053. top:0px;
  9054. width:97px;
  9055. height:22px;
  9056. background:inherit;
  9057. background-color:rgba(255, 255, 255, 0);
  9058. border:none;
  9059. border-radius:0px;
  9060. -moz-box-shadow:none;
  9061. -webkit-box-shadow:none;
  9062. box-shadow:none;
  9063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:16px;
  9067. }
  9068. #u111255 {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:147px;
  9072. top:1321px;
  9073. width:97px;
  9074. height:22px;
  9075. display:flex;
  9076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9077. font-weight:400;
  9078. font-style:normal;
  9079. font-size:16px;
  9080. }
  9081. #u111255 .text {
  9082. position:absolute;
  9083. align-self:flex-start;
  9084. padding:0px 0px 0px 0px;
  9085. box-sizing:border-box;
  9086. width:100%;
  9087. }
  9088. #u111255_text {
  9089. border-width:0px;
  9090. word-wrap:break-word;
  9091. text-transform:none;
  9092. }
  9093. #u111256_div {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:97px;
  9099. height:22px;
  9100. background:inherit;
  9101. background-color:rgba(255, 255, 255, 0);
  9102. border:none;
  9103. border-radius:0px;
  9104. -moz-box-shadow:none;
  9105. -webkit-box-shadow:none;
  9106. box-shadow:none;
  9107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9108. font-weight:400;
  9109. font-style:normal;
  9110. font-size:16px;
  9111. }
  9112. #u111256 {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:147px;
  9116. top:1363px;
  9117. width:97px;
  9118. height:22px;
  9119. display:flex;
  9120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9121. font-weight:400;
  9122. font-style:normal;
  9123. font-size:16px;
  9124. }
  9125. #u111256 .text {
  9126. position:absolute;
  9127. align-self:flex-start;
  9128. padding:0px 0px 0px 0px;
  9129. box-sizing:border-box;
  9130. width:100%;
  9131. }
  9132. #u111256_text {
  9133. border-width:0px;
  9134. word-wrap:break-word;
  9135. text-transform:none;
  9136. }
  9137. #u111257_img {
  9138. border-width:0px;
  9139. position:absolute;
  9140. left:0px;
  9141. top:0px;
  9142. width:201px;
  9143. height:2px;
  9144. }
  9145. #u111257 {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:120px;
  9149. top:1403px;
  9150. width:200px;
  9151. height:1px;
  9152. display:flex;
  9153. }
  9154. #u111257 .text {
  9155. position:absolute;
  9156. align-self:center;
  9157. padding:2px 2px 2px 2px;
  9158. box-sizing:border-box;
  9159. width:100%;
  9160. }
  9161. #u111257_text {
  9162. border-width:0px;
  9163. word-wrap:break-word;
  9164. text-transform:none;
  9165. visibility:hidden;
  9166. }