styles.css 147 KB

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