styles.css 148 KB

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