styles.css 197 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1792px;
  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. #u38994_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u38994 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u38994 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u38994_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u38995_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u38995 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u38995 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u38995_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u38996 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u38997_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u38997 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u38997 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u38997_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u38998 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u38999_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u38999 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u38999 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u38999_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u39000_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u39000 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u39000 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u39000_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u39001 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u39002_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u39002 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u39002 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u39002_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u39003_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u39003 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u39003 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u39003_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u39004_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u39004 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u39004 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u39004_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u39005_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u39005 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u39005 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u39005_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u39006_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u39006 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u39006 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u39006_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u39007_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u39007 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u39007 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u39007_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u39008 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u39009_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u39009 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u39009 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u39009_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u39010_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u39010 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u39010 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u39010_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u39011 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u39012_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u39012 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u39012 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u39012_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u39013_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u39013 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u39013 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u39013_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u39014_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u39014 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u39014 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u39014_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u39015 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u39016_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u39016 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u39016 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u39016_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u39017_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u39017 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u39017 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u39017_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u39018 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u39019_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u39019 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u39019 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u39019_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u39020_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u39020 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u39020 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u39020_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u39021_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:1417px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:35px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u39021 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:106px;
  802. width:375px;
  803. height:1417px;
  804. display:flex;
  805. }
  806. #u39021 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u39021_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u39022_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:44px;
  826. }
  827. #u39022 {
  828. border-width:0px;
  829. position:absolute;
  830. left:29px;
  831. top:24px;
  832. width:375px;
  833. height:44px;
  834. display:flex;
  835. }
  836. #u39022 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u39022_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u39023 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u39024_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:88px;
  863. height:32px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 1);
  866. box-sizing:border-box;
  867. border-width:1px;
  868. border-style:solid;
  869. border-color:rgba(242, 242, 242, 1);
  870. border-radius:33px;
  871. -moz-box-shadow:none;
  872. -webkit-box-shadow:none;
  873. box-shadow:none;
  874. }
  875. #u39024 {
  876. border-width:0px;
  877. position:absolute;
  878. left:309px;
  879. top:71px;
  880. width:88px;
  881. height:32px;
  882. display:flex;
  883. }
  884. #u39024 .text {
  885. position:absolute;
  886. align-self:center;
  887. padding:2px 2px 2px 2px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u39024_text {
  892. border-width:0px;
  893. word-wrap:break-word;
  894. text-transform:none;
  895. visibility:hidden;
  896. }
  897. #u39025 {
  898. border-width:0px;
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:0px;
  903. height:0px;
  904. }
  905. #u39026_img {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:18px;
  911. height:18px;
  912. }
  913. #u39026 {
  914. border-width:0px;
  915. position:absolute;
  916. left:372px;
  917. top:78px;
  918. width:18px;
  919. height:18px;
  920. display:flex;
  921. }
  922. #u39026 .text {
  923. position:absolute;
  924. align-self:center;
  925. padding:2px 2px 2px 2px;
  926. box-sizing:border-box;
  927. width:100%;
  928. }
  929. #u39026_text {
  930. border-width:0px;
  931. word-wrap:break-word;
  932. text-transform:none;
  933. visibility:hidden;
  934. }
  935. #u39027_img {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:6px;
  941. height:6px;
  942. }
  943. #u39027 {
  944. border-width:0px;
  945. position:absolute;
  946. left:378px;
  947. top:84px;
  948. width:6px;
  949. height:6px;
  950. display:flex;
  951. }
  952. #u39027 .text {
  953. position:absolute;
  954. align-self:center;
  955. padding:2px 2px 2px 2px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u39027_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. visibility:hidden;
  964. }
  965. #u39028 {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:0px;
  971. height:0px;
  972. }
  973. #u39029_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:5px;
  979. height:5px;
  980. }
  981. #u39029 {
  982. border-width:0px;
  983. position:absolute;
  984. left:323px;
  985. top:85px;
  986. width:5px;
  987. height:5px;
  988. display:flex;
  989. }
  990. #u39029 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u39029_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u39030_img {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:5px;
  1009. height:5px;
  1010. }
  1011. #u39030 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:339px;
  1015. top:85px;
  1016. width:5px;
  1017. height:5px;
  1018. display:flex;
  1019. }
  1020. #u39030 .text {
  1021. position:absolute;
  1022. align-self:center;
  1023. padding:2px 2px 2px 2px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u39030_text {
  1028. border-width:0px;
  1029. word-wrap:break-word;
  1030. text-transform:none;
  1031. visibility:hidden;
  1032. }
  1033. #u39031_img {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:7px;
  1039. height:7px;
  1040. }
  1041. #u39031 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:330px;
  1045. top:84px;
  1046. width:7px;
  1047. height:7px;
  1048. display:flex;
  1049. }
  1050. #u39031 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u39031_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u39032_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:19px;
  1069. height:2px;
  1070. }
  1071. #u39032 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:347px;
  1075. top:87px;
  1076. width:18px;
  1077. height:1px;
  1078. display:flex;
  1079. -webkit-transform:rotate(90deg);
  1080. -moz-transform:rotate(90deg);
  1081. -ms-transform:rotate(90deg);
  1082. transform:rotate(90deg);
  1083. }
  1084. #u39032 .text {
  1085. position:absolute;
  1086. align-self:center;
  1087. padding:2px 2px 2px 2px;
  1088. box-sizing:border-box;
  1089. width:100%;
  1090. }
  1091. #u39032_text {
  1092. border-width:0px;
  1093. word-wrap:break-word;
  1094. text-transform:none;
  1095. visibility:hidden;
  1096. }
  1097. #u39033_div {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:65px;
  1103. height:22px;
  1104. background:inherit;
  1105. background-color:rgba(255, 255, 255, 0);
  1106. border:none;
  1107. border-radius:0px;
  1108. -moz-box-shadow:none;
  1109. -webkit-box-shadow:none;
  1110. box-shadow:none;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:16px;
  1115. color:#000000;
  1116. }
  1117. #u39033 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:174px;
  1121. top:78px;
  1122. width:65px;
  1123. height:22px;
  1124. display:flex;
  1125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1126. font-weight:400;
  1127. font-style:normal;
  1128. font-size:16px;
  1129. color:#000000;
  1130. }
  1131. #u39033 .text {
  1132. position:absolute;
  1133. align-self:flex-start;
  1134. padding:0px 0px 0px 0px;
  1135. box-sizing:border-box;
  1136. width:100%;
  1137. }
  1138. #u39033_text {
  1139. border-width:0px;
  1140. white-space:nowrap;
  1141. text-transform:none;
  1142. }
  1143. #u39034_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:12px;
  1149. height:12px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 0);
  1152. box-sizing:border-box;
  1153. border-width:2px;
  1154. border-style:solid;
  1155. border-color:rgba(51, 51, 51, 1);
  1156. border-right:0px;
  1157. border-bottom:0px;
  1158. border-radius:0px;
  1159. border-top-right-radius:0px;
  1160. border-bottom-left-radius:0px;
  1161. -moz-box-shadow:none;
  1162. -webkit-box-shadow:none;
  1163. box-shadow:none;
  1164. }
  1165. #u39034 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:46px;
  1169. top:81px;
  1170. width:12px;
  1171. height:12px;
  1172. display:flex;
  1173. -webkit-transform:rotate(315deg);
  1174. -moz-transform:rotate(315deg);
  1175. -ms-transform:rotate(315deg);
  1176. transform:rotate(315deg);
  1177. }
  1178. #u39034 .text {
  1179. position:absolute;
  1180. align-self:center;
  1181. padding:2px 2px 2px 2px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u39034_text {
  1186. border-width:0px;
  1187. word-wrap:break-word;
  1188. text-transform:none;
  1189. visibility:hidden;
  1190. }
  1191. #u39035_img {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:0px;
  1195. top:0px;
  1196. width:23px;
  1197. height:23px;
  1198. }
  1199. #u39035 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:73px;
  1203. top:76px;
  1204. width:23px;
  1205. height:23px;
  1206. display:flex;
  1207. }
  1208. #u39035 .text {
  1209. position:absolute;
  1210. align-self:center;
  1211. padding:2px 2px 2px 2px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u39035_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. visibility:hidden;
  1220. }
  1221. #u39036 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:0px;
  1227. height:0px;
  1228. }
  1229. #u39037_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:375px;
  1235. height:50px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 1);
  1238. box-sizing:border-box;
  1239. border-width:1px;
  1240. border-style:solid;
  1241. border-color:rgba(242, 242, 242, 1);
  1242. border-radius:26px;
  1243. border-top-left-radius:0px;
  1244. border-top-right-radius:0px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. }
  1249. #u39037 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:29px;
  1253. top:1473px;
  1254. width:375px;
  1255. height:50px;
  1256. display:flex;
  1257. }
  1258. #u39037 .text {
  1259. position:absolute;
  1260. align-self:center;
  1261. padding:2px 2px 2px 2px;
  1262. box-sizing:border-box;
  1263. width:100%;
  1264. }
  1265. #u39037_text {
  1266. border-width:0px;
  1267. word-wrap:break-word;
  1268. text-transform:none;
  1269. visibility:hidden;
  1270. }
  1271. #u39038 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:0px;
  1277. height:0px;
  1278. }
  1279. #u39039_img {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:24px;
  1285. height:24px;
  1286. }
  1287. #u39039 {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:307px;
  1291. top:1477px;
  1292. width:24px;
  1293. height:24px;
  1294. display:flex;
  1295. font-size:8px;
  1296. }
  1297. #u39039 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u39039_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. }
  1309. #u39040_div {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:0px;
  1314. width:49px;
  1315. height:17px;
  1316. background:inherit;
  1317. background-color:rgba(255, 255, 255, 0);
  1318. border:none;
  1319. border-radius:0px;
  1320. -moz-box-shadow:none;
  1321. -webkit-box-shadow:none;
  1322. box-shadow:none;
  1323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:12px;
  1327. }
  1328. #u39040 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:295px;
  1332. top:1502px;
  1333. width:49px;
  1334. height:17px;
  1335. display:flex;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:12px;
  1340. }
  1341. #u39040 .text {
  1342. position:absolute;
  1343. align-self:flex-start;
  1344. padding:0px 0px 0px 0px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u39040_text {
  1349. border-width:0px;
  1350. white-space:nowrap;
  1351. text-transform:none;
  1352. }
  1353. #u39041 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:0px;
  1359. height:0px;
  1360. }
  1361. #u39042_div {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:49px;
  1367. height:17px;
  1368. background:inherit;
  1369. background-color:rgba(255, 255, 255, 0);
  1370. border:none;
  1371. border-radius:0px;
  1372. -moz-box-shadow:none;
  1373. -webkit-box-shadow:none;
  1374. box-shadow:none;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:12px;
  1379. }
  1380. #u39042 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:89px;
  1384. top:1502px;
  1385. width:49px;
  1386. height:17px;
  1387. display:flex;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. }
  1393. #u39042 .text {
  1394. position:absolute;
  1395. align-self:flex-start;
  1396. padding:0px 0px 0px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u39042_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u39043_img {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:24px;
  1411. height:24px;
  1412. }
  1413. #u39043 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:101px;
  1417. top:1477px;
  1418. width:24px;
  1419. height:24px;
  1420. display:flex;
  1421. font-size:8px;
  1422. color:#FFFFFF;
  1423. }
  1424. #u39043 .text {
  1425. position:absolute;
  1426. align-self:center;
  1427. padding:2px 2px 2px 2px;
  1428. box-sizing:border-box;
  1429. width:100%;
  1430. }
  1431. #u39043_text {
  1432. border-width:0px;
  1433. word-wrap:break-word;
  1434. text-transform:none;
  1435. }
  1436. #u39044 {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:0px;
  1440. top:0px;
  1441. width:0px;
  1442. height:0px;
  1443. }
  1444. #u39045_div {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:177px;
  1450. height:250px;
  1451. background:inherit;
  1452. background-color:rgba(255, 255, 255, 1);
  1453. border:none;
  1454. border-radius:0px;
  1455. -moz-box-shadow:none;
  1456. -webkit-box-shadow:none;
  1457. box-shadow:none;
  1458. }
  1459. #u39045 {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:227px;
  1463. top:443px;
  1464. width:177px;
  1465. height:250px;
  1466. display:flex;
  1467. }
  1468. #u39045 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u39045_text {
  1476. border-width:0px;
  1477. word-wrap:break-word;
  1478. text-transform:none;
  1479. visibility:hidden;
  1480. }
  1481. #u39046_div {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:177px;
  1487. height:50px;
  1488. background:inherit;
  1489. background-color:rgba(245, 154, 35, 1);
  1490. box-sizing:border-box;
  1491. border-width:1px;
  1492. border-style:solid;
  1493. border-color:rgba(242, 242, 242, 1);
  1494. border-left:0px;
  1495. border-top:0px;
  1496. border-right:0px;
  1497. border-radius:0px;
  1498. border-bottom-right-radius:0px;
  1499. border-bottom-left-radius:0px;
  1500. -moz-box-shadow:none;
  1501. -webkit-box-shadow:none;
  1502. box-shadow:none;
  1503. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1504. font-weight:500;
  1505. font-style:normal;
  1506. font-size:18px;
  1507. color:#FFFFFF;
  1508. }
  1509. #u39046 {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:227px;
  1513. top:443px;
  1514. width:177px;
  1515. height:50px;
  1516. display:flex;
  1517. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1518. font-weight:500;
  1519. font-style:normal;
  1520. font-size:18px;
  1521. color:#FFFFFF;
  1522. }
  1523. #u39046 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:0px 0px 0px 15px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u39046_text {
  1531. border-width:0px;
  1532. word-wrap:break-word;
  1533. text-transform:none;
  1534. }
  1535. #u39047_div {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:75px;
  1541. height:25px;
  1542. background:inherit;
  1543. background-color:rgba(255, 255, 255, 0);
  1544. border:none;
  1545. border-left:0px;
  1546. border-top:0px;
  1547. border-right:0px;
  1548. border-radius:0px;
  1549. border-bottom-right-radius:0px;
  1550. border-bottom-left-radius:0px;
  1551. -moz-box-shadow:none;
  1552. -webkit-box-shadow:none;
  1553. box-shadow:none;
  1554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1555. font-weight:400;
  1556. font-style:normal;
  1557. font-size:12px;
  1558. color:#AAAAAA;
  1559. line-height:25px;
  1560. }
  1561. #u39047 {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:306px;
  1565. top:509px;
  1566. width:75px;
  1567. height:25px;
  1568. display:flex;
  1569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. font-size:12px;
  1573. color:#AAAAAA;
  1574. line-height:25px;
  1575. }
  1576. #u39047 .text {
  1577. position:absolute;
  1578. align-self:center;
  1579. padding:0px 0px 0px 0px;
  1580. box-sizing:border-box;
  1581. width:100%;
  1582. }
  1583. #u39047_text {
  1584. border-width:0px;
  1585. white-space:nowrap;
  1586. text-transform:none;
  1587. }
  1588. #u39048_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:71px;
  1594. height:25px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 0);
  1597. border:none;
  1598. border-left:0px;
  1599. border-top:0px;
  1600. border-right:0px;
  1601. border-radius:0px;
  1602. border-bottom-right-radius:0px;
  1603. border-bottom-left-radius:0px;
  1604. -moz-box-shadow:none;
  1605. -webkit-box-shadow:none;
  1606. box-shadow:none;
  1607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:10px;
  1611. color:#AAAAAA;
  1612. line-height:25px;
  1613. }
  1614. #u39048 {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:306px;
  1618. top:569px;
  1619. width:71px;
  1620. height:25px;
  1621. display:flex;
  1622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1623. font-weight:400;
  1624. font-style:normal;
  1625. font-size:10px;
  1626. color:#AAAAAA;
  1627. line-height:25px;
  1628. }
  1629. #u39048 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:0px 0px 0px 0px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u39048_text {
  1637. border-width:0px;
  1638. white-space:nowrap;
  1639. text-transform:none;
  1640. }
  1641. #u39049_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:71px;
  1647. height:25px;
  1648. background:inherit;
  1649. background-color:rgba(255, 255, 255, 0);
  1650. border:none;
  1651. border-left:0px;
  1652. border-top:0px;
  1653. border-right:0px;
  1654. border-radius:0px;
  1655. border-bottom-right-radius:0px;
  1656. border-bottom-left-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:10px;
  1664. color:#AAAAAA;
  1665. line-height:25px;
  1666. }
  1667. #u39049 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:306px;
  1671. top:594px;
  1672. width:71px;
  1673. height:25px;
  1674. display:flex;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:10px;
  1679. color:#AAAAAA;
  1680. line-height:25px;
  1681. }
  1682. #u39049 .text {
  1683. position:absolute;
  1684. align-self:center;
  1685. padding:0px 0px 0px 0px;
  1686. box-sizing:border-box;
  1687. width:100%;
  1688. }
  1689. #u39049_text {
  1690. border-width:0px;
  1691. white-space:nowrap;
  1692. text-transform:none;
  1693. }
  1694. #u39050_img {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:58px;
  1700. height:69px;
  1701. }
  1702. #u39050 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:236px;
  1706. top:509px;
  1707. width:58px;
  1708. height:69px;
  1709. display:flex;
  1710. }
  1711. #u39050 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 2px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u39050_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. visibility:hidden;
  1723. }
  1724. #u39051_div {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:153px;
  1730. height:25px;
  1731. background:inherit;
  1732. background-color:rgba(0, 137, 254, 1);
  1733. border:none;
  1734. border-radius:4px;
  1735. -moz-box-shadow:none;
  1736. -webkit-box-shadow:none;
  1737. box-shadow:none;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:12px;
  1742. color:#FFFFFF;
  1743. text-align:center;
  1744. line-height:25px;
  1745. }
  1746. #u39051 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:238px;
  1750. top:655px;
  1751. width:153px;
  1752. height:25px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:12px;
  1758. color:#FFFFFF;
  1759. text-align:center;
  1760. line-height:25px;
  1761. }
  1762. #u39051 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:0px 0px 0px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u39051_text {
  1770. border-width:0px;
  1771. word-wrap:break-word;
  1772. text-transform:none;
  1773. }
  1774. #u39052_div {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:71px;
  1780. height:25px;
  1781. background:inherit;
  1782. background-color:rgba(255, 255, 255, 0);
  1783. border:none;
  1784. border-left:0px;
  1785. border-top:0px;
  1786. border-right:0px;
  1787. border-radius:0px;
  1788. border-bottom-right-radius:0px;
  1789. border-bottom-left-radius:0px;
  1790. -moz-box-shadow:none;
  1791. -webkit-box-shadow:none;
  1792. box-shadow:none;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:10px;
  1797. color:#AAAAAA;
  1798. line-height:25px;
  1799. }
  1800. #u39052 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:306px;
  1804. top:619px;
  1805. width:71px;
  1806. height:25px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:10px;
  1812. color:#AAAAAA;
  1813. line-height:25px;
  1814. }
  1815. #u39052 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:0px 0px 0px 0px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u39052_text {
  1823. border-width:0px;
  1824. white-space:nowrap;
  1825. text-transform:none;
  1826. }
  1827. #u39053_div {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:35px;
  1833. height:15px;
  1834. background:inherit;
  1835. background-color:rgba(255, 255, 255, 1);
  1836. border:none;
  1837. border-radius:12px;
  1838. -moz-box-shadow:none;
  1839. -webkit-box-shadow:none;
  1840. box-shadow:none;
  1841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:10px;
  1845. color:#7B4D12;
  1846. text-align:center;
  1847. line-height:25px;
  1848. }
  1849. #u39053 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:356px;
  1853. top:461px;
  1854. width:35px;
  1855. height:15px;
  1856. display:flex;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:10px;
  1861. color:#7B4D12;
  1862. text-align:center;
  1863. line-height:25px;
  1864. }
  1865. #u39053 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:0px 0px 0px 0px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u39053_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. }
  1877. #u39054_div {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:75px;
  1883. height:25px;
  1884. background:inherit;
  1885. background-color:rgba(255, 255, 255, 0);
  1886. border:none;
  1887. border-left:0px;
  1888. border-top:0px;
  1889. border-right:0px;
  1890. border-radius:0px;
  1891. border-bottom-right-radius:0px;
  1892. border-bottom-left-radius:0px;
  1893. -moz-box-shadow:none;
  1894. -webkit-box-shadow:none;
  1895. box-shadow:none;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:12px;
  1900. color:#AAAAAA;
  1901. line-height:25px;
  1902. }
  1903. #u39054 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:306px;
  1907. top:534px;
  1908. width:75px;
  1909. height:25px;
  1910. display:flex;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. color:#AAAAAA;
  1916. line-height:25px;
  1917. }
  1918. #u39054 .text {
  1919. position:absolute;
  1920. align-self:center;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u39054_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u39055 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:0px;
  1936. height:0px;
  1937. }
  1938. #u39056_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:375px;
  1944. height:50px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 1);
  1947. border:none;
  1948. border-radius:0px;
  1949. -moz-box-shadow:none;
  1950. -webkit-box-shadow:none;
  1951. box-shadow:none;
  1952. }
  1953. #u39056 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:29px;
  1957. top:106px;
  1958. width:375px;
  1959. height:50px;
  1960. display:flex;
  1961. }
  1962. #u39056 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u39056_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. visibility:hidden;
  1974. }
  1975. #u39057 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:0px;
  1981. height:0px;
  1982. }
  1983. #u39058 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:0px;
  1989. height:0px;
  1990. }
  1991. #u39059_div {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:135px;
  1997. height:30px;
  1998. background:inherit;
  1999. background-color:rgba(242, 242, 242, 1);
  2000. border:none;
  2001. border-radius:20px;
  2002. -moz-box-shadow:none;
  2003. -webkit-box-shadow:none;
  2004. box-shadow:none;
  2005. }
  2006. #u39059 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:42px;
  2010. top:116px;
  2011. width:135px;
  2012. height:30px;
  2013. display:flex;
  2014. }
  2015. #u39059 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 2px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u39059_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. visibility:hidden;
  2027. }
  2028. #u39060_input {
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:122px;
  2033. height:22px;
  2034. padding:2px 2px 2px 2px;
  2035. font-family:'ArialMT', 'Arial', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:12px;
  2039. letter-spacing:normal;
  2040. color:#7F7F7F;
  2041. vertical-align:none;
  2042. text-align:left;
  2043. text-transform:none;
  2044. background-color:transparent;
  2045. border-color:transparent;
  2046. }
  2047. #u39060_input.disabled {
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:122px;
  2052. height:22px;
  2053. padding:2px 2px 2px 2px;
  2054. font-family:'ArialMT', 'Arial', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:12px;
  2058. letter-spacing:normal;
  2059. color:#7F7F7F;
  2060. vertical-align:none;
  2061. text-align:left;
  2062. text-transform:none;
  2063. background-color:transparent;
  2064. border-color:transparent;
  2065. }
  2066. #u39060_div {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:122px;
  2072. height:22px;
  2073. background:inherit;
  2074. background-color:rgba(255, 255, 255, 0);
  2075. border:none;
  2076. border-radius:0px;
  2077. -moz-box-shadow:none;
  2078. -webkit-box-shadow:none;
  2079. box-shadow:none;
  2080. font-size:12px;
  2081. color:#7F7F7F;
  2082. }
  2083. #u39060 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:49px;
  2087. top:120px;
  2088. width:122px;
  2089. height:22px;
  2090. display:flex;
  2091. font-size:12px;
  2092. color:#7F7F7F;
  2093. }
  2094. #u39060 .text {
  2095. position:absolute;
  2096. align-self:flex-start;
  2097. padding:2px 2px 2px 2px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u39060_div.disabled {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:122px;
  2107. height:22px;
  2108. background:inherit;
  2109. background-color:rgba(240, 240, 240, 1);
  2110. border:none;
  2111. border-radius:0px;
  2112. -moz-box-shadow:none;
  2113. -webkit-box-shadow:none;
  2114. box-shadow:none;
  2115. font-size:12px;
  2116. color:#7F7F7F;
  2117. }
  2118. #u39060.disabled {
  2119. }
  2120. .u39060_input_option {
  2121. font-size:12px;
  2122. }
  2123. #u39061_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:64px;
  2129. height:30px;
  2130. background:inherit;
  2131. background-color:rgba(255, 255, 255, 0);
  2132. border:none;
  2133. border-left:0px;
  2134. border-top:0px;
  2135. border-right:0px;
  2136. border-radius:0px;
  2137. border-bottom-right-radius:0px;
  2138. border-bottom-left-radius:0px;
  2139. -moz-box-shadow:none;
  2140. -webkit-box-shadow:none;
  2141. box-shadow:none;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:12px;
  2146. color:#1890FF;
  2147. line-height:30px;
  2148. }
  2149. #u39061 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:332px;
  2153. top:116px;
  2154. width:64px;
  2155. height:30px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. color:#1890FF;
  2162. line-height:30px;
  2163. }
  2164. #u39061 .text {
  2165. position:absolute;
  2166. align-self:flex-start;
  2167. padding:0px 0px 0px 0px;
  2168. box-sizing:border-box;
  2169. width:100%;
  2170. }
  2171. #u39061_text {
  2172. border-width:0px;
  2173. white-space:nowrap;
  2174. text-transform:none;
  2175. }
  2176. #u39062 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:0px;
  2182. height:0px;
  2183. }
  2184. #u39063_div {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:135px;
  2190. height:30px;
  2191. background:inherit;
  2192. background-color:rgba(242, 242, 242, 1);
  2193. border:none;
  2194. border-radius:20px;
  2195. -moz-box-shadow:none;
  2196. -webkit-box-shadow:none;
  2197. box-shadow:none;
  2198. }
  2199. #u39063 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:187px;
  2203. top:116px;
  2204. width:135px;
  2205. height:30px;
  2206. display:flex;
  2207. }
  2208. #u39063 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u39063_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. visibility:hidden;
  2220. }
  2221. #u39064_input {
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:122px;
  2226. height:22px;
  2227. padding:2px 2px 2px 2px;
  2228. font-family:'ArialMT', 'Arial', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:12px;
  2232. letter-spacing:normal;
  2233. color:#7F7F7F;
  2234. vertical-align:none;
  2235. text-align:left;
  2236. text-transform:none;
  2237. background-color:transparent;
  2238. border-color:transparent;
  2239. }
  2240. #u39064_input.disabled {
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:122px;
  2245. height:22px;
  2246. padding:2px 2px 2px 2px;
  2247. font-family:'ArialMT', 'Arial', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. letter-spacing:normal;
  2252. color:#7F7F7F;
  2253. vertical-align:none;
  2254. text-align:left;
  2255. text-transform:none;
  2256. background-color:transparent;
  2257. border-color:transparent;
  2258. }
  2259. #u39064_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:122px;
  2265. height:22px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-radius:0px;
  2270. -moz-box-shadow:none;
  2271. -webkit-box-shadow:none;
  2272. box-shadow:none;
  2273. font-size:12px;
  2274. color:#7F7F7F;
  2275. }
  2276. #u39064 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:194px;
  2280. top:120px;
  2281. width:122px;
  2282. height:22px;
  2283. display:flex;
  2284. font-size:12px;
  2285. color:#7F7F7F;
  2286. }
  2287. #u39064 .text {
  2288. position:absolute;
  2289. align-self:flex-start;
  2290. padding:2px 2px 2px 2px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u39064_div.disabled {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:122px;
  2300. height:22px;
  2301. background:inherit;
  2302. background-color:rgba(240, 240, 240, 1);
  2303. border:none;
  2304. border-radius:0px;
  2305. -moz-box-shadow:none;
  2306. -webkit-box-shadow:none;
  2307. box-shadow:none;
  2308. font-size:12px;
  2309. color:#7F7F7F;
  2310. }
  2311. #u39064.disabled {
  2312. }
  2313. .u39064_input_option {
  2314. font-size:12px;
  2315. }
  2316. #u39066_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:433px;
  2322. height:865px;
  2323. }
  2324. #u39066 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:1359px;
  2328. top:0px;
  2329. width:433px;
  2330. height:865px;
  2331. display:flex;
  2332. }
  2333. #u39066 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 2px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u39066_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. visibility:hidden;
  2345. }
  2346. #u39067_div {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:375px;
  2352. height:40px;
  2353. background:inherit;
  2354. background-color:rgba(255, 255, 255, 1);
  2355. box-sizing:border-box;
  2356. border-width:1px;
  2357. border-style:solid;
  2358. border-color:rgba(215, 215, 215, 1);
  2359. border-left:0px;
  2360. border-top:0px;
  2361. border-right:0px;
  2362. border-radius:0px;
  2363. border-bottom-right-radius:0px;
  2364. border-bottom-left-radius:0px;
  2365. -moz-box-shadow:none;
  2366. -webkit-box-shadow:none;
  2367. box-shadow:none;
  2368. }
  2369. #u39067 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:1388px;
  2373. top:67px;
  2374. width:375px;
  2375. height:40px;
  2376. display:flex;
  2377. }
  2378. #u39067 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:2px 2px 2px 2px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u39067_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. visibility:hidden;
  2390. }
  2391. #u39068 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:0px;
  2397. height:0px;
  2398. }
  2399. #u39069_div {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:88px;
  2405. height:32px;
  2406. background:inherit;
  2407. background-color:rgba(255, 255, 255, 1);
  2408. box-sizing:border-box;
  2409. border-width:1px;
  2410. border-style:solid;
  2411. border-color:rgba(242, 242, 242, 1);
  2412. border-radius:33px;
  2413. -moz-box-shadow:none;
  2414. -webkit-box-shadow:none;
  2415. box-shadow:none;
  2416. }
  2417. #u39069 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:1668px;
  2421. top:71px;
  2422. width:88px;
  2423. height:32px;
  2424. display:flex;
  2425. }
  2426. #u39069 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 2px 2px 2px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u39069_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. visibility:hidden;
  2438. }
  2439. #u39070 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:0px;
  2445. height:0px;
  2446. }
  2447. #u39071_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:18px;
  2453. height:18px;
  2454. }
  2455. #u39071 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:1731px;
  2459. top:78px;
  2460. width:18px;
  2461. height:18px;
  2462. display:flex;
  2463. }
  2464. #u39071 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 2px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u39071_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. visibility:hidden;
  2476. }
  2477. #u39072_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:6px;
  2483. height:6px;
  2484. }
  2485. #u39072 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:1737px;
  2489. top:84px;
  2490. width:6px;
  2491. height:6px;
  2492. display:flex;
  2493. }
  2494. #u39072 .text {
  2495. position:absolute;
  2496. align-self:center;
  2497. padding:2px 2px 2px 2px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u39072_text {
  2502. border-width:0px;
  2503. word-wrap:break-word;
  2504. text-transform:none;
  2505. visibility:hidden;
  2506. }
  2507. #u39073 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:0px;
  2513. height:0px;
  2514. }
  2515. #u39074_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:5px;
  2521. height:5px;
  2522. }
  2523. #u39074 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:1682px;
  2527. top:85px;
  2528. width:5px;
  2529. height:5px;
  2530. display:flex;
  2531. }
  2532. #u39074 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 2px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u39074_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. visibility:hidden;
  2544. }
  2545. #u39075_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:5px;
  2551. height:5px;
  2552. }
  2553. #u39075 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:1698px;
  2557. top:85px;
  2558. width:5px;
  2559. height:5px;
  2560. display:flex;
  2561. }
  2562. #u39075 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 2px 2px 2px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u39075_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. visibility:hidden;
  2574. }
  2575. #u39076_img {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:7px;
  2581. height:7px;
  2582. }
  2583. #u39076 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:1689px;
  2587. top:84px;
  2588. width:7px;
  2589. height:7px;
  2590. display:flex;
  2591. }
  2592. #u39076 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:2px 2px 2px 2px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u39076_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. visibility:hidden;
  2604. }
  2605. #u39077_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:19px;
  2611. height:2px;
  2612. }
  2613. #u39077 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:1706px;
  2617. top:87px;
  2618. width:18px;
  2619. height:1px;
  2620. display:flex;
  2621. -webkit-transform:rotate(90deg);
  2622. -moz-transform:rotate(90deg);
  2623. -ms-transform:rotate(90deg);
  2624. transform:rotate(90deg);
  2625. }
  2626. #u39077 .text {
  2627. position:absolute;
  2628. align-self:center;
  2629. padding:2px 2px 2px 2px;
  2630. box-sizing:border-box;
  2631. width:100%;
  2632. }
  2633. #u39077_text {
  2634. border-width:0px;
  2635. word-wrap:break-word;
  2636. text-transform:none;
  2637. visibility:hidden;
  2638. }
  2639. #u39078_img {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:375px;
  2645. height:44px;
  2646. }
  2647. #u39078 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:1388px;
  2651. top:24px;
  2652. width:375px;
  2653. height:44px;
  2654. display:flex;
  2655. }
  2656. #u39078 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 2px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u39078_text {
  2664. border-width:0px;
  2665. word-wrap:break-word;
  2666. text-transform:none;
  2667. visibility:hidden;
  2668. }
  2669. #u39079_div {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:375px;
  2675. height:50px;
  2676. background:inherit;
  2677. background-color:rgba(255, 255, 255, 1);
  2678. box-sizing:border-box;
  2679. border-width:1px;
  2680. border-style:solid;
  2681. border-color:rgba(242, 242, 242, 1);
  2682. border-radius:26px;
  2683. border-top-left-radius:0px;
  2684. border-top-right-radius:0px;
  2685. -moz-box-shadow:none;
  2686. -webkit-box-shadow:none;
  2687. box-shadow:none;
  2688. }
  2689. #u39079 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:1388px;
  2693. top:788px;
  2694. width:375px;
  2695. height:50px;
  2696. display:flex;
  2697. }
  2698. #u39079 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u39079_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u39080 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:0px;
  2717. height:0px;
  2718. }
  2719. #u39081_img {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:24px;
  2725. height:24px;
  2726. }
  2727. #u39081 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:1428px;
  2731. top:792px;
  2732. width:24px;
  2733. height:24px;
  2734. display:flex;
  2735. font-size:8px;
  2736. }
  2737. #u39081 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 2px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u39081_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. }
  2749. #u39082_div {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:25px;
  2755. height:17px;
  2756. background:inherit;
  2757. background-color:rgba(255, 255, 255, 0);
  2758. border:none;
  2759. border-radius:0px;
  2760. -moz-box-shadow:none;
  2761. -webkit-box-shadow:none;
  2762. box-shadow:none;
  2763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2764. font-weight:400;
  2765. font-style:normal;
  2766. font-size:12px;
  2767. }
  2768. #u39082 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:1428px;
  2772. top:817px;
  2773. width:25px;
  2774. height:17px;
  2775. display:flex;
  2776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2777. font-weight:400;
  2778. font-style:normal;
  2779. font-size:12px;
  2780. }
  2781. #u39082 .text {
  2782. position:absolute;
  2783. align-self:flex-start;
  2784. padding:0px 0px 0px 0px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u39082_text {
  2789. border-width:0px;
  2790. white-space:nowrap;
  2791. text-transform:none;
  2792. }
  2793. #u39083 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:0px;
  2799. height:0px;
  2800. }
  2801. #u39084_img {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:24px;
  2807. height:24px;
  2808. }
  2809. #u39084 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:1698px;
  2813. top:794px;
  2814. width:24px;
  2815. height:24px;
  2816. display:flex;
  2817. font-size:8px;
  2818. }
  2819. #u39084 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 2px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u39084_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. }
  2831. #u39085_div {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:25px;
  2837. height:17px;
  2838. background:inherit;
  2839. background-color:rgba(255, 255, 255, 0);
  2840. border:none;
  2841. border-radius:0px;
  2842. -moz-box-shadow:none;
  2843. -webkit-box-shadow:none;
  2844. box-shadow:none;
  2845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:12px;
  2849. }
  2850. #u39085 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:1698px;
  2854. top:819px;
  2855. width:25px;
  2856. height:17px;
  2857. display:flex;
  2858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:12px;
  2862. }
  2863. #u39085 .text {
  2864. position:absolute;
  2865. align-self:flex-start;
  2866. padding:0px 0px 0px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u39085_text {
  2871. border-width:0px;
  2872. white-space:nowrap;
  2873. text-transform:none;
  2874. }
  2875. #u39086_div {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:375px;
  2881. height:681px;
  2882. background:inherit;
  2883. background-color:rgba(242, 242, 242, 0.462745098039216);
  2884. border:none;
  2885. border-radius:0px;
  2886. -moz-box-shadow:none;
  2887. -webkit-box-shadow:none;
  2888. box-shadow:none;
  2889. }
  2890. #u39086 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:1388px;
  2894. top:107px;
  2895. width:375px;
  2896. height:681px;
  2897. display:flex;
  2898. }
  2899. #u39086 .text {
  2900. position:absolute;
  2901. align-self:center;
  2902. padding:2px 2px 2px 2px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u39086_text {
  2907. border-width:0px;
  2908. word-wrap:break-word;
  2909. text-transform:none;
  2910. visibility:hidden;
  2911. }
  2912. #u39087 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:0px;
  2918. height:0px;
  2919. }
  2920. #u39088_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:24px;
  2926. height:24px;
  2927. }
  2928. #u39088 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:1610px;
  2932. top:792px;
  2933. width:24px;
  2934. height:24px;
  2935. display:flex;
  2936. font-size:8px;
  2937. }
  2938. #u39088 .text {
  2939. position:absolute;
  2940. align-self:center;
  2941. padding:2px 2px 2px 2px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u39088_text {
  2946. border-width:0px;
  2947. word-wrap:break-word;
  2948. text-transform:none;
  2949. }
  2950. #u39089_div {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:37px;
  2956. height:17px;
  2957. background:inherit;
  2958. background-color:rgba(255, 255, 255, 0);
  2959. border:none;
  2960. border-radius:0px;
  2961. -moz-box-shadow:none;
  2962. -webkit-box-shadow:none;
  2963. box-shadow:none;
  2964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2965. font-weight:400;
  2966. font-style:normal;
  2967. font-size:12px;
  2968. }
  2969. #u39089 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:1604px;
  2973. top:817px;
  2974. width:37px;
  2975. height:17px;
  2976. display:flex;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. }
  2982. #u39089 .text {
  2983. position:absolute;
  2984. align-self:flex-start;
  2985. padding:0px 0px 0px 0px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u39089_text {
  2990. border-width:0px;
  2991. white-space:nowrap;
  2992. text-transform:none;
  2993. }
  2994. #u39090 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:0px;
  2999. width:0px;
  3000. height:0px;
  3001. }
  3002. #u39091_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:24px;
  3008. height:24px;
  3009. }
  3010. #u39091 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:1516px;
  3014. top:792px;
  3015. width:24px;
  3016. height:24px;
  3017. display:flex;
  3018. font-size:8px;
  3019. }
  3020. #u39091 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 2px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u39091_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. }
  3032. #u39092_div {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:37px;
  3038. height:17px;
  3039. background:inherit;
  3040. background-color:rgba(255, 255, 255, 0);
  3041. border:none;
  3042. border-radius:0px;
  3043. -moz-box-shadow:none;
  3044. -webkit-box-shadow:none;
  3045. box-shadow:none;
  3046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:12px;
  3050. }
  3051. #u39092 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:1510px;
  3055. top:817px;
  3056. width:37px;
  3057. height:17px;
  3058. display:flex;
  3059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3060. font-weight:400;
  3061. font-style:normal;
  3062. font-size:12px;
  3063. }
  3064. #u39092 .text {
  3065. position:absolute;
  3066. align-self:flex-start;
  3067. padding:0px 0px 0px 0px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u39092_text {
  3072. border-width:0px;
  3073. white-space:nowrap;
  3074. text-transform:none;
  3075. }
  3076. #u39093_div {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:375px;
  3082. height:735px;
  3083. background:inherit;
  3084. background-color:rgba(242, 242, 242, 0.996078431372549);
  3085. border:none;
  3086. border-top:0px;
  3087. border-radius:35px;
  3088. border-top-left-radius:0px;
  3089. border-top-right-radius:0px;
  3090. -moz-box-shadow:none;
  3091. -webkit-box-shadow:none;
  3092. box-shadow:none;
  3093. }
  3094. #u39093 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:1388px;
  3098. top:106px;
  3099. width:375px;
  3100. height:735px;
  3101. display:flex;
  3102. }
  3103. #u39093 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 2px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u39093_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u39094_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:375px;
  3122. height:44px;
  3123. }
  3124. #u39094 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:1388px;
  3128. top:24px;
  3129. width:375px;
  3130. height:44px;
  3131. display:flex;
  3132. }
  3133. #u39094 .text {
  3134. position:absolute;
  3135. align-self:center;
  3136. padding:2px 2px 2px 2px;
  3137. box-sizing:border-box;
  3138. width:100%;
  3139. }
  3140. #u39094_text {
  3141. border-width:0px;
  3142. word-wrap:break-word;
  3143. text-transform:none;
  3144. visibility:hidden;
  3145. }
  3146. #u39095 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:0px;
  3152. height:0px;
  3153. }
  3154. #u39096_div {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:88px;
  3160. height:32px;
  3161. background:inherit;
  3162. background-color:rgba(255, 255, 255, 1);
  3163. box-sizing:border-box;
  3164. border-width:1px;
  3165. border-style:solid;
  3166. border-color:rgba(242, 242, 242, 1);
  3167. border-radius:33px;
  3168. -moz-box-shadow:none;
  3169. -webkit-box-shadow:none;
  3170. box-shadow:none;
  3171. }
  3172. #u39096 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:1668px;
  3176. top:71px;
  3177. width:88px;
  3178. height:32px;
  3179. display:flex;
  3180. }
  3181. #u39096 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u39096_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u39097 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:0px;
  3200. height:0px;
  3201. }
  3202. #u39098_img {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:18px;
  3208. height:18px;
  3209. }
  3210. #u39098 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:1731px;
  3214. top:78px;
  3215. width:18px;
  3216. height:18px;
  3217. display:flex;
  3218. }
  3219. #u39098 .text {
  3220. position:absolute;
  3221. align-self:center;
  3222. padding:2px 2px 2px 2px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u39098_text {
  3227. border-width:0px;
  3228. word-wrap:break-word;
  3229. text-transform:none;
  3230. visibility:hidden;
  3231. }
  3232. #u39099_img {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:0px;
  3236. top:0px;
  3237. width:6px;
  3238. height:6px;
  3239. }
  3240. #u39099 {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:1737px;
  3244. top:84px;
  3245. width:6px;
  3246. height:6px;
  3247. display:flex;
  3248. }
  3249. #u39099 .text {
  3250. position:absolute;
  3251. align-self:center;
  3252. padding:2px 2px 2px 2px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u39099_text {
  3257. border-width:0px;
  3258. word-wrap:break-word;
  3259. text-transform:none;
  3260. visibility:hidden;
  3261. }
  3262. #u39100 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:0px;
  3268. height:0px;
  3269. }
  3270. #u39101_img {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:5px;
  3276. height:5px;
  3277. }
  3278. #u39101 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:1682px;
  3282. top:85px;
  3283. width:5px;
  3284. height:5px;
  3285. display:flex;
  3286. }
  3287. #u39101 .text {
  3288. position:absolute;
  3289. align-self:center;
  3290. padding:2px 2px 2px 2px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u39101_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. visibility:hidden;
  3299. }
  3300. #u39102_img {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:5px;
  3306. height:5px;
  3307. }
  3308. #u39102 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:1698px;
  3312. top:85px;
  3313. width:5px;
  3314. height:5px;
  3315. display:flex;
  3316. }
  3317. #u39102 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 2px 2px 2px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u39102_text {
  3325. border-width:0px;
  3326. word-wrap:break-word;
  3327. text-transform:none;
  3328. visibility:hidden;
  3329. }
  3330. #u39103_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:7px;
  3336. height:7px;
  3337. }
  3338. #u39103 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:1689px;
  3342. top:84px;
  3343. width:7px;
  3344. height:7px;
  3345. display:flex;
  3346. }
  3347. #u39103 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 2px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u39103_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u39104_img {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:19px;
  3366. height:2px;
  3367. }
  3368. #u39104 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:1706px;
  3372. top:87px;
  3373. width:18px;
  3374. height:1px;
  3375. display:flex;
  3376. -webkit-transform:rotate(90deg);
  3377. -moz-transform:rotate(90deg);
  3378. -ms-transform:rotate(90deg);
  3379. transform:rotate(90deg);
  3380. }
  3381. #u39104 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 2px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u39104_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. visibility:hidden;
  3393. }
  3394. #u39105_div {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:65px;
  3400. height:22px;
  3401. background:inherit;
  3402. background-color:rgba(255, 255, 255, 0);
  3403. border:none;
  3404. border-radius:0px;
  3405. -moz-box-shadow:none;
  3406. -webkit-box-shadow:none;
  3407. box-shadow:none;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:16px;
  3412. color:#000000;
  3413. }
  3414. #u39105 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:1533px;
  3418. top:78px;
  3419. width:65px;
  3420. height:22px;
  3421. display:flex;
  3422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:16px;
  3426. color:#000000;
  3427. }
  3428. #u39105 .text {
  3429. position:absolute;
  3430. align-self:flex-start;
  3431. padding:0px 0px 0px 0px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u39105_text {
  3436. border-width:0px;
  3437. white-space:nowrap;
  3438. text-transform:none;
  3439. }
  3440. #u39106_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:12px;
  3446. height:12px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 0);
  3449. box-sizing:border-box;
  3450. border-width:2px;
  3451. border-style:solid;
  3452. border-color:rgba(51, 51, 51, 1);
  3453. border-right:0px;
  3454. border-bottom:0px;
  3455. border-radius:0px;
  3456. border-top-right-radius:0px;
  3457. border-bottom-left-radius:0px;
  3458. -moz-box-shadow:none;
  3459. -webkit-box-shadow:none;
  3460. box-shadow:none;
  3461. }
  3462. #u39106 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:1405px;
  3466. top:81px;
  3467. width:12px;
  3468. height:12px;
  3469. display:flex;
  3470. -webkit-transform:rotate(315deg);
  3471. -moz-transform:rotate(315deg);
  3472. -ms-transform:rotate(315deg);
  3473. transform:rotate(315deg);
  3474. }
  3475. #u39106 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 2px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u39106_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u39107_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:23px;
  3494. height:23px;
  3495. }
  3496. #u39107 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:1432px;
  3500. top:76px;
  3501. width:23px;
  3502. height:23px;
  3503. display:flex;
  3504. }
  3505. #u39107 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 2px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u39107_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u39108 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:0px;
  3524. height:0px;
  3525. }
  3526. #u39109_div {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:375px;
  3532. height:50px;
  3533. background:inherit;
  3534. background-color:rgba(255, 255, 255, 1);
  3535. box-sizing:border-box;
  3536. border-width:1px;
  3537. border-style:solid;
  3538. border-color:rgba(242, 242, 242, 1);
  3539. border-radius:26px;
  3540. border-top-left-radius:0px;
  3541. border-top-right-radius:0px;
  3542. -moz-box-shadow:none;
  3543. -webkit-box-shadow:none;
  3544. box-shadow:none;
  3545. }
  3546. #u39109 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:1388px;
  3550. top:791px;
  3551. width:375px;
  3552. height:50px;
  3553. display:flex;
  3554. }
  3555. #u39109 .text {
  3556. position:absolute;
  3557. align-self:center;
  3558. padding:2px 2px 2px 2px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u39109_text {
  3563. border-width:0px;
  3564. word-wrap:break-word;
  3565. text-transform:none;
  3566. visibility:hidden;
  3567. }
  3568. #u39110 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:0px;
  3574. height:0px;
  3575. }
  3576. #u39111_img {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:24px;
  3582. height:24px;
  3583. }
  3584. #u39111 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:1460px;
  3588. top:795px;
  3589. width:24px;
  3590. height:24px;
  3591. display:flex;
  3592. font-size:8px;
  3593. }
  3594. #u39111 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 2px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u39111_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. }
  3606. #u39112_div {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:49px;
  3612. height:17px;
  3613. background:inherit;
  3614. background-color:rgba(255, 255, 255, 0);
  3615. border:none;
  3616. border-radius:0px;
  3617. -moz-box-shadow:none;
  3618. -webkit-box-shadow:none;
  3619. box-shadow:none;
  3620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:12px;
  3624. }
  3625. #u39112 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:1448px;
  3629. top:820px;
  3630. width:49px;
  3631. height:17px;
  3632. display:flex;
  3633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3634. font-weight:400;
  3635. font-style:normal;
  3636. font-size:12px;
  3637. }
  3638. #u39112 .text {
  3639. position:absolute;
  3640. align-self:flex-start;
  3641. padding:0px 0px 0px 0px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u39112_text {
  3646. border-width:0px;
  3647. white-space:nowrap;
  3648. text-transform:none;
  3649. }
  3650. #u39113 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:0px;
  3656. height:0px;
  3657. }
  3658. #u39114_div {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:49px;
  3664. height:17px;
  3665. background:inherit;
  3666. background-color:rgba(255, 255, 255, 0);
  3667. border:none;
  3668. border-radius:0px;
  3669. -moz-box-shadow:none;
  3670. -webkit-box-shadow:none;
  3671. box-shadow:none;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:12px;
  3676. }
  3677. #u39114 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:1654px;
  3681. top:820px;
  3682. width:49px;
  3683. height:17px;
  3684. display:flex;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. }
  3690. #u39114 .text {
  3691. position:absolute;
  3692. align-self:flex-start;
  3693. padding:0px 0px 0px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u39114_text {
  3698. border-width:0px;
  3699. white-space:nowrap;
  3700. text-transform:none;
  3701. }
  3702. #u39115_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:24px;
  3708. height:24px;
  3709. }
  3710. #u39115 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:1666px;
  3714. top:795px;
  3715. width:24px;
  3716. height:24px;
  3717. display:flex;
  3718. font-size:8px;
  3719. color:#FFFFFF;
  3720. }
  3721. #u39115 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 2px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u39115_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. }
  3733. #u39116_div {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:375px;
  3739. height:50px;
  3740. background:inherit;
  3741. background-color:rgba(255, 255, 255, 1);
  3742. border:none;
  3743. border-radius:0px;
  3744. -moz-box-shadow:none;
  3745. -webkit-box-shadow:none;
  3746. box-shadow:none;
  3747. }
  3748. #u39116 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:1388px;
  3752. top:106px;
  3753. width:375px;
  3754. height:50px;
  3755. display:flex;
  3756. }
  3757. #u39116 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 2px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u39116_text {
  3765. border-width:0px;
  3766. word-wrap:break-word;
  3767. text-transform:none;
  3768. visibility:hidden;
  3769. }
  3770. #u39117 {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:0px;
  3776. height:0px;
  3777. }
  3778. #u39118_div {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:0px;
  3782. top:0px;
  3783. width:349px;
  3784. height:30px;
  3785. background:inherit;
  3786. background-color:rgba(242, 242, 242, 1);
  3787. border:none;
  3788. border-radius:20px;
  3789. -moz-box-shadow:none;
  3790. -webkit-box-shadow:none;
  3791. box-shadow:none;
  3792. }
  3793. #u39118 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:1401px;
  3797. top:116px;
  3798. width:349px;
  3799. height:30px;
  3800. display:flex;
  3801. }
  3802. #u39118 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 2px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u39118_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u39119_input {
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:315px;
  3820. height:22px;
  3821. padding:2px 2px 2px 2px;
  3822. font-family:'ArialMT', 'Arial', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. font-size:12px;
  3826. letter-spacing:normal;
  3827. color:#7F7F7F;
  3828. vertical-align:none;
  3829. text-align:left;
  3830. text-transform:none;
  3831. background-color:transparent;
  3832. border-color:transparent;
  3833. }
  3834. #u39119_input.disabled {
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:315px;
  3839. height:22px;
  3840. padding:2px 2px 2px 2px;
  3841. font-family:'ArialMT', 'Arial', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:12px;
  3845. letter-spacing:normal;
  3846. color:#7F7F7F;
  3847. vertical-align:none;
  3848. text-align:left;
  3849. text-transform:none;
  3850. background-color:transparent;
  3851. border-color:transparent;
  3852. }
  3853. #u39119_div {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:315px;
  3859. height:22px;
  3860. background:inherit;
  3861. background-color:rgba(255, 255, 255, 0);
  3862. border:none;
  3863. border-radius:0px;
  3864. -moz-box-shadow:none;
  3865. -webkit-box-shadow:none;
  3866. box-shadow:none;
  3867. font-size:12px;
  3868. color:#7F7F7F;
  3869. }
  3870. #u39119 {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:1419px;
  3874. top:120px;
  3875. width:315px;
  3876. height:22px;
  3877. display:flex;
  3878. font-size:12px;
  3879. color:#7F7F7F;
  3880. }
  3881. #u39119 .text {
  3882. position:absolute;
  3883. align-self:flex-start;
  3884. padding:2px 2px 2px 2px;
  3885. box-sizing:border-box;
  3886. width:100%;
  3887. }
  3888. #u39119_div.disabled {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:315px;
  3894. height:22px;
  3895. background:inherit;
  3896. background-color:rgba(240, 240, 240, 1);
  3897. border:none;
  3898. border-radius:0px;
  3899. -moz-box-shadow:none;
  3900. -webkit-box-shadow:none;
  3901. box-shadow:none;
  3902. font-size:12px;
  3903. color:#7F7F7F;
  3904. }
  3905. #u39119.disabled {
  3906. }
  3907. .u39119_input_option {
  3908. font-size:12px;
  3909. }
  3910. #u39120_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:377px;
  3916. height:220px;
  3917. }
  3918. #u39120 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:1388px;
  3922. top:156px;
  3923. width:377px;
  3924. height:220px;
  3925. display:flex;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. color:#FFFFFF;
  3930. }
  3931. #u39120 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:2px 2px 2px 2px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u39120_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. visibility:hidden;
  3943. }
  3944. #u39121_img {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:433px;
  3950. height:865px;
  3951. }
  3952. #u39121 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:453px;
  3956. top:0px;
  3957. width:433px;
  3958. height:865px;
  3959. display:flex;
  3960. }
  3961. #u39121 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 2px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u39121_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u39122_div {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:375px;
  3980. height:735px;
  3981. background:inherit;
  3982. background-color:rgba(51, 51, 51, 0.6);
  3983. border:none;
  3984. border-top:0px;
  3985. border-radius:24px;
  3986. border-top-left-radius:0px;
  3987. border-top-right-radius:0px;
  3988. -moz-box-shadow:none;
  3989. -webkit-box-shadow:none;
  3990. box-shadow:none;
  3991. }
  3992. #u39122 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:482px;
  3996. top:106px;
  3997. width:375px;
  3998. height:735px;
  3999. display:flex;
  4000. }
  4001. #u39122 .text {
  4002. position:absolute;
  4003. align-self:center;
  4004. padding:2px 2px 2px 2px;
  4005. box-sizing:border-box;
  4006. width:100%;
  4007. }
  4008. #u39122_text {
  4009. border-width:0px;
  4010. word-wrap:break-word;
  4011. text-transform:none;
  4012. visibility:hidden;
  4013. }
  4014. #u39123_div {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:375px;
  4020. height:379px;
  4021. background:inherit;
  4022. background-color:rgba(255, 255, 255, 1);
  4023. border:none;
  4024. border-top:0px;
  4025. border-radius:24px;
  4026. border-top-left-radius:0px;
  4027. border-top-right-radius:0px;
  4028. -moz-box-shadow:none;
  4029. -webkit-box-shadow:none;
  4030. box-shadow:none;
  4031. }
  4032. #u39123 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:482px;
  4036. top:462px;
  4037. width:375px;
  4038. height:379px;
  4039. display:flex;
  4040. }
  4041. #u39123 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 2px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u39123_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u39124_div {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:375px;
  4060. height:60px;
  4061. background:inherit;
  4062. background-color:rgba(170, 170, 170, 0);
  4063. box-sizing:border-box;
  4064. border-width:1px;
  4065. border-style:solid;
  4066. border-color:rgba(242, 242, 242, 1);
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4077. font-weight:500;
  4078. font-style:normal;
  4079. font-size:18px;
  4080. }
  4081. #u39124 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:482px;
  4085. top:461px;
  4086. width:375px;
  4087. height:60px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4090. font-weight:500;
  4091. font-style:normal;
  4092. font-size:18px;
  4093. }
  4094. #u39124 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:0px 0px 0px 20px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u39124_text {
  4102. border-width:0px;
  4103. word-wrap:break-word;
  4104. text-transform:none;
  4105. }
  4106. #u39125_div {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:330px;
  4112. height:40px;
  4113. background:inherit;
  4114. background-color:rgba(255, 255, 255, 0);
  4115. box-sizing:border-box;
  4116. border-width:1px;
  4117. border-style:solid;
  4118. border-color:rgba(242, 242, 242, 1);
  4119. border-left:0px;
  4120. border-top:0px;
  4121. border-right:0px;
  4122. border-radius:0px;
  4123. border-bottom-right-radius:0px;
  4124. border-bottom-left-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:14px;
  4132. line-height:40px;
  4133. }
  4134. #u39125 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:500px;
  4138. top:530px;
  4139. width:330px;
  4140. height:40px;
  4141. display:flex;
  4142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:14px;
  4146. line-height:40px;
  4147. }
  4148. #u39125 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:0px 0px 0px 10px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u39125_text {
  4156. border-width:0px;
  4157. word-wrap:break-word;
  4158. text-transform:none;
  4159. }
  4160. #u39126_div {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:160px;
  4166. height:45px;
  4167. background:inherit;
  4168. background-color:rgba(242, 242, 242, 1);
  4169. border:none;
  4170. border-radius:4px;
  4171. -moz-box-shadow:none;
  4172. -webkit-box-shadow:none;
  4173. box-shadow:none;
  4174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4175. font-style:normal;
  4176. font-size:14px;
  4177. line-height:25px;
  4178. }
  4179. #u39126 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:500px;
  4183. top:629px;
  4184. width:160px;
  4185. height:45px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-style:normal;
  4189. font-size:14px;
  4190. line-height:25px;
  4191. }
  4192. #u39126 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:10px 10px 10px 10px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u39126_text {
  4200. border-width:0px;
  4201. word-wrap:break-word;
  4202. text-transform:none;
  4203. }
  4204. #u39127_div {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:160px;
  4210. height:45px;
  4211. background:inherit;
  4212. background-color:rgba(242, 242, 242, 1);
  4213. border:none;
  4214. border-radius:4px;
  4215. -moz-box-shadow:none;
  4216. -webkit-box-shadow:none;
  4217. box-shadow:none;
  4218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4219. font-style:normal;
  4220. font-size:14px;
  4221. line-height:25px;
  4222. }
  4223. #u39127 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:670px;
  4227. top:629px;
  4228. width:160px;
  4229. height:45px;
  4230. display:flex;
  4231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4232. font-style:normal;
  4233. font-size:14px;
  4234. line-height:25px;
  4235. }
  4236. #u39127 .text {
  4237. position:absolute;
  4238. align-self:center;
  4239. padding:10px 10px 10px 10px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u39127_text {
  4244. border-width:0px;
  4245. word-wrap:break-word;
  4246. text-transform:none;
  4247. }
  4248. #u39128_img {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:24px;
  4254. height:24px;
  4255. }
  4256. #u39128 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:811px;
  4260. top:479px;
  4261. width:24px;
  4262. height:24px;
  4263. display:flex;
  4264. -webkit-transform:rotate(180deg);
  4265. -moz-transform:rotate(180deg);
  4266. -ms-transform:rotate(180deg);
  4267. transform:rotate(180deg);
  4268. }
  4269. #u39128 .text {
  4270. position:absolute;
  4271. align-self:center;
  4272. padding:2px 2px 2px 2px;
  4273. box-sizing:border-box;
  4274. width:100%;
  4275. }
  4276. #u39128_text {
  4277. border-width:0px;
  4278. word-wrap:break-word;
  4279. text-transform:none;
  4280. visibility:hidden;
  4281. }
  4282. #u39129_div {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:160px;
  4288. height:45px;
  4289. background:inherit;
  4290. background-color:rgba(242, 242, 242, 1);
  4291. border:none;
  4292. border-radius:4px;
  4293. -moz-box-shadow:none;
  4294. -webkit-box-shadow:none;
  4295. box-shadow:none;
  4296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4297. font-style:normal;
  4298. font-size:14px;
  4299. line-height:25px;
  4300. }
  4301. #u39129 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:500px;
  4305. top:684px;
  4306. width:160px;
  4307. height:45px;
  4308. display:flex;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-style:normal;
  4311. font-size:14px;
  4312. line-height:25px;
  4313. }
  4314. #u39129 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:10px 10px 10px 10px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u39129_text {
  4322. border-width:0px;
  4323. word-wrap:break-word;
  4324. text-transform:none;
  4325. }
  4326. #u39130_div {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:160px;
  4332. height:45px;
  4333. background:inherit;
  4334. background-color:rgba(242, 242, 242, 1);
  4335. border:none;
  4336. border-radius:4px;
  4337. -moz-box-shadow:none;
  4338. -webkit-box-shadow:none;
  4339. box-shadow:none;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-style:normal;
  4342. font-size:14px;
  4343. line-height:25px;
  4344. }
  4345. #u39130 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:670px;
  4349. top:684px;
  4350. width:160px;
  4351. height:45px;
  4352. display:flex;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-style:normal;
  4355. font-size:14px;
  4356. line-height:25px;
  4357. }
  4358. #u39130 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:10px 10px 10px 10px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u39130_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. }
  4370. #u39131_img {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:375px;
  4376. height:258px;
  4377. }
  4378. #u39131 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:482px;
  4382. top:204px;
  4383. width:375px;
  4384. height:258px;
  4385. display:flex;
  4386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4387. font-weight:400;
  4388. font-style:normal;
  4389. color:#FFFFFF;
  4390. }
  4391. #u39131 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 2px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u39131_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u39132 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:0px;
  4410. height:0px;
  4411. }
  4412. #u39133_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:81px;
  4418. height:40px;
  4419. background:inherit;
  4420. background-color:rgba(255, 255, 255, 0);
  4421. border:none;
  4422. border-left:0px;
  4423. border-top:0px;
  4424. border-right:0px;
  4425. border-radius:0px;
  4426. border-bottom-right-radius:0px;
  4427. border-bottom-left-radius:0px;
  4428. -moz-box-shadow:none;
  4429. -webkit-box-shadow:none;
  4430. box-shadow:none;
  4431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:14px;
  4435. line-height:40px;
  4436. }
  4437. #u39133 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:500px;
  4441. top:570px;
  4442. width:81px;
  4443. height:40px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:14px;
  4449. line-height:40px;
  4450. }
  4451. #u39133 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:0px 0px 0px 10px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u39133_text {
  4459. border-width:0px;
  4460. white-space:nowrap;
  4461. text-transform:none;
  4462. }
  4463. #u39134_div {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:230px;
  4469. height:40px;
  4470. background:inherit;
  4471. background-color:rgba(255, 255, 255, 0);
  4472. border:none;
  4473. border-left:0px;
  4474. border-top:0px;
  4475. border-right:0px;
  4476. border-radius:0px;
  4477. border-bottom-right-radius:0px;
  4478. border-bottom-left-radius:0px;
  4479. -moz-box-shadow:none;
  4480. -webkit-box-shadow:none;
  4481. box-shadow:none;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:14px;
  4486. line-height:40px;
  4487. }
  4488. #u39134 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:584px;
  4492. top:570px;
  4493. width:230px;
  4494. height:40px;
  4495. display:flex;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. font-size:14px;
  4500. line-height:40px;
  4501. }
  4502. #u39134 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:0px 0px 0px 10px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u39134_text {
  4510. border-width:0px;
  4511. white-space:nowrap;
  4512. text-transform:none;
  4513. }
  4514. #u39135_img {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:12px;
  4520. height:18px;
  4521. }
  4522. #u39135 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:817px;
  4526. top:579px;
  4527. width:12px;
  4528. height:18px;
  4529. display:flex;
  4530. }
  4531. #u39135 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 2px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u39135_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u39136 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:0px;
  4550. height:0px;
  4551. }
  4552. #u39137_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:160px;
  4558. height:100px;
  4559. }
  4560. #u39137 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:1403px;
  4564. top:447px;
  4565. width:160px;
  4566. height:100px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. color:#FFFFFF;
  4572. }
  4573. #u39137 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u39137_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u39138_div {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:88px;
  4592. height:17px;
  4593. background:inherit;
  4594. background-color:rgba(255, 255, 255, 0);
  4595. border:none;
  4596. border-radius:0px;
  4597. -moz-box-shadow:none;
  4598. -webkit-box-shadow:none;
  4599. box-shadow:none;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:12px;
  4604. color:#FFFFFF;
  4605. }
  4606. #u39138 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:1409px;
  4610. top:523px;
  4611. width:88px;
  4612. height:17px;
  4613. display:flex;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:12px;
  4618. color:#FFFFFF;
  4619. }
  4620. #u39138 .text {
  4621. position:absolute;
  4622. align-self:flex-start;
  4623. padding:0px 0px 0px 0px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u39138_text {
  4628. border-width:0px;
  4629. white-space:nowrap;
  4630. text-transform:none;
  4631. }
  4632. #u39139_div {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:118px;
  4638. height:22px;
  4639. background:inherit;
  4640. background-color:rgba(255, 255, 255, 0);
  4641. border:none;
  4642. border-radius:0px;
  4643. -moz-box-shadow:none;
  4644. -webkit-box-shadow:none;
  4645. box-shadow:none;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:16px;
  4650. color:#000000;
  4651. }
  4652. #u39139 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:1403px;
  4656. top:415px;
  4657. width:118px;
  4658. height:22px;
  4659. display:flex;
  4660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:16px;
  4664. color:#000000;
  4665. }
  4666. #u39139 .text {
  4667. position:absolute;
  4668. align-self:flex-start;
  4669. padding:0px 0px 0px 0px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u39139_text {
  4674. border-width:0px;
  4675. white-space:nowrap;
  4676. text-transform:none;
  4677. }
  4678. #u39140_img {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:30px;
  4684. height:30px;
  4685. }
  4686. #u39140 {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:1566px;
  4690. top:251px;
  4691. width:30px;
  4692. height:30px;
  4693. display:flex;
  4694. }
  4695. #u39140 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 2px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u39140_text {
  4703. border-width:0px;
  4704. word-wrap:break-word;
  4705. text-transform:none;
  4706. visibility:hidden;
  4707. }
  4708. #u39141_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:30px;
  4714. height:30px;
  4715. }
  4716. #u39141 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:655px;
  4720. top:318px;
  4721. width:30px;
  4722. height:30px;
  4723. display:flex;
  4724. }
  4725. #u39141 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:2px 2px 2px 2px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u39141_text {
  4733. border-width:0px;
  4734. word-wrap:break-word;
  4735. text-transform:none;
  4736. visibility:hidden;
  4737. }
  4738. #u39142 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:0px;
  4744. height:0px;
  4745. }
  4746. #u39143_img {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:0px;
  4750. top:0px;
  4751. width:160px;
  4752. height:100px;
  4753. }
  4754. #u39143 {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:1583px;
  4758. top:447px;
  4759. width:160px;
  4760. height:100px;
  4761. display:flex;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. color:#FFFFFF;
  4766. }
  4767. #u39143 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 2px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u39143_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u39144_div {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:88px;
  4786. height:17px;
  4787. background:inherit;
  4788. background-color:rgba(255, 255, 255, 0);
  4789. border:none;
  4790. border-radius:0px;
  4791. -moz-box-shadow:none;
  4792. -webkit-box-shadow:none;
  4793. box-shadow:none;
  4794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:12px;
  4798. color:#FFFFFF;
  4799. }
  4800. #u39144 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:1589px;
  4804. top:523px;
  4805. width:88px;
  4806. height:17px;
  4807. display:flex;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:12px;
  4812. color:#FFFFFF;
  4813. }
  4814. #u39144 .text {
  4815. position:absolute;
  4816. align-self:flex-start;
  4817. padding:0px 0px 0px 0px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u39144_text {
  4822. border-width:0px;
  4823. white-space:nowrap;
  4824. text-transform:none;
  4825. }
  4826. #u39145 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:0px;
  4832. height:0px;
  4833. }
  4834. #u39146_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:160px;
  4840. height:100px;
  4841. }
  4842. #u39146 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:1403px;
  4846. top:555px;
  4847. width:160px;
  4848. height:100px;
  4849. display:flex;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. color:#FFFFFF;
  4854. }
  4855. #u39146 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 2px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u39146_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. visibility:hidden;
  4867. }
  4868. #u39147_div {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:88px;
  4874. height:17px;
  4875. background:inherit;
  4876. background-color:rgba(255, 255, 255, 0);
  4877. border:none;
  4878. border-radius:0px;
  4879. -moz-box-shadow:none;
  4880. -webkit-box-shadow:none;
  4881. box-shadow:none;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#FFFFFF;
  4887. }
  4888. #u39147 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:1409px;
  4892. top:631px;
  4893. width:88px;
  4894. height:17px;
  4895. display:flex;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:12px;
  4900. color:#FFFFFF;
  4901. }
  4902. #u39147 .text {
  4903. position:absolute;
  4904. align-self:flex-start;
  4905. padding:0px 0px 0px 0px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u39147_text {
  4910. border-width:0px;
  4911. white-space:nowrap;
  4912. text-transform:none;
  4913. }
  4914. #u39148 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:0px;
  4920. height:0px;
  4921. }
  4922. #u39149_img {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:160px;
  4928. height:100px;
  4929. }
  4930. #u39149 {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:1583px;
  4934. top:555px;
  4935. width:160px;
  4936. height:100px;
  4937. display:flex;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. color:#FFFFFF;
  4942. }
  4943. #u39149 .text {
  4944. position:absolute;
  4945. align-self:center;
  4946. padding:2px 2px 2px 2px;
  4947. box-sizing:border-box;
  4948. width:100%;
  4949. }
  4950. #u39149_text {
  4951. border-width:0px;
  4952. word-wrap:break-word;
  4953. text-transform:none;
  4954. visibility:hidden;
  4955. }
  4956. #u39150_div {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:88px;
  4962. height:17px;
  4963. background:inherit;
  4964. background-color:rgba(255, 255, 255, 0);
  4965. border:none;
  4966. border-radius:0px;
  4967. -moz-box-shadow:none;
  4968. -webkit-box-shadow:none;
  4969. box-shadow:none;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:12px;
  4974. color:#FFFFFF;
  4975. }
  4976. #u39150 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:1589px;
  4980. top:631px;
  4981. width:88px;
  4982. height:17px;
  4983. display:flex;
  4984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:12px;
  4988. color:#FFFFFF;
  4989. }
  4990. #u39150 .text {
  4991. position:absolute;
  4992. align-self:flex-start;
  4993. padding:0px 0px 0px 0px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u39150_text {
  4998. border-width:0px;
  4999. white-space:nowrap;
  5000. text-transform:none;
  5001. }
  5002. #u39151 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:0px;
  5008. height:0px;
  5009. }
  5010. #u39152_img {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:0px;
  5014. top:0px;
  5015. width:160px;
  5016. height:100px;
  5017. }
  5018. #u39152 {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:1403px;
  5022. top:665px;
  5023. width:160px;
  5024. height:100px;
  5025. display:flex;
  5026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. color:#FFFFFF;
  5030. }
  5031. #u39152 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 2px 2px 2px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u39152_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. visibility:hidden;
  5043. }
  5044. #u39153_div {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:88px;
  5050. height:17px;
  5051. background:inherit;
  5052. background-color:rgba(255, 255, 255, 0);
  5053. border:none;
  5054. border-radius:0px;
  5055. -moz-box-shadow:none;
  5056. -webkit-box-shadow:none;
  5057. box-shadow:none;
  5058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:12px;
  5062. color:#FFFFFF;
  5063. }
  5064. #u39153 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:1409px;
  5068. top:741px;
  5069. width:88px;
  5070. height:17px;
  5071. display:flex;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:12px;
  5076. color:#FFFFFF;
  5077. }
  5078. #u39153 .text {
  5079. position:absolute;
  5080. align-self:flex-start;
  5081. padding:0px 0px 0px 0px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u39153_text {
  5086. border-width:0px;
  5087. white-space:nowrap;
  5088. text-transform:none;
  5089. }
  5090. #u39154 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:0px;
  5096. height:0px;
  5097. }
  5098. #u39155_img {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:160px;
  5104. height:100px;
  5105. }
  5106. #u39155 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:1583px;
  5110. top:665px;
  5111. width:160px;
  5112. height:100px;
  5113. display:flex;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. color:#FFFFFF;
  5118. }
  5119. #u39155 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:2px 2px 2px 2px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u39155_text {
  5127. border-width:0px;
  5128. word-wrap:break-word;
  5129. text-transform:none;
  5130. visibility:hidden;
  5131. }
  5132. #u39156_div {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:88px;
  5138. height:17px;
  5139. background:inherit;
  5140. background-color:rgba(255, 255, 255, 0);
  5141. border:none;
  5142. border-radius:0px;
  5143. -moz-box-shadow:none;
  5144. -webkit-box-shadow:none;
  5145. box-shadow:none;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:12px;
  5150. color:#FFFFFF;
  5151. }
  5152. #u39156 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:1589px;
  5156. top:741px;
  5157. width:88px;
  5158. height:17px;
  5159. display:flex;
  5160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5161. font-weight:400;
  5162. font-style:normal;
  5163. font-size:12px;
  5164. color:#FFFFFF;
  5165. }
  5166. #u39156 .text {
  5167. position:absolute;
  5168. align-self:flex-start;
  5169. padding:0px 0px 0px 0px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u39156_text {
  5174. border-width:0px;
  5175. white-space:nowrap;
  5176. text-transform:none;
  5177. }
  5178. #u39157 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:0px;
  5184. height:0px;
  5185. }
  5186. #u39158_div {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:10px;
  5192. height:6px;
  5193. background:inherit;
  5194. background-color:rgba(245, 154, 35, 1);
  5195. border:none;
  5196. border-radius:0px;
  5197. -moz-box-shadow:none;
  5198. -webkit-box-shadow:none;
  5199. box-shadow:none;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:8px;
  5204. color:#FFFFFF;
  5205. text-align:center;
  5206. line-height:25px;
  5207. }
  5208. #u39158 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:172px;
  5212. top:167px;
  5213. width:10px;
  5214. height:6px;
  5215. display:flex;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:8px;
  5220. color:#FFFFFF;
  5221. text-align:center;
  5222. line-height:25px;
  5223. }
  5224. #u39158 .text {
  5225. position:absolute;
  5226. align-self:center;
  5227. padding:0px 0px 0px 0px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u39158_text {
  5232. border-width:0px;
  5233. word-wrap:break-word;
  5234. text-transform:none;
  5235. visibility:hidden;
  5236. }
  5237. #u39159_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:21px;
  5243. height:25px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0);
  5246. border:none;
  5247. border-left:0px;
  5248. border-top:0px;
  5249. border-right:0px;
  5250. border-radius:0px;
  5251. border-bottom-right-radius:0px;
  5252. border-bottom-left-radius:0px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:10px;
  5260. line-height:25px;
  5261. }
  5262. #u39159 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:186px;
  5266. top:157px;
  5267. width:21px;
  5268. height:25px;
  5269. display:flex;
  5270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:10px;
  5274. line-height:25px;
  5275. }
  5276. #u39159 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:0px 0px 0px 0px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u39159_text {
  5284. border-width:0px;
  5285. white-space:nowrap;
  5286. text-transform:none;
  5287. }
  5288. #u39160 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:0px;
  5294. height:0px;
  5295. }
  5296. #u39161_div {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:10px;
  5302. height:6px;
  5303. background:inherit;
  5304. background-color:rgba(0, 191, 191, 1);
  5305. border:none;
  5306. border-radius:0px;
  5307. -moz-box-shadow:none;
  5308. -webkit-box-shadow:none;
  5309. box-shadow:none;
  5310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5311. font-weight:400;
  5312. font-style:normal;
  5313. font-size:8px;
  5314. color:#FFFFFF;
  5315. text-align:center;
  5316. line-height:25px;
  5317. }
  5318. #u39161 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:37px;
  5322. top:167px;
  5323. width:10px;
  5324. height:6px;
  5325. display:flex;
  5326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:8px;
  5330. color:#FFFFFF;
  5331. text-align:center;
  5332. line-height:25px;
  5333. }
  5334. #u39161 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:0px 0px 0px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u39161_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u39162_div {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:21px;
  5353. height:25px;
  5354. background:inherit;
  5355. background-color:rgba(255, 255, 255, 0);
  5356. border:none;
  5357. border-left:0px;
  5358. border-top:0px;
  5359. border-right:0px;
  5360. border-radius:0px;
  5361. border-bottom-right-radius:0px;
  5362. border-bottom-left-radius:0px;
  5363. -moz-box-shadow:none;
  5364. -webkit-box-shadow:none;
  5365. box-shadow:none;
  5366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5367. font-weight:400;
  5368. font-style:normal;
  5369. font-size:10px;
  5370. line-height:25px;
  5371. }
  5372. #u39162 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:51px;
  5376. top:157px;
  5377. width:21px;
  5378. height:25px;
  5379. display:flex;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:10px;
  5384. line-height:25px;
  5385. }
  5386. #u39162 .text {
  5387. position:absolute;
  5388. align-self:center;
  5389. padding:0px 0px 0px 0px;
  5390. box-sizing:border-box;
  5391. width:100%;
  5392. }
  5393. #u39162_text {
  5394. border-width:0px;
  5395. white-space:nowrap;
  5396. text-transform:none;
  5397. }
  5398. #u39163 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:0px;
  5404. height:0px;
  5405. }
  5406. #u39164_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:10px;
  5412. height:6px;
  5413. background:inherit;
  5414. background-color:rgba(170, 170, 170, 1);
  5415. border:none;
  5416. border-radius:0px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:8px;
  5424. color:#FFFFFF;
  5425. text-align:center;
  5426. line-height:25px;
  5427. }
  5428. #u39164 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:82px;
  5432. top:167px;
  5433. width:10px;
  5434. height:6px;
  5435. display:flex;
  5436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5437. font-weight:400;
  5438. font-style:normal;
  5439. font-size:8px;
  5440. color:#FFFFFF;
  5441. text-align:center;
  5442. line-height:25px;
  5443. }
  5444. #u39164 .text {
  5445. position:absolute;
  5446. align-self:center;
  5447. padding:0px 0px 0px 0px;
  5448. box-sizing:border-box;
  5449. width:100%;
  5450. }
  5451. #u39164_text {
  5452. border-width:0px;
  5453. word-wrap:break-word;
  5454. text-transform:none;
  5455. visibility:hidden;
  5456. }
  5457. #u39165_div {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:21px;
  5463. height:25px;
  5464. background:inherit;
  5465. background-color:rgba(255, 255, 255, 0);
  5466. border:none;
  5467. border-left:0px;
  5468. border-top:0px;
  5469. border-right:0px;
  5470. border-radius:0px;
  5471. border-bottom-right-radius:0px;
  5472. border-bottom-left-radius:0px;
  5473. -moz-box-shadow:none;
  5474. -webkit-box-shadow:none;
  5475. box-shadow:none;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:10px;
  5480. line-height:25px;
  5481. }
  5482. #u39165 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:96px;
  5486. top:157px;
  5487. width:21px;
  5488. height:25px;
  5489. display:flex;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:10px;
  5494. line-height:25px;
  5495. }
  5496. #u39165 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:0px 0px 0px 0px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u39165_text {
  5504. border-width:0px;
  5505. white-space:nowrap;
  5506. text-transform:none;
  5507. }
  5508. #u39166 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:0px;
  5514. height:0px;
  5515. }
  5516. #u39167_div {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:10px;
  5522. height:6px;
  5523. background:inherit;
  5524. background-color:rgba(217, 0, 27, 1);
  5525. border:none;
  5526. border-radius:0px;
  5527. -moz-box-shadow:none;
  5528. -webkit-box-shadow:none;
  5529. box-shadow:none;
  5530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:8px;
  5534. color:#FFFFFF;
  5535. text-align:center;
  5536. line-height:25px;
  5537. }
  5538. #u39167 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:127px;
  5542. top:167px;
  5543. width:10px;
  5544. height:6px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:8px;
  5550. color:#FFFFFF;
  5551. text-align:center;
  5552. line-height:25px;
  5553. }
  5554. #u39167 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:0px 0px 0px 0px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u39167_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u39168_div {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:21px;
  5573. height:25px;
  5574. background:inherit;
  5575. background-color:rgba(255, 255, 255, 0);
  5576. border:none;
  5577. border-left:0px;
  5578. border-top:0px;
  5579. border-right:0px;
  5580. border-radius:0px;
  5581. border-bottom-right-radius:0px;
  5582. border-bottom-left-radius:0px;
  5583. -moz-box-shadow:none;
  5584. -webkit-box-shadow:none;
  5585. box-shadow:none;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:10px;
  5590. line-height:25px;
  5591. }
  5592. #u39168 {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:141px;
  5596. top:157px;
  5597. width:21px;
  5598. height:25px;
  5599. display:flex;
  5600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:10px;
  5604. line-height:25px;
  5605. }
  5606. #u39168 .text {
  5607. position:absolute;
  5608. align-self:center;
  5609. padding:0px 0px 0px 0px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u39168_text {
  5614. border-width:0px;
  5615. white-space:nowrap;
  5616. text-transform:none;
  5617. }
  5618. #u39169 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:0px;
  5624. height:0px;
  5625. }
  5626. #u39170_div {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:177px;
  5632. height:250px;
  5633. background:inherit;
  5634. background-color:rgba(255, 255, 255, 1);
  5635. border:none;
  5636. border-radius:0px;
  5637. -moz-box-shadow:none;
  5638. -webkit-box-shadow:none;
  5639. box-shadow:none;
  5640. }
  5641. #u39170 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:38px;
  5645. top:443px;
  5646. width:177px;
  5647. height:250px;
  5648. display:flex;
  5649. }
  5650. #u39170 .text {
  5651. position:absolute;
  5652. align-self:center;
  5653. padding:2px 2px 2px 2px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u39170_text {
  5658. border-width:0px;
  5659. word-wrap:break-word;
  5660. text-transform:none;
  5661. visibility:hidden;
  5662. }
  5663. #u39171_div {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:177px;
  5669. height:50px;
  5670. background:inherit;
  5671. background-color:rgba(0, 191, 191, 1);
  5672. box-sizing:border-box;
  5673. border-width:1px;
  5674. border-style:solid;
  5675. border-color:rgba(242, 242, 242, 1);
  5676. border-left:0px;
  5677. border-top:0px;
  5678. border-right:0px;
  5679. border-radius:0px;
  5680. border-bottom-right-radius:0px;
  5681. border-bottom-left-radius:0px;
  5682. -moz-box-shadow:none;
  5683. -webkit-box-shadow:none;
  5684. box-shadow:none;
  5685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5686. font-weight:500;
  5687. font-style:normal;
  5688. font-size:18px;
  5689. color:#FFFFFF;
  5690. }
  5691. #u39171 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:38px;
  5695. top:443px;
  5696. width:177px;
  5697. height:50px;
  5698. display:flex;
  5699. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5700. font-weight:500;
  5701. font-style:normal;
  5702. font-size:18px;
  5703. color:#FFFFFF;
  5704. }
  5705. #u39171 .text {
  5706. position:absolute;
  5707. align-self:center;
  5708. padding:0px 0px 0px 15px;
  5709. box-sizing:border-box;
  5710. width:100%;
  5711. }
  5712. #u39171_text {
  5713. border-width:0px;
  5714. word-wrap:break-word;
  5715. text-transform:none;
  5716. }
  5717. #u39172_div {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:0px;
  5721. top:0px;
  5722. width:75px;
  5723. height:25px;
  5724. background:inherit;
  5725. background-color:rgba(255, 255, 255, 0);
  5726. border:none;
  5727. border-left:0px;
  5728. border-top:0px;
  5729. border-right:0px;
  5730. border-radius:0px;
  5731. border-bottom-right-radius:0px;
  5732. border-bottom-left-radius:0px;
  5733. -moz-box-shadow:none;
  5734. -webkit-box-shadow:none;
  5735. box-shadow:none;
  5736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. font-size:12px;
  5740. line-height:25px;
  5741. }
  5742. #u39172 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:117px;
  5746. top:509px;
  5747. width:75px;
  5748. height:25px;
  5749. display:flex;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:12px;
  5754. line-height:25px;
  5755. }
  5756. #u39172 .text {
  5757. position:absolute;
  5758. align-self:center;
  5759. padding:0px 0px 0px 0px;
  5760. box-sizing:border-box;
  5761. width:100%;
  5762. }
  5763. #u39172_text {
  5764. border-width:0px;
  5765. white-space:nowrap;
  5766. text-transform:none;
  5767. }
  5768. #u39173_div {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:71px;
  5774. height:25px;
  5775. background:inherit;
  5776. background-color:rgba(255, 255, 255, 0);
  5777. border:none;
  5778. border-left:0px;
  5779. border-top:0px;
  5780. border-right:0px;
  5781. border-radius:0px;
  5782. border-bottom-right-radius:0px;
  5783. border-bottom-left-radius:0px;
  5784. -moz-box-shadow:none;
  5785. -webkit-box-shadow:none;
  5786. box-shadow:none;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:10px;
  5791. line-height:25px;
  5792. }
  5793. #u39173 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:117px;
  5797. top:569px;
  5798. width:71px;
  5799. height:25px;
  5800. display:flex;
  5801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:10px;
  5805. line-height:25px;
  5806. }
  5807. #u39173 .text {
  5808. position:absolute;
  5809. align-self:center;
  5810. padding:0px 0px 0px 0px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u39173_text {
  5815. border-width:0px;
  5816. white-space:nowrap;
  5817. text-transform:none;
  5818. }
  5819. #u39174_div {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:71px;
  5825. height:25px;
  5826. background:inherit;
  5827. background-color:rgba(255, 255, 255, 0);
  5828. border:none;
  5829. border-left:0px;
  5830. border-top:0px;
  5831. border-right:0px;
  5832. border-radius:0px;
  5833. border-bottom-right-radius:0px;
  5834. border-bottom-left-radius:0px;
  5835. -moz-box-shadow:none;
  5836. -webkit-box-shadow:none;
  5837. box-shadow:none;
  5838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:10px;
  5842. line-height:25px;
  5843. }
  5844. #u39174 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:117px;
  5848. top:594px;
  5849. width:71px;
  5850. height:25px;
  5851. display:flex;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:10px;
  5856. line-height:25px;
  5857. }
  5858. #u39174 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:0px 0px 0px 0px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u39174_text {
  5866. border-width:0px;
  5867. white-space:nowrap;
  5868. text-transform:none;
  5869. }
  5870. #u39175_img {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:58px;
  5876. height:69px;
  5877. }
  5878. #u39175 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:47px;
  5882. top:509px;
  5883. width:58px;
  5884. height:69px;
  5885. display:flex;
  5886. }
  5887. #u39175 .text {
  5888. position:absolute;
  5889. align-self:center;
  5890. padding:2px 2px 2px 2px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u39175_text {
  5895. border-width:0px;
  5896. word-wrap:break-word;
  5897. text-transform:none;
  5898. visibility:hidden;
  5899. }
  5900. #u39176_div {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:153px;
  5906. height:25px;
  5907. background:inherit;
  5908. background-color:rgba(0, 137, 254, 1);
  5909. border:none;
  5910. border-radius:4px;
  5911. -moz-box-shadow:none;
  5912. -webkit-box-shadow:none;
  5913. box-shadow:none;
  5914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5915. font-weight:400;
  5916. font-style:normal;
  5917. font-size:12px;
  5918. color:#FFFFFF;
  5919. text-align:center;
  5920. line-height:25px;
  5921. }
  5922. #u39176 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:49px;
  5926. top:655px;
  5927. width:153px;
  5928. height:25px;
  5929. display:flex;
  5930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:12px;
  5934. color:#FFFFFF;
  5935. text-align:center;
  5936. line-height:25px;
  5937. }
  5938. #u39176 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:0px 0px 0px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u39176_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. }
  5950. #u39177_div {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:71px;
  5956. height:25px;
  5957. background:inherit;
  5958. background-color:rgba(255, 255, 255, 0);
  5959. border:none;
  5960. border-left:0px;
  5961. border-top:0px;
  5962. border-right:0px;
  5963. border-radius:0px;
  5964. border-bottom-right-radius:0px;
  5965. border-bottom-left-radius:0px;
  5966. -moz-box-shadow:none;
  5967. -webkit-box-shadow:none;
  5968. box-shadow:none;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:10px;
  5973. line-height:25px;
  5974. }
  5975. #u39177 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:117px;
  5979. top:619px;
  5980. width:71px;
  5981. height:25px;
  5982. display:flex;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:10px;
  5987. line-height:25px;
  5988. }
  5989. #u39177 .text {
  5990. position:absolute;
  5991. align-self:center;
  5992. padding:0px 0px 0px 0px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u39177_text {
  5997. border-width:0px;
  5998. white-space:nowrap;
  5999. text-transform:none;
  6000. }
  6001. #u39178_div {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:75px;
  6007. height:25px;
  6008. background:inherit;
  6009. background-color:rgba(255, 255, 255, 0);
  6010. border:none;
  6011. border-left:0px;
  6012. border-top:0px;
  6013. border-right:0px;
  6014. border-radius:0px;
  6015. border-bottom-right-radius:0px;
  6016. border-bottom-left-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. line-height:25px;
  6025. }
  6026. #u39178 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:117px;
  6030. top:534px;
  6031. width:75px;
  6032. height:25px;
  6033. display:flex;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:12px;
  6038. line-height:25px;
  6039. }
  6040. #u39178 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:0px 0px 0px 0px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u39178_text {
  6048. border-width:0px;
  6049. white-space:nowrap;
  6050. text-transform:none;
  6051. }
  6052. #u39179_img {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:24px;
  6058. height:24px;
  6059. }
  6060. #u39179 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:181px;
  6064. top:456px;
  6065. width:24px;
  6066. height:24px;
  6067. display:flex;
  6068. }
  6069. #u39179 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:2px 2px 2px 2px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u39179_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. visibility:hidden;
  6081. }
  6082. #u39180 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:0px;
  6088. height:0px;
  6089. }
  6090. #u39181_div {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:177px;
  6096. height:250px;
  6097. background:inherit;
  6098. background-color:rgba(255, 255, 255, 1);
  6099. border:none;
  6100. border-radius:0px;
  6101. -moz-box-shadow:none;
  6102. -webkit-box-shadow:none;
  6103. box-shadow:none;
  6104. }
  6105. #u39181 {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:224px;
  6109. top:182px;
  6110. width:177px;
  6111. height:250px;
  6112. display:flex;
  6113. }
  6114. #u39181 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u39181_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. visibility:hidden;
  6126. }
  6127. #u39182_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:177px;
  6133. height:50px;
  6134. background:inherit;
  6135. background-color:rgba(0, 191, 191, 1);
  6136. box-sizing:border-box;
  6137. border-width:1px;
  6138. border-style:solid;
  6139. border-color:rgba(242, 242, 242, 1);
  6140. border-left:0px;
  6141. border-top:0px;
  6142. border-right:0px;
  6143. border-radius:0px;
  6144. border-bottom-right-radius:0px;
  6145. border-bottom-left-radius:0px;
  6146. -moz-box-shadow:none;
  6147. -webkit-box-shadow:none;
  6148. box-shadow:none;
  6149. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6150. font-weight:500;
  6151. font-style:normal;
  6152. font-size:18px;
  6153. color:#FFFFFF;
  6154. }
  6155. #u39182 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:224px;
  6159. top:182px;
  6160. width:177px;
  6161. height:50px;
  6162. display:flex;
  6163. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6164. font-weight:500;
  6165. font-style:normal;
  6166. font-size:18px;
  6167. color:#FFFFFF;
  6168. }
  6169. #u39182 .text {
  6170. position:absolute;
  6171. align-self:center;
  6172. padding:0px 0px 0px 15px;
  6173. box-sizing:border-box;
  6174. width:100%;
  6175. }
  6176. #u39182_text {
  6177. border-width:0px;
  6178. word-wrap:break-word;
  6179. text-transform:none;
  6180. }
  6181. #u39183_div {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:0px;
  6185. top:0px;
  6186. width:75px;
  6187. height:25px;
  6188. background:inherit;
  6189. background-color:rgba(255, 255, 255, 0);
  6190. border:none;
  6191. border-left:0px;
  6192. border-top:0px;
  6193. border-right:0px;
  6194. border-radius:0px;
  6195. border-bottom-right-radius:0px;
  6196. border-bottom-left-radius:0px;
  6197. -moz-box-shadow:none;
  6198. -webkit-box-shadow:none;
  6199. box-shadow:none;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:12px;
  6204. line-height:25px;
  6205. }
  6206. #u39183 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:303px;
  6210. top:248px;
  6211. width:75px;
  6212. height:25px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:12px;
  6218. line-height:25px;
  6219. }
  6220. #u39183 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:0px 0px 0px 0px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u39183_text {
  6228. border-width:0px;
  6229. white-space:nowrap;
  6230. text-transform:none;
  6231. }
  6232. #u39184_div {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:71px;
  6238. height:25px;
  6239. background:inherit;
  6240. background-color:rgba(255, 255, 255, 0);
  6241. border:none;
  6242. border-left:0px;
  6243. border-top:0px;
  6244. border-right:0px;
  6245. border-radius:0px;
  6246. border-bottom-right-radius:0px;
  6247. border-bottom-left-radius:0px;
  6248. -moz-box-shadow:none;
  6249. -webkit-box-shadow:none;
  6250. box-shadow:none;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:10px;
  6255. line-height:25px;
  6256. }
  6257. #u39184 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:303px;
  6261. top:308px;
  6262. width:71px;
  6263. height:25px;
  6264. display:flex;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:10px;
  6269. line-height:25px;
  6270. }
  6271. #u39184 .text {
  6272. position:absolute;
  6273. align-self:center;
  6274. padding:0px 0px 0px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u39184_text {
  6279. border-width:0px;
  6280. white-space:nowrap;
  6281. text-transform:none;
  6282. }
  6283. #u39185_div {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:71px;
  6289. height:25px;
  6290. background:inherit;
  6291. background-color:rgba(255, 255, 255, 0);
  6292. border:none;
  6293. border-left:0px;
  6294. border-top:0px;
  6295. border-right:0px;
  6296. border-radius:0px;
  6297. border-bottom-right-radius:0px;
  6298. border-bottom-left-radius:0px;
  6299. -moz-box-shadow:none;
  6300. -webkit-box-shadow:none;
  6301. box-shadow:none;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:10px;
  6306. line-height:25px;
  6307. }
  6308. #u39185 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:303px;
  6312. top:333px;
  6313. width:71px;
  6314. height:25px;
  6315. display:flex;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:10px;
  6320. line-height:25px;
  6321. }
  6322. #u39185 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:0px 0px 0px 0px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u39185_text {
  6330. border-width:0px;
  6331. white-space:nowrap;
  6332. text-transform:none;
  6333. }
  6334. #u39186_img {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:58px;
  6340. height:69px;
  6341. }
  6342. #u39186 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:233px;
  6346. top:248px;
  6347. width:58px;
  6348. height:69px;
  6349. display:flex;
  6350. }
  6351. #u39186 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:2px 2px 2px 2px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u39186_text {
  6359. border-width:0px;
  6360. word-wrap:break-word;
  6361. text-transform:none;
  6362. visibility:hidden;
  6363. }
  6364. #u39187_div {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:153px;
  6370. height:25px;
  6371. background:inherit;
  6372. background-color:rgba(0, 137, 254, 1);
  6373. border:none;
  6374. border-radius:4px;
  6375. -moz-box-shadow:none;
  6376. -webkit-box-shadow:none;
  6377. box-shadow:none;
  6378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6379. font-weight:400;
  6380. font-style:normal;
  6381. font-size:12px;
  6382. color:#FFFFFF;
  6383. text-align:center;
  6384. line-height:25px;
  6385. }
  6386. #u39187 {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:235px;
  6390. top:394px;
  6391. width:153px;
  6392. height:25px;
  6393. display:flex;
  6394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6395. font-weight:400;
  6396. font-style:normal;
  6397. font-size:12px;
  6398. color:#FFFFFF;
  6399. text-align:center;
  6400. line-height:25px;
  6401. }
  6402. #u39187 .text {
  6403. position:absolute;
  6404. align-self:center;
  6405. padding:0px 0px 0px 0px;
  6406. box-sizing:border-box;
  6407. width:100%;
  6408. }
  6409. #u39187_text {
  6410. border-width:0px;
  6411. word-wrap:break-word;
  6412. text-transform:none;
  6413. }
  6414. #u39188_div {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:71px;
  6420. height:25px;
  6421. background:inherit;
  6422. background-color:rgba(255, 255, 255, 0);
  6423. border:none;
  6424. border-left:0px;
  6425. border-top:0px;
  6426. border-right:0px;
  6427. border-radius:0px;
  6428. border-bottom-right-radius:0px;
  6429. border-bottom-left-radius:0px;
  6430. -moz-box-shadow:none;
  6431. -webkit-box-shadow:none;
  6432. box-shadow:none;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:10px;
  6437. line-height:25px;
  6438. }
  6439. #u39188 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:303px;
  6443. top:358px;
  6444. width:71px;
  6445. height:25px;
  6446. display:flex;
  6447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:10px;
  6451. line-height:25px;
  6452. }
  6453. #u39188 .text {
  6454. position:absolute;
  6455. align-self:center;
  6456. padding:0px 0px 0px 0px;
  6457. box-sizing:border-box;
  6458. width:100%;
  6459. }
  6460. #u39188_text {
  6461. border-width:0px;
  6462. white-space:nowrap;
  6463. text-transform:none;
  6464. }
  6465. #u39189_div {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:0px;
  6469. top:0px;
  6470. width:75px;
  6471. height:25px;
  6472. background:inherit;
  6473. background-color:rgba(255, 255, 255, 0);
  6474. border:none;
  6475. border-left:0px;
  6476. border-top:0px;
  6477. border-right:0px;
  6478. border-radius:0px;
  6479. border-bottom-right-radius:0px;
  6480. border-bottom-left-radius:0px;
  6481. -moz-box-shadow:none;
  6482. -webkit-box-shadow:none;
  6483. box-shadow:none;
  6484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. font-size:12px;
  6488. line-height:25px;
  6489. }
  6490. #u39189 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:303px;
  6494. top:273px;
  6495. width:75px;
  6496. height:25px;
  6497. display:flex;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:12px;
  6502. line-height:25px;
  6503. }
  6504. #u39189 .text {
  6505. position:absolute;
  6506. align-self:center;
  6507. padding:0px 0px 0px 0px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u39189_text {
  6512. border-width:0px;
  6513. white-space:nowrap;
  6514. text-transform:none;
  6515. }
  6516. #u39190_img {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:24px;
  6522. height:24px;
  6523. }
  6524. #u39190 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:367px;
  6528. top:195px;
  6529. width:24px;
  6530. height:24px;
  6531. display:flex;
  6532. -webkit-transform:rotate(180deg);
  6533. -moz-transform:rotate(180deg);
  6534. -ms-transform:rotate(180deg);
  6535. transform:rotate(180deg);
  6536. }
  6537. #u39190 .text {
  6538. position:absolute;
  6539. align-self:center;
  6540. padding:2px 2px 2px 2px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u39190_text {
  6545. border-width:0px;
  6546. word-wrap:break-word;
  6547. text-transform:none;
  6548. visibility:hidden;
  6549. }
  6550. #u39191 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:0px;
  6554. top:0px;
  6555. width:0px;
  6556. height:0px;
  6557. }
  6558. #u39192_div {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:0px;
  6562. top:0px;
  6563. width:177px;
  6564. height:250px;
  6565. background:inherit;
  6566. background-color:rgba(255, 255, 255, 1);
  6567. border:none;
  6568. border-radius:0px;
  6569. -moz-box-shadow:none;
  6570. -webkit-box-shadow:none;
  6571. box-shadow:none;
  6572. }
  6573. #u39192 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:37px;
  6577. top:182px;
  6578. width:177px;
  6579. height:250px;
  6580. display:flex;
  6581. }
  6582. #u39192 .text {
  6583. position:absolute;
  6584. align-self:center;
  6585. padding:2px 2px 2px 2px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u39192_text {
  6590. border-width:0px;
  6591. word-wrap:break-word;
  6592. text-transform:none;
  6593. visibility:hidden;
  6594. }
  6595. #u39193_div {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:177px;
  6601. height:50px;
  6602. background:inherit;
  6603. background-color:rgba(0, 191, 191, 1);
  6604. box-sizing:border-box;
  6605. border-width:1px;
  6606. border-style:solid;
  6607. border-color:rgba(242, 242, 242, 1);
  6608. border-left:0px;
  6609. border-top:0px;
  6610. border-right:0px;
  6611. border-radius:0px;
  6612. border-bottom-right-radius:0px;
  6613. border-bottom-left-radius:0px;
  6614. -moz-box-shadow:none;
  6615. -webkit-box-shadow:none;
  6616. box-shadow:none;
  6617. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6618. font-weight:500;
  6619. font-style:normal;
  6620. font-size:18px;
  6621. color:#FFFFFF;
  6622. }
  6623. #u39193 {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:37px;
  6627. top:182px;
  6628. width:177px;
  6629. height:50px;
  6630. display:flex;
  6631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6632. font-weight:500;
  6633. font-style:normal;
  6634. font-size:18px;
  6635. color:#FFFFFF;
  6636. }
  6637. #u39193 .text {
  6638. position:absolute;
  6639. align-self:center;
  6640. padding:0px 0px 0px 15px;
  6641. box-sizing:border-box;
  6642. width:100%;
  6643. }
  6644. #u39193_text {
  6645. border-width:0px;
  6646. word-wrap:break-word;
  6647. text-transform:none;
  6648. }
  6649. #u39194_div {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:75px;
  6655. height:25px;
  6656. background:inherit;
  6657. background-color:rgba(255, 255, 255, 0);
  6658. border:none;
  6659. border-left:0px;
  6660. border-top:0px;
  6661. border-right:0px;
  6662. border-radius:0px;
  6663. border-bottom-right-radius:0px;
  6664. border-bottom-left-radius:0px;
  6665. -moz-box-shadow:none;
  6666. -webkit-box-shadow:none;
  6667. box-shadow:none;
  6668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6669. font-weight:400;
  6670. font-style:normal;
  6671. font-size:12px;
  6672. line-height:25px;
  6673. }
  6674. #u39194 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:116px;
  6678. top:248px;
  6679. width:75px;
  6680. height:25px;
  6681. display:flex;
  6682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:12px;
  6686. line-height:25px;
  6687. }
  6688. #u39194 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:0px 0px 0px 0px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u39194_text {
  6696. border-width:0px;
  6697. white-space:nowrap;
  6698. text-transform:none;
  6699. }
  6700. #u39195_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:71px;
  6706. height:25px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 0);
  6709. border:none;
  6710. border-left:0px;
  6711. border-top:0px;
  6712. border-right:0px;
  6713. border-radius:0px;
  6714. border-bottom-right-radius:0px;
  6715. border-bottom-left-radius:0px;
  6716. -moz-box-shadow:none;
  6717. -webkit-box-shadow:none;
  6718. box-shadow:none;
  6719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6720. font-weight:400;
  6721. font-style:normal;
  6722. font-size:10px;
  6723. line-height:25px;
  6724. }
  6725. #u39195 {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:116px;
  6729. top:308px;
  6730. width:71px;
  6731. height:25px;
  6732. display:flex;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:10px;
  6737. line-height:25px;
  6738. }
  6739. #u39195 .text {
  6740. position:absolute;
  6741. align-self:center;
  6742. padding:0px 0px 0px 0px;
  6743. box-sizing:border-box;
  6744. width:100%;
  6745. }
  6746. #u39195_text {
  6747. border-width:0px;
  6748. white-space:nowrap;
  6749. text-transform:none;
  6750. }
  6751. #u39196_div {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:71px;
  6757. height:25px;
  6758. background:inherit;
  6759. background-color:rgba(255, 255, 255, 0);
  6760. border:none;
  6761. border-left:0px;
  6762. border-top:0px;
  6763. border-right:0px;
  6764. border-radius:0px;
  6765. border-bottom-right-radius:0px;
  6766. border-bottom-left-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:10px;
  6774. line-height:25px;
  6775. }
  6776. #u39196 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:116px;
  6780. top:333px;
  6781. width:71px;
  6782. height:25px;
  6783. display:flex;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:10px;
  6788. line-height:25px;
  6789. }
  6790. #u39196 .text {
  6791. position:absolute;
  6792. align-self:center;
  6793. padding:0px 0px 0px 0px;
  6794. box-sizing:border-box;
  6795. width:100%;
  6796. }
  6797. #u39196_text {
  6798. border-width:0px;
  6799. white-space:nowrap;
  6800. text-transform:none;
  6801. }
  6802. #u39197_img {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:58px;
  6808. height:69px;
  6809. }
  6810. #u39197 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:46px;
  6814. top:248px;
  6815. width:58px;
  6816. height:69px;
  6817. display:flex;
  6818. }
  6819. #u39197 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 2px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u39197_text {
  6827. border-width:0px;
  6828. word-wrap:break-word;
  6829. text-transform:none;
  6830. visibility:hidden;
  6831. }
  6832. #u39198_div {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:153px;
  6838. height:25px;
  6839. background:inherit;
  6840. background-color:rgba(215, 215, 215, 1);
  6841. border:none;
  6842. border-radius:4px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. color:#FFFFFF;
  6851. text-align:center;
  6852. line-height:25px;
  6853. }
  6854. #u39198 {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:48px;
  6858. top:394px;
  6859. width:153px;
  6860. height:25px;
  6861. display:flex;
  6862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6863. font-weight:400;
  6864. font-style:normal;
  6865. font-size:12px;
  6866. color:#FFFFFF;
  6867. text-align:center;
  6868. line-height:25px;
  6869. }
  6870. #u39198 .text {
  6871. position:absolute;
  6872. align-self:center;
  6873. padding:0px 0px 0px 0px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u39198_text {
  6878. border-width:0px;
  6879. word-wrap:break-word;
  6880. text-transform:none;
  6881. }
  6882. #u39199_div {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:71px;
  6888. height:25px;
  6889. background:inherit;
  6890. background-color:rgba(255, 255, 255, 0);
  6891. border:none;
  6892. border-left:0px;
  6893. border-top:0px;
  6894. border-right:0px;
  6895. border-radius:0px;
  6896. border-bottom-right-radius:0px;
  6897. border-bottom-left-radius:0px;
  6898. -moz-box-shadow:none;
  6899. -webkit-box-shadow:none;
  6900. box-shadow:none;
  6901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:10px;
  6905. line-height:25px;
  6906. }
  6907. #u39199 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:116px;
  6911. top:358px;
  6912. width:71px;
  6913. height:25px;
  6914. display:flex;
  6915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:10px;
  6919. line-height:25px;
  6920. }
  6921. #u39199 .text {
  6922. position:absolute;
  6923. align-self:center;
  6924. padding:0px 0px 0px 0px;
  6925. box-sizing:border-box;
  6926. width:100%;
  6927. }
  6928. #u39199_text {
  6929. border-width:0px;
  6930. white-space:nowrap;
  6931. text-transform:none;
  6932. }
  6933. #u39200_div {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:0px;
  6937. top:0px;
  6938. width:75px;
  6939. height:25px;
  6940. background:inherit;
  6941. background-color:rgba(255, 255, 255, 0);
  6942. border:none;
  6943. border-left:0px;
  6944. border-top:0px;
  6945. border-right:0px;
  6946. border-radius:0px;
  6947. border-bottom-right-radius:0px;
  6948. border-bottom-left-radius:0px;
  6949. -moz-box-shadow:none;
  6950. -webkit-box-shadow:none;
  6951. box-shadow:none;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:12px;
  6956. line-height:25px;
  6957. }
  6958. #u39200 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:116px;
  6962. top:273px;
  6963. width:75px;
  6964. height:25px;
  6965. display:flex;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:12px;
  6970. line-height:25px;
  6971. }
  6972. #u39200 .text {
  6973. position:absolute;
  6974. align-self:center;
  6975. padding:0px 0px 0px 0px;
  6976. box-sizing:border-box;
  6977. width:100%;
  6978. }
  6979. #u39200_text {
  6980. border-width:0px;
  6981. white-space:nowrap;
  6982. text-transform:none;
  6983. }
  6984. #u39201_img {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:24px;
  6990. height:24px;
  6991. }
  6992. #u39201 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:180px;
  6996. top:195px;
  6997. width:24px;
  6998. height:24px;
  6999. display:flex;
  7000. }
  7001. #u39201 .text {
  7002. position:absolute;
  7003. align-self:center;
  7004. padding:2px 2px 2px 2px;
  7005. box-sizing:border-box;
  7006. width:100%;
  7007. }
  7008. #u39201_text {
  7009. border-width:0px;
  7010. word-wrap:break-word;
  7011. text-transform:none;
  7012. visibility:hidden;
  7013. }
  7014. #u39202 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:0px;
  7020. height:0px;
  7021. }
  7022. #u39203_div {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:177px;
  7028. height:250px;
  7029. background:inherit;
  7030. background-color:rgba(255, 255, 255, 1);
  7031. border:none;
  7032. border-radius:0px;
  7033. -moz-box-shadow:none;
  7034. -webkit-box-shadow:none;
  7035. box-shadow:none;
  7036. }
  7037. #u39203 {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:40px;
  7041. top:963px;
  7042. width:177px;
  7043. height:250px;
  7044. display:flex;
  7045. }
  7046. #u39203 .text {
  7047. position:absolute;
  7048. align-self:center;
  7049. padding:2px 2px 2px 2px;
  7050. box-sizing:border-box;
  7051. width:100%;
  7052. }
  7053. #u39203_text {
  7054. border-width:0px;
  7055. word-wrap:break-word;
  7056. text-transform:none;
  7057. visibility:hidden;
  7058. }
  7059. #u39204_div {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:0px;
  7064. width:177px;
  7065. height:50px;
  7066. background:inherit;
  7067. background-color:rgba(236, 128, 141, 1);
  7068. box-sizing:border-box;
  7069. border-width:1px;
  7070. border-style:solid;
  7071. border-color:rgba(242, 242, 242, 1);
  7072. border-left:0px;
  7073. border-top:0px;
  7074. border-right:0px;
  7075. border-radius:0px;
  7076. border-bottom-right-radius:0px;
  7077. border-bottom-left-radius:0px;
  7078. -moz-box-shadow:none;
  7079. -webkit-box-shadow:none;
  7080. box-shadow:none;
  7081. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7082. font-weight:500;
  7083. font-style:normal;
  7084. font-size:18px;
  7085. color:#FFFFFF;
  7086. }
  7087. #u39204 {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:40px;
  7091. top:963px;
  7092. width:177px;
  7093. height:50px;
  7094. display:flex;
  7095. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7096. font-weight:500;
  7097. font-style:normal;
  7098. font-size:18px;
  7099. color:#FFFFFF;
  7100. }
  7101. #u39204 .text {
  7102. position:absolute;
  7103. align-self:center;
  7104. padding:0px 0px 0px 15px;
  7105. box-sizing:border-box;
  7106. width:100%;
  7107. }
  7108. #u39204_text {
  7109. border-width:0px;
  7110. word-wrap:break-word;
  7111. text-transform:none;
  7112. }
  7113. #u39205_div {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:75px;
  7119. height:25px;
  7120. background:inherit;
  7121. background-color:rgba(255, 255, 255, 0);
  7122. border:none;
  7123. border-left:0px;
  7124. border-top:0px;
  7125. border-right:0px;
  7126. border-radius:0px;
  7127. border-bottom-right-radius:0px;
  7128. border-bottom-left-radius:0px;
  7129. -moz-box-shadow:none;
  7130. -webkit-box-shadow:none;
  7131. box-shadow:none;
  7132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7133. font-weight:400;
  7134. font-style:normal;
  7135. font-size:12px;
  7136. line-height:25px;
  7137. }
  7138. #u39205 {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:119px;
  7142. top:1029px;
  7143. width:75px;
  7144. height:25px;
  7145. display:flex;
  7146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7147. font-weight:400;
  7148. font-style:normal;
  7149. font-size:12px;
  7150. line-height:25px;
  7151. }
  7152. #u39205 .text {
  7153. position:absolute;
  7154. align-self:center;
  7155. padding:0px 0px 0px 0px;
  7156. box-sizing:border-box;
  7157. width:100%;
  7158. }
  7159. #u39205_text {
  7160. border-width:0px;
  7161. white-space:nowrap;
  7162. text-transform:none;
  7163. }
  7164. #u39206_div {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:71px;
  7170. height:25px;
  7171. background:inherit;
  7172. background-color:rgba(255, 255, 255, 0);
  7173. border:none;
  7174. border-left:0px;
  7175. border-top:0px;
  7176. border-right:0px;
  7177. border-radius:0px;
  7178. border-bottom-right-radius:0px;
  7179. border-bottom-left-radius:0px;
  7180. -moz-box-shadow:none;
  7181. -webkit-box-shadow:none;
  7182. box-shadow:none;
  7183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:10px;
  7187. line-height:25px;
  7188. }
  7189. #u39206 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:119px;
  7193. top:1089px;
  7194. width:71px;
  7195. height:25px;
  7196. display:flex;
  7197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:10px;
  7201. line-height:25px;
  7202. }
  7203. #u39206 .text {
  7204. position:absolute;
  7205. align-self:center;
  7206. padding:0px 0px 0px 0px;
  7207. box-sizing:border-box;
  7208. width:100%;
  7209. }
  7210. #u39206_text {
  7211. border-width:0px;
  7212. white-space:nowrap;
  7213. text-transform:none;
  7214. }
  7215. #u39207_div {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:71px;
  7221. height:25px;
  7222. background:inherit;
  7223. background-color:rgba(255, 255, 255, 0);
  7224. border:none;
  7225. border-left:0px;
  7226. border-top:0px;
  7227. border-right:0px;
  7228. border-radius:0px;
  7229. border-bottom-right-radius:0px;
  7230. border-bottom-left-radius:0px;
  7231. -moz-box-shadow:none;
  7232. -webkit-box-shadow:none;
  7233. box-shadow:none;
  7234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:10px;
  7238. line-height:25px;
  7239. }
  7240. #u39207 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:119px;
  7244. top:1114px;
  7245. width:71px;
  7246. height:25px;
  7247. display:flex;
  7248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7249. font-weight:400;
  7250. font-style:normal;
  7251. font-size:10px;
  7252. line-height:25px;
  7253. }
  7254. #u39207 .text {
  7255. position:absolute;
  7256. align-self:center;
  7257. padding:0px 0px 0px 0px;
  7258. box-sizing:border-box;
  7259. width:100%;
  7260. }
  7261. #u39207_text {
  7262. border-width:0px;
  7263. white-space:nowrap;
  7264. text-transform:none;
  7265. }
  7266. #u39208_img {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:58px;
  7272. height:69px;
  7273. }
  7274. #u39208 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:49px;
  7278. top:1029px;
  7279. width:58px;
  7280. height:69px;
  7281. display:flex;
  7282. }
  7283. #u39208 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:2px 2px 2px 2px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u39208_text {
  7291. border-width:0px;
  7292. word-wrap:break-word;
  7293. text-transform:none;
  7294. visibility:hidden;
  7295. }
  7296. #u39209_div {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:153px;
  7302. height:25px;
  7303. background:inherit;
  7304. background-color:rgba(0, 137, 254, 1);
  7305. border:none;
  7306. border-radius:4px;
  7307. -moz-box-shadow:none;
  7308. -webkit-box-shadow:none;
  7309. box-shadow:none;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:#FFFFFF;
  7315. text-align:center;
  7316. line-height:25px;
  7317. }
  7318. #u39209 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:51px;
  7322. top:1175px;
  7323. width:153px;
  7324. height:25px;
  7325. display:flex;
  7326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7327. font-weight:400;
  7328. font-style:normal;
  7329. font-size:12px;
  7330. color:#FFFFFF;
  7331. text-align:center;
  7332. line-height:25px;
  7333. }
  7334. #u39209 .text {
  7335. position:absolute;
  7336. align-self:center;
  7337. padding:0px 0px 0px 0px;
  7338. box-sizing:border-box;
  7339. width:100%;
  7340. }
  7341. #u39209_text {
  7342. border-width:0px;
  7343. word-wrap:break-word;
  7344. text-transform:none;
  7345. }
  7346. #u39210_div {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:71px;
  7352. height:25px;
  7353. background:inherit;
  7354. background-color:rgba(255, 255, 255, 0);
  7355. border:none;
  7356. border-left:0px;
  7357. border-top:0px;
  7358. border-right:0px;
  7359. border-radius:0px;
  7360. border-bottom-right-radius:0px;
  7361. border-bottom-left-radius:0px;
  7362. -moz-box-shadow:none;
  7363. -webkit-box-shadow:none;
  7364. box-shadow:none;
  7365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:10px;
  7369. line-height:25px;
  7370. }
  7371. #u39210 {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:119px;
  7375. top:1139px;
  7376. width:71px;
  7377. height:25px;
  7378. display:flex;
  7379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:10px;
  7383. line-height:25px;
  7384. }
  7385. #u39210 .text {
  7386. position:absolute;
  7387. align-self:center;
  7388. padding:0px 0px 0px 0px;
  7389. box-sizing:border-box;
  7390. width:100%;
  7391. }
  7392. #u39210_text {
  7393. border-width:0px;
  7394. white-space:nowrap;
  7395. text-transform:none;
  7396. }
  7397. #u39211_div {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:0px;
  7401. top:0px;
  7402. width:75px;
  7403. height:25px;
  7404. background:inherit;
  7405. background-color:rgba(255, 255, 255, 0);
  7406. border:none;
  7407. border-left:0px;
  7408. border-top:0px;
  7409. border-right:0px;
  7410. border-radius:0px;
  7411. border-bottom-right-radius:0px;
  7412. border-bottom-left-radius:0px;
  7413. -moz-box-shadow:none;
  7414. -webkit-box-shadow:none;
  7415. box-shadow:none;
  7416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7417. font-weight:400;
  7418. font-style:normal;
  7419. font-size:12px;
  7420. line-height:25px;
  7421. }
  7422. #u39211 {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:119px;
  7426. top:1054px;
  7427. width:75px;
  7428. height:25px;
  7429. display:flex;
  7430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:12px;
  7434. line-height:25px;
  7435. }
  7436. #u39211 .text {
  7437. position:absolute;
  7438. align-self:center;
  7439. padding:0px 0px 0px 0px;
  7440. box-sizing:border-box;
  7441. width:100%;
  7442. }
  7443. #u39211_text {
  7444. border-width:0px;
  7445. white-space:nowrap;
  7446. text-transform:none;
  7447. }
  7448. #u39212_img {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:24px;
  7454. height:24px;
  7455. }
  7456. #u39212 {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:183px;
  7460. top:976px;
  7461. width:24px;
  7462. height:24px;
  7463. display:flex;
  7464. }
  7465. #u39212 .text {
  7466. position:absolute;
  7467. align-self:center;
  7468. padding:2px 2px 2px 2px;
  7469. box-sizing:border-box;
  7470. width:100%;
  7471. }
  7472. #u39212_text {
  7473. border-width:0px;
  7474. word-wrap:break-word;
  7475. text-transform:none;
  7476. visibility:hidden;
  7477. }
  7478. #u39213 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:0px;
  7484. height:0px;
  7485. }
  7486. #u39214_div {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:177px;
  7492. height:250px;
  7493. background:inherit;
  7494. background-color:rgba(255, 255, 255, 1);
  7495. border:none;
  7496. border-radius:0px;
  7497. -moz-box-shadow:none;
  7498. -webkit-box-shadow:none;
  7499. box-shadow:none;
  7500. }
  7501. #u39214 {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:227px;
  7505. top:703px;
  7506. width:177px;
  7507. height:250px;
  7508. display:flex;
  7509. }
  7510. #u39214 .text {
  7511. position:absolute;
  7512. align-self:center;
  7513. padding:2px 2px 2px 2px;
  7514. box-sizing:border-box;
  7515. width:100%;
  7516. }
  7517. #u39214_text {
  7518. border-width:0px;
  7519. word-wrap:break-word;
  7520. text-transform:none;
  7521. visibility:hidden;
  7522. }
  7523. #u39215_div {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:0px;
  7527. top:0px;
  7528. width:177px;
  7529. height:50px;
  7530. background:inherit;
  7531. background-color:rgba(236, 128, 141, 1);
  7532. box-sizing:border-box;
  7533. border-width:1px;
  7534. border-style:solid;
  7535. border-color:rgba(242, 242, 242, 1);
  7536. border-left:0px;
  7537. border-top:0px;
  7538. border-right:0px;
  7539. border-radius:0px;
  7540. border-bottom-right-radius:0px;
  7541. border-bottom-left-radius:0px;
  7542. -moz-box-shadow:none;
  7543. -webkit-box-shadow:none;
  7544. box-shadow:none;
  7545. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7546. font-weight:500;
  7547. font-style:normal;
  7548. font-size:18px;
  7549. color:#FFFFFF;
  7550. }
  7551. #u39215 {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:227px;
  7555. top:703px;
  7556. width:177px;
  7557. height:50px;
  7558. display:flex;
  7559. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7560. font-weight:500;
  7561. font-style:normal;
  7562. font-size:18px;
  7563. color:#FFFFFF;
  7564. }
  7565. #u39215 .text {
  7566. position:absolute;
  7567. align-self:center;
  7568. padding:0px 0px 0px 15px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u39215_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. }
  7577. #u39216_div {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:0px;
  7581. top:0px;
  7582. width:75px;
  7583. height:25px;
  7584. background:inherit;
  7585. background-color:rgba(255, 255, 255, 0);
  7586. border:none;
  7587. border-left:0px;
  7588. border-top:0px;
  7589. border-right:0px;
  7590. border-radius:0px;
  7591. border-bottom-right-radius:0px;
  7592. border-bottom-left-radius:0px;
  7593. -moz-box-shadow:none;
  7594. -webkit-box-shadow:none;
  7595. box-shadow:none;
  7596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7597. font-weight:400;
  7598. font-style:normal;
  7599. font-size:12px;
  7600. line-height:25px;
  7601. }
  7602. #u39216 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:306px;
  7606. top:769px;
  7607. width:75px;
  7608. height:25px;
  7609. display:flex;
  7610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:12px;
  7614. line-height:25px;
  7615. }
  7616. #u39216 .text {
  7617. position:absolute;
  7618. align-self:center;
  7619. padding:0px 0px 0px 0px;
  7620. box-sizing:border-box;
  7621. width:100%;
  7622. }
  7623. #u39216_text {
  7624. border-width:0px;
  7625. white-space:nowrap;
  7626. text-transform:none;
  7627. }
  7628. #u39217_div {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:71px;
  7634. height:25px;
  7635. background:inherit;
  7636. background-color:rgba(255, 255, 255, 0);
  7637. border:none;
  7638. border-left:0px;
  7639. border-top:0px;
  7640. border-right:0px;
  7641. border-radius:0px;
  7642. border-bottom-right-radius:0px;
  7643. border-bottom-left-radius:0px;
  7644. -moz-box-shadow:none;
  7645. -webkit-box-shadow:none;
  7646. box-shadow:none;
  7647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7648. font-weight:400;
  7649. font-style:normal;
  7650. font-size:10px;
  7651. line-height:25px;
  7652. }
  7653. #u39217 {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:306px;
  7657. top:829px;
  7658. width:71px;
  7659. height:25px;
  7660. display:flex;
  7661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7662. font-weight:400;
  7663. font-style:normal;
  7664. font-size:10px;
  7665. line-height:25px;
  7666. }
  7667. #u39217 .text {
  7668. position:absolute;
  7669. align-self:center;
  7670. padding:0px 0px 0px 0px;
  7671. box-sizing:border-box;
  7672. width:100%;
  7673. }
  7674. #u39217_text {
  7675. border-width:0px;
  7676. white-space:nowrap;
  7677. text-transform:none;
  7678. }
  7679. #u39218_div {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:71px;
  7685. height:25px;
  7686. background:inherit;
  7687. background-color:rgba(255, 255, 255, 0);
  7688. border:none;
  7689. border-left:0px;
  7690. border-top:0px;
  7691. border-right:0px;
  7692. border-radius:0px;
  7693. border-bottom-right-radius:0px;
  7694. border-bottom-left-radius:0px;
  7695. -moz-box-shadow:none;
  7696. -webkit-box-shadow:none;
  7697. box-shadow:none;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:10px;
  7702. line-height:25px;
  7703. }
  7704. #u39218 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:306px;
  7708. top:854px;
  7709. width:71px;
  7710. height:25px;
  7711. display:flex;
  7712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:10px;
  7716. line-height:25px;
  7717. }
  7718. #u39218 .text {
  7719. position:absolute;
  7720. align-self:center;
  7721. padding:0px 0px 0px 0px;
  7722. box-sizing:border-box;
  7723. width:100%;
  7724. }
  7725. #u39218_text {
  7726. border-width:0px;
  7727. white-space:nowrap;
  7728. text-transform:none;
  7729. }
  7730. #u39219_img {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:0px;
  7734. top:0px;
  7735. width:58px;
  7736. height:69px;
  7737. }
  7738. #u39219 {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:236px;
  7742. top:769px;
  7743. width:58px;
  7744. height:69px;
  7745. display:flex;
  7746. }
  7747. #u39219 .text {
  7748. position:absolute;
  7749. align-self:center;
  7750. padding:2px 2px 2px 2px;
  7751. box-sizing:border-box;
  7752. width:100%;
  7753. }
  7754. #u39219_text {
  7755. border-width:0px;
  7756. word-wrap:break-word;
  7757. text-transform:none;
  7758. visibility:hidden;
  7759. }
  7760. #u39220_div {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:0px;
  7764. top:0px;
  7765. width:153px;
  7766. height:25px;
  7767. background:inherit;
  7768. background-color:rgba(0, 137, 254, 1);
  7769. border:none;
  7770. border-radius:4px;
  7771. -moz-box-shadow:none;
  7772. -webkit-box-shadow:none;
  7773. box-shadow:none;
  7774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7775. font-weight:400;
  7776. font-style:normal;
  7777. font-size:12px;
  7778. color:#FFFFFF;
  7779. text-align:center;
  7780. line-height:25px;
  7781. }
  7782. #u39220 {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:238px;
  7786. top:915px;
  7787. width:153px;
  7788. height:25px;
  7789. display:flex;
  7790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7791. font-weight:400;
  7792. font-style:normal;
  7793. font-size:12px;
  7794. color:#FFFFFF;
  7795. text-align:center;
  7796. line-height:25px;
  7797. }
  7798. #u39220 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:0px 0px 0px 0px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u39220_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. }
  7810. #u39221_div {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:71px;
  7816. height:25px;
  7817. background:inherit;
  7818. background-color:rgba(255, 255, 255, 0);
  7819. border:none;
  7820. border-left:0px;
  7821. border-top:0px;
  7822. border-right:0px;
  7823. border-radius:0px;
  7824. border-bottom-right-radius:0px;
  7825. border-bottom-left-radius:0px;
  7826. -moz-box-shadow:none;
  7827. -webkit-box-shadow:none;
  7828. box-shadow:none;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:10px;
  7833. line-height:25px;
  7834. }
  7835. #u39221 {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:306px;
  7839. top:879px;
  7840. width:71px;
  7841. height:25px;
  7842. display:flex;
  7843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7844. font-weight:400;
  7845. font-style:normal;
  7846. font-size:10px;
  7847. line-height:25px;
  7848. }
  7849. #u39221 .text {
  7850. position:absolute;
  7851. align-self:center;
  7852. padding:0px 0px 0px 0px;
  7853. box-sizing:border-box;
  7854. width:100%;
  7855. }
  7856. #u39221_text {
  7857. border-width:0px;
  7858. white-space:nowrap;
  7859. text-transform:none;
  7860. }
  7861. #u39222_div {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:0px;
  7865. top:0px;
  7866. width:75px;
  7867. height:25px;
  7868. background:inherit;
  7869. background-color:rgba(255, 255, 255, 0);
  7870. border:none;
  7871. border-left:0px;
  7872. border-top:0px;
  7873. border-right:0px;
  7874. border-radius:0px;
  7875. border-bottom-right-radius:0px;
  7876. border-bottom-left-radius:0px;
  7877. -moz-box-shadow:none;
  7878. -webkit-box-shadow:none;
  7879. box-shadow:none;
  7880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7881. font-weight:400;
  7882. font-style:normal;
  7883. font-size:12px;
  7884. line-height:25px;
  7885. }
  7886. #u39222 {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:306px;
  7890. top:794px;
  7891. width:75px;
  7892. height:25px;
  7893. display:flex;
  7894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:12px;
  7898. line-height:25px;
  7899. }
  7900. #u39222 .text {
  7901. position:absolute;
  7902. align-self:center;
  7903. padding:0px 0px 0px 0px;
  7904. box-sizing:border-box;
  7905. width:100%;
  7906. }
  7907. #u39222_text {
  7908. border-width:0px;
  7909. white-space:nowrap;
  7910. text-transform:none;
  7911. }
  7912. #u39223_img {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:0px;
  7916. top:0px;
  7917. width:24px;
  7918. height:24px;
  7919. }
  7920. #u39223 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:370px;
  7924. top:716px;
  7925. width:24px;
  7926. height:24px;
  7927. display:flex;
  7928. -webkit-transform:rotate(180deg);
  7929. -moz-transform:rotate(180deg);
  7930. -ms-transform:rotate(180deg);
  7931. transform:rotate(180deg);
  7932. }
  7933. #u39223 .text {
  7934. position:absolute;
  7935. align-self:center;
  7936. padding:2px 2px 2px 2px;
  7937. box-sizing:border-box;
  7938. width:100%;
  7939. }
  7940. #u39223_text {
  7941. border-width:0px;
  7942. word-wrap:break-word;
  7943. text-transform:none;
  7944. visibility:hidden;
  7945. }
  7946. #u39224 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:0px;
  7950. top:0px;
  7951. width:0px;
  7952. height:0px;
  7953. }
  7954. #u39225_div {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:0px;
  7958. top:0px;
  7959. width:177px;
  7960. height:250px;
  7961. background:inherit;
  7962. background-color:rgba(255, 255, 255, 1);
  7963. border:none;
  7964. border-radius:0px;
  7965. -moz-box-shadow:none;
  7966. -webkit-box-shadow:none;
  7967. box-shadow:none;
  7968. }
  7969. #u39225 {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:40px;
  7973. top:703px;
  7974. width:177px;
  7975. height:250px;
  7976. display:flex;
  7977. }
  7978. #u39225 .text {
  7979. position:absolute;
  7980. align-self:center;
  7981. padding:2px 2px 2px 2px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u39225_text {
  7986. border-width:0px;
  7987. word-wrap:break-word;
  7988. text-transform:none;
  7989. visibility:hidden;
  7990. }
  7991. #u39226_div {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:177px;
  7997. height:50px;
  7998. background:inherit;
  7999. background-color:rgba(236, 128, 141, 1);
  8000. box-sizing:border-box;
  8001. border-width:1px;
  8002. border-style:solid;
  8003. border-color:rgba(242, 242, 242, 1);
  8004. border-left:0px;
  8005. border-top:0px;
  8006. border-right:0px;
  8007. border-radius:0px;
  8008. border-bottom-right-radius:0px;
  8009. border-bottom-left-radius:0px;
  8010. -moz-box-shadow:none;
  8011. -webkit-box-shadow:none;
  8012. box-shadow:none;
  8013. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8014. font-weight:500;
  8015. font-style:normal;
  8016. font-size:18px;
  8017. color:#FFFFFF;
  8018. }
  8019. #u39226 {
  8020. border-width:0px;
  8021. position:absolute;
  8022. left:40px;
  8023. top:703px;
  8024. width:177px;
  8025. height:50px;
  8026. display:flex;
  8027. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8028. font-weight:500;
  8029. font-style:normal;
  8030. font-size:18px;
  8031. color:#FFFFFF;
  8032. }
  8033. #u39226 .text {
  8034. position:absolute;
  8035. align-self:center;
  8036. padding:0px 0px 0px 15px;
  8037. box-sizing:border-box;
  8038. width:100%;
  8039. }
  8040. #u39226_text {
  8041. border-width:0px;
  8042. word-wrap:break-word;
  8043. text-transform:none;
  8044. }
  8045. #u39227_div {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:0px;
  8049. top:0px;
  8050. width:75px;
  8051. height:25px;
  8052. background:inherit;
  8053. background-color:rgba(255, 255, 255, 0);
  8054. border:none;
  8055. border-left:0px;
  8056. border-top:0px;
  8057. border-right:0px;
  8058. border-radius:0px;
  8059. border-bottom-right-radius:0px;
  8060. border-bottom-left-radius:0px;
  8061. -moz-box-shadow:none;
  8062. -webkit-box-shadow:none;
  8063. box-shadow:none;
  8064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8065. font-weight:400;
  8066. font-style:normal;
  8067. font-size:12px;
  8068. line-height:25px;
  8069. }
  8070. #u39227 {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:119px;
  8074. top:769px;
  8075. width:75px;
  8076. height:25px;
  8077. display:flex;
  8078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8079. font-weight:400;
  8080. font-style:normal;
  8081. font-size:12px;
  8082. line-height:25px;
  8083. }
  8084. #u39227 .text {
  8085. position:absolute;
  8086. align-self:center;
  8087. padding:0px 0px 0px 0px;
  8088. box-sizing:border-box;
  8089. width:100%;
  8090. }
  8091. #u39227_text {
  8092. border-width:0px;
  8093. white-space:nowrap;
  8094. text-transform:none;
  8095. }
  8096. #u39228_div {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:0px;
  8101. width:71px;
  8102. height:25px;
  8103. background:inherit;
  8104. background-color:rgba(255, 255, 255, 0);
  8105. border:none;
  8106. border-left:0px;
  8107. border-top:0px;
  8108. border-right:0px;
  8109. border-radius:0px;
  8110. border-bottom-right-radius:0px;
  8111. border-bottom-left-radius:0px;
  8112. -moz-box-shadow:none;
  8113. -webkit-box-shadow:none;
  8114. box-shadow:none;
  8115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8116. font-weight:400;
  8117. font-style:normal;
  8118. font-size:10px;
  8119. line-height:25px;
  8120. }
  8121. #u39228 {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:119px;
  8125. top:829px;
  8126. width:71px;
  8127. height:25px;
  8128. display:flex;
  8129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:10px;
  8133. line-height:25px;
  8134. }
  8135. #u39228 .text {
  8136. position:absolute;
  8137. align-self:center;
  8138. padding:0px 0px 0px 0px;
  8139. box-sizing:border-box;
  8140. width:100%;
  8141. }
  8142. #u39228_text {
  8143. border-width:0px;
  8144. white-space:nowrap;
  8145. text-transform:none;
  8146. }
  8147. #u39229_div {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:0px;
  8151. top:0px;
  8152. width:71px;
  8153. height:25px;
  8154. background:inherit;
  8155. background-color:rgba(255, 255, 255, 0);
  8156. border:none;
  8157. border-left:0px;
  8158. border-top:0px;
  8159. border-right:0px;
  8160. border-radius:0px;
  8161. border-bottom-right-radius:0px;
  8162. border-bottom-left-radius:0px;
  8163. -moz-box-shadow:none;
  8164. -webkit-box-shadow:none;
  8165. box-shadow:none;
  8166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8167. font-weight:400;
  8168. font-style:normal;
  8169. font-size:10px;
  8170. line-height:25px;
  8171. }
  8172. #u39229 {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:119px;
  8176. top:854px;
  8177. width:71px;
  8178. height:25px;
  8179. display:flex;
  8180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8181. font-weight:400;
  8182. font-style:normal;
  8183. font-size:10px;
  8184. line-height:25px;
  8185. }
  8186. #u39229 .text {
  8187. position:absolute;
  8188. align-self:center;
  8189. padding:0px 0px 0px 0px;
  8190. box-sizing:border-box;
  8191. width:100%;
  8192. }
  8193. #u39229_text {
  8194. border-width:0px;
  8195. white-space:nowrap;
  8196. text-transform:none;
  8197. }
  8198. #u39230_img {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:0px;
  8202. top:0px;
  8203. width:58px;
  8204. height:69px;
  8205. }
  8206. #u39230 {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:49px;
  8210. top:769px;
  8211. width:58px;
  8212. height:69px;
  8213. display:flex;
  8214. }
  8215. #u39230 .text {
  8216. position:absolute;
  8217. align-self:center;
  8218. padding:2px 2px 2px 2px;
  8219. box-sizing:border-box;
  8220. width:100%;
  8221. }
  8222. #u39230_text {
  8223. border-width:0px;
  8224. word-wrap:break-word;
  8225. text-transform:none;
  8226. visibility:hidden;
  8227. }
  8228. #u39231_div {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:153px;
  8234. height:25px;
  8235. background:inherit;
  8236. background-color:rgba(0, 137, 254, 1);
  8237. border:none;
  8238. border-radius:4px;
  8239. -moz-box-shadow:none;
  8240. -webkit-box-shadow:none;
  8241. box-shadow:none;
  8242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8243. font-weight:400;
  8244. font-style:normal;
  8245. font-size:12px;
  8246. color:#FFFFFF;
  8247. text-align:center;
  8248. line-height:25px;
  8249. }
  8250. #u39231 {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:51px;
  8254. top:915px;
  8255. width:153px;
  8256. height:25px;
  8257. display:flex;
  8258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8259. font-weight:400;
  8260. font-style:normal;
  8261. font-size:12px;
  8262. color:#FFFFFF;
  8263. text-align:center;
  8264. line-height:25px;
  8265. }
  8266. #u39231 .text {
  8267. position:absolute;
  8268. align-self:center;
  8269. padding:0px 0px 0px 0px;
  8270. box-sizing:border-box;
  8271. width:100%;
  8272. }
  8273. #u39231_text {
  8274. border-width:0px;
  8275. word-wrap:break-word;
  8276. text-transform:none;
  8277. }
  8278. #u39232_div {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:0px;
  8282. top:0px;
  8283. width:71px;
  8284. height:25px;
  8285. background:inherit;
  8286. background-color:rgba(255, 255, 255, 0);
  8287. border:none;
  8288. border-left:0px;
  8289. border-top:0px;
  8290. border-right:0px;
  8291. border-radius:0px;
  8292. border-bottom-right-radius:0px;
  8293. border-bottom-left-radius:0px;
  8294. -moz-box-shadow:none;
  8295. -webkit-box-shadow:none;
  8296. box-shadow:none;
  8297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8298. font-weight:400;
  8299. font-style:normal;
  8300. font-size:10px;
  8301. line-height:25px;
  8302. }
  8303. #u39232 {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:119px;
  8307. top:879px;
  8308. width:71px;
  8309. height:25px;
  8310. display:flex;
  8311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8312. font-weight:400;
  8313. font-style:normal;
  8314. font-size:10px;
  8315. line-height:25px;
  8316. }
  8317. #u39232 .text {
  8318. position:absolute;
  8319. align-self:center;
  8320. padding:0px 0px 0px 0px;
  8321. box-sizing:border-box;
  8322. width:100%;
  8323. }
  8324. #u39232_text {
  8325. border-width:0px;
  8326. white-space:nowrap;
  8327. text-transform:none;
  8328. }
  8329. #u39233_div {
  8330. border-width:0px;
  8331. position:absolute;
  8332. left:0px;
  8333. top:0px;
  8334. width:75px;
  8335. height:25px;
  8336. background:inherit;
  8337. background-color:rgba(255, 255, 255, 0);
  8338. border:none;
  8339. border-left:0px;
  8340. border-top:0px;
  8341. border-right:0px;
  8342. border-radius:0px;
  8343. border-bottom-right-radius:0px;
  8344. border-bottom-left-radius:0px;
  8345. -moz-box-shadow:none;
  8346. -webkit-box-shadow:none;
  8347. box-shadow:none;
  8348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8349. font-weight:400;
  8350. font-style:normal;
  8351. font-size:12px;
  8352. line-height:25px;
  8353. }
  8354. #u39233 {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:119px;
  8358. top:794px;
  8359. width:75px;
  8360. height:25px;
  8361. display:flex;
  8362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8363. font-weight:400;
  8364. font-style:normal;
  8365. font-size:12px;
  8366. line-height:25px;
  8367. }
  8368. #u39233 .text {
  8369. position:absolute;
  8370. align-self:center;
  8371. padding:0px 0px 0px 0px;
  8372. box-sizing:border-box;
  8373. width:100%;
  8374. }
  8375. #u39233_text {
  8376. border-width:0px;
  8377. white-space:nowrap;
  8378. text-transform:none;
  8379. }
  8380. #u39234_img {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:0px;
  8384. top:0px;
  8385. width:24px;
  8386. height:24px;
  8387. }
  8388. #u39234 {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:176px;
  8392. top:716px;
  8393. width:24px;
  8394. height:24px;
  8395. display:flex;
  8396. }
  8397. #u39234 .text {
  8398. position:absolute;
  8399. align-self:center;
  8400. padding:2px 2px 2px 2px;
  8401. box-sizing:border-box;
  8402. width:100%;
  8403. }
  8404. #u39234_text {
  8405. border-width:0px;
  8406. word-wrap:break-word;
  8407. text-transform:none;
  8408. visibility:hidden;
  8409. }
  8410. #u39235 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:0px;
  8414. top:0px;
  8415. width:0px;
  8416. height:0px;
  8417. }
  8418. #u39236_div {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:177px;
  8424. height:250px;
  8425. background:inherit;
  8426. background-color:rgba(255, 255, 255, 1);
  8427. border:none;
  8428. border-radius:0px;
  8429. -moz-box-shadow:none;
  8430. -webkit-box-shadow:none;
  8431. box-shadow:none;
  8432. }
  8433. #u39236 {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:227px;
  8437. top:1213px;
  8438. width:177px;
  8439. height:250px;
  8440. display:flex;
  8441. }
  8442. #u39236 .text {
  8443. position:absolute;
  8444. align-self:center;
  8445. padding:2px 2px 2px 2px;
  8446. box-sizing:border-box;
  8447. width:100%;
  8448. }
  8449. #u39236_text {
  8450. border-width:0px;
  8451. word-wrap:break-word;
  8452. text-transform:none;
  8453. visibility:hidden;
  8454. }
  8455. #u39237_div {
  8456. border-width:0px;
  8457. position:absolute;
  8458. left:0px;
  8459. top:0px;
  8460. width:177px;
  8461. height:50px;
  8462. background:inherit;
  8463. background-color:rgba(215, 215, 215, 1);
  8464. box-sizing:border-box;
  8465. border-width:1px;
  8466. border-style:solid;
  8467. border-color:rgba(242, 242, 242, 1);
  8468. border-left:0px;
  8469. border-top:0px;
  8470. border-right:0px;
  8471. border-radius:0px;
  8472. border-bottom-right-radius:0px;
  8473. border-bottom-left-radius:0px;
  8474. -moz-box-shadow:none;
  8475. -webkit-box-shadow:none;
  8476. box-shadow:none;
  8477. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8478. font-weight:500;
  8479. font-style:normal;
  8480. font-size:18px;
  8481. color:#FFFFFF;
  8482. }
  8483. #u39237 {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:227px;
  8487. top:1213px;
  8488. width:177px;
  8489. height:50px;
  8490. display:flex;
  8491. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8492. font-weight:500;
  8493. font-style:normal;
  8494. font-size:18px;
  8495. color:#FFFFFF;
  8496. }
  8497. #u39237 .text {
  8498. position:absolute;
  8499. align-self:center;
  8500. padding:0px 0px 0px 15px;
  8501. box-sizing:border-box;
  8502. width:100%;
  8503. }
  8504. #u39237_text {
  8505. border-width:0px;
  8506. word-wrap:break-word;
  8507. text-transform:none;
  8508. }
  8509. #u39238_div {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:0px;
  8513. top:0px;
  8514. width:75px;
  8515. height:25px;
  8516. background:inherit;
  8517. background-color:rgba(255, 255, 255, 0);
  8518. border:none;
  8519. border-left:0px;
  8520. border-top:0px;
  8521. border-right:0px;
  8522. border-radius:0px;
  8523. border-bottom-right-radius:0px;
  8524. border-bottom-left-radius:0px;
  8525. -moz-box-shadow:none;
  8526. -webkit-box-shadow:none;
  8527. box-shadow:none;
  8528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. font-size:12px;
  8532. line-height:25px;
  8533. }
  8534. #u39238 {
  8535. border-width:0px;
  8536. position:absolute;
  8537. left:306px;
  8538. top:1279px;
  8539. width:75px;
  8540. height:25px;
  8541. display:flex;
  8542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8543. font-weight:400;
  8544. font-style:normal;
  8545. font-size:12px;
  8546. line-height:25px;
  8547. }
  8548. #u39238 .text {
  8549. position:absolute;
  8550. align-self:center;
  8551. padding:0px 0px 0px 0px;
  8552. box-sizing:border-box;
  8553. width:100%;
  8554. }
  8555. #u39238_text {
  8556. border-width:0px;
  8557. white-space:nowrap;
  8558. text-transform:none;
  8559. }
  8560. #u39239_div {
  8561. border-width:0px;
  8562. position:absolute;
  8563. left:0px;
  8564. top:0px;
  8565. width:71px;
  8566. height:25px;
  8567. background:inherit;
  8568. background-color:rgba(255, 255, 255, 0);
  8569. border:none;
  8570. border-left:0px;
  8571. border-top:0px;
  8572. border-right:0px;
  8573. border-radius:0px;
  8574. border-bottom-right-radius:0px;
  8575. border-bottom-left-radius:0px;
  8576. -moz-box-shadow:none;
  8577. -webkit-box-shadow:none;
  8578. box-shadow:none;
  8579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8580. font-weight:400;
  8581. font-style:normal;
  8582. font-size:10px;
  8583. line-height:25px;
  8584. }
  8585. #u39239 {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:306px;
  8589. top:1339px;
  8590. width:71px;
  8591. height:25px;
  8592. display:flex;
  8593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8594. font-weight:400;
  8595. font-style:normal;
  8596. font-size:10px;
  8597. line-height:25px;
  8598. }
  8599. #u39239 .text {
  8600. position:absolute;
  8601. align-self:center;
  8602. padding:0px 0px 0px 0px;
  8603. box-sizing:border-box;
  8604. width:100%;
  8605. }
  8606. #u39239_text {
  8607. border-width:0px;
  8608. white-space:nowrap;
  8609. text-transform:none;
  8610. }
  8611. #u39240_div {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:0px;
  8615. top:0px;
  8616. width:71px;
  8617. height:25px;
  8618. background:inherit;
  8619. background-color:rgba(255, 255, 255, 0);
  8620. border:none;
  8621. border-left:0px;
  8622. border-top:0px;
  8623. border-right:0px;
  8624. border-radius:0px;
  8625. border-bottom-right-radius:0px;
  8626. border-bottom-left-radius:0px;
  8627. -moz-box-shadow:none;
  8628. -webkit-box-shadow:none;
  8629. box-shadow:none;
  8630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8631. font-weight:400;
  8632. font-style:normal;
  8633. font-size:10px;
  8634. line-height:25px;
  8635. }
  8636. #u39240 {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:306px;
  8640. top:1364px;
  8641. width:71px;
  8642. height:25px;
  8643. display:flex;
  8644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8645. font-weight:400;
  8646. font-style:normal;
  8647. font-size:10px;
  8648. line-height:25px;
  8649. }
  8650. #u39240 .text {
  8651. position:absolute;
  8652. align-self:center;
  8653. padding:0px 0px 0px 0px;
  8654. box-sizing:border-box;
  8655. width:100%;
  8656. }
  8657. #u39240_text {
  8658. border-width:0px;
  8659. white-space:nowrap;
  8660. text-transform:none;
  8661. }
  8662. #u39241_img {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:0px;
  8666. top:0px;
  8667. width:58px;
  8668. height:69px;
  8669. }
  8670. #u39241 {
  8671. border-width:0px;
  8672. position:absolute;
  8673. left:236px;
  8674. top:1279px;
  8675. width:58px;
  8676. height:69px;
  8677. display:flex;
  8678. }
  8679. #u39241 .text {
  8680. position:absolute;
  8681. align-self:center;
  8682. padding:2px 2px 2px 2px;
  8683. box-sizing:border-box;
  8684. width:100%;
  8685. }
  8686. #u39241_text {
  8687. border-width:0px;
  8688. word-wrap:break-word;
  8689. text-transform:none;
  8690. visibility:hidden;
  8691. }
  8692. #u39242_div {
  8693. border-width:0px;
  8694. position:absolute;
  8695. left:0px;
  8696. top:0px;
  8697. width:153px;
  8698. height:25px;
  8699. background:inherit;
  8700. background-color:rgba(0, 137, 254, 1);
  8701. border:none;
  8702. border-radius:4px;
  8703. -moz-box-shadow:none;
  8704. -webkit-box-shadow:none;
  8705. box-shadow:none;
  8706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8707. font-weight:400;
  8708. font-style:normal;
  8709. font-size:12px;
  8710. color:#FFFFFF;
  8711. text-align:center;
  8712. line-height:25px;
  8713. }
  8714. #u39242 {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:238px;
  8718. top:1425px;
  8719. width:153px;
  8720. height:25px;
  8721. display:flex;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:12px;
  8726. color:#FFFFFF;
  8727. text-align:center;
  8728. line-height:25px;
  8729. }
  8730. #u39242 .text {
  8731. position:absolute;
  8732. align-self:center;
  8733. padding:0px 0px 0px 0px;
  8734. box-sizing:border-box;
  8735. width:100%;
  8736. }
  8737. #u39242_text {
  8738. border-width:0px;
  8739. word-wrap:break-word;
  8740. text-transform:none;
  8741. }
  8742. #u39243_div {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:0px;
  8746. top:0px;
  8747. width:71px;
  8748. height:25px;
  8749. background:inherit;
  8750. background-color:rgba(255, 255, 255, 0);
  8751. border:none;
  8752. border-left:0px;
  8753. border-top:0px;
  8754. border-right:0px;
  8755. border-radius:0px;
  8756. border-bottom-right-radius:0px;
  8757. border-bottom-left-radius:0px;
  8758. -moz-box-shadow:none;
  8759. -webkit-box-shadow:none;
  8760. box-shadow:none;
  8761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8762. font-weight:400;
  8763. font-style:normal;
  8764. font-size:10px;
  8765. line-height:25px;
  8766. }
  8767. #u39243 {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:306px;
  8771. top:1389px;
  8772. width:71px;
  8773. height:25px;
  8774. display:flex;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:10px;
  8779. line-height:25px;
  8780. }
  8781. #u39243 .text {
  8782. position:absolute;
  8783. align-self:center;
  8784. padding:0px 0px 0px 0px;
  8785. box-sizing:border-box;
  8786. width:100%;
  8787. }
  8788. #u39243_text {
  8789. border-width:0px;
  8790. white-space:nowrap;
  8791. text-transform:none;
  8792. }
  8793. #u39244_div {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:0px;
  8797. top:0px;
  8798. width:75px;
  8799. height:25px;
  8800. background:inherit;
  8801. background-color:rgba(255, 255, 255, 0);
  8802. border:none;
  8803. border-left:0px;
  8804. border-top:0px;
  8805. border-right:0px;
  8806. border-radius:0px;
  8807. border-bottom-right-radius:0px;
  8808. border-bottom-left-radius:0px;
  8809. -moz-box-shadow:none;
  8810. -webkit-box-shadow:none;
  8811. box-shadow:none;
  8812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8813. font-weight:400;
  8814. font-style:normal;
  8815. font-size:12px;
  8816. line-height:25px;
  8817. }
  8818. #u39244 {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:306px;
  8822. top:1304px;
  8823. width:75px;
  8824. height:25px;
  8825. display:flex;
  8826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8827. font-weight:400;
  8828. font-style:normal;
  8829. font-size:12px;
  8830. line-height:25px;
  8831. }
  8832. #u39244 .text {
  8833. position:absolute;
  8834. align-self:center;
  8835. padding:0px 0px 0px 0px;
  8836. box-sizing:border-box;
  8837. width:100%;
  8838. }
  8839. #u39244_text {
  8840. border-width:0px;
  8841. white-space:nowrap;
  8842. text-transform:none;
  8843. }
  8844. #u39245_div {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:0px;
  8848. top:0px;
  8849. width:25px;
  8850. height:25px;
  8851. background:inherit;
  8852. background-color:rgba(255, 255, 255, 0);
  8853. border:none;
  8854. border-left:0px;
  8855. border-top:0px;
  8856. border-right:0px;
  8857. border-radius:0px;
  8858. border-bottom-right-radius:0px;
  8859. border-bottom-left-radius:0px;
  8860. -moz-box-shadow:none;
  8861. -webkit-box-shadow:none;
  8862. box-shadow:none;
  8863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8864. font-weight:400;
  8865. font-style:normal;
  8866. font-size:12px;
  8867. color:#7F7F7F;
  8868. line-height:25px;
  8869. }
  8870. #u39245 {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:369px;
  8874. top:1226px;
  8875. width:25px;
  8876. height:25px;
  8877. display:flex;
  8878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8879. font-weight:400;
  8880. font-style:normal;
  8881. font-size:12px;
  8882. color:#7F7F7F;
  8883. line-height:25px;
  8884. }
  8885. #u39245 .text {
  8886. position:absolute;
  8887. align-self:center;
  8888. padding:0px 0px 0px 0px;
  8889. box-sizing:border-box;
  8890. width:100%;
  8891. }
  8892. #u39245_text {
  8893. border-width:0px;
  8894. white-space:nowrap;
  8895. text-transform:none;
  8896. }
  8897. #u39246 {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:0px;
  8903. height:0px;
  8904. }
  8905. #u39247_div {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:177px;
  8911. height:250px;
  8912. background:inherit;
  8913. background-color:rgba(255, 255, 255, 1);
  8914. border:none;
  8915. border-radius:0px;
  8916. -moz-box-shadow:none;
  8917. -webkit-box-shadow:none;
  8918. box-shadow:none;
  8919. }
  8920. #u39247 {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:40px;
  8924. top:1213px;
  8925. width:177px;
  8926. height:250px;
  8927. display:flex;
  8928. }
  8929. #u39247 .text {
  8930. position:absolute;
  8931. align-self:center;
  8932. padding:2px 2px 2px 2px;
  8933. box-sizing:border-box;
  8934. width:100%;
  8935. }
  8936. #u39247_text {
  8937. border-width:0px;
  8938. word-wrap:break-word;
  8939. text-transform:none;
  8940. visibility:hidden;
  8941. }
  8942. #u39248_div {
  8943. border-width:0px;
  8944. position:absolute;
  8945. left:0px;
  8946. top:0px;
  8947. width:177px;
  8948. height:50px;
  8949. background:inherit;
  8950. background-color:rgba(215, 215, 215, 1);
  8951. box-sizing:border-box;
  8952. border-width:1px;
  8953. border-style:solid;
  8954. border-color:rgba(242, 242, 242, 1);
  8955. border-left:0px;
  8956. border-top:0px;
  8957. border-right:0px;
  8958. border-radius:0px;
  8959. border-bottom-right-radius:0px;
  8960. border-bottom-left-radius:0px;
  8961. -moz-box-shadow:none;
  8962. -webkit-box-shadow:none;
  8963. box-shadow:none;
  8964. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8965. font-weight:500;
  8966. font-style:normal;
  8967. font-size:18px;
  8968. color:#FFFFFF;
  8969. }
  8970. #u39248 {
  8971. border-width:0px;
  8972. position:absolute;
  8973. left:40px;
  8974. top:1213px;
  8975. width:177px;
  8976. height:50px;
  8977. display:flex;
  8978. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8979. font-weight:500;
  8980. font-style:normal;
  8981. font-size:18px;
  8982. color:#FFFFFF;
  8983. }
  8984. #u39248 .text {
  8985. position:absolute;
  8986. align-self:center;
  8987. padding:0px 0px 0px 15px;
  8988. box-sizing:border-box;
  8989. width:100%;
  8990. }
  8991. #u39248_text {
  8992. border-width:0px;
  8993. word-wrap:break-word;
  8994. text-transform:none;
  8995. }
  8996. #u39249_div {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:0px;
  9000. top:0px;
  9001. width:75px;
  9002. height:25px;
  9003. background:inherit;
  9004. background-color:rgba(255, 255, 255, 0);
  9005. border:none;
  9006. border-left:0px;
  9007. border-top:0px;
  9008. border-right:0px;
  9009. border-radius:0px;
  9010. border-bottom-right-radius:0px;
  9011. border-bottom-left-radius:0px;
  9012. -moz-box-shadow:none;
  9013. -webkit-box-shadow:none;
  9014. box-shadow:none;
  9015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9016. font-weight:400;
  9017. font-style:normal;
  9018. font-size:12px;
  9019. line-height:25px;
  9020. }
  9021. #u39249 {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:119px;
  9025. top:1279px;
  9026. width:75px;
  9027. height:25px;
  9028. display:flex;
  9029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:12px;
  9033. line-height:25px;
  9034. }
  9035. #u39249 .text {
  9036. position:absolute;
  9037. align-self:center;
  9038. padding:0px 0px 0px 0px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u39249_text {
  9043. border-width:0px;
  9044. white-space:nowrap;
  9045. text-transform:none;
  9046. }
  9047. #u39250_div {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:0px;
  9051. top:0px;
  9052. width:71px;
  9053. height:25px;
  9054. background:inherit;
  9055. background-color:rgba(255, 255, 255, 0);
  9056. border:none;
  9057. border-left:0px;
  9058. border-top:0px;
  9059. border-right:0px;
  9060. border-radius:0px;
  9061. border-bottom-right-radius:0px;
  9062. border-bottom-left-radius:0px;
  9063. -moz-box-shadow:none;
  9064. -webkit-box-shadow:none;
  9065. box-shadow:none;
  9066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9067. font-weight:400;
  9068. font-style:normal;
  9069. font-size:10px;
  9070. line-height:25px;
  9071. }
  9072. #u39250 {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:119px;
  9076. top:1339px;
  9077. width:71px;
  9078. height:25px;
  9079. display:flex;
  9080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9081. font-weight:400;
  9082. font-style:normal;
  9083. font-size:10px;
  9084. line-height:25px;
  9085. }
  9086. #u39250 .text {
  9087. position:absolute;
  9088. align-self:center;
  9089. padding:0px 0px 0px 0px;
  9090. box-sizing:border-box;
  9091. width:100%;
  9092. }
  9093. #u39250_text {
  9094. border-width:0px;
  9095. white-space:nowrap;
  9096. text-transform:none;
  9097. }
  9098. #u39251_div {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:0px;
  9102. top:0px;
  9103. width:71px;
  9104. height:25px;
  9105. background:inherit;
  9106. background-color:rgba(255, 255, 255, 0);
  9107. border:none;
  9108. border-left:0px;
  9109. border-top:0px;
  9110. border-right:0px;
  9111. border-radius:0px;
  9112. border-bottom-right-radius:0px;
  9113. border-bottom-left-radius:0px;
  9114. -moz-box-shadow:none;
  9115. -webkit-box-shadow:none;
  9116. box-shadow:none;
  9117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9118. font-weight:400;
  9119. font-style:normal;
  9120. font-size:10px;
  9121. line-height:25px;
  9122. }
  9123. #u39251 {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:119px;
  9127. top:1364px;
  9128. width:71px;
  9129. height:25px;
  9130. display:flex;
  9131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9132. font-weight:400;
  9133. font-style:normal;
  9134. font-size:10px;
  9135. line-height:25px;
  9136. }
  9137. #u39251 .text {
  9138. position:absolute;
  9139. align-self:center;
  9140. padding:0px 0px 0px 0px;
  9141. box-sizing:border-box;
  9142. width:100%;
  9143. }
  9144. #u39251_text {
  9145. border-width:0px;
  9146. white-space:nowrap;
  9147. text-transform:none;
  9148. }
  9149. #u39252_img {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:0px;
  9153. top:0px;
  9154. width:58px;
  9155. height:69px;
  9156. }
  9157. #u39252 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:49px;
  9161. top:1279px;
  9162. width:58px;
  9163. height:69px;
  9164. display:flex;
  9165. }
  9166. #u39252 .text {
  9167. position:absolute;
  9168. align-self:center;
  9169. padding:2px 2px 2px 2px;
  9170. box-sizing:border-box;
  9171. width:100%;
  9172. }
  9173. #u39252_text {
  9174. border-width:0px;
  9175. word-wrap:break-word;
  9176. text-transform:none;
  9177. visibility:hidden;
  9178. }
  9179. #u39253_div {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:0px;
  9183. top:0px;
  9184. width:153px;
  9185. height:25px;
  9186. background:inherit;
  9187. background-color:rgba(0, 137, 254, 1);
  9188. border:none;
  9189. border-radius:4px;
  9190. -moz-box-shadow:none;
  9191. -webkit-box-shadow:none;
  9192. box-shadow:none;
  9193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9194. font-weight:400;
  9195. font-style:normal;
  9196. font-size:12px;
  9197. color:#FFFFFF;
  9198. text-align:center;
  9199. line-height:25px;
  9200. }
  9201. #u39253 {
  9202. border-width:0px;
  9203. position:absolute;
  9204. left:51px;
  9205. top:1425px;
  9206. width:153px;
  9207. height:25px;
  9208. display:flex;
  9209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9210. font-weight:400;
  9211. font-style:normal;
  9212. font-size:12px;
  9213. color:#FFFFFF;
  9214. text-align:center;
  9215. line-height:25px;
  9216. }
  9217. #u39253 .text {
  9218. position:absolute;
  9219. align-self:center;
  9220. padding:0px 0px 0px 0px;
  9221. box-sizing:border-box;
  9222. width:100%;
  9223. }
  9224. #u39253_text {
  9225. border-width:0px;
  9226. word-wrap:break-word;
  9227. text-transform:none;
  9228. }
  9229. #u39254_div {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:71px;
  9235. height:25px;
  9236. background:inherit;
  9237. background-color:rgba(255, 255, 255, 0);
  9238. border:none;
  9239. border-left:0px;
  9240. border-top:0px;
  9241. border-right:0px;
  9242. border-radius:0px;
  9243. border-bottom-right-radius:0px;
  9244. border-bottom-left-radius:0px;
  9245. -moz-box-shadow:none;
  9246. -webkit-box-shadow:none;
  9247. box-shadow:none;
  9248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9249. font-weight:400;
  9250. font-style:normal;
  9251. font-size:10px;
  9252. line-height:25px;
  9253. }
  9254. #u39254 {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:119px;
  9258. top:1389px;
  9259. width:71px;
  9260. height:25px;
  9261. display:flex;
  9262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9263. font-weight:400;
  9264. font-style:normal;
  9265. font-size:10px;
  9266. line-height:25px;
  9267. }
  9268. #u39254 .text {
  9269. position:absolute;
  9270. align-self:center;
  9271. padding:0px 0px 0px 0px;
  9272. box-sizing:border-box;
  9273. width:100%;
  9274. }
  9275. #u39254_text {
  9276. border-width:0px;
  9277. white-space:nowrap;
  9278. text-transform:none;
  9279. }
  9280. #u39255_div {
  9281. border-width:0px;
  9282. position:absolute;
  9283. left:0px;
  9284. top:0px;
  9285. width:75px;
  9286. height:25px;
  9287. background:inherit;
  9288. background-color:rgba(255, 255, 255, 0);
  9289. border:none;
  9290. border-left:0px;
  9291. border-top:0px;
  9292. border-right:0px;
  9293. border-radius:0px;
  9294. border-bottom-right-radius:0px;
  9295. border-bottom-left-radius:0px;
  9296. -moz-box-shadow:none;
  9297. -webkit-box-shadow:none;
  9298. box-shadow:none;
  9299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9300. font-weight:400;
  9301. font-style:normal;
  9302. font-size:12px;
  9303. line-height:25px;
  9304. }
  9305. #u39255 {
  9306. border-width:0px;
  9307. position:absolute;
  9308. left:119px;
  9309. top:1304px;
  9310. width:75px;
  9311. height:25px;
  9312. display:flex;
  9313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9314. font-weight:400;
  9315. font-style:normal;
  9316. font-size:12px;
  9317. line-height:25px;
  9318. }
  9319. #u39255 .text {
  9320. position:absolute;
  9321. align-self:center;
  9322. padding:0px 0px 0px 0px;
  9323. box-sizing:border-box;
  9324. width:100%;
  9325. }
  9326. #u39255_text {
  9327. border-width:0px;
  9328. white-space:nowrap;
  9329. text-transform:none;
  9330. }
  9331. #u39256_div {
  9332. border-width:0px;
  9333. position:absolute;
  9334. left:0px;
  9335. top:0px;
  9336. width:25px;
  9337. height:25px;
  9338. background:inherit;
  9339. background-color:rgba(255, 255, 255, 0);
  9340. border:none;
  9341. border-left:0px;
  9342. border-top:0px;
  9343. border-right:0px;
  9344. border-radius:0px;
  9345. border-bottom-right-radius:0px;
  9346. border-bottom-left-radius:0px;
  9347. -moz-box-shadow:none;
  9348. -webkit-box-shadow:none;
  9349. box-shadow:none;
  9350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9351. font-weight:400;
  9352. font-style:normal;
  9353. font-size:12px;
  9354. color:#7F7F7F;
  9355. line-height:25px;
  9356. }
  9357. #u39256 {
  9358. border-width:0px;
  9359. position:absolute;
  9360. left:183px;
  9361. top:1226px;
  9362. width:25px;
  9363. height:25px;
  9364. display:flex;
  9365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9366. font-weight:400;
  9367. font-style:normal;
  9368. font-size:12px;
  9369. color:#7F7F7F;
  9370. line-height:25px;
  9371. }
  9372. #u39256 .text {
  9373. position:absolute;
  9374. align-self:center;
  9375. padding:0px 0px 0px 0px;
  9376. box-sizing:border-box;
  9377. width:100%;
  9378. }
  9379. #u39256_text {
  9380. border-width:0px;
  9381. white-space:nowrap;
  9382. text-transform:none;
  9383. }
  9384. #u39257 {
  9385. border-width:0px;
  9386. position:absolute;
  9387. left:0px;
  9388. top:0px;
  9389. width:0px;
  9390. height:0px;
  9391. }
  9392. #u39258_div {
  9393. border-width:0px;
  9394. position:absolute;
  9395. left:0px;
  9396. top:0px;
  9397. width:177px;
  9398. height:250px;
  9399. background:inherit;
  9400. background-color:rgba(255, 255, 255, 1);
  9401. border:none;
  9402. border-radius:0px;
  9403. -moz-box-shadow:none;
  9404. -webkit-box-shadow:none;
  9405. box-shadow:none;
  9406. }
  9407. #u39258 {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:227px;
  9411. top:963px;
  9412. width:177px;
  9413. height:250px;
  9414. display:flex;
  9415. }
  9416. #u39258 .text {
  9417. position:absolute;
  9418. align-self:center;
  9419. padding:2px 2px 2px 2px;
  9420. box-sizing:border-box;
  9421. width:100%;
  9422. }
  9423. #u39258_text {
  9424. border-width:0px;
  9425. word-wrap:break-word;
  9426. text-transform:none;
  9427. visibility:hidden;
  9428. }
  9429. #u39259_div {
  9430. border-width:0px;
  9431. position:absolute;
  9432. left:0px;
  9433. top:0px;
  9434. width:177px;
  9435. height:50px;
  9436. background:inherit;
  9437. background-color:rgba(215, 215, 215, 1);
  9438. box-sizing:border-box;
  9439. border-width:1px;
  9440. border-style:solid;
  9441. border-color:rgba(242, 242, 242, 1);
  9442. border-left:0px;
  9443. border-top:0px;
  9444. border-right:0px;
  9445. border-radius:0px;
  9446. border-bottom-right-radius:0px;
  9447. border-bottom-left-radius:0px;
  9448. -moz-box-shadow:none;
  9449. -webkit-box-shadow:none;
  9450. box-shadow:none;
  9451. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9452. font-weight:500;
  9453. font-style:normal;
  9454. font-size:18px;
  9455. color:#FFFFFF;
  9456. }
  9457. #u39259 {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:227px;
  9461. top:963px;
  9462. width:177px;
  9463. height:50px;
  9464. display:flex;
  9465. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9466. font-weight:500;
  9467. font-style:normal;
  9468. font-size:18px;
  9469. color:#FFFFFF;
  9470. }
  9471. #u39259 .text {
  9472. position:absolute;
  9473. align-self:center;
  9474. padding:0px 0px 0px 15px;
  9475. box-sizing:border-box;
  9476. width:100%;
  9477. }
  9478. #u39259_text {
  9479. border-width:0px;
  9480. word-wrap:break-word;
  9481. text-transform:none;
  9482. }
  9483. #u39260_div {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:0px;
  9487. top:0px;
  9488. width:75px;
  9489. height:25px;
  9490. background:inherit;
  9491. background-color:rgba(255, 255, 255, 0);
  9492. border:none;
  9493. border-left:0px;
  9494. border-top:0px;
  9495. border-right:0px;
  9496. border-radius:0px;
  9497. border-bottom-right-radius:0px;
  9498. border-bottom-left-radius:0px;
  9499. -moz-box-shadow:none;
  9500. -webkit-box-shadow:none;
  9501. box-shadow:none;
  9502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9503. font-weight:400;
  9504. font-style:normal;
  9505. font-size:12px;
  9506. line-height:25px;
  9507. }
  9508. #u39260 {
  9509. border-width:0px;
  9510. position:absolute;
  9511. left:306px;
  9512. top:1029px;
  9513. width:75px;
  9514. height:25px;
  9515. display:flex;
  9516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9517. font-weight:400;
  9518. font-style:normal;
  9519. font-size:12px;
  9520. line-height:25px;
  9521. }
  9522. #u39260 .text {
  9523. position:absolute;
  9524. align-self:center;
  9525. padding:0px 0px 0px 0px;
  9526. box-sizing:border-box;
  9527. width:100%;
  9528. }
  9529. #u39260_text {
  9530. border-width:0px;
  9531. white-space:nowrap;
  9532. text-transform:none;
  9533. }
  9534. #u39261_div {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:0px;
  9538. top:0px;
  9539. width:71px;
  9540. height:25px;
  9541. background:inherit;
  9542. background-color:rgba(255, 255, 255, 0);
  9543. border:none;
  9544. border-left:0px;
  9545. border-top:0px;
  9546. border-right:0px;
  9547. border-radius:0px;
  9548. border-bottom-right-radius:0px;
  9549. border-bottom-left-radius:0px;
  9550. -moz-box-shadow:none;
  9551. -webkit-box-shadow:none;
  9552. box-shadow:none;
  9553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9554. font-weight:400;
  9555. font-style:normal;
  9556. font-size:10px;
  9557. line-height:25px;
  9558. }
  9559. #u39261 {
  9560. border-width:0px;
  9561. position:absolute;
  9562. left:306px;
  9563. top:1089px;
  9564. width:71px;
  9565. height:25px;
  9566. display:flex;
  9567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9568. font-weight:400;
  9569. font-style:normal;
  9570. font-size:10px;
  9571. line-height:25px;
  9572. }
  9573. #u39261 .text {
  9574. position:absolute;
  9575. align-self:center;
  9576. padding:0px 0px 0px 0px;
  9577. box-sizing:border-box;
  9578. width:100%;
  9579. }
  9580. #u39261_text {
  9581. border-width:0px;
  9582. white-space:nowrap;
  9583. text-transform:none;
  9584. }
  9585. #u39262_div {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:0px;
  9589. top:0px;
  9590. width:71px;
  9591. height:25px;
  9592. background:inherit;
  9593. background-color:rgba(255, 255, 255, 0);
  9594. border:none;
  9595. border-left:0px;
  9596. border-top:0px;
  9597. border-right:0px;
  9598. border-radius:0px;
  9599. border-bottom-right-radius:0px;
  9600. border-bottom-left-radius:0px;
  9601. -moz-box-shadow:none;
  9602. -webkit-box-shadow:none;
  9603. box-shadow:none;
  9604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9605. font-weight:400;
  9606. font-style:normal;
  9607. font-size:10px;
  9608. line-height:25px;
  9609. }
  9610. #u39262 {
  9611. border-width:0px;
  9612. position:absolute;
  9613. left:306px;
  9614. top:1114px;
  9615. width:71px;
  9616. height:25px;
  9617. display:flex;
  9618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9619. font-weight:400;
  9620. font-style:normal;
  9621. font-size:10px;
  9622. line-height:25px;
  9623. }
  9624. #u39262 .text {
  9625. position:absolute;
  9626. align-self:center;
  9627. padding:0px 0px 0px 0px;
  9628. box-sizing:border-box;
  9629. width:100%;
  9630. }
  9631. #u39262_text {
  9632. border-width:0px;
  9633. white-space:nowrap;
  9634. text-transform:none;
  9635. }
  9636. #u39263_img {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:0px;
  9640. top:0px;
  9641. width:58px;
  9642. height:69px;
  9643. }
  9644. #u39263 {
  9645. border-width:0px;
  9646. position:absolute;
  9647. left:236px;
  9648. top:1029px;
  9649. width:58px;
  9650. height:69px;
  9651. display:flex;
  9652. }
  9653. #u39263 .text {
  9654. position:absolute;
  9655. align-self:center;
  9656. padding:2px 2px 2px 2px;
  9657. box-sizing:border-box;
  9658. width:100%;
  9659. }
  9660. #u39263_text {
  9661. border-width:0px;
  9662. word-wrap:break-word;
  9663. text-transform:none;
  9664. visibility:hidden;
  9665. }
  9666. #u39264_div {
  9667. border-width:0px;
  9668. position:absolute;
  9669. left:0px;
  9670. top:0px;
  9671. width:153px;
  9672. height:25px;
  9673. background:inherit;
  9674. background-color:rgba(0, 137, 254, 1);
  9675. border:none;
  9676. border-radius:4px;
  9677. -moz-box-shadow:none;
  9678. -webkit-box-shadow:none;
  9679. box-shadow:none;
  9680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9681. font-weight:400;
  9682. font-style:normal;
  9683. font-size:12px;
  9684. color:#FFFFFF;
  9685. text-align:center;
  9686. line-height:25px;
  9687. }
  9688. #u39264 {
  9689. border-width:0px;
  9690. position:absolute;
  9691. left:238px;
  9692. top:1175px;
  9693. width:153px;
  9694. height:25px;
  9695. display:flex;
  9696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9697. font-weight:400;
  9698. font-style:normal;
  9699. font-size:12px;
  9700. color:#FFFFFF;
  9701. text-align:center;
  9702. line-height:25px;
  9703. }
  9704. #u39264 .text {
  9705. position:absolute;
  9706. align-self:center;
  9707. padding:0px 0px 0px 0px;
  9708. box-sizing:border-box;
  9709. width:100%;
  9710. }
  9711. #u39264_text {
  9712. border-width:0px;
  9713. word-wrap:break-word;
  9714. text-transform:none;
  9715. }
  9716. #u39265_div {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:71px;
  9722. height:25px;
  9723. background:inherit;
  9724. background-color:rgba(255, 255, 255, 0);
  9725. border:none;
  9726. border-left:0px;
  9727. border-top:0px;
  9728. border-right:0px;
  9729. border-radius:0px;
  9730. border-bottom-right-radius:0px;
  9731. border-bottom-left-radius:0px;
  9732. -moz-box-shadow:none;
  9733. -webkit-box-shadow:none;
  9734. box-shadow:none;
  9735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9736. font-weight:400;
  9737. font-style:normal;
  9738. font-size:10px;
  9739. line-height:25px;
  9740. }
  9741. #u39265 {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:306px;
  9745. top:1139px;
  9746. width:71px;
  9747. height:25px;
  9748. display:flex;
  9749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. font-size:10px;
  9753. line-height:25px;
  9754. }
  9755. #u39265 .text {
  9756. position:absolute;
  9757. align-self:center;
  9758. padding:0px 0px 0px 0px;
  9759. box-sizing:border-box;
  9760. width:100%;
  9761. }
  9762. #u39265_text {
  9763. border-width:0px;
  9764. white-space:nowrap;
  9765. text-transform:none;
  9766. }
  9767. #u39266_div {
  9768. border-width:0px;
  9769. position:absolute;
  9770. left:0px;
  9771. top:0px;
  9772. width:75px;
  9773. height:25px;
  9774. background:inherit;
  9775. background-color:rgba(255, 255, 255, 0);
  9776. border:none;
  9777. border-left:0px;
  9778. border-top:0px;
  9779. border-right:0px;
  9780. border-radius:0px;
  9781. border-bottom-right-radius:0px;
  9782. border-bottom-left-radius:0px;
  9783. -moz-box-shadow:none;
  9784. -webkit-box-shadow:none;
  9785. box-shadow:none;
  9786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9787. font-weight:400;
  9788. font-style:normal;
  9789. font-size:12px;
  9790. line-height:25px;
  9791. }
  9792. #u39266 {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:306px;
  9796. top:1054px;
  9797. width:75px;
  9798. height:25px;
  9799. display:flex;
  9800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9801. font-weight:400;
  9802. font-style:normal;
  9803. font-size:12px;
  9804. line-height:25px;
  9805. }
  9806. #u39266 .text {
  9807. position:absolute;
  9808. align-self:center;
  9809. padding:0px 0px 0px 0px;
  9810. box-sizing:border-box;
  9811. width:100%;
  9812. }
  9813. #u39266_text {
  9814. border-width:0px;
  9815. white-space:nowrap;
  9816. text-transform:none;
  9817. }
  9818. #u39267_div {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:0px;
  9822. top:0px;
  9823. width:25px;
  9824. height:25px;
  9825. background:inherit;
  9826. background-color:rgba(255, 255, 255, 0);
  9827. border:none;
  9828. border-left:0px;
  9829. border-top:0px;
  9830. border-right:0px;
  9831. border-radius:0px;
  9832. border-bottom-right-radius:0px;
  9833. border-bottom-left-radius:0px;
  9834. -moz-box-shadow:none;
  9835. -webkit-box-shadow:none;
  9836. box-shadow:none;
  9837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9838. font-weight:400;
  9839. font-style:normal;
  9840. font-size:12px;
  9841. color:#7F7F7F;
  9842. line-height:25px;
  9843. }
  9844. #u39267 {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:369px;
  9848. top:976px;
  9849. width:25px;
  9850. height:25px;
  9851. display:flex;
  9852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9853. font-weight:400;
  9854. font-style:normal;
  9855. font-size:12px;
  9856. color:#7F7F7F;
  9857. line-height:25px;
  9858. }
  9859. #u39267 .text {
  9860. position:absolute;
  9861. align-self:center;
  9862. padding:0px 0px 0px 0px;
  9863. box-sizing:border-box;
  9864. width:100%;
  9865. }
  9866. #u39267_text {
  9867. border-width:0px;
  9868. white-space:nowrap;
  9869. text-transform:none;
  9870. }
  9871. #u39268_img {
  9872. border-width:0px;
  9873. position:absolute;
  9874. left:0px;
  9875. top:0px;
  9876. width:433px;
  9877. height:865px;
  9878. }
  9879. #u39268 {
  9880. border-width:0px;
  9881. position:absolute;
  9882. left:906px;
  9883. top:0px;
  9884. width:433px;
  9885. height:865px;
  9886. display:flex;
  9887. }
  9888. #u39268 .text {
  9889. position:absolute;
  9890. align-self:center;
  9891. padding:2px 2px 2px 2px;
  9892. box-sizing:border-box;
  9893. width:100%;
  9894. }
  9895. #u39268_text {
  9896. border-width:0px;
  9897. word-wrap:break-word;
  9898. text-transform:none;
  9899. visibility:hidden;
  9900. }
  9901. #u39269_div {
  9902. border-width:0px;
  9903. position:absolute;
  9904. left:0px;
  9905. top:0px;
  9906. width:375px;
  9907. height:735px;
  9908. background:inherit;
  9909. background-color:rgba(51, 51, 51, 0.6);
  9910. border:none;
  9911. border-top:0px;
  9912. border-radius:24px;
  9913. border-top-left-radius:0px;
  9914. border-top-right-radius:0px;
  9915. -moz-box-shadow:none;
  9916. -webkit-box-shadow:none;
  9917. box-shadow:none;
  9918. }
  9919. #u39269 {
  9920. border-width:0px;
  9921. position:absolute;
  9922. left:935px;
  9923. top:106px;
  9924. width:375px;
  9925. height:735px;
  9926. display:flex;
  9927. }
  9928. #u39269 .text {
  9929. position:absolute;
  9930. align-self:center;
  9931. padding:2px 2px 2px 2px;
  9932. box-sizing:border-box;
  9933. width:100%;
  9934. }
  9935. #u39269_text {
  9936. border-width:0px;
  9937. word-wrap:break-word;
  9938. text-transform:none;
  9939. visibility:hidden;
  9940. }
  9941. #u39270_div {
  9942. border-width:0px;
  9943. position:absolute;
  9944. left:0px;
  9945. top:0px;
  9946. width:375px;
  9947. height:379px;
  9948. background:inherit;
  9949. background-color:rgba(255, 255, 255, 1);
  9950. border:none;
  9951. border-top:0px;
  9952. border-radius:24px;
  9953. border-top-left-radius:0px;
  9954. border-top-right-radius:0px;
  9955. -moz-box-shadow:none;
  9956. -webkit-box-shadow:none;
  9957. box-shadow:none;
  9958. }
  9959. #u39270 {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:935px;
  9963. top:462px;
  9964. width:375px;
  9965. height:379px;
  9966. display:flex;
  9967. }
  9968. #u39270 .text {
  9969. position:absolute;
  9970. align-self:center;
  9971. padding:2px 2px 2px 2px;
  9972. box-sizing:border-box;
  9973. width:100%;
  9974. }
  9975. #u39270_text {
  9976. border-width:0px;
  9977. word-wrap:break-word;
  9978. text-transform:none;
  9979. visibility:hidden;
  9980. }
  9981. #u39271_div {
  9982. border-width:0px;
  9983. position:absolute;
  9984. left:0px;
  9985. top:0px;
  9986. width:375px;
  9987. height:60px;
  9988. background:inherit;
  9989. background-color:rgba(170, 170, 170, 0);
  9990. box-sizing:border-box;
  9991. border-width:1px;
  9992. border-style:solid;
  9993. border-color:rgba(242, 242, 242, 1);
  9994. border-left:0px;
  9995. border-top:0px;
  9996. border-right:0px;
  9997. border-radius:0px;
  9998. border-bottom-right-radius:0px;
  9999. border-bottom-left-radius:0px;
  10000. -moz-box-shadow:none;
  10001. -webkit-box-shadow:none;
  10002. box-shadow:none;
  10003. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10004. font-weight:500;
  10005. font-style:normal;
  10006. font-size:18px;
  10007. }
  10008. #u39271 {
  10009. border-width:0px;
  10010. position:absolute;
  10011. left:935px;
  10012. top:461px;
  10013. width:375px;
  10014. height:60px;
  10015. display:flex;
  10016. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10017. font-weight:500;
  10018. font-style:normal;
  10019. font-size:18px;
  10020. }
  10021. #u39271 .text {
  10022. position:absolute;
  10023. align-self:center;
  10024. padding:0px 0px 0px 20px;
  10025. box-sizing:border-box;
  10026. width:100%;
  10027. }
  10028. #u39271_text {
  10029. border-width:0px;
  10030. word-wrap:break-word;
  10031. text-transform:none;
  10032. }
  10033. #u39272_div {
  10034. border-width:0px;
  10035. position:absolute;
  10036. left:0px;
  10037. top:0px;
  10038. width:330px;
  10039. height:40px;
  10040. background:inherit;
  10041. background-color:rgba(255, 255, 255, 0);
  10042. box-sizing:border-box;
  10043. border-width:1px;
  10044. border-style:solid;
  10045. border-color:rgba(242, 242, 242, 1);
  10046. border-left:0px;
  10047. border-top:0px;
  10048. border-right:0px;
  10049. border-radius:0px;
  10050. border-bottom-right-radius:0px;
  10051. border-bottom-left-radius:0px;
  10052. -moz-box-shadow:none;
  10053. -webkit-box-shadow:none;
  10054. box-shadow:none;
  10055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10056. font-weight:400;
  10057. font-style:normal;
  10058. font-size:14px;
  10059. line-height:40px;
  10060. }
  10061. #u39272 {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:953px;
  10065. top:530px;
  10066. width:330px;
  10067. height:40px;
  10068. display:flex;
  10069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10070. font-weight:400;
  10071. font-style:normal;
  10072. font-size:14px;
  10073. line-height:40px;
  10074. }
  10075. #u39272 .text {
  10076. position:absolute;
  10077. align-self:center;
  10078. padding:0px 0px 0px 10px;
  10079. box-sizing:border-box;
  10080. width:100%;
  10081. }
  10082. #u39272_text {
  10083. border-width:0px;
  10084. word-wrap:break-word;
  10085. text-transform:none;
  10086. }
  10087. #u39273_div {
  10088. border-width:0px;
  10089. position:absolute;
  10090. left:0px;
  10091. top:0px;
  10092. width:160px;
  10093. height:45px;
  10094. background:inherit;
  10095. background-color:rgba(242, 242, 242, 1);
  10096. border:none;
  10097. border-radius:4px;
  10098. -moz-box-shadow:none;
  10099. -webkit-box-shadow:none;
  10100. box-shadow:none;
  10101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10102. font-style:normal;
  10103. font-size:14px;
  10104. line-height:25px;
  10105. }
  10106. #u39273 {
  10107. border-width:0px;
  10108. position:absolute;
  10109. left:953px;
  10110. top:629px;
  10111. width:160px;
  10112. height:45px;
  10113. display:flex;
  10114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10115. font-style:normal;
  10116. font-size:14px;
  10117. line-height:25px;
  10118. }
  10119. #u39273 .text {
  10120. position:absolute;
  10121. align-self:center;
  10122. padding:10px 10px 10px 10px;
  10123. box-sizing:border-box;
  10124. width:100%;
  10125. }
  10126. #u39273_text {
  10127. border-width:0px;
  10128. word-wrap:break-word;
  10129. text-transform:none;
  10130. }
  10131. #u39274_div {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:160px;
  10137. height:45px;
  10138. background:inherit;
  10139. background-color:rgba(242, 242, 242, 1);
  10140. border:none;
  10141. border-radius:4px;
  10142. -moz-box-shadow:none;
  10143. -webkit-box-shadow:none;
  10144. box-shadow:none;
  10145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10146. font-style:normal;
  10147. font-size:14px;
  10148. line-height:25px;
  10149. }
  10150. #u39274 {
  10151. border-width:0px;
  10152. position:absolute;
  10153. left:1123px;
  10154. top:629px;
  10155. width:160px;
  10156. height:45px;
  10157. display:flex;
  10158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10159. font-style:normal;
  10160. font-size:14px;
  10161. line-height:25px;
  10162. }
  10163. #u39274 .text {
  10164. position:absolute;
  10165. align-self:center;
  10166. padding:10px 10px 10px 10px;
  10167. box-sizing:border-box;
  10168. width:100%;
  10169. }
  10170. #u39274_text {
  10171. border-width:0px;
  10172. word-wrap:break-word;
  10173. text-transform:none;
  10174. }
  10175. #u39275_img {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:0px;
  10179. top:0px;
  10180. width:24px;
  10181. height:24px;
  10182. }
  10183. #u39275 {
  10184. border-width:0px;
  10185. position:absolute;
  10186. left:1264px;
  10187. top:479px;
  10188. width:24px;
  10189. height:24px;
  10190. display:flex;
  10191. -webkit-transform:rotate(180deg);
  10192. -moz-transform:rotate(180deg);
  10193. -ms-transform:rotate(180deg);
  10194. transform:rotate(180deg);
  10195. }
  10196. #u39275 .text {
  10197. position:absolute;
  10198. align-self:center;
  10199. padding:2px 2px 2px 2px;
  10200. box-sizing:border-box;
  10201. width:100%;
  10202. }
  10203. #u39275_text {
  10204. border-width:0px;
  10205. word-wrap:break-word;
  10206. text-transform:none;
  10207. visibility:hidden;
  10208. }
  10209. #u39276_div {
  10210. border-width:0px;
  10211. position:absolute;
  10212. left:0px;
  10213. top:0px;
  10214. width:160px;
  10215. height:45px;
  10216. background:inherit;
  10217. background-color:rgba(242, 242, 242, 1);
  10218. border:none;
  10219. border-radius:4px;
  10220. -moz-box-shadow:none;
  10221. -webkit-box-shadow:none;
  10222. box-shadow:none;
  10223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10224. font-style:normal;
  10225. font-size:14px;
  10226. line-height:25px;
  10227. }
  10228. #u39276 {
  10229. border-width:0px;
  10230. position:absolute;
  10231. left:953px;
  10232. top:684px;
  10233. width:160px;
  10234. height:45px;
  10235. display:flex;
  10236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10237. font-style:normal;
  10238. font-size:14px;
  10239. line-height:25px;
  10240. }
  10241. #u39276 .text {
  10242. position:absolute;
  10243. align-self:center;
  10244. padding:10px 10px 10px 10px;
  10245. box-sizing:border-box;
  10246. width:100%;
  10247. }
  10248. #u39276_text {
  10249. border-width:0px;
  10250. word-wrap:break-word;
  10251. text-transform:none;
  10252. }
  10253. #u39277_div {
  10254. border-width:0px;
  10255. position:absolute;
  10256. left:0px;
  10257. top:0px;
  10258. width:160px;
  10259. height:45px;
  10260. background:inherit;
  10261. background-color:rgba(242, 242, 242, 1);
  10262. border:none;
  10263. border-radius:4px;
  10264. -moz-box-shadow:none;
  10265. -webkit-box-shadow:none;
  10266. box-shadow:none;
  10267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10268. font-style:normal;
  10269. font-size:14px;
  10270. line-height:25px;
  10271. }
  10272. #u39277 {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:1123px;
  10276. top:684px;
  10277. width:160px;
  10278. height:45px;
  10279. display:flex;
  10280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10281. font-style:normal;
  10282. font-size:14px;
  10283. line-height:25px;
  10284. }
  10285. #u39277 .text {
  10286. position:absolute;
  10287. align-self:center;
  10288. padding:10px 10px 10px 10px;
  10289. box-sizing:border-box;
  10290. width:100%;
  10291. }
  10292. #u39277_text {
  10293. border-width:0px;
  10294. word-wrap:break-word;
  10295. text-transform:none;
  10296. }
  10297. #u39278_img {
  10298. border-width:0px;
  10299. position:absolute;
  10300. left:0px;
  10301. top:0px;
  10302. width:375px;
  10303. height:258px;
  10304. }
  10305. #u39278 {
  10306. border-width:0px;
  10307. position:absolute;
  10308. left:935px;
  10309. top:204px;
  10310. width:375px;
  10311. height:258px;
  10312. display:flex;
  10313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10314. font-weight:400;
  10315. font-style:normal;
  10316. font-size:18px;
  10317. color:#FFFFFF;
  10318. }
  10319. #u39278 .text {
  10320. position:absolute;
  10321. align-self:center;
  10322. padding:2px 2px 2px 2px;
  10323. box-sizing:border-box;
  10324. width:100%;
  10325. }
  10326. #u39278_text {
  10327. border-width:0px;
  10328. word-wrap:break-word;
  10329. text-transform:none;
  10330. }
  10331. #u39279 {
  10332. border-width:0px;
  10333. position:absolute;
  10334. left:0px;
  10335. top:0px;
  10336. width:0px;
  10337. height:0px;
  10338. }
  10339. #u39280_div {
  10340. border-width:0px;
  10341. position:absolute;
  10342. left:0px;
  10343. top:0px;
  10344. width:81px;
  10345. height:40px;
  10346. background:inherit;
  10347. background-color:rgba(255, 255, 255, 0);
  10348. border:none;
  10349. border-left:0px;
  10350. border-top:0px;
  10351. border-right:0px;
  10352. border-radius:0px;
  10353. border-bottom-right-radius:0px;
  10354. border-bottom-left-radius:0px;
  10355. -moz-box-shadow:none;
  10356. -webkit-box-shadow:none;
  10357. box-shadow:none;
  10358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10359. font-weight:400;
  10360. font-style:normal;
  10361. font-size:14px;
  10362. line-height:40px;
  10363. }
  10364. #u39280 {
  10365. border-width:0px;
  10366. position:absolute;
  10367. left:953px;
  10368. top:570px;
  10369. width:81px;
  10370. height:40px;
  10371. display:flex;
  10372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10373. font-weight:400;
  10374. font-style:normal;
  10375. font-size:14px;
  10376. line-height:40px;
  10377. }
  10378. #u39280 .text {
  10379. position:absolute;
  10380. align-self:center;
  10381. padding:0px 0px 0px 10px;
  10382. box-sizing:border-box;
  10383. width:100%;
  10384. }
  10385. #u39280_text {
  10386. border-width:0px;
  10387. white-space:nowrap;
  10388. text-transform:none;
  10389. }
  10390. #u39281_div {
  10391. border-width:0px;
  10392. position:absolute;
  10393. left:0px;
  10394. top:0px;
  10395. width:230px;
  10396. height:40px;
  10397. background:inherit;
  10398. background-color:rgba(255, 255, 255, 0);
  10399. border:none;
  10400. border-left:0px;
  10401. border-top:0px;
  10402. border-right:0px;
  10403. border-radius:0px;
  10404. border-bottom-right-radius:0px;
  10405. border-bottom-left-radius:0px;
  10406. -moz-box-shadow:none;
  10407. -webkit-box-shadow:none;
  10408. box-shadow:none;
  10409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10410. font-weight:400;
  10411. font-style:normal;
  10412. font-size:14px;
  10413. line-height:40px;
  10414. }
  10415. #u39281 {
  10416. border-width:0px;
  10417. position:absolute;
  10418. left:1037px;
  10419. top:570px;
  10420. width:230px;
  10421. height:40px;
  10422. display:flex;
  10423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10424. font-weight:400;
  10425. font-style:normal;
  10426. font-size:14px;
  10427. line-height:40px;
  10428. }
  10429. #u39281 .text {
  10430. position:absolute;
  10431. align-self:center;
  10432. padding:0px 0px 0px 10px;
  10433. box-sizing:border-box;
  10434. width:100%;
  10435. }
  10436. #u39281_text {
  10437. border-width:0px;
  10438. white-space:nowrap;
  10439. text-transform:none;
  10440. }
  10441. #u39282_img {
  10442. border-width:0px;
  10443. position:absolute;
  10444. left:0px;
  10445. top:0px;
  10446. width:12px;
  10447. height:18px;
  10448. }
  10449. #u39282 {
  10450. border-width:0px;
  10451. position:absolute;
  10452. left:1270px;
  10453. top:579px;
  10454. width:12px;
  10455. height:18px;
  10456. display:flex;
  10457. }
  10458. #u39282 .text {
  10459. position:absolute;
  10460. align-self:center;
  10461. padding:2px 2px 2px 2px;
  10462. box-sizing:border-box;
  10463. width:100%;
  10464. }
  10465. #u39282_text {
  10466. border-width:0px;
  10467. word-wrap:break-word;
  10468. text-transform:none;
  10469. visibility:hidden;
  10470. }
  10471. #u39283_div {
  10472. border-width:0px;
  10473. position:absolute;
  10474. left:0px;
  10475. top:0px;
  10476. width:40px;
  10477. height:19px;
  10478. background:inherit;
  10479. background-color:rgba(170, 170, 170, 1);
  10480. border:none;
  10481. border-radius:0px;
  10482. -moz-box-shadow:none;
  10483. -webkit-box-shadow:none;
  10484. box-shadow:none;
  10485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10486. font-weight:400;
  10487. font-style:normal;
  10488. font-size:12px;
  10489. color:#FFFFFF;
  10490. text-align:center;
  10491. line-height:25px;
  10492. }
  10493. #u39283 {
  10494. border-width:0px;
  10495. position:absolute;
  10496. left:817px;
  10497. top:204px;
  10498. width:40px;
  10499. height:19px;
  10500. display:flex;
  10501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10502. font-weight:400;
  10503. font-style:normal;
  10504. font-size:12px;
  10505. color:#FFFFFF;
  10506. text-align:center;
  10507. line-height:25px;
  10508. }
  10509. #u39283 .text {
  10510. position:absolute;
  10511. align-self:center;
  10512. padding:0px 0px 0px 0px;
  10513. box-sizing:border-box;
  10514. width:100%;
  10515. }
  10516. #u39283_text {
  10517. border-width:0px;
  10518. word-wrap:break-word;
  10519. text-transform:none;
  10520. }
  10521. #u39284_div {
  10522. border-width:0px;
  10523. position:absolute;
  10524. left:0px;
  10525. top:0px;
  10526. width:40px;
  10527. height:19px;
  10528. background:inherit;
  10529. background-color:rgba(170, 170, 170, 1);
  10530. border:none;
  10531. border-radius:0px;
  10532. -moz-box-shadow:none;
  10533. -webkit-box-shadow:none;
  10534. box-shadow:none;
  10535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10536. font-weight:400;
  10537. font-style:normal;
  10538. font-size:12px;
  10539. color:#D9001B;
  10540. text-align:center;
  10541. line-height:25px;
  10542. }
  10543. #u39284 {
  10544. border-width:0px;
  10545. position:absolute;
  10546. left:817px;
  10547. top:229px;
  10548. width:40px;
  10549. height:19px;
  10550. display:flex;
  10551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10552. font-weight:400;
  10553. font-style:normal;
  10554. font-size:12px;
  10555. color:#D9001B;
  10556. text-align:center;
  10557. line-height:25px;
  10558. }
  10559. #u39284 .text {
  10560. position:absolute;
  10561. align-self:center;
  10562. padding:0px 0px 0px 0px;
  10563. box-sizing:border-box;
  10564. width:100%;
  10565. }
  10566. #u39284_text {
  10567. border-width:0px;
  10568. word-wrap:break-word;
  10569. text-transform:none;
  10570. }
  10571. #u39285 {
  10572. border-width:0px;
  10573. position:absolute;
  10574. left:0px;
  10575. top:0px;
  10576. width:0px;
  10577. height:0px;
  10578. }
  10579. #u39286_div {
  10580. border-width:0px;
  10581. position:absolute;
  10582. left:0px;
  10583. top:0px;
  10584. width:376px;
  10585. height:50px;
  10586. background:inherit;
  10587. background-color:rgba(0, 0, 0, 1);
  10588. border:none;
  10589. border-radius:0px;
  10590. -moz-box-shadow:none;
  10591. -webkit-box-shadow:none;
  10592. box-shadow:none;
  10593. }
  10594. #u39286 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:482px;
  10598. top:412px;
  10599. width:376px;
  10600. height:50px;
  10601. display:flex;
  10602. }
  10603. #u39286 .text {
  10604. position:absolute;
  10605. align-self:center;
  10606. padding:2px 2px 2px 2px;
  10607. box-sizing:border-box;
  10608. width:100%;
  10609. }
  10610. #u39286_text {
  10611. border-width:0px;
  10612. word-wrap:break-word;
  10613. text-transform:none;
  10614. visibility:hidden;
  10615. }
  10616. #u39287 {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:0px;
  10620. top:0px;
  10621. width:0px;
  10622. height:0px;
  10623. }
  10624. #u39288_div {
  10625. border-width:0px;
  10626. position:absolute;
  10627. left:0px;
  10628. top:0px;
  10629. width:7px;
  10630. height:22px;
  10631. background:inherit;
  10632. background-color:rgba(242, 242, 242, 1);
  10633. border:none;
  10634. border-radius:0px;
  10635. -moz-box-shadow:none;
  10636. -webkit-box-shadow:none;
  10637. box-shadow:none;
  10638. }
  10639. #u39288 {
  10640. border-width:0px;
  10641. position:absolute;
  10642. left:505px;
  10643. top:426px;
  10644. width:7px;
  10645. height:22px;
  10646. display:flex;
  10647. }
  10648. #u39288 .text {
  10649. position:absolute;
  10650. align-self:center;
  10651. padding:2px 2px 2px 2px;
  10652. box-sizing:border-box;
  10653. width:100%;
  10654. }
  10655. #u39288_text {
  10656. border-width:0px;
  10657. word-wrap:break-word;
  10658. text-transform:none;
  10659. visibility:hidden;
  10660. }
  10661. #u39289_div {
  10662. border-width:0px;
  10663. position:absolute;
  10664. left:0px;
  10665. top:0px;
  10666. width:7px;
  10667. height:22px;
  10668. background:inherit;
  10669. background-color:rgba(242, 242, 242, 1);
  10670. border:none;
  10671. border-radius:0px;
  10672. -moz-box-shadow:none;
  10673. -webkit-box-shadow:none;
  10674. box-shadow:none;
  10675. }
  10676. #u39289 {
  10677. border-width:0px;
  10678. position:absolute;
  10679. left:516px;
  10680. top:426px;
  10681. width:7px;
  10682. height:22px;
  10683. display:flex;
  10684. }
  10685. #u39289 .text {
  10686. position:absolute;
  10687. align-self:center;
  10688. padding:2px 2px 2px 2px;
  10689. box-sizing:border-box;
  10690. width:100%;
  10691. }
  10692. #u39289_text {
  10693. border-width:0px;
  10694. word-wrap:break-word;
  10695. text-transform:none;
  10696. visibility:hidden;
  10697. }
  10698. #u39290_div {
  10699. border-width:0px;
  10700. position:absolute;
  10701. left:0px;
  10702. top:0px;
  10703. width:40px;
  10704. height:24px;
  10705. background:inherit;
  10706. background-color:rgba(255, 255, 255, 0);
  10707. box-sizing:border-box;
  10708. border-width:1px;
  10709. border-style:solid;
  10710. border-color:rgba(255, 255, 255, 1);
  10711. border-radius:4px;
  10712. -moz-box-shadow:none;
  10713. -webkit-box-shadow:none;
  10714. box-shadow:none;
  10715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10716. font-weight:400;
  10717. font-style:normal;
  10718. font-size:12px;
  10719. color:#FFFFFF;
  10720. text-align:center;
  10721. }
  10722. #u39290 {
  10723. border-width:0px;
  10724. position:absolute;
  10725. left:591px;
  10726. top:426px;
  10727. width:40px;
  10728. height:24px;
  10729. display:flex;
  10730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10731. font-weight:400;
  10732. font-style:normal;
  10733. font-size:12px;
  10734. color:#FFFFFF;
  10735. text-align:center;
  10736. }
  10737. #u39290 .text {
  10738. position:absolute;
  10739. align-self:center;
  10740. padding:0px 0px 0px 0px;
  10741. box-sizing:border-box;
  10742. width:100%;
  10743. }
  10744. #u39290_text {
  10745. border-width:0px;
  10746. word-wrap:break-word;
  10747. text-transform:none;
  10748. }
  10749. #u39291_img {
  10750. border-width:0px;
  10751. position:absolute;
  10752. left:0px;
  10753. top:0px;
  10754. width:44px;
  10755. height:33px;
  10756. }
  10757. #u39291 {
  10758. border-width:0px;
  10759. position:absolute;
  10760. left:698px;
  10761. top:421px;
  10762. width:44px;
  10763. height:33px;
  10764. display:flex;
  10765. }
  10766. #u39291 .text {
  10767. position:absolute;
  10768. align-self:center;
  10769. padding:2px 2px 2px 2px;
  10770. box-sizing:border-box;
  10771. width:100%;
  10772. }
  10773. #u39291_text {
  10774. border-width:0px;
  10775. word-wrap:break-word;
  10776. text-transform:none;
  10777. visibility:hidden;
  10778. }
  10779. #u39292_img {
  10780. border-width:0px;
  10781. position:absolute;
  10782. left:0px;
  10783. top:0px;
  10784. width:28px;
  10785. height:26px;
  10786. }
  10787. #u39292 {
  10788. border-width:0px;
  10789. position:absolute;
  10790. left:810px;
  10791. top:424px;
  10792. width:28px;
  10793. height:26px;
  10794. display:flex;
  10795. }
  10796. #u39292 .text {
  10797. position:absolute;
  10798. align-self:center;
  10799. padding:2px 2px 2px 2px;
  10800. box-sizing:border-box;
  10801. width:100%;
  10802. }
  10803. #u39292_text {
  10804. border-width:0px;
  10805. word-wrap:break-word;
  10806. text-transform:none;
  10807. visibility:hidden;
  10808. }
  10809. #u39293_div {
  10810. border-width:0px;
  10811. position:absolute;
  10812. left:0px;
  10813. top:0px;
  10814. width:52px;
  10815. height:11px;
  10816. background:inherit;
  10817. background-color:rgba(255, 255, 255, 0);
  10818. border:none;
  10819. border-left:0px;
  10820. border-top:0px;
  10821. border-right:0px;
  10822. border-radius:0px;
  10823. border-bottom-right-radius:0px;
  10824. border-bottom-left-radius:0px;
  10825. -moz-box-shadow:none;
  10826. -webkit-box-shadow:none;
  10827. box-shadow:none;
  10828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10829. font-weight:400;
  10830. font-style:normal;
  10831. font-size:8px;
  10832. color:#AAAAAA;
  10833. }
  10834. #u39293 {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:492px;
  10838. top:209px;
  10839. width:52px;
  10840. height:11px;
  10841. display:flex;
  10842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10843. font-weight:400;
  10844. font-style:normal;
  10845. font-size:8px;
  10846. color:#AAAAAA;
  10847. }
  10848. #u39293 .text {
  10849. position:absolute;
  10850. align-self:center;
  10851. padding:0px 0px 0px 0px;
  10852. box-sizing:border-box;
  10853. width:100%;
  10854. }
  10855. #u39293_text {
  10856. border-width:0px;
  10857. white-space:nowrap;
  10858. text-transform:none;
  10859. }
  10860. #u39294_div {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:0px;
  10864. top:0px;
  10865. width:157px;
  10866. height:50px;
  10867. background:inherit;
  10868. background-color:rgba(255, 255, 255, 0);
  10869. border:none;
  10870. border-left:0px;
  10871. border-top:0px;
  10872. border-right:0px;
  10873. border-radius:0px;
  10874. border-bottom-right-radius:0px;
  10875. border-bottom-left-radius:0px;
  10876. -moz-box-shadow:none;
  10877. -webkit-box-shadow:none;
  10878. box-shadow:none;
  10879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10880. font-weight:400;
  10881. font-style:normal;
  10882. font-size:10px;
  10883. line-height:25px;
  10884. }
  10885. #u39294 {
  10886. border-width:0px;
  10887. position:absolute;
  10888. left:634px;
  10889. top:931px;
  10890. width:157px;
  10891. height:50px;
  10892. display:flex;
  10893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10894. font-weight:400;
  10895. font-style:normal;
  10896. font-size:10px;
  10897. line-height:25px;
  10898. }
  10899. #u39294 .text {
  10900. position:absolute;
  10901. align-self:center;
  10902. padding:0px 0px 0px 0px;
  10903. box-sizing:border-box;
  10904. width:100%;
  10905. }
  10906. #u39294_text {
  10907. border-width:0px;
  10908. white-space:nowrap;
  10909. text-transform:none;
  10910. }