styles.css 110 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2505px;
  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. #u40510 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u40512 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u40513_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:129px;
  41. height:22px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 0);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. font-size:16px;
  50. color:#FFFFFF;
  51. }
  52. #u40513 {
  53. border-width:0px;
  54. position:absolute;
  55. left:49px;
  56. top:14px;
  57. width:129px;
  58. height:22px;
  59. display:flex;
  60. font-size:16px;
  61. color:#FFFFFF;
  62. }
  63. #u40513 .text {
  64. position:absolute;
  65. align-self:flex-start;
  66. padding:0px 0px 0px 0px;
  67. box-sizing:border-box;
  68. width:100%;
  69. }
  70. #u40513_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u40514_div {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. background:inherit;
  83. background-color:rgba(30, 42, 68, 1);
  84. border:none;
  85. border-radius:0px;
  86. -moz-box-shadow:none;
  87. -webkit-box-shadow:none;
  88. box-shadow:none;
  89. color:#AFB3B6;
  90. }
  91. #u40514 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:1600px;
  97. height:50px;
  98. display:flex;
  99. color:#AFB3B6;
  100. }
  101. #u40514 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u40514_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u40515 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u40516_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u40516 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u40516 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u40516_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u40517_div {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:129px;
  157. height:22px;
  158. background:inherit;
  159. background-color:rgba(255, 255, 255, 0);
  160. border:none;
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:16px;
  169. color:#FFFFFF;
  170. }
  171. #u40517 {
  172. border-width:0px;
  173. position:absolute;
  174. left:62px;
  175. top:14px;
  176. width:129px;
  177. height:22px;
  178. display:flex;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:16px;
  183. color:#FFFFFF;
  184. }
  185. #u40517 .text {
  186. position:absolute;
  187. align-self:flex-start;
  188. padding:0px 0px 0px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u40517_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u40518_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:200px;
  203. height:1200px;
  204. background:inherit;
  205. background-color:rgba(30, 42, 68, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. color:#AFB3B6;
  212. }
  213. #u40518 {
  214. border-width:0px;
  215. position:absolute;
  216. left:0px;
  217. top:47px;
  218. width:200px;
  219. height:1200px;
  220. display:flex;
  221. color:#AFB3B6;
  222. }
  223. #u40518 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u40518_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u40519_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u40519 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u40519 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u40519_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u40520_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u40520 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u40520 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u40520_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u40521 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u40522_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u40522 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u40522 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u40522_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u40523_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u40523 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u40523 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u40523_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u40524_div {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:1402px;
  370. height:1200px;
  371. background:inherit;
  372. background-color:rgba(242, 242, 242, 1);
  373. border:none;
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. }
  379. #u40524 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u40524 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u40524_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u40525 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u40525_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u40526 {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:98px;
  423. height:20px;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. color:#FFFFFF;
  429. }
  430. #u40527_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:76px;
  436. height:20px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-radius:0px;
  441. -moz-box-shadow:none;
  442. -webkit-box-shadow:none;
  443. box-shadow:none;
  444. }
  445. #u40527 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u40527 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u40527_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u40528 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:20px;
  471. width:84px;
  472. height:20px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. color:#FFFFFF;
  478. }
  479. #u40529_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u40529 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u40529 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u40529_img.selected {
  504. }
  505. #u40529.selected {
  506. }
  507. #u40529_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u40530_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:62px;
  519. height:20px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. }
  528. #u40530 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u40530 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u40530_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u40528_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u40531 {
  558. border-width:0px;
  559. position:absolute;
  560. left:20px;
  561. top:20px;
  562. width:98px;
  563. height:20px;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:14px;
  568. color:#FFFFFF;
  569. }
  570. #u40532_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:76px;
  576. height:20px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-radius:0px;
  581. -moz-box-shadow:none;
  582. -webkit-box-shadow:none;
  583. box-shadow:none;
  584. }
  585. #u40532 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u40532 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u40532_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u40533 {
  607. border-width:0px;
  608. position:absolute;
  609. left:20px;
  610. top:40px;
  611. width:98px;
  612. height:20px;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:14px;
  617. color:#FFFFFF;
  618. }
  619. #u40534_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:76px;
  625. height:20px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 0);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u40534 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u40534 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u40534_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u40535 {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:80px;
  660. width:84px;
  661. height:20px;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#FFFFFF;
  667. }
  668. #u40536_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u40536 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u40536 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u40536_img.selected {
  693. }
  694. #u40536.selected {
  695. }
  696. #u40536_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u40537_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:62px;
  708. height:20px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u40537 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u40537 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u40537_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u40535_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u40538 {
  747. border-width:0px;
  748. position:absolute;
  749. left:20px;
  750. top:20px;
  751. width:98px;
  752. height:20px;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. color:#FFFFFF;
  758. }
  759. #u40539_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:76px;
  765. height:20px;
  766. background:inherit;
  767. background-color:rgba(255, 255, 255, 0);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. }
  774. #u40539 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u40539 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u40539_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u40540 {
  796. border-width:0px;
  797. position:absolute;
  798. left:20px;
  799. top:40px;
  800. width:98px;
  801. height:20px;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. color:#FFFFFF;
  807. }
  808. #u40541_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:76px;
  814. height:20px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border:none;
  818. border-radius:0px;
  819. -moz-box-shadow:none;
  820. -webkit-box-shadow:none;
  821. box-shadow:none;
  822. }
  823. #u40541 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u40541 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u40541_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u40542 {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:140px;
  849. width:84px;
  850. height:20px;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u40543_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u40543 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u40543 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u40543_img.selected {
  882. }
  883. #u40543.selected {
  884. }
  885. #u40543_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u40544_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:62px;
  897. height:20px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u40544 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u40544 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u40544_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u40542_children {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. visibility:hidden;
  935. }
  936. #u40545 {
  937. border-width:0px;
  938. position:absolute;
  939. left:20px;
  940. top:20px;
  941. width:84px;
  942. height:20px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u40546_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:62px;
  955. height:20px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. }
  964. #u40546 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u40546 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u40546_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u40547 {
  986. border-width:0px;
  987. position:absolute;
  988. left:20px;
  989. top:40px;
  990. width:84px;
  991. height:20px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#FFFFFF;
  997. }
  998. #u40548_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:62px;
  1004. height:20px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u40548 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u40548 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u40548_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u40549 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:20px;
  1038. top:60px;
  1039. width:84px;
  1040. height:20px;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#FFFFFF;
  1046. }
  1047. #u40550_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:62px;
  1053. height:20px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. }
  1062. #u40550 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u40550 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u40550_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u40551 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:20px;
  1087. top:80px;
  1088. width:84px;
  1089. height:20px;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:14px;
  1094. color:#FFFFFF;
  1095. }
  1096. #u40552_div {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:62px;
  1102. height:20px;
  1103. background:inherit;
  1104. background-color:rgba(255, 255, 255, 0);
  1105. border:none;
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u40552 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u40552 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u40552_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u40553 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:160px;
  1137. width:98px;
  1138. height:20px;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. color:#FFFFFF;
  1144. }
  1145. #u40554_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u40554 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u40554 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u40554_img.selected {
  1170. }
  1171. #u40554.selected {
  1172. }
  1173. #u40554_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u40555_div {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:76px;
  1185. height:20px;
  1186. background:inherit;
  1187. background-color:rgba(255, 255, 255, 0);
  1188. border:none;
  1189. border-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. }
  1194. #u40555 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u40555 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u40555_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u40553_children {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:0px;
  1221. height:0px;
  1222. visibility:hidden;
  1223. }
  1224. #u40556 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:20px;
  1229. width:98px;
  1230. height:20px;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#FFFFFF;
  1236. }
  1237. #u40557_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:76px;
  1243. height:20px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u40557 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u40557 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u40557_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u40558 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:20px;
  1277. top:40px;
  1278. width:98px;
  1279. height:20px;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u40559_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:76px;
  1292. height:20px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u40559 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u40559 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u40559_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u40560 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:180px;
  1327. width:84px;
  1328. height:20px;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u40561_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u40561 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u40561 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u40561_img.selected {
  1360. }
  1361. #u40561.selected {
  1362. }
  1363. #u40561_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u40562_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:62px;
  1375. height:20px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. }
  1384. #u40562 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u40562 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u40562_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u40560_children {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. visibility:hidden;
  1413. }
  1414. #u40563 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:20px;
  1418. top:20px;
  1419. width:98px;
  1420. height:20px;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u40564_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:76px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u40564 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u40564 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u40564_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u40565 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:20px;
  1467. top:40px;
  1468. width:84px;
  1469. height:20px;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:14px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u40566_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:62px;
  1482. height:20px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u40566 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u40566 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u40566_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u40567 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:200px;
  1517. width:84px;
  1518. height:20px;
  1519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. color:#FFFFFF;
  1524. }
  1525. #u40568_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u40568 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u40568 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u40568_img.selected {
  1550. }
  1551. #u40568.selected {
  1552. }
  1553. #u40568_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u40569_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:62px;
  1565. height:20px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. }
  1574. #u40569 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u40569 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u40569_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u40567_children {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:0px;
  1601. height:0px;
  1602. visibility:hidden;
  1603. }
  1604. #u40570 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:20px;
  1608. top:20px;
  1609. width:84px;
  1610. height:20px;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u40571_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:62px;
  1623. height:20px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border:none;
  1627. border-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u40571 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u40571 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u40571_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u40572 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:20px;
  1657. top:40px;
  1658. width:84px;
  1659. height:20px;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u40573_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:62px;
  1672. height:20px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u40573 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u40573 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u40573_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u40574 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:20px;
  1706. top:60px;
  1707. width:84px;
  1708. height:20px;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#FFFFFF;
  1714. }
  1715. #u40575_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:62px;
  1721. height:20px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u40575 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u40575 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u40575_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u40576 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u40577_input {
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:141px;
  1764. height:22px;
  1765. padding:2px 2px 2px 2px;
  1766. font-family:'ArialMT', 'Arial', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. letter-spacing:normal;
  1771. color:#FFFFFF;
  1772. vertical-align:none;
  1773. text-align:left;
  1774. text-transform:none;
  1775. background-color:transparent;
  1776. border-color:transparent;
  1777. }
  1778. #u40577_input.disabled {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:141px;
  1783. height:22px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. letter-spacing:normal;
  1790. color:#FFFFFF;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u40577_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:141px;
  1803. height:22px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u40577 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:243px;
  1818. top:14px;
  1819. width:141px;
  1820. height:22px;
  1821. display:flex;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u40577 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u40577_div.disabled {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:141px;
  1838. height:22px;
  1839. background:inherit;
  1840. background-color:rgba(240, 240, 240, 1);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u40577.disabled {
  1850. }
  1851. .u40577_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u40578_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u40578 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u40578 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u40578_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u40579_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:136px;
  1890. height:16px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1899. font-weight:200;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#555555;
  1903. }
  1904. #u40579 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:208px;
  1908. top:53px;
  1909. width:136px;
  1910. height:16px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1913. font-weight:200;
  1914. font-style:normal;
  1915. font-size:11px;
  1916. color:#555555;
  1917. }
  1918. #u40579 .text {
  1919. position:absolute;
  1920. align-self:flex-start;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u40579_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u40580_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:140px;
  1936. height:24px;
  1937. background:inherit;
  1938. background-color:rgba(242, 242, 242, 0.2);
  1939. border:none;
  1940. border-radius:25px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. color:#FFFFFF;
  1948. text-align:center;
  1949. }
  1950. #u40580 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:417px;
  1954. top:13px;
  1955. width:140px;
  1956. height:24px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u40580 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u40580_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u40581_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:85px;
  1982. height:20px;
  1983. background:inherit;
  1984. background-color:rgba(30, 42, 68, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. color:#FFFFFF;
  1994. }
  1995. #u40581 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1374px;
  1999. top:15px;
  2000. width:85px;
  2001. height:20px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. color:#FFFFFF;
  2007. }
  2008. #u40581 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u40581_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u40582_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1381px;
  2026. height:1168px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:none;
  2032. -webkit-box-shadow:none;
  2033. box-shadow:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#FFFFFF;
  2039. text-align:left;
  2040. }
  2041. #u40582 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:208px;
  2045. top:74px;
  2046. width:1381px;
  2047. height:1168px;
  2048. display:flex;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:12px;
  2053. color:#FFFFFF;
  2054. text-align:left;
  2055. }
  2056. #u40582 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 50px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u40582_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u40583_div {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:1381px;
  2075. height:1168px;
  2076. background:inherit;
  2077. background-color:rgba(255, 255, 255, 1);
  2078. border:none;
  2079. border-radius:0px;
  2080. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2081. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2082. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2083. }
  2084. #u40583 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:208px;
  2088. top:74px;
  2089. width:1381px;
  2090. height:1168px;
  2091. display:flex;
  2092. }
  2093. #u40583 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 2px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u40583_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. visibility:hidden;
  2105. }
  2106. #u40584_div {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:109px;
  2112. height:50px;
  2113. background:inherit;
  2114. background-color:rgba(255, 255, 255, 0);
  2115. border:none;
  2116. border-left:0px;
  2117. border-top:0px;
  2118. border-right:0px;
  2119. border-radius:0px;
  2120. border-bottom-right-radius:0px;
  2121. border-bottom-left-radius:0px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:18px;
  2129. }
  2130. #u40584 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:227px;
  2134. top:80px;
  2135. width:109px;
  2136. height:50px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:18px;
  2142. }
  2143. #u40584 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:0px 0px 0px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u40584_text {
  2151. border-width:0px;
  2152. white-space:nowrap;
  2153. text-transform:none;
  2154. }
  2155. #u40585 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:227px;
  2159. top:180px;
  2160. width:1340px;
  2161. height:228px;
  2162. }
  2163. #u40586_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:243px;
  2169. height:38px;
  2170. }
  2171. #u40586 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:243px;
  2177. height:38px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#FFFFFF;
  2184. text-align:left;
  2185. }
  2186. #u40586 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 20px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u40586_text {
  2194. border-width:0px;
  2195. word-wrap:break-word;
  2196. text-transform:none;
  2197. }
  2198. #u40587_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:243px;
  2204. height:38px;
  2205. }
  2206. #u40587 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:243px;
  2210. top:0px;
  2211. width:243px;
  2212. height:38px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. color:#FFFFFF;
  2219. text-align:left;
  2220. }
  2221. #u40587 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 20px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u40587_text {
  2229. border-width:0px;
  2230. word-wrap:break-word;
  2231. text-transform:none;
  2232. }
  2233. #u40588_img {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:334px;
  2239. height:38px;
  2240. }
  2241. #u40588 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:486px;
  2245. top:0px;
  2246. width:334px;
  2247. height:38px;
  2248. display:flex;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:12px;
  2253. color:#FFFFFF;
  2254. text-align:left;
  2255. }
  2256. #u40588 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 20px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u40588_text {
  2264. border-width:0px;
  2265. word-wrap:break-word;
  2266. text-transform:none;
  2267. }
  2268. #u40589_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:249px;
  2274. height:38px;
  2275. }
  2276. #u40589 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:820px;
  2280. top:0px;
  2281. width:249px;
  2282. height:38px;
  2283. display:flex;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:12px;
  2288. color:#FFFFFF;
  2289. text-align:left;
  2290. }
  2291. #u40589 .text {
  2292. position:absolute;
  2293. align-self:center;
  2294. padding:2px 2px 2px 20px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u40589_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. }
  2303. #u40590_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:146px;
  2309. height:38px;
  2310. }
  2311. #u40590 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:1069px;
  2315. top:0px;
  2316. width:146px;
  2317. height:38px;
  2318. display:flex;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:12px;
  2323. color:#FFFFFF;
  2324. text-align:left;
  2325. }
  2326. #u40590 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:2px 2px 2px 20px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u40590_text {
  2334. border-width:0px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. }
  2338. #u40591_img {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:125px;
  2344. height:38px;
  2345. }
  2346. #u40591 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:1215px;
  2350. top:0px;
  2351. width:125px;
  2352. height:38px;
  2353. display:flex;
  2354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2355. font-weight:400;
  2356. font-style:normal;
  2357. font-size:12px;
  2358. color:#FFFFFF;
  2359. text-align:left;
  2360. }
  2361. #u40591 .text {
  2362. position:absolute;
  2363. align-self:center;
  2364. padding:2px 2px 2px 20px;
  2365. box-sizing:border-box;
  2366. width:100%;
  2367. }
  2368. #u40591_text {
  2369. border-width:0px;
  2370. word-wrap:break-word;
  2371. text-transform:none;
  2372. }
  2373. #u40592_img {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:243px;
  2379. height:38px;
  2380. }
  2381. #u40592 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:38px;
  2386. width:243px;
  2387. height:38px;
  2388. display:flex;
  2389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2390. font-weight:400;
  2391. font-style:normal;
  2392. font-size:12px;
  2393. color:#333333;
  2394. text-align:left;
  2395. }
  2396. #u40592 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 20px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u40592_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. }
  2408. #u40593_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:243px;
  2414. height:38px;
  2415. }
  2416. #u40593 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:243px;
  2420. top:38px;
  2421. width:243px;
  2422. height:38px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. color:#1890FF;
  2429. text-align:left;
  2430. }
  2431. #u40593 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 20px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u40593_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. }
  2443. #u40594_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:334px;
  2449. height:38px;
  2450. }
  2451. #u40594 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:486px;
  2455. top:38px;
  2456. width:334px;
  2457. height:38px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:12px;
  2463. color:#1890FF;
  2464. text-align:left;
  2465. }
  2466. #u40594 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 2px 2px 20px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u40594_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u40595_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:249px;
  2485. height:38px;
  2486. }
  2487. #u40595 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:820px;
  2491. top:38px;
  2492. width:249px;
  2493. height:38px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:12px;
  2499. color:#333333;
  2500. text-align:left;
  2501. }
  2502. #u40595 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 20px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u40595_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u40596_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:146px;
  2521. height:38px;
  2522. }
  2523. #u40596 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:1069px;
  2527. top:38px;
  2528. width:146px;
  2529. height:38px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. color:#333333;
  2536. text-align:left;
  2537. }
  2538. #u40596 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 20px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u40596_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u40597_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:125px;
  2557. height:38px;
  2558. }
  2559. #u40597 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:1215px;
  2563. top:38px;
  2564. width:125px;
  2565. height:38px;
  2566. display:flex;
  2567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:12px;
  2571. color:#1890FF;
  2572. text-align:left;
  2573. }
  2574. #u40597 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 20px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u40597_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. }
  2586. #u40598_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:243px;
  2592. height:38px;
  2593. }
  2594. #u40598 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:76px;
  2599. width:243px;
  2600. height:38px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:12px;
  2606. color:#333333;
  2607. text-align:left;
  2608. }
  2609. #u40598 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 20px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u40598_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. }
  2621. #u40599_img {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:243px;
  2627. height:38px;
  2628. }
  2629. #u40599 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:243px;
  2633. top:76px;
  2634. width:243px;
  2635. height:38px;
  2636. display:flex;
  2637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:12px;
  2641. color:#1890FF;
  2642. text-align:left;
  2643. }
  2644. #u40599 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 20px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u40599_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. }
  2656. #u40600_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:334px;
  2662. height:38px;
  2663. }
  2664. #u40600 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:486px;
  2668. top:76px;
  2669. width:334px;
  2670. height:38px;
  2671. display:flex;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:12px;
  2676. color:#1890FF;
  2677. text-align:left;
  2678. }
  2679. #u40600 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 20px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u40600_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. visibility:hidden;
  2691. }
  2692. #u40601_img {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:249px;
  2698. height:38px;
  2699. }
  2700. #u40601 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:820px;
  2704. top:76px;
  2705. width:249px;
  2706. height:38px;
  2707. display:flex;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. color:#333333;
  2713. text-align:left;
  2714. }
  2715. #u40601 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 20px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u40601_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u40602_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:146px;
  2734. height:38px;
  2735. }
  2736. #u40602 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:1069px;
  2740. top:76px;
  2741. width:146px;
  2742. height:38px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:12px;
  2748. color:#333333;
  2749. text-align:left;
  2750. }
  2751. #u40602 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 2px 2px 20px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u40602_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. visibility:hidden;
  2763. }
  2764. #u40603_img {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:125px;
  2770. height:38px;
  2771. }
  2772. #u40603 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:1215px;
  2776. top:76px;
  2777. width:125px;
  2778. height:38px;
  2779. display:flex;
  2780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:12px;
  2784. color:#1890FF;
  2785. text-align:left;
  2786. }
  2787. #u40603 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 20px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u40603_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. }
  2799. #u40604_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:243px;
  2805. height:38px;
  2806. }
  2807. #u40604 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:114px;
  2812. width:243px;
  2813. height:38px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. color:#333333;
  2820. text-align:left;
  2821. }
  2822. #u40604 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 20px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u40604_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. }
  2834. #u40605_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:243px;
  2840. height:38px;
  2841. }
  2842. #u40605 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:243px;
  2846. top:114px;
  2847. width:243px;
  2848. height:38px;
  2849. display:flex;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:12px;
  2854. color:#1890FF;
  2855. text-align:left;
  2856. }
  2857. #u40605 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 20px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u40605_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. }
  2869. #u40606_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:334px;
  2875. height:38px;
  2876. }
  2877. #u40606 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:486px;
  2881. top:114px;
  2882. width:334px;
  2883. height:38px;
  2884. display:flex;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:12px;
  2889. color:#1890FF;
  2890. text-align:left;
  2891. }
  2892. #u40606 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 2px 2px 20px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u40606_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. visibility:hidden;
  2904. }
  2905. #u40607_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:249px;
  2911. height:38px;
  2912. }
  2913. #u40607 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:820px;
  2917. top:114px;
  2918. width:249px;
  2919. height:38px;
  2920. display:flex;
  2921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2922. font-weight:400;
  2923. font-style:normal;
  2924. font-size:12px;
  2925. color:#333333;
  2926. text-align:left;
  2927. }
  2928. #u40607 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 20px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u40607_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u40608_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:146px;
  2947. height:38px;
  2948. }
  2949. #u40608 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:1069px;
  2953. top:114px;
  2954. width:146px;
  2955. height:38px;
  2956. display:flex;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. color:#333333;
  2962. text-align:left;
  2963. }
  2964. #u40608 .text {
  2965. position:absolute;
  2966. align-self:center;
  2967. padding:2px 2px 2px 20px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u40608_text {
  2972. border-width:0px;
  2973. word-wrap:break-word;
  2974. text-transform:none;
  2975. visibility:hidden;
  2976. }
  2977. #u40609_img {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:125px;
  2983. height:38px;
  2984. }
  2985. #u40609 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:1215px;
  2989. top:114px;
  2990. width:125px;
  2991. height:38px;
  2992. display:flex;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:12px;
  2997. color:#1890FF;
  2998. text-align:left;
  2999. }
  3000. #u40609 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 20px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u40609_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. }
  3012. #u40610_img {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:243px;
  3018. height:38px;
  3019. }
  3020. #u40610 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:152px;
  3025. width:243px;
  3026. height:38px;
  3027. display:flex;
  3028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:12px;
  3032. color:#333333;
  3033. text-align:left;
  3034. }
  3035. #u40610 .text {
  3036. position:absolute;
  3037. align-self:center;
  3038. padding:2px 2px 2px 20px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u40610_text {
  3043. border-width:0px;
  3044. word-wrap:break-word;
  3045. text-transform:none;
  3046. }
  3047. #u40611_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:243px;
  3053. height:38px;
  3054. }
  3055. #u40611 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:243px;
  3059. top:152px;
  3060. width:243px;
  3061. height:38px;
  3062. display:flex;
  3063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3064. font-weight:400;
  3065. font-style:normal;
  3066. font-size:12px;
  3067. color:#1890FF;
  3068. text-align:left;
  3069. }
  3070. #u40611 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 20px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u40611_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. }
  3082. #u40612_img {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:334px;
  3088. height:38px;
  3089. }
  3090. #u40612 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:486px;
  3094. top:152px;
  3095. width:334px;
  3096. height:38px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:12px;
  3102. color:#1890FF;
  3103. text-align:left;
  3104. }
  3105. #u40612 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 2px 2px 20px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u40612_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u40613_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:249px;
  3124. height:38px;
  3125. }
  3126. #u40613 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:820px;
  3130. top:152px;
  3131. width:249px;
  3132. height:38px;
  3133. display:flex;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. color:#333333;
  3139. text-align:left;
  3140. }
  3141. #u40613 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 2px 2px 20px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u40613_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. visibility:hidden;
  3153. }
  3154. #u40614_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:146px;
  3160. height:38px;
  3161. }
  3162. #u40614 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:1069px;
  3166. top:152px;
  3167. width:146px;
  3168. height:38px;
  3169. display:flex;
  3170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3171. font-weight:400;
  3172. font-style:normal;
  3173. font-size:12px;
  3174. color:#333333;
  3175. text-align:left;
  3176. }
  3177. #u40614 .text {
  3178. position:absolute;
  3179. align-self:center;
  3180. padding:2px 2px 2px 20px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u40614_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. visibility:hidden;
  3189. }
  3190. #u40615_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:125px;
  3196. height:38px;
  3197. }
  3198. #u40615 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:1215px;
  3202. top:152px;
  3203. width:125px;
  3204. height:38px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:12px;
  3210. color:#1890FF;
  3211. text-align:left;
  3212. }
  3213. #u40615 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 20px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u40615_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. }
  3225. #u40616_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:243px;
  3231. height:38px;
  3232. }
  3233. #u40616 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:190px;
  3238. width:243px;
  3239. height:38px;
  3240. display:flex;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. color:#333333;
  3246. text-align:left;
  3247. }
  3248. #u40616 .text {
  3249. position:absolute;
  3250. align-self:center;
  3251. padding:2px 2px 2px 20px;
  3252. box-sizing:border-box;
  3253. width:100%;
  3254. }
  3255. #u40616_text {
  3256. border-width:0px;
  3257. word-wrap:break-word;
  3258. text-transform:none;
  3259. }
  3260. #u40617_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:243px;
  3266. height:38px;
  3267. }
  3268. #u40617 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:243px;
  3272. top:190px;
  3273. width:243px;
  3274. height:38px;
  3275. display:flex;
  3276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3277. font-weight:400;
  3278. font-style:normal;
  3279. font-size:12px;
  3280. color:#1890FF;
  3281. text-align:left;
  3282. }
  3283. #u40617 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:2px 2px 2px 20px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u40617_text {
  3291. border-width:0px;
  3292. word-wrap:break-word;
  3293. text-transform:none;
  3294. }
  3295. #u40618_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:334px;
  3301. height:38px;
  3302. }
  3303. #u40618 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:486px;
  3307. top:190px;
  3308. width:334px;
  3309. height:38px;
  3310. display:flex;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:12px;
  3315. color:#1890FF;
  3316. text-align:left;
  3317. }
  3318. #u40618 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 20px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u40618_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. visibility:hidden;
  3330. }
  3331. #u40619_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:249px;
  3337. height:38px;
  3338. }
  3339. #u40619 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:820px;
  3343. top:190px;
  3344. width:249px;
  3345. height:38px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. color:#333333;
  3352. text-align:left;
  3353. }
  3354. #u40619 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 20px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u40619_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. visibility:hidden;
  3366. }
  3367. #u40620_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:146px;
  3373. height:38px;
  3374. }
  3375. #u40620 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:1069px;
  3379. top:190px;
  3380. width:146px;
  3381. height:38px;
  3382. display:flex;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:12px;
  3387. color:#333333;
  3388. text-align:left;
  3389. }
  3390. #u40620 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 2px 2px 20px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u40620_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. visibility:hidden;
  3402. }
  3403. #u40621_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:125px;
  3409. height:38px;
  3410. }
  3411. #u40621 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:1215px;
  3415. top:190px;
  3416. width:125px;
  3417. height:38px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. color:#1890FF;
  3424. text-align:left;
  3425. }
  3426. #u40621 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 2px 2px 20px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u40621_text {
  3434. border-width:0px;
  3435. word-wrap:break-word;
  3436. text-transform:none;
  3437. }
  3438. #u40622 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:0px;
  3444. height:0px;
  3445. }
  3446. #u40623_div {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:1340px;
  3452. height:50px;
  3453. background:inherit;
  3454. background-color:rgba(255, 255, 255, 1);
  3455. box-sizing:border-box;
  3456. border-width:1px;
  3457. border-style:solid;
  3458. border-color:rgba(121, 121, 121, 1);
  3459. border-radius:0px;
  3460. -moz-box-shadow:none;
  3461. -webkit-box-shadow:none;
  3462. box-shadow:none;
  3463. font-size:18px;
  3464. text-align:left;
  3465. }
  3466. #u40623 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:227px;
  3470. top:133px;
  3471. width:1340px;
  3472. height:50px;
  3473. display:flex;
  3474. font-size:18px;
  3475. text-align:left;
  3476. }
  3477. #u40623 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 40px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u40623_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. }
  3489. #u40624_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:15px;
  3495. height:8px;
  3496. }
  3497. #u40624 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:247px;
  3501. top:155px;
  3502. width:15px;
  3503. height:8px;
  3504. display:flex;
  3505. }
  3506. #u40624 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 2px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u40624_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u40625 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:0px;
  3525. height:0px;
  3526. }
  3527. #u40626 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:0px;
  3533. height:0px;
  3534. }
  3535. #u40627_div {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:1340px;
  3541. height:50px;
  3542. background:inherit;
  3543. background-color:rgba(255, 255, 255, 1);
  3544. box-sizing:border-box;
  3545. border-width:1px;
  3546. border-style:solid;
  3547. border-color:rgba(121, 121, 121, 1);
  3548. border-radius:0px;
  3549. -moz-box-shadow:none;
  3550. -webkit-box-shadow:none;
  3551. box-shadow:none;
  3552. font-size:18px;
  3553. text-align:left;
  3554. }
  3555. #u40627 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:227px;
  3559. top:428px;
  3560. width:1340px;
  3561. height:50px;
  3562. display:flex;
  3563. font-size:18px;
  3564. text-align:left;
  3565. }
  3566. #u40627 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 40px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u40627_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. }
  3578. #u40628_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:15px;
  3584. height:8px;
  3585. }
  3586. #u40628 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:247px;
  3590. top:450px;
  3591. width:15px;
  3592. height:8px;
  3593. display:flex;
  3594. }
  3595. #u40628 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 2px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u40628_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u40629 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:227px;
  3612. top:478px;
  3613. width:1340px;
  3614. height:228px;
  3615. }
  3616. #u40630_img {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:309px;
  3622. height:38px;
  3623. }
  3624. #u40630 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:309px;
  3630. height:38px;
  3631. display:flex;
  3632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:12px;
  3636. color:#FFFFFF;
  3637. text-align:left;
  3638. }
  3639. #u40630 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 20px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u40630_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. }
  3651. #u40631_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:309px;
  3657. height:38px;
  3658. }
  3659. #u40631 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:309px;
  3663. top:0px;
  3664. width:309px;
  3665. height:38px;
  3666. display:flex;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:12px;
  3671. color:#FFFFFF;
  3672. text-align:left;
  3673. }
  3674. #u40631 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:2px 2px 2px 20px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u40631_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. }
  3686. #u40632_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:206px;
  3692. height:38px;
  3693. }
  3694. #u40632 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:618px;
  3698. top:0px;
  3699. width:206px;
  3700. height:38px;
  3701. display:flex;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:12px;
  3706. color:#FFFFFF;
  3707. text-align:left;
  3708. }
  3709. #u40632 .text {
  3710. position:absolute;
  3711. align-self:center;
  3712. padding:2px 2px 2px 20px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u40632_text {
  3717. border-width:0px;
  3718. word-wrap:break-word;
  3719. text-transform:none;
  3720. visibility:hidden;
  3721. }
  3722. #u40633_img {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:206px;
  3728. height:38px;
  3729. }
  3730. #u40633 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:824px;
  3734. top:0px;
  3735. width:206px;
  3736. height:38px;
  3737. display:flex;
  3738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3739. font-weight:400;
  3740. font-style:normal;
  3741. font-size:12px;
  3742. color:#FFFFFF;
  3743. text-align:left;
  3744. }
  3745. #u40633 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 20px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u40633_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. }
  3757. #u40634_img {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:206px;
  3763. height:38px;
  3764. }
  3765. #u40634 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:1030px;
  3769. top:0px;
  3770. width:206px;
  3771. height:38px;
  3772. display:flex;
  3773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3774. font-weight:400;
  3775. font-style:normal;
  3776. font-size:12px;
  3777. color:#FFFFFF;
  3778. text-align:left;
  3779. }
  3780. #u40634 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 20px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u40634_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. }
  3792. #u40635_img {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:104px;
  3798. height:38px;
  3799. }
  3800. #u40635 {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:1236px;
  3804. top:0px;
  3805. width:104px;
  3806. height:38px;
  3807. display:flex;
  3808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:12px;
  3812. color:#FFFFFF;
  3813. text-align:left;
  3814. }
  3815. #u40635 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 20px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u40635_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. }
  3827. #u40636_img {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:309px;
  3833. height:38px;
  3834. }
  3835. #u40636 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:38px;
  3840. width:309px;
  3841. height:38px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:12px;
  3847. color:#333333;
  3848. text-align:left;
  3849. }
  3850. #u40636 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 20px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u40636_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. }
  3862. #u40637_img {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:309px;
  3868. height:38px;
  3869. }
  3870. #u40637 {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:309px;
  3874. top:38px;
  3875. width:309px;
  3876. height:38px;
  3877. display:flex;
  3878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3879. font-weight:400;
  3880. font-style:normal;
  3881. font-size:12px;
  3882. color:#1890FF;
  3883. text-align:left;
  3884. }
  3885. #u40637 .text {
  3886. position:absolute;
  3887. align-self:center;
  3888. padding:2px 2px 2px 20px;
  3889. box-sizing:border-box;
  3890. width:100%;
  3891. }
  3892. #u40637_text {
  3893. border-width:0px;
  3894. word-wrap:break-word;
  3895. text-transform:none;
  3896. }
  3897. #u40638_img {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:0px;
  3901. top:0px;
  3902. width:206px;
  3903. height:38px;
  3904. }
  3905. #u40638 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:618px;
  3909. top:38px;
  3910. width:206px;
  3911. height:38px;
  3912. display:flex;
  3913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3914. font-weight:400;
  3915. font-style:normal;
  3916. font-size:12px;
  3917. color:#1890FF;
  3918. text-align:left;
  3919. }
  3920. #u40638 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 2px 2px 20px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u40638_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u40639_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:206px;
  3939. height:38px;
  3940. }
  3941. #u40639 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:824px;
  3945. top:38px;
  3946. width:206px;
  3947. height:38px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:12px;
  3953. color:#333333;
  3954. text-align:left;
  3955. }
  3956. #u40639 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 2px 2px 20px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u40639_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u40640_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:206px;
  3975. height:38px;
  3976. }
  3977. #u40640 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:1030px;
  3981. top:38px;
  3982. width:206px;
  3983. height:38px;
  3984. display:flex;
  3985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3986. font-weight:400;
  3987. font-style:normal;
  3988. font-size:12px;
  3989. color:#333333;
  3990. text-align:left;
  3991. }
  3992. #u40640 .text {
  3993. position:absolute;
  3994. align-self:center;
  3995. padding:2px 2px 2px 20px;
  3996. box-sizing:border-box;
  3997. width:100%;
  3998. }
  3999. #u40640_text {
  4000. border-width:0px;
  4001. word-wrap:break-word;
  4002. text-transform:none;
  4003. visibility:hidden;
  4004. }
  4005. #u40641_img {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:0px;
  4009. top:0px;
  4010. width:104px;
  4011. height:38px;
  4012. }
  4013. #u40641 {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:1236px;
  4017. top:38px;
  4018. width:104px;
  4019. height:38px;
  4020. display:flex;
  4021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4022. font-weight:400;
  4023. font-style:normal;
  4024. font-size:12px;
  4025. color:#1890FF;
  4026. text-align:left;
  4027. }
  4028. #u40641 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 20px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u40641_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. }
  4040. #u40642_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:309px;
  4046. height:38px;
  4047. }
  4048. #u40642 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:76px;
  4053. width:309px;
  4054. height:38px;
  4055. display:flex;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:12px;
  4060. color:#333333;
  4061. text-align:left;
  4062. }
  4063. #u40642 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 20px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u40642_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. }
  4075. #u40643_img {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:309px;
  4081. height:38px;
  4082. }
  4083. #u40643 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:309px;
  4087. top:76px;
  4088. width:309px;
  4089. height:38px;
  4090. display:flex;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:12px;
  4095. color:#1890FF;
  4096. text-align:left;
  4097. }
  4098. #u40643 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 20px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u40643_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. }
  4110. #u40644_img {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:206px;
  4116. height:38px;
  4117. }
  4118. #u40644 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:618px;
  4122. top:76px;
  4123. width:206px;
  4124. height:38px;
  4125. display:flex;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:12px;
  4130. color:#1890FF;
  4131. text-align:left;
  4132. }
  4133. #u40644 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 20px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u40644_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u40645_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:206px;
  4152. height:38px;
  4153. }
  4154. #u40645 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:824px;
  4158. top:76px;
  4159. width:206px;
  4160. height:38px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. color:#333333;
  4167. text-align:left;
  4168. }
  4169. #u40645 .text {
  4170. position:absolute;
  4171. align-self:center;
  4172. padding:2px 2px 2px 20px;
  4173. box-sizing:border-box;
  4174. width:100%;
  4175. }
  4176. #u40645_text {
  4177. border-width:0px;
  4178. word-wrap:break-word;
  4179. text-transform:none;
  4180. visibility:hidden;
  4181. }
  4182. #u40646_img {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:206px;
  4188. height:38px;
  4189. }
  4190. #u40646 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:1030px;
  4194. top:76px;
  4195. width:206px;
  4196. height:38px;
  4197. display:flex;
  4198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:12px;
  4202. color:#333333;
  4203. text-align:left;
  4204. }
  4205. #u40646 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 2px 2px 20px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u40646_text {
  4213. border-width:0px;
  4214. word-wrap:break-word;
  4215. text-transform:none;
  4216. visibility:hidden;
  4217. }
  4218. #u40647_img {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:104px;
  4224. height:38px;
  4225. }
  4226. #u40647 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:1236px;
  4230. top:76px;
  4231. width:104px;
  4232. height:38px;
  4233. display:flex;
  4234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:12px;
  4238. color:#1890FF;
  4239. text-align:left;
  4240. }
  4241. #u40647 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 20px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u40647_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. }
  4253. #u40648_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:309px;
  4259. height:38px;
  4260. }
  4261. #u40648 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:114px;
  4266. width:309px;
  4267. height:38px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. color:#333333;
  4274. text-align:left;
  4275. }
  4276. #u40648 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 20px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u40648_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. }
  4288. #u40649_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:309px;
  4294. height:38px;
  4295. }
  4296. #u40649 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:309px;
  4300. top:114px;
  4301. width:309px;
  4302. height:38px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:12px;
  4308. color:#1890FF;
  4309. text-align:left;
  4310. }
  4311. #u40649 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 20px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u40649_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. }
  4323. #u40650_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:206px;
  4329. height:38px;
  4330. }
  4331. #u40650 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:618px;
  4335. top:114px;
  4336. width:206px;
  4337. height:38px;
  4338. display:flex;
  4339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:12px;
  4343. color:#1890FF;
  4344. text-align:left;
  4345. }
  4346. #u40650 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 20px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u40650_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u40651_img {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:206px;
  4365. height:38px;
  4366. }
  4367. #u40651 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:824px;
  4371. top:114px;
  4372. width:206px;
  4373. height:38px;
  4374. display:flex;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:12px;
  4379. color:#333333;
  4380. text-align:left;
  4381. }
  4382. #u40651 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 20px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u40651_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u40652_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:206px;
  4401. height:38px;
  4402. }
  4403. #u40652 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:1030px;
  4407. top:114px;
  4408. width:206px;
  4409. height:38px;
  4410. display:flex;
  4411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:12px;
  4415. color:#333333;
  4416. text-align:left;
  4417. }
  4418. #u40652 .text {
  4419. position:absolute;
  4420. align-self:center;
  4421. padding:2px 2px 2px 20px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u40652_text {
  4426. border-width:0px;
  4427. word-wrap:break-word;
  4428. text-transform:none;
  4429. visibility:hidden;
  4430. }
  4431. #u40653_img {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:0px;
  4436. width:104px;
  4437. height:38px;
  4438. }
  4439. #u40653 {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:1236px;
  4443. top:114px;
  4444. width:104px;
  4445. height:38px;
  4446. display:flex;
  4447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4448. font-weight:400;
  4449. font-style:normal;
  4450. font-size:12px;
  4451. color:#1890FF;
  4452. text-align:left;
  4453. }
  4454. #u40653 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:2px 2px 2px 20px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u40653_text {
  4462. border-width:0px;
  4463. word-wrap:break-word;
  4464. text-transform:none;
  4465. }
  4466. #u40654_img {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:309px;
  4472. height:38px;
  4473. }
  4474. #u40654 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:152px;
  4479. width:309px;
  4480. height:38px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:12px;
  4486. color:#333333;
  4487. text-align:left;
  4488. }
  4489. #u40654 .text {
  4490. position:absolute;
  4491. align-self:center;
  4492. padding:2px 2px 2px 20px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u40654_text {
  4497. border-width:0px;
  4498. word-wrap:break-word;
  4499. text-transform:none;
  4500. }
  4501. #u40655_img {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:309px;
  4507. height:38px;
  4508. }
  4509. #u40655 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:309px;
  4513. top:152px;
  4514. width:309px;
  4515. height:38px;
  4516. display:flex;
  4517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:12px;
  4521. color:#1890FF;
  4522. text-align:left;
  4523. }
  4524. #u40655 .text {
  4525. position:absolute;
  4526. align-self:center;
  4527. padding:2px 2px 2px 20px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u40655_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. }
  4536. #u40656_img {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:206px;
  4542. height:38px;
  4543. }
  4544. #u40656 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:618px;
  4548. top:152px;
  4549. width:206px;
  4550. height:38px;
  4551. display:flex;
  4552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4553. font-weight:400;
  4554. font-style:normal;
  4555. font-size:12px;
  4556. color:#1890FF;
  4557. text-align:left;
  4558. }
  4559. #u40656 .text {
  4560. position:absolute;
  4561. align-self:center;
  4562. padding:2px 2px 2px 20px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u40656_text {
  4567. border-width:0px;
  4568. word-wrap:break-word;
  4569. text-transform:none;
  4570. visibility:hidden;
  4571. }
  4572. #u40657_img {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:206px;
  4578. height:38px;
  4579. }
  4580. #u40657 {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:824px;
  4584. top:152px;
  4585. width:206px;
  4586. height:38px;
  4587. display:flex;
  4588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4589. font-weight:400;
  4590. font-style:normal;
  4591. font-size:12px;
  4592. color:#333333;
  4593. text-align:left;
  4594. }
  4595. #u40657 .text {
  4596. position:absolute;
  4597. align-self:center;
  4598. padding:2px 2px 2px 20px;
  4599. box-sizing:border-box;
  4600. width:100%;
  4601. }
  4602. #u40657_text {
  4603. border-width:0px;
  4604. word-wrap:break-word;
  4605. text-transform:none;
  4606. visibility:hidden;
  4607. }
  4608. #u40658_img {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:206px;
  4614. height:38px;
  4615. }
  4616. #u40658 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:1030px;
  4620. top:152px;
  4621. width:206px;
  4622. height:38px;
  4623. display:flex;
  4624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4625. font-weight:400;
  4626. font-style:normal;
  4627. font-size:12px;
  4628. color:#333333;
  4629. text-align:left;
  4630. }
  4631. #u40658 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 20px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u40658_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. visibility:hidden;
  4643. }
  4644. #u40659_img {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:104px;
  4650. height:38px;
  4651. }
  4652. #u40659 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:1236px;
  4656. top:152px;
  4657. width:104px;
  4658. height:38px;
  4659. display:flex;
  4660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:12px;
  4664. color:#1890FF;
  4665. text-align:left;
  4666. }
  4667. #u40659 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:2px 2px 2px 20px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u40659_text {
  4675. border-width:0px;
  4676. word-wrap:break-word;
  4677. text-transform:none;
  4678. }
  4679. #u40660_img {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:309px;
  4685. height:38px;
  4686. }
  4687. #u40660 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:190px;
  4692. width:309px;
  4693. height:38px;
  4694. display:flex;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:12px;
  4699. color:#333333;
  4700. text-align:left;
  4701. }
  4702. #u40660 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 20px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u40660_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. }
  4714. #u40661_img {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:309px;
  4720. height:38px;
  4721. }
  4722. #u40661 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:309px;
  4726. top:190px;
  4727. width:309px;
  4728. height:38px;
  4729. display:flex;
  4730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4731. font-weight:400;
  4732. font-style:normal;
  4733. font-size:12px;
  4734. color:#1890FF;
  4735. text-align:left;
  4736. }
  4737. #u40661 .text {
  4738. position:absolute;
  4739. align-self:center;
  4740. padding:2px 2px 2px 20px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u40661_text {
  4745. border-width:0px;
  4746. word-wrap:break-word;
  4747. text-transform:none;
  4748. }
  4749. #u40662_img {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:206px;
  4755. height:38px;
  4756. }
  4757. #u40662 {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:618px;
  4761. top:190px;
  4762. width:206px;
  4763. height:38px;
  4764. display:flex;
  4765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4766. font-weight:400;
  4767. font-style:normal;
  4768. font-size:12px;
  4769. color:#1890FF;
  4770. text-align:left;
  4771. }
  4772. #u40662 .text {
  4773. position:absolute;
  4774. align-self:center;
  4775. padding:2px 2px 2px 20px;
  4776. box-sizing:border-box;
  4777. width:100%;
  4778. }
  4779. #u40662_text {
  4780. border-width:0px;
  4781. word-wrap:break-word;
  4782. text-transform:none;
  4783. visibility:hidden;
  4784. }
  4785. #u40663_img {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:206px;
  4791. height:38px;
  4792. }
  4793. #u40663 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:824px;
  4797. top:190px;
  4798. width:206px;
  4799. height:38px;
  4800. display:flex;
  4801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:12px;
  4805. color:#333333;
  4806. text-align:left;
  4807. }
  4808. #u40663 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 20px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u40663_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u40664_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:206px;
  4827. height:38px;
  4828. }
  4829. #u40664 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:1030px;
  4833. top:190px;
  4834. width:206px;
  4835. height:38px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:12px;
  4841. color:#333333;
  4842. text-align:left;
  4843. }
  4844. #u40664 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 20px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u40664_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u40665_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:104px;
  4863. height:38px;
  4864. }
  4865. #u40665 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:1236px;
  4869. top:190px;
  4870. width:104px;
  4871. height:38px;
  4872. display:flex;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:12px;
  4877. color:#1890FF;
  4878. text-align:left;
  4879. }
  4880. #u40665 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 2px 2px 20px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u40665_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u40666 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:0px;
  4899. height:0px;
  4900. }
  4901. #u40667 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:0px;
  4907. height:0px;
  4908. }
  4909. #u40668_div {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:1340px;
  4915. height:50px;
  4916. background:inherit;
  4917. background-color:rgba(255, 255, 255, 1);
  4918. box-sizing:border-box;
  4919. border-width:1px;
  4920. border-style:solid;
  4921. border-color:rgba(121, 121, 121, 1);
  4922. border-radius:0px;
  4923. -moz-box-shadow:none;
  4924. -webkit-box-shadow:none;
  4925. box-shadow:none;
  4926. font-size:18px;
  4927. text-align:left;
  4928. }
  4929. #u40668 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:227px;
  4933. top:726px;
  4934. width:1340px;
  4935. height:50px;
  4936. display:flex;
  4937. font-size:18px;
  4938. text-align:left;
  4939. }
  4940. #u40668 .text {
  4941. position:absolute;
  4942. align-self:center;
  4943. padding:2px 2px 2px 40px;
  4944. box-sizing:border-box;
  4945. width:100%;
  4946. }
  4947. #u40668_text {
  4948. border-width:0px;
  4949. word-wrap:break-word;
  4950. text-transform:none;
  4951. }
  4952. #u40669_img {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:0px;
  4957. width:15px;
  4958. height:8px;
  4959. }
  4960. #u40669 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:247px;
  4964. top:748px;
  4965. width:15px;
  4966. height:8px;
  4967. display:flex;
  4968. }
  4969. #u40669 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:2px 2px 2px 2px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u40669_text {
  4977. border-width:0px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. visibility:hidden;
  4981. }
  4982. #u40670 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:227px;
  4986. top:776px;
  4987. width:1340px;
  4988. height:190px;
  4989. }
  4990. #u40671_img {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:309px;
  4996. height:38px;
  4997. }
  4998. #u40671 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:309px;
  5004. height:38px;
  5005. display:flex;
  5006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:12px;
  5010. color:#FFFFFF;
  5011. text-align:left;
  5012. }
  5013. #u40671 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:2px 2px 2px 20px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u40671_text {
  5021. border-width:0px;
  5022. word-wrap:break-word;
  5023. text-transform:none;
  5024. }
  5025. #u40672_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:309px;
  5031. height:38px;
  5032. }
  5033. #u40672 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:309px;
  5037. top:0px;
  5038. width:309px;
  5039. height:38px;
  5040. display:flex;
  5041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:12px;
  5045. color:#FFFFFF;
  5046. text-align:left;
  5047. }
  5048. #u40672 .text {
  5049. position:absolute;
  5050. align-self:center;
  5051. padding:2px 2px 2px 20px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u40672_text {
  5056. border-width:0px;
  5057. word-wrap:break-word;
  5058. text-transform:none;
  5059. }
  5060. #u40673_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:206px;
  5066. height:38px;
  5067. }
  5068. #u40673 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:618px;
  5072. top:0px;
  5073. width:206px;
  5074. height:38px;
  5075. display:flex;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:12px;
  5080. color:#FFFFFF;
  5081. text-align:left;
  5082. }
  5083. #u40673 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 20px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u40673_text {
  5091. border-width:0px;
  5092. word-wrap:break-word;
  5093. text-transform:none;
  5094. visibility:hidden;
  5095. }
  5096. #u40674_img {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:206px;
  5102. height:38px;
  5103. }
  5104. #u40674 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:824px;
  5108. top:0px;
  5109. width:206px;
  5110. height:38px;
  5111. display:flex;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:12px;
  5116. color:#FFFFFF;
  5117. text-align:left;
  5118. }
  5119. #u40674 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:2px 2px 2px 20px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u40674_text {
  5127. border-width:0px;
  5128. word-wrap:break-word;
  5129. text-transform:none;
  5130. }
  5131. #u40675_img {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:206px;
  5137. height:38px;
  5138. }
  5139. #u40675 {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:1030px;
  5143. top:0px;
  5144. width:206px;
  5145. height:38px;
  5146. display:flex;
  5147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:12px;
  5151. color:#FFFFFF;
  5152. text-align:left;
  5153. }
  5154. #u40675 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:2px 2px 2px 20px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u40675_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. }
  5166. #u40676_img {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:104px;
  5172. height:38px;
  5173. }
  5174. #u40676 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:1236px;
  5178. top:0px;
  5179. width:104px;
  5180. height:38px;
  5181. display:flex;
  5182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:12px;
  5186. color:#FFFFFF;
  5187. text-align:left;
  5188. }
  5189. #u40676 .text {
  5190. position:absolute;
  5191. align-self:center;
  5192. padding:2px 2px 2px 20px;
  5193. box-sizing:border-box;
  5194. width:100%;
  5195. }
  5196. #u40676_text {
  5197. border-width:0px;
  5198. word-wrap:break-word;
  5199. text-transform:none;
  5200. }
  5201. #u40677_img {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:309px;
  5207. height:38px;
  5208. }
  5209. #u40677 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:38px;
  5214. width:309px;
  5215. height:38px;
  5216. display:flex;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:12px;
  5221. color:#333333;
  5222. text-align:left;
  5223. }
  5224. #u40677 .text {
  5225. position:absolute;
  5226. align-self:center;
  5227. padding:2px 2px 2px 20px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u40677_text {
  5232. border-width:0px;
  5233. word-wrap:break-word;
  5234. text-transform:none;
  5235. }
  5236. #u40678_img {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:309px;
  5242. height:38px;
  5243. }
  5244. #u40678 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:309px;
  5248. top:38px;
  5249. width:309px;
  5250. height:38px;
  5251. display:flex;
  5252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:12px;
  5256. color:#1890FF;
  5257. text-align:left;
  5258. }
  5259. #u40678 .text {
  5260. position:absolute;
  5261. align-self:center;
  5262. padding:2px 2px 2px 20px;
  5263. box-sizing:border-box;
  5264. width:100%;
  5265. }
  5266. #u40678_text {
  5267. border-width:0px;
  5268. word-wrap:break-word;
  5269. text-transform:none;
  5270. }
  5271. #u40679_img {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:206px;
  5277. height:38px;
  5278. }
  5279. #u40679 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:618px;
  5283. top:38px;
  5284. width:206px;
  5285. height:38px;
  5286. display:flex;
  5287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:12px;
  5291. color:#1890FF;
  5292. text-align:left;
  5293. }
  5294. #u40679 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:2px 2px 2px 20px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u40679_text {
  5302. border-width:0px;
  5303. word-wrap:break-word;
  5304. text-transform:none;
  5305. visibility:hidden;
  5306. }
  5307. #u40680_img {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:0px;
  5312. width:206px;
  5313. height:38px;
  5314. }
  5315. #u40680 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:824px;
  5319. top:38px;
  5320. width:206px;
  5321. height:38px;
  5322. display:flex;
  5323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:12px;
  5327. color:#333333;
  5328. text-align:left;
  5329. }
  5330. #u40680 .text {
  5331. position:absolute;
  5332. align-self:center;
  5333. padding:2px 2px 2px 20px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u40680_text {
  5338. border-width:0px;
  5339. word-wrap:break-word;
  5340. text-transform:none;
  5341. visibility:hidden;
  5342. }
  5343. #u40681_img {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:206px;
  5349. height:38px;
  5350. }
  5351. #u40681 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:1030px;
  5355. top:38px;
  5356. width:206px;
  5357. height:38px;
  5358. display:flex;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:12px;
  5363. color:#333333;
  5364. text-align:left;
  5365. }
  5366. #u40681 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 20px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u40681_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. visibility:hidden;
  5378. }
  5379. #u40682_img {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:104px;
  5385. height:38px;
  5386. }
  5387. #u40682 {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:1236px;
  5391. top:38px;
  5392. width:104px;
  5393. height:38px;
  5394. display:flex;
  5395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5396. font-weight:400;
  5397. font-style:normal;
  5398. font-size:12px;
  5399. color:#1890FF;
  5400. text-align:left;
  5401. }
  5402. #u40682 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 20px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u40682_text {
  5410. border-width:0px;
  5411. word-wrap:break-word;
  5412. text-transform:none;
  5413. }
  5414. #u40683_img {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:309px;
  5420. height:38px;
  5421. }
  5422. #u40683 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:76px;
  5427. width:309px;
  5428. height:38px;
  5429. display:flex;
  5430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5431. font-weight:400;
  5432. font-style:normal;
  5433. font-size:12px;
  5434. color:#333333;
  5435. text-align:left;
  5436. }
  5437. #u40683 .text {
  5438. position:absolute;
  5439. align-self:center;
  5440. padding:2px 2px 2px 20px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u40683_text {
  5445. border-width:0px;
  5446. word-wrap:break-word;
  5447. text-transform:none;
  5448. }
  5449. #u40684_img {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:309px;
  5455. height:38px;
  5456. }
  5457. #u40684 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:309px;
  5461. top:76px;
  5462. width:309px;
  5463. height:38px;
  5464. display:flex;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:12px;
  5469. color:#1890FF;
  5470. text-align:left;
  5471. }
  5472. #u40684 .text {
  5473. position:absolute;
  5474. align-self:center;
  5475. padding:2px 2px 2px 20px;
  5476. box-sizing:border-box;
  5477. width:100%;
  5478. }
  5479. #u40684_text {
  5480. border-width:0px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. }
  5484. #u40685_img {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:206px;
  5490. height:38px;
  5491. }
  5492. #u40685 {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:618px;
  5496. top:76px;
  5497. width:206px;
  5498. height:38px;
  5499. display:flex;
  5500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5501. font-weight:400;
  5502. font-style:normal;
  5503. font-size:12px;
  5504. color:#1890FF;
  5505. text-align:left;
  5506. }
  5507. #u40685 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 20px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u40685_text {
  5515. border-width:0px;
  5516. word-wrap:break-word;
  5517. text-transform:none;
  5518. visibility:hidden;
  5519. }
  5520. #u40686_img {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:206px;
  5526. height:38px;
  5527. }
  5528. #u40686 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:824px;
  5532. top:76px;
  5533. width:206px;
  5534. height:38px;
  5535. display:flex;
  5536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:12px;
  5540. color:#333333;
  5541. text-align:left;
  5542. }
  5543. #u40686 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:2px 2px 2px 20px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u40686_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. visibility:hidden;
  5555. }
  5556. #u40687_img {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:206px;
  5562. height:38px;
  5563. }
  5564. #u40687 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:1030px;
  5568. top:76px;
  5569. width:206px;
  5570. height:38px;
  5571. display:flex;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:12px;
  5576. color:#333333;
  5577. text-align:left;
  5578. }
  5579. #u40687 .text {
  5580. position:absolute;
  5581. align-self:center;
  5582. padding:2px 2px 2px 20px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u40687_text {
  5587. border-width:0px;
  5588. word-wrap:break-word;
  5589. text-transform:none;
  5590. visibility:hidden;
  5591. }
  5592. #u40688_img {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:104px;
  5598. height:38px;
  5599. }
  5600. #u40688 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:1236px;
  5604. top:76px;
  5605. width:104px;
  5606. height:38px;
  5607. display:flex;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:12px;
  5612. color:#1890FF;
  5613. text-align:left;
  5614. }
  5615. #u40688 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:2px 2px 2px 20px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u40688_text {
  5623. border-width:0px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. }
  5627. #u40689_img {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:309px;
  5633. height:38px;
  5634. }
  5635. #u40689 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:114px;
  5640. width:309px;
  5641. height:38px;
  5642. display:flex;
  5643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:12px;
  5647. color:#333333;
  5648. text-align:left;
  5649. }
  5650. #u40689 .text {
  5651. position:absolute;
  5652. align-self:center;
  5653. padding:2px 2px 2px 20px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u40689_text {
  5658. border-width:0px;
  5659. word-wrap:break-word;
  5660. text-transform:none;
  5661. }
  5662. #u40690_img {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:309px;
  5668. height:38px;
  5669. }
  5670. #u40690 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:309px;
  5674. top:114px;
  5675. width:309px;
  5676. height:38px;
  5677. display:flex;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:12px;
  5682. color:#1890FF;
  5683. text-align:left;
  5684. }
  5685. #u40690 .text {
  5686. position:absolute;
  5687. align-self:center;
  5688. padding:2px 2px 2px 20px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u40690_text {
  5693. border-width:0px;
  5694. word-wrap:break-word;
  5695. text-transform:none;
  5696. }
  5697. #u40691_img {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:206px;
  5703. height:38px;
  5704. }
  5705. #u40691 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:618px;
  5709. top:114px;
  5710. width:206px;
  5711. height:38px;
  5712. display:flex;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:12px;
  5717. color:#1890FF;
  5718. text-align:left;
  5719. }
  5720. #u40691 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:2px 2px 2px 20px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u40691_text {
  5728. border-width:0px;
  5729. word-wrap:break-word;
  5730. text-transform:none;
  5731. visibility:hidden;
  5732. }
  5733. #u40692_img {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:206px;
  5739. height:38px;
  5740. }
  5741. #u40692 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:824px;
  5745. top:114px;
  5746. width:206px;
  5747. height:38px;
  5748. display:flex;
  5749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. font-size:12px;
  5753. color:#333333;
  5754. text-align:left;
  5755. }
  5756. #u40692 .text {
  5757. position:absolute;
  5758. align-self:center;
  5759. padding:2px 2px 2px 20px;
  5760. box-sizing:border-box;
  5761. width:100%;
  5762. }
  5763. #u40692_text {
  5764. border-width:0px;
  5765. word-wrap:break-word;
  5766. text-transform:none;
  5767. visibility:hidden;
  5768. }
  5769. #u40693_img {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:206px;
  5775. height:38px;
  5776. }
  5777. #u40693 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:1030px;
  5781. top:114px;
  5782. width:206px;
  5783. height:38px;
  5784. display:flex;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:12px;
  5789. color:#333333;
  5790. text-align:left;
  5791. }
  5792. #u40693 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:2px 2px 2px 20px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u40693_text {
  5800. border-width:0px;
  5801. word-wrap:break-word;
  5802. text-transform:none;
  5803. visibility:hidden;
  5804. }
  5805. #u40694_img {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:104px;
  5811. height:38px;
  5812. }
  5813. #u40694 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:1236px;
  5817. top:114px;
  5818. width:104px;
  5819. height:38px;
  5820. display:flex;
  5821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:12px;
  5825. color:#1890FF;
  5826. text-align:left;
  5827. }
  5828. #u40694 .text {
  5829. position:absolute;
  5830. align-self:center;
  5831. padding:2px 2px 2px 20px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u40694_text {
  5836. border-width:0px;
  5837. word-wrap:break-word;
  5838. text-transform:none;
  5839. }
  5840. #u40695_img {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:309px;
  5846. height:38px;
  5847. }
  5848. #u40695 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:152px;
  5853. width:309px;
  5854. height:38px;
  5855. display:flex;
  5856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5857. font-weight:400;
  5858. font-style:normal;
  5859. font-size:12px;
  5860. color:#333333;
  5861. text-align:left;
  5862. }
  5863. #u40695 .text {
  5864. position:absolute;
  5865. align-self:center;
  5866. padding:2px 2px 2px 20px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u40695_text {
  5871. border-width:0px;
  5872. word-wrap:break-word;
  5873. text-transform:none;
  5874. }
  5875. #u40696_img {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:309px;
  5881. height:38px;
  5882. }
  5883. #u40696 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:309px;
  5887. top:152px;
  5888. width:309px;
  5889. height:38px;
  5890. display:flex;
  5891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. font-size:12px;
  5895. color:#1890FF;
  5896. text-align:left;
  5897. }
  5898. #u40696 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:2px 2px 2px 20px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u40696_text {
  5906. border-width:0px;
  5907. word-wrap:break-word;
  5908. text-transform:none;
  5909. }
  5910. #u40697_img {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:206px;
  5916. height:38px;
  5917. }
  5918. #u40697 {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:618px;
  5922. top:152px;
  5923. width:206px;
  5924. height:38px;
  5925. display:flex;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:12px;
  5930. color:#1890FF;
  5931. text-align:left;
  5932. }
  5933. #u40697 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:2px 2px 2px 20px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u40697_text {
  5941. border-width:0px;
  5942. word-wrap:break-word;
  5943. text-transform:none;
  5944. visibility:hidden;
  5945. }
  5946. #u40698_img {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:206px;
  5952. height:38px;
  5953. }
  5954. #u40698 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:824px;
  5958. top:152px;
  5959. width:206px;
  5960. height:38px;
  5961. display:flex;
  5962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:12px;
  5966. color:#333333;
  5967. text-align:left;
  5968. }
  5969. #u40698 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 20px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u40698_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u40699_img {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:206px;
  5988. height:38px;
  5989. }
  5990. #u40699 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:1030px;
  5994. top:152px;
  5995. width:206px;
  5996. height:38px;
  5997. display:flex;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:12px;
  6002. color:#333333;
  6003. text-align:left;
  6004. }
  6005. #u40699 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:2px 2px 2px 20px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u40699_text {
  6013. border-width:0px;
  6014. word-wrap:break-word;
  6015. text-transform:none;
  6016. visibility:hidden;
  6017. }
  6018. #u40700_img {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:104px;
  6024. height:38px;
  6025. }
  6026. #u40700 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:1236px;
  6030. top:152px;
  6031. width:104px;
  6032. height:38px;
  6033. display:flex;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:12px;
  6038. color:#1890FF;
  6039. text-align:left;
  6040. }
  6041. #u40700 .text {
  6042. position:absolute;
  6043. align-self:center;
  6044. padding:2px 2px 2px 20px;
  6045. box-sizing:border-box;
  6046. width:100%;
  6047. }
  6048. #u40700_text {
  6049. border-width:0px;
  6050. word-wrap:break-word;
  6051. text-transform:none;
  6052. }
  6053. #u40701_img {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:42px;
  6059. height:26px;
  6060. }
  6061. #u40701 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:932px;
  6065. top:819px;
  6066. width:42px;
  6067. height:26px;
  6068. display:flex;
  6069. }
  6070. #u40701 .text {
  6071. position:absolute;
  6072. align-self:center;
  6073. padding:2px 2px 2px 2px;
  6074. box-sizing:border-box;
  6075. width:100%;
  6076. }
  6077. #u40701_text {
  6078. border-width:0px;
  6079. word-wrap:break-word;
  6080. text-transform:none;
  6081. visibility:hidden;
  6082. }
  6083. #u40702_img {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:42px;
  6089. height:26px;
  6090. }
  6091. #u40702 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:932px;
  6095. top:858px;
  6096. width:42px;
  6097. height:26px;
  6098. display:flex;
  6099. }
  6100. #u40702 .text {
  6101. position:absolute;
  6102. align-self:center;
  6103. padding:2px 2px 2px 2px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u40702_text {
  6108. border-width:0px;
  6109. word-wrap:break-word;
  6110. text-transform:none;
  6111. visibility:hidden;
  6112. }
  6113. #u40703_img {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:42px;
  6119. height:26px;
  6120. }
  6121. #u40703 {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:932px;
  6125. top:897px;
  6126. width:42px;
  6127. height:26px;
  6128. display:flex;
  6129. }
  6130. #u40703 .text {
  6131. position:absolute;
  6132. align-self:center;
  6133. padding:2px 2px 2px 2px;
  6134. box-sizing:border-box;
  6135. width:100%;
  6136. }
  6137. #u40703_text {
  6138. border-width:0px;
  6139. word-wrap:break-word;
  6140. text-transform:none;
  6141. visibility:hidden;
  6142. }
  6143. #u40704_img {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:42px;
  6149. height:26px;
  6150. }
  6151. #u40704 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:932px;
  6155. top:934px;
  6156. width:42px;
  6157. height:26px;
  6158. display:flex;
  6159. }
  6160. #u40704 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 2px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u40704_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. visibility:hidden;
  6172. }
  6173. #u40705_img {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:42px;
  6179. height:26px;
  6180. }
  6181. #u40705 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:932px;
  6185. top:521px;
  6186. width:42px;
  6187. height:26px;
  6188. display:flex;
  6189. }
  6190. #u40705 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:2px 2px 2px 2px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u40705_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. visibility:hidden;
  6202. }
  6203. #u40706_img {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:42px;
  6209. height:26px;
  6210. }
  6211. #u40706 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:932px;
  6215. top:560px;
  6216. width:42px;
  6217. height:26px;
  6218. display:flex;
  6219. }
  6220. #u40706 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 2px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u40706_text {
  6228. border-width:0px;
  6229. word-wrap:break-word;
  6230. text-transform:none;
  6231. visibility:hidden;
  6232. }
  6233. #u40707_img {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:42px;
  6239. height:26px;
  6240. }
  6241. #u40707 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:932px;
  6245. top:599px;
  6246. width:42px;
  6247. height:26px;
  6248. display:flex;
  6249. }
  6250. #u40707 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:2px 2px 2px 2px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u40707_text {
  6258. border-width:0px;
  6259. word-wrap:break-word;
  6260. text-transform:none;
  6261. visibility:hidden;
  6262. }
  6263. #u40708_img {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:42px;
  6269. height:26px;
  6270. }
  6271. #u40708 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:932px;
  6275. top:636px;
  6276. width:42px;
  6277. height:26px;
  6278. display:flex;
  6279. }
  6280. #u40708 .text {
  6281. position:absolute;
  6282. align-self:center;
  6283. padding:2px 2px 2px 2px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u40708_text {
  6288. border-width:0px;
  6289. word-wrap:break-word;
  6290. text-transform:none;
  6291. visibility:hidden;
  6292. }
  6293. #u40709_img {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:42px;
  6299. height:26px;
  6300. }
  6301. #u40709 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:932px;
  6305. top:675px;
  6306. width:42px;
  6307. height:26px;
  6308. display:flex;
  6309. }
  6310. #u40709 .text {
  6311. position:absolute;
  6312. align-self:center;
  6313. padding:2px 2px 2px 2px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u40709_text {
  6318. border-width:0px;
  6319. word-wrap:break-word;
  6320. text-transform:none;
  6321. visibility:hidden;
  6322. }
  6323. #u40710_img {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:42px;
  6329. height:26px;
  6330. }
  6331. #u40710 {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:869px;
  6335. top:225px;
  6336. width:42px;
  6337. height:26px;
  6338. display:flex;
  6339. }
  6340. #u40710 .text {
  6341. position:absolute;
  6342. align-self:center;
  6343. padding:2px 2px 2px 2px;
  6344. box-sizing:border-box;
  6345. width:100%;
  6346. }
  6347. #u40710_text {
  6348. border-width:0px;
  6349. word-wrap:break-word;
  6350. text-transform:none;
  6351. visibility:hidden;
  6352. }
  6353. #u40711_img {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:42px;
  6359. height:26px;
  6360. }
  6361. #u40711 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:869px;
  6365. top:263px;
  6366. width:42px;
  6367. height:26px;
  6368. display:flex;
  6369. }
  6370. #u40711 .text {
  6371. position:absolute;
  6372. align-self:center;
  6373. padding:2px 2px 2px 2px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u40711_text {
  6378. border-width:0px;
  6379. word-wrap:break-word;
  6380. text-transform:none;
  6381. visibility:hidden;
  6382. }
  6383. #u40712_img {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:42px;
  6389. height:26px;
  6390. }
  6391. #u40712 {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:869px;
  6395. top:339px;
  6396. width:42px;
  6397. height:26px;
  6398. display:flex;
  6399. }
  6400. #u40712 .text {
  6401. position:absolute;
  6402. align-self:center;
  6403. padding:2px 2px 2px 2px;
  6404. box-sizing:border-box;
  6405. width:100%;
  6406. }
  6407. #u40712_text {
  6408. border-width:0px;
  6409. word-wrap:break-word;
  6410. text-transform:none;
  6411. visibility:hidden;
  6412. }
  6413. #u40713_img {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:42px;
  6419. height:26px;
  6420. }
  6421. #u40713 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:869px;
  6425. top:377px;
  6426. width:42px;
  6427. height:26px;
  6428. display:flex;
  6429. }
  6430. #u40713 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:2px 2px 2px 2px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u40713_text {
  6438. border-width:0px;
  6439. word-wrap:break-word;
  6440. text-transform:none;
  6441. visibility:hidden;
  6442. }
  6443. #u40714_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:42px;
  6449. height:26px;
  6450. }
  6451. #u40714 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:869px;
  6455. top:301px;
  6456. width:42px;
  6457. height:26px;
  6458. display:flex;
  6459. }
  6460. #u40714 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 2px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u40714_text {
  6468. border-width:0px;
  6469. word-wrap:break-word;
  6470. text-transform:none;
  6471. visibility:hidden;
  6472. }
  6473. #u40715_img {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:-5px;
  6477. top:-5px;
  6478. width:528px;
  6479. height:235px;
  6480. }
  6481. #u40715 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:393px;
  6485. top:424px;
  6486. width:518px;
  6487. height:225px;
  6488. display:flex;
  6489. }
  6490. #u40715 .text {
  6491. position:absolute;
  6492. align-self:center;
  6493. padding:2px 2px 2px 2px;
  6494. box-sizing:border-box;
  6495. width:100%;
  6496. }
  6497. #u40715_text {
  6498. border-width:0px;
  6499. word-wrap:break-word;
  6500. text-transform:none;
  6501. visibility:hidden;
  6502. }
  6503. #u40716_img {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:-5px;
  6507. top:-5px;
  6508. width:529px;
  6509. height:293px;
  6510. }
  6511. #u40716 {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:392px;
  6515. top:677px;
  6516. width:519px;
  6517. height:283px;
  6518. display:flex;
  6519. }
  6520. #u40716 .text {
  6521. position:absolute;
  6522. align-self:center;
  6523. padding:2px 2px 2px 2px;
  6524. box-sizing:border-box;
  6525. width:100%;
  6526. }
  6527. #u40716_text {
  6528. border-width:0px;
  6529. word-wrap:break-word;
  6530. text-transform:none;
  6531. visibility:hidden;
  6532. }
  6533. #u40717_img {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:-5px;
  6537. top:-5px;
  6538. width:526px;
  6539. height:285px;
  6540. }
  6541. #u40717 {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:392px;
  6545. top:985px;
  6546. width:516px;
  6547. height:275px;
  6548. display:flex;
  6549. }
  6550. #u40717 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:2px 2px 2px 2px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u40717_text {
  6558. border-width:0px;
  6559. word-wrap:break-word;
  6560. text-transform:none;
  6561. visibility:hidden;
  6562. }
  6563. #u40718_img {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:-5px;
  6567. top:-5px;
  6568. width:525px;
  6569. height:308px;
  6570. }
  6571. #u40718 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:941px;
  6575. top:966px;
  6576. width:515px;
  6577. height:298px;
  6578. display:flex;
  6579. }
  6580. #u40718 .text {
  6581. position:absolute;
  6582. align-self:center;
  6583. padding:2px 2px 2px 2px;
  6584. box-sizing:border-box;
  6585. width:100%;
  6586. }
  6587. #u40718_text {
  6588. border-width:0px;
  6589. word-wrap:break-word;
  6590. text-transform:none;
  6591. visibility:hidden;
  6592. }
  6593. #u40719_img {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:-5px;
  6597. top:-5px;
  6598. width:1005px;
  6599. height:673px;
  6600. }
  6601. #u40719 {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:1510px;
  6605. top:624px;
  6606. width:995px;
  6607. height:663px;
  6608. display:flex;
  6609. }
  6610. #u40719 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:2px 2px 2px 2px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u40719_text {
  6618. border-width:0px;
  6619. word-wrap:break-word;
  6620. text-transform:none;
  6621. visibility:hidden;
  6622. }