styles.css 137 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u34928 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u34930 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u34931_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. #u34931 {
  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. #u34931 .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. #u34931_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u34932_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. #u34932 {
  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. #u34932 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u34932_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u34933 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u34934_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u34934 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u34934 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u34934_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u34935_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. #u34935 {
  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. #u34935 .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. #u34935_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u34936_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. #u34936 {
  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. #u34936 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u34936_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u34937_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u34937 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u34937 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u34937_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u34938_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u34938 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u34938 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u34938_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u34939 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u34940_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u34940 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u34940 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u34940_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u34941_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u34941 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u34941 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u34941_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u34942_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. #u34942 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u34942 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u34942_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u34943 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u34943_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u34944 {
  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. #u34945_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. #u34945 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u34945 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u34945_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u34946 {
  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. #u34947_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u34947 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u34947 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u34947_img.selected {
  504. }
  505. #u34947.selected {
  506. }
  507. #u34947_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u34948_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. #u34948 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u34948 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u34948_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u34946_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u34949 {
  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. #u34950_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. #u34950 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u34950 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u34950_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u34951 {
  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. #u34952_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. #u34952 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u34952 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u34952_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u34953 {
  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. #u34954_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u34954 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u34954 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u34954_img.selected {
  693. }
  694. #u34954.selected {
  695. }
  696. #u34954_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u34955_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. #u34955 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u34955 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u34955_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u34953_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u34956 {
  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. #u34957_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. #u34957 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u34957 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u34957_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u34958 {
  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. #u34959_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. #u34959 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u34959 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u34959_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u34960 {
  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. #u34961_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u34961 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u34961 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u34961_img.selected {
  882. }
  883. #u34961.selected {
  884. }
  885. #u34961_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u34962_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. #u34962 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u34962 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u34962_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u34960_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. #u34963 {
  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. #u34964_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. #u34964 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u34964 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u34964_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u34965 {
  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. #u34966_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. #u34966 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u34966 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u34966_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u34967 {
  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. #u34968_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. #u34968 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u34968 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u34968_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u34969 {
  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. #u34970_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. #u34970 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u34970 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u34970_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u34971 {
  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. #u34972_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u34972 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u34972 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u34972_img.selected {
  1170. }
  1171. #u34972.selected {
  1172. }
  1173. #u34972_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u34973_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. #u34973 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u34973 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u34973_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u34971_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. #u34974 {
  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. #u34975_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. #u34975 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u34975 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u34975_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u34976 {
  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. #u34977_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. #u34977 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u34977 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u34977_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u34978 {
  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. #u34979_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u34979 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u34979 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u34979_img.selected {
  1360. }
  1361. #u34979.selected {
  1362. }
  1363. #u34979_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u34980_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. #u34980 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u34980 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u34980_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u34978_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. #u34981 {
  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. #u34982_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. #u34982 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u34982 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u34982_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u34983 {
  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. #u34984_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. #u34984 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u34984 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u34984_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u34985 {
  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. #u34986_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u34986 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u34986 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u34986_img.selected {
  1550. }
  1551. #u34986.selected {
  1552. }
  1553. #u34986_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u34987_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. #u34987 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u34987 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u34987_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u34985_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. #u34988 {
  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. #u34989_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. #u34989 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u34989 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u34989_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u34990 {
  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. #u34991_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. #u34991 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u34991 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u34991_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u34992 {
  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. #u34993_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. #u34993 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u34993 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u34993_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u34994 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u34995_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. #u34995_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. #u34995_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. #u34995 {
  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. #u34995 .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. #u34995_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. #u34995.disabled {
  1850. }
  1851. .u34995_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u34996_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u34996 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u34996 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u34996_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u34997_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. #u34997 {
  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. #u34997 .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. #u34997_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u34998_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. #u34998 {
  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. #u34998 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u34998_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u34999_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. #u34999 {
  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. #u34999 .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. #u34999_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u35000_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1381px;
  2026. height:1154px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2032. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2033. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2034. }
  2035. #u35000 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:208px;
  2039. top:80px;
  2040. width:1381px;
  2041. height:1154px;
  2042. display:flex;
  2043. }
  2044. #u35000 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 2px 2px 2px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u35000_text {
  2052. border-width:0px;
  2053. word-wrap:break-word;
  2054. text-transform:none;
  2055. visibility:hidden;
  2056. }
  2057. #u35001 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:546px;
  2061. top:282px;
  2062. width:1026px;
  2063. height:465px;
  2064. }
  2065. #u35002_img {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:157px;
  2071. height:41px;
  2072. }
  2073. #u35002 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:157px;
  2079. height:41px;
  2080. display:flex;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:12px;
  2085. color:#FFFFFF;
  2086. }
  2087. #u35002 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:2px 2px 2px 0px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u35002_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. }
  2099. #u35003_img {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:179px;
  2105. height:41px;
  2106. }
  2107. #u35003 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:157px;
  2111. top:0px;
  2112. width:179px;
  2113. height:41px;
  2114. display:flex;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:12px;
  2119. color:#FFFFFF;
  2120. }
  2121. #u35003 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 0px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u35003_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. }
  2133. #u35004_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:179px;
  2139. height:41px;
  2140. }
  2141. #u35004 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:336px;
  2145. top:0px;
  2146. width:179px;
  2147. height:41px;
  2148. display:flex;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:12px;
  2153. color:#FFFFFF;
  2154. }
  2155. #u35004 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 2px 2px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u35004_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u35005_img {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:157px;
  2173. height:41px;
  2174. }
  2175. #u35005 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:515px;
  2179. top:0px;
  2180. width:157px;
  2181. height:41px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:12px;
  2187. color:#FFFFFF;
  2188. }
  2189. #u35005 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u35005_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u35006_img {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:179px;
  2207. height:41px;
  2208. }
  2209. #u35006 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:672px;
  2213. top:0px;
  2214. width:179px;
  2215. height:41px;
  2216. display:flex;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:12px;
  2221. color:#FFFFFF;
  2222. }
  2223. #u35006 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u35006_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. }
  2235. #u35007_img {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:175px;
  2241. height:41px;
  2242. }
  2243. #u35007 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:851px;
  2247. top:0px;
  2248. width:175px;
  2249. height:41px;
  2250. display:flex;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:12px;
  2255. color:#FFFFFF;
  2256. }
  2257. #u35007 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u35007_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. }
  2269. #u35008_img {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:157px;
  2275. height:39px;
  2276. }
  2277. #u35008 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:41px;
  2282. width:157px;
  2283. height:39px;
  2284. display:flex;
  2285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. font-size:12px;
  2289. }
  2290. #u35008 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u35008_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. }
  2302. #u35009_img {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:179px;
  2308. height:39px;
  2309. }
  2310. #u35009 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:157px;
  2314. top:41px;
  2315. width:179px;
  2316. height:39px;
  2317. display:flex;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:12px;
  2322. }
  2323. #u35009 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u35009_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. }
  2335. #u35010_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:179px;
  2341. height:39px;
  2342. }
  2343. #u35010 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:336px;
  2347. top:41px;
  2348. width:179px;
  2349. height:39px;
  2350. display:flex;
  2351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. font-size:12px;
  2355. }
  2356. #u35010 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 0px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u35010_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. }
  2368. #u35011_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:157px;
  2374. height:39px;
  2375. }
  2376. #u35011 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:515px;
  2380. top:41px;
  2381. width:157px;
  2382. height:39px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:12px;
  2388. }
  2389. #u35011 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 0px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u35011_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. }
  2401. #u35012_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:179px;
  2407. height:39px;
  2408. }
  2409. #u35012 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:672px;
  2413. top:41px;
  2414. width:179px;
  2415. height:39px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. }
  2422. #u35012 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u35012_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u35013_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:175px;
  2440. height:39px;
  2441. }
  2442. #u35013 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:851px;
  2446. top:41px;
  2447. width:175px;
  2448. height:39px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:12px;
  2454. color:#1890FF;
  2455. }
  2456. #u35013 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u35013_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u35014_img {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:157px;
  2474. height:35px;
  2475. }
  2476. #u35014 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:80px;
  2481. width:157px;
  2482. height:35px;
  2483. display:flex;
  2484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2485. font-weight:400;
  2486. font-style:normal;
  2487. font-size:12px;
  2488. }
  2489. #u35014 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 0px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u35014_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. }
  2501. #u35015_img {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:179px;
  2507. height:35px;
  2508. }
  2509. #u35015 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:157px;
  2513. top:80px;
  2514. width:179px;
  2515. height:35px;
  2516. display:flex;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:12px;
  2521. }
  2522. #u35015 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:2px 2px 2px 0px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u35015_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. }
  2534. #u35016_img {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:179px;
  2540. height:35px;
  2541. }
  2542. #u35016 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:336px;
  2546. top:80px;
  2547. width:179px;
  2548. height:35px;
  2549. display:flex;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. font-size:12px;
  2554. }
  2555. #u35016 .text {
  2556. position:absolute;
  2557. align-self:center;
  2558. padding:2px 2px 2px 0px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u35016_text {
  2563. border-width:0px;
  2564. word-wrap:break-word;
  2565. text-transform:none;
  2566. }
  2567. #u35017_img {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:157px;
  2573. height:35px;
  2574. }
  2575. #u35017 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:515px;
  2579. top:80px;
  2580. width:157px;
  2581. height:35px;
  2582. display:flex;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. }
  2588. #u35017 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 2px 2px 0px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u35017_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. }
  2600. #u35018_img {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:179px;
  2606. height:35px;
  2607. }
  2608. #u35018 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:672px;
  2612. top:80px;
  2613. width:179px;
  2614. height:35px;
  2615. display:flex;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:12px;
  2620. }
  2621. #u35018 .text {
  2622. position:absolute;
  2623. align-self:center;
  2624. padding:2px 2px 2px 0px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u35018_text {
  2629. border-width:0px;
  2630. word-wrap:break-word;
  2631. text-transform:none;
  2632. }
  2633. #u35019_img {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:175px;
  2639. height:35px;
  2640. }
  2641. #u35019 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:851px;
  2645. top:80px;
  2646. width:175px;
  2647. height:35px;
  2648. display:flex;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:12px;
  2653. color:#1890FF;
  2654. }
  2655. #u35019 .text {
  2656. position:absolute;
  2657. align-self:center;
  2658. padding:2px 2px 2px 0px;
  2659. box-sizing:border-box;
  2660. width:100%;
  2661. }
  2662. #u35019_text {
  2663. border-width:0px;
  2664. word-wrap:break-word;
  2665. text-transform:none;
  2666. }
  2667. #u35020_img {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:157px;
  2673. height:35px;
  2674. }
  2675. #u35020 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:115px;
  2680. width:157px;
  2681. height:35px;
  2682. display:flex;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. }
  2688. #u35020 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 0px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u35020_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. }
  2700. #u35021_img {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:179px;
  2706. height:35px;
  2707. }
  2708. #u35021 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:157px;
  2712. top:115px;
  2713. width:179px;
  2714. height:35px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:12px;
  2720. }
  2721. #u35021 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 0px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u35021_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. }
  2733. #u35022_img {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:179px;
  2739. height:35px;
  2740. }
  2741. #u35022 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:336px;
  2745. top:115px;
  2746. width:179px;
  2747. height:35px;
  2748. display:flex;
  2749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2750. font-weight:400;
  2751. font-style:normal;
  2752. font-size:12px;
  2753. }
  2754. #u35022 .text {
  2755. position:absolute;
  2756. align-self:center;
  2757. padding:2px 2px 2px 0px;
  2758. box-sizing:border-box;
  2759. width:100%;
  2760. }
  2761. #u35022_text {
  2762. border-width:0px;
  2763. word-wrap:break-word;
  2764. text-transform:none;
  2765. }
  2766. #u35023_img {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:157px;
  2772. height:35px;
  2773. }
  2774. #u35023 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:515px;
  2778. top:115px;
  2779. width:157px;
  2780. height:35px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. }
  2787. #u35023 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 0px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u35023_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. }
  2799. #u35024_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:179px;
  2805. height:35px;
  2806. }
  2807. #u35024 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:672px;
  2811. top:115px;
  2812. width:179px;
  2813. height:35px;
  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. }
  2820. #u35024 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 0px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u35024_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. }
  2832. #u35025_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:175px;
  2838. height:35px;
  2839. }
  2840. #u35025 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:851px;
  2844. top:115px;
  2845. width:175px;
  2846. height:35px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:12px;
  2852. color:#1890FF;
  2853. }
  2854. #u35025 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u35025_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. }
  2866. #u35026_img {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:157px;
  2872. height:34px;
  2873. }
  2874. #u35026 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:150px;
  2879. width:157px;
  2880. height:34px;
  2881. display:flex;
  2882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. font-size:12px;
  2886. }
  2887. #u35026 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u35026_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u35027_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:179px;
  2905. height:34px;
  2906. }
  2907. #u35027 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:157px;
  2911. top:150px;
  2912. width:179px;
  2913. height:34px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. }
  2920. #u35027 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u35027_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. }
  2932. #u35028_img {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:179px;
  2938. height:34px;
  2939. }
  2940. #u35028 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:336px;
  2944. top:150px;
  2945. width:179px;
  2946. height:34px;
  2947. display:flex;
  2948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2949. font-weight:400;
  2950. font-style:normal;
  2951. font-size:12px;
  2952. }
  2953. #u35028 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 0px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u35028_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. }
  2965. #u35029_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:157px;
  2971. height:34px;
  2972. }
  2973. #u35029 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:515px;
  2977. top:150px;
  2978. width:157px;
  2979. height:34px;
  2980. display:flex;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. }
  2986. #u35029 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 0px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u35029_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. }
  2998. #u35030_img {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:179px;
  3004. height:34px;
  3005. }
  3006. #u35030 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:672px;
  3010. top:150px;
  3011. width:179px;
  3012. height:34px;
  3013. display:flex;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:12px;
  3018. }
  3019. #u35030 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 0px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u35030_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. }
  3031. #u35031_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:175px;
  3037. height:34px;
  3038. }
  3039. #u35031 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:851px;
  3043. top:150px;
  3044. width:175px;
  3045. height:34px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. color:#1890FF;
  3052. }
  3053. #u35031 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u35031_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. }
  3065. #u35032_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:157px;
  3071. height:36px;
  3072. }
  3073. #u35032 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:184px;
  3078. width:157px;
  3079. height:36px;
  3080. display:flex;
  3081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. }
  3086. #u35032 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 0px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u35032_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u35033_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:179px;
  3105. height:36px;
  3106. }
  3107. #u35033 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:157px;
  3111. top:184px;
  3112. width:179px;
  3113. height:36px;
  3114. display:flex;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. }
  3120. #u35033 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:2px 2px 2px 0px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u35033_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. visibility:hidden;
  3132. }
  3133. #u35034_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:179px;
  3139. height:36px;
  3140. }
  3141. #u35034 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:336px;
  3145. top:184px;
  3146. width:179px;
  3147. height:36px;
  3148. display:flex;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:12px;
  3153. }
  3154. #u35034 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 0px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u35034_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u35035_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:157px;
  3173. height:36px;
  3174. }
  3175. #u35035 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:515px;
  3179. top:184px;
  3180. width:157px;
  3181. height:36px;
  3182. display:flex;
  3183. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:12px;
  3187. }
  3188. #u35035 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u35035_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. visibility:hidden;
  3200. }
  3201. #u35036_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:179px;
  3207. height:36px;
  3208. }
  3209. #u35036 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:672px;
  3213. top:184px;
  3214. width:179px;
  3215. height:36px;
  3216. display:flex;
  3217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:12px;
  3221. }
  3222. #u35036 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 0px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u35036_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. visibility:hidden;
  3234. }
  3235. #u35037_img {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:175px;
  3241. height:36px;
  3242. }
  3243. #u35037 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:851px;
  3247. top:184px;
  3248. width:175px;
  3249. height:36px;
  3250. display:flex;
  3251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:12px;
  3255. color:#1890FF;
  3256. }
  3257. #u35037 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 0px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u35037_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. visibility:hidden;
  3269. }
  3270. #u35038_img {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:157px;
  3276. height:35px;
  3277. }
  3278. #u35038 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:220px;
  3283. width:157px;
  3284. height:35px;
  3285. display:flex;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:12px;
  3290. }
  3291. #u35038 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 0px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u35038_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. visibility:hidden;
  3303. }
  3304. #u35039_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:179px;
  3310. height:35px;
  3311. }
  3312. #u35039 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:157px;
  3316. top:220px;
  3317. width:179px;
  3318. height:35px;
  3319. display:flex;
  3320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:12px;
  3324. }
  3325. #u35039 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u35039_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. visibility:hidden;
  3337. }
  3338. #u35040_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:179px;
  3344. height:35px;
  3345. }
  3346. #u35040 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:336px;
  3350. top:220px;
  3351. width:179px;
  3352. height:35px;
  3353. display:flex;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. }
  3359. #u35040 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:2px 2px 2px 0px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u35040_text {
  3367. border-width:0px;
  3368. word-wrap:break-word;
  3369. text-transform:none;
  3370. visibility:hidden;
  3371. }
  3372. #u35041_img {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:157px;
  3378. height:35px;
  3379. }
  3380. #u35041 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:515px;
  3384. top:220px;
  3385. width:157px;
  3386. height:35px;
  3387. display:flex;
  3388. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:12px;
  3392. }
  3393. #u35041 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 2px 2px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u35041_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. visibility:hidden;
  3405. }
  3406. #u35042_img {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:179px;
  3412. height:35px;
  3413. }
  3414. #u35042 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:672px;
  3418. top:220px;
  3419. width:179px;
  3420. height:35px;
  3421. display:flex;
  3422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:12px;
  3426. }
  3427. #u35042 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 2px 2px 0px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u35042_text {
  3435. border-width:0px;
  3436. word-wrap:break-word;
  3437. text-transform:none;
  3438. visibility:hidden;
  3439. }
  3440. #u35043_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:175px;
  3446. height:35px;
  3447. }
  3448. #u35043 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:851px;
  3452. top:220px;
  3453. width:175px;
  3454. height:35px;
  3455. display:flex;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:12px;
  3460. color:#1890FF;
  3461. }
  3462. #u35043 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 2px 2px 0px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u35043_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. visibility:hidden;
  3474. }
  3475. #u35044_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:157px;
  3481. height:35px;
  3482. }
  3483. #u35044 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:255px;
  3488. width:157px;
  3489. height:35px;
  3490. display:flex;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:12px;
  3495. }
  3496. #u35044 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 0px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u35044_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u35045_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:179px;
  3515. height:35px;
  3516. }
  3517. #u35045 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:157px;
  3521. top:255px;
  3522. width:179px;
  3523. height:35px;
  3524. display:flex;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:12px;
  3529. }
  3530. #u35045 .text {
  3531. position:absolute;
  3532. align-self:center;
  3533. padding:2px 2px 2px 0px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u35045_text {
  3538. border-width:0px;
  3539. word-wrap:break-word;
  3540. text-transform:none;
  3541. visibility:hidden;
  3542. }
  3543. #u35046_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:179px;
  3549. height:35px;
  3550. }
  3551. #u35046 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:336px;
  3555. top:255px;
  3556. width:179px;
  3557. height:35px;
  3558. display:flex;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:12px;
  3563. }
  3564. #u35046 .text {
  3565. position:absolute;
  3566. align-self:center;
  3567. padding:2px 2px 2px 0px;
  3568. box-sizing:border-box;
  3569. width:100%;
  3570. }
  3571. #u35046_text {
  3572. border-width:0px;
  3573. word-wrap:break-word;
  3574. text-transform:none;
  3575. visibility:hidden;
  3576. }
  3577. #u35047_img {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:157px;
  3583. height:35px;
  3584. }
  3585. #u35047 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:515px;
  3589. top:255px;
  3590. width:157px;
  3591. height:35px;
  3592. display:flex;
  3593. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:12px;
  3597. }
  3598. #u35047 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 0px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u35047_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u35048_img {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:179px;
  3617. height:35px;
  3618. }
  3619. #u35048 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:672px;
  3623. top:255px;
  3624. width:179px;
  3625. height:35px;
  3626. display:flex;
  3627. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:12px;
  3631. }
  3632. #u35048 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 0px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u35048_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. visibility:hidden;
  3644. }
  3645. #u35049_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:175px;
  3651. height:35px;
  3652. }
  3653. #u35049 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:851px;
  3657. top:255px;
  3658. width:175px;
  3659. height:35px;
  3660. display:flex;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:12px;
  3665. color:#1890FF;
  3666. }
  3667. #u35049 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 0px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u35049_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u35050_img {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:157px;
  3686. height:35px;
  3687. }
  3688. #u35050 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:290px;
  3693. width:157px;
  3694. height:35px;
  3695. display:flex;
  3696. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3697. font-weight:400;
  3698. font-style:normal;
  3699. font-size:12px;
  3700. color:#606266;
  3701. }
  3702. #u35050 .text {
  3703. position:absolute;
  3704. align-self:center;
  3705. padding:2px 2px 2px 0px;
  3706. box-sizing:border-box;
  3707. width:100%;
  3708. }
  3709. #u35050_text {
  3710. border-width:0px;
  3711. word-wrap:break-word;
  3712. text-transform:none;
  3713. visibility:hidden;
  3714. }
  3715. #u35051_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:179px;
  3721. height:35px;
  3722. }
  3723. #u35051 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:157px;
  3727. top:290px;
  3728. width:179px;
  3729. height:35px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:12px;
  3735. }
  3736. #u35051 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 2px 2px 0px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u35051_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u35052_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:179px;
  3755. height:35px;
  3756. }
  3757. #u35052 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:336px;
  3761. top:290px;
  3762. width:179px;
  3763. height:35px;
  3764. display:flex;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:12px;
  3769. }
  3770. #u35052 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u35052_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u35053_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:157px;
  3789. height:35px;
  3790. }
  3791. #u35053 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:515px;
  3795. top:290px;
  3796. width:157px;
  3797. height:35px;
  3798. display:flex;
  3799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#606266;
  3804. }
  3805. #u35053 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u35053_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u35054_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:179px;
  3824. height:35px;
  3825. }
  3826. #u35054 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:672px;
  3830. top:290px;
  3831. width:179px;
  3832. height:35px;
  3833. display:flex;
  3834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. color:#606266;
  3839. }
  3840. #u35054 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u35054_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u35055_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:175px;
  3859. height:35px;
  3860. }
  3861. #u35055 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:851px;
  3865. top:290px;
  3866. width:175px;
  3867. height:35px;
  3868. display:flex;
  3869. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#606266;
  3874. }
  3875. #u35055 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u35055_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u35056_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:157px;
  3894. height:35px;
  3895. }
  3896. #u35056 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:325px;
  3901. width:157px;
  3902. height:35px;
  3903. display:flex;
  3904. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#606266;
  3909. }
  3910. #u35056 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u35056_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u35057_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:179px;
  3929. height:35px;
  3930. }
  3931. #u35057 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:157px;
  3935. top:325px;
  3936. width:179px;
  3937. height:35px;
  3938. display:flex;
  3939. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. color:#606266;
  3944. }
  3945. #u35057 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u35057_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u35058_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:179px;
  3964. height:35px;
  3965. }
  3966. #u35058 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:336px;
  3970. top:325px;
  3971. width:179px;
  3972. height:35px;
  3973. display:flex;
  3974. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. color:#606266;
  3979. }
  3980. #u35058 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u35058_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u35059_img {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:157px;
  3999. height:35px;
  4000. }
  4001. #u35059 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:515px;
  4005. top:325px;
  4006. width:157px;
  4007. height:35px;
  4008. display:flex;
  4009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:12px;
  4013. color:#606266;
  4014. }
  4015. #u35059 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u35059_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u35060_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:179px;
  4034. height:35px;
  4035. }
  4036. #u35060 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:672px;
  4040. top:325px;
  4041. width:179px;
  4042. height:35px;
  4043. display:flex;
  4044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:#606266;
  4049. }
  4050. #u35060 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u35060_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u35061_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:175px;
  4069. height:35px;
  4070. }
  4071. #u35061 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:851px;
  4075. top:325px;
  4076. width:175px;
  4077. height:35px;
  4078. display:flex;
  4079. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:#606266;
  4084. }
  4085. #u35061 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 0px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u35061_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u35062_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:157px;
  4104. height:35px;
  4105. }
  4106. #u35062 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:360px;
  4111. width:157px;
  4112. height:35px;
  4113. display:flex;
  4114. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u35062 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u35062_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u35063_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:179px;
  4139. height:35px;
  4140. }
  4141. #u35063 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:157px;
  4145. top:360px;
  4146. width:179px;
  4147. height:35px;
  4148. display:flex;
  4149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u35063 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u35063_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u35064_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:179px;
  4174. height:35px;
  4175. }
  4176. #u35064 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:336px;
  4180. top:360px;
  4181. width:179px;
  4182. height:35px;
  4183. display:flex;
  4184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4185. font-weight:400;
  4186. font-style:normal;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u35064 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u35064_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u35065_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:157px;
  4209. height:35px;
  4210. }
  4211. #u35065 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:515px;
  4215. top:360px;
  4216. width:157px;
  4217. height:35px;
  4218. display:flex;
  4219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#606266;
  4224. }
  4225. #u35065 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u35065_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u35066_img {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:179px;
  4244. height:35px;
  4245. }
  4246. #u35066 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:672px;
  4250. top:360px;
  4251. width:179px;
  4252. height:35px;
  4253. display:flex;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u35066 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u35066_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u35067_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:175px;
  4279. height:35px;
  4280. }
  4281. #u35067 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:851px;
  4285. top:360px;
  4286. width:175px;
  4287. height:35px;
  4288. display:flex;
  4289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:12px;
  4293. color:#606266;
  4294. }
  4295. #u35067 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u35067_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u35068_img {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:157px;
  4314. height:35px;
  4315. }
  4316. #u35068 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:395px;
  4321. width:157px;
  4322. height:35px;
  4323. display:flex;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u35068 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u35068_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u35069_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:179px;
  4349. height:35px;
  4350. }
  4351. #u35069 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:157px;
  4355. top:395px;
  4356. width:179px;
  4357. height:35px;
  4358. display:flex;
  4359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. color:#606266;
  4364. }
  4365. #u35069 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u35069_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u35070_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:179px;
  4384. height:35px;
  4385. }
  4386. #u35070 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:336px;
  4390. top:395px;
  4391. width:179px;
  4392. height:35px;
  4393. display:flex;
  4394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:12px;
  4398. color:#606266;
  4399. }
  4400. #u35070 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u35070_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u35071_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:157px;
  4419. height:35px;
  4420. }
  4421. #u35071 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:515px;
  4425. top:395px;
  4426. width:157px;
  4427. height:35px;
  4428. display:flex;
  4429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#606266;
  4434. }
  4435. #u35071 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 0px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u35071_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u35072_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:179px;
  4454. height:35px;
  4455. }
  4456. #u35072 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:672px;
  4460. top:395px;
  4461. width:179px;
  4462. height:35px;
  4463. display:flex;
  4464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. color:#606266;
  4469. }
  4470. #u35072 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 0px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u35072_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u35073_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:175px;
  4489. height:35px;
  4490. }
  4491. #u35073 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:851px;
  4495. top:395px;
  4496. width:175px;
  4497. height:35px;
  4498. display:flex;
  4499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. color:#606266;
  4504. }
  4505. #u35073 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u35073_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u35074_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:157px;
  4524. height:35px;
  4525. }
  4526. #u35074 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:430px;
  4531. width:157px;
  4532. height:35px;
  4533. display:flex;
  4534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. color:#606266;
  4539. }
  4540. #u35074 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u35074_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u35075_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:179px;
  4559. height:35px;
  4560. }
  4561. #u35075 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:157px;
  4565. top:430px;
  4566. width:179px;
  4567. height:35px;
  4568. display:flex;
  4569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#606266;
  4574. }
  4575. #u35075 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u35075_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u35076_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:179px;
  4594. height:35px;
  4595. }
  4596. #u35076 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:336px;
  4600. top:430px;
  4601. width:179px;
  4602. height:35px;
  4603. display:flex;
  4604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#606266;
  4609. }
  4610. #u35076 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u35076_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u35077_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:157px;
  4629. height:35px;
  4630. }
  4631. #u35077 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:515px;
  4635. top:430px;
  4636. width:157px;
  4637. height:35px;
  4638. display:flex;
  4639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#606266;
  4644. }
  4645. #u35077 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u35077_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u35078_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:179px;
  4664. height:35px;
  4665. }
  4666. #u35078 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:672px;
  4670. top:430px;
  4671. width:179px;
  4672. height:35px;
  4673. display:flex;
  4674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#606266;
  4679. }
  4680. #u35078 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u35078_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u35079_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:175px;
  4699. height:35px;
  4700. }
  4701. #u35079 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:851px;
  4705. top:430px;
  4706. width:175px;
  4707. height:35px;
  4708. display:flex;
  4709. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. color:#606266;
  4714. }
  4715. #u35079 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u35079_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u35080_div {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:59px;
  4734. height:30px;
  4735. background:inherit;
  4736. background-color:rgba(41, 143, 255, 1);
  4737. border:none;
  4738. border-radius:4px;
  4739. -moz-box-shadow:none;
  4740. -webkit-box-shadow:none;
  4741. box-shadow:none;
  4742. font-family:'Microsoft YaHei', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:14px;
  4746. color:#FFFFFF;
  4747. }
  4748. #u35080 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:1006px;
  4752. top:192px;
  4753. width:59px;
  4754. height:30px;
  4755. display:flex;
  4756. font-family:'Microsoft YaHei', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:14px;
  4760. color:#FFFFFF;
  4761. }
  4762. #u35080 .text {
  4763. position:absolute;
  4764. align-self:center;
  4765. padding:5px 15px 5px 15px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u35080_text {
  4770. border-width:0px;
  4771. white-space:nowrap;
  4772. text-transform:none;
  4773. }
  4774. #u35081_div {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:55px;
  4780. height:30px;
  4781. background:inherit;
  4782. background-color:rgba(255, 255, 255, 1);
  4783. box-sizing:border-box;
  4784. border-width:1px;
  4785. border-style:solid;
  4786. border-color:rgba(170, 170, 170, 1);
  4787. border-radius:4px;
  4788. -moz-box-shadow:none;
  4789. -webkit-box-shadow:none;
  4790. box-shadow:none;
  4791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4792. font-weight:400;
  4793. font-style:normal;
  4794. font-size:12px;
  4795. color:#555555;
  4796. }
  4797. #u35081 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:1075px;
  4801. top:192px;
  4802. width:55px;
  4803. height:30px;
  4804. display:flex;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:12px;
  4809. color:#555555;
  4810. }
  4811. #u35081 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:5px 15px 5px 15px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u35081_text {
  4819. border-width:0px;
  4820. white-space:nowrap;
  4821. text-transform:none;
  4822. }
  4823. #u35082_div {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:80px;
  4829. height:30px;
  4830. background:inherit;
  4831. background-color:rgba(24, 144, 255, 1);
  4832. border:none;
  4833. border-radius:4px;
  4834. -moz-box-shadow:none;
  4835. -webkit-box-shadow:none;
  4836. box-shadow:none;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:12px;
  4841. color:#FFFFFF;
  4842. }
  4843. #u35082 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:416px;
  4847. top:180px;
  4848. width:80px;
  4849. height:30px;
  4850. display:flex;
  4851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4852. font-weight:400;
  4853. font-style:normal;
  4854. font-size:12px;
  4855. color:#FFFFFF;
  4856. }
  4857. #u35082 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:5px 15px 5px 15px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u35082_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. }
  4869. #u35083 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:0px;
  4875. height:0px;
  4876. }
  4877. #u35084_div {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:0px;
  4881. top:0px;
  4882. width:140px;
  4883. height:30px;
  4884. background:inherit;
  4885. background-color:rgba(255, 255, 255, 1);
  4886. box-sizing:border-box;
  4887. border-width:1px;
  4888. border-style:solid;
  4889. border-color:rgba(215, 215, 215, 1);
  4890. border-radius:4px;
  4891. -moz-box-shadow:none;
  4892. -webkit-box-shadow:none;
  4893. box-shadow:none;
  4894. font-size:11px;
  4895. }
  4896. #u35084 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:846px;
  4900. top:192px;
  4901. width:140px;
  4902. height:30px;
  4903. display:flex;
  4904. font-size:11px;
  4905. }
  4906. #u35084 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 2px 2px 2px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u35084_text {
  4914. border-width:0px;
  4915. word-wrap:break-word;
  4916. text-transform:none;
  4917. visibility:hidden;
  4918. }
  4919. #u35085_input {
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:120px;
  4924. height:23px;
  4925. padding:2px 2px 2px 2px;
  4926. font-family:'ArialMT', 'Arial', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:11px;
  4930. letter-spacing:normal;
  4931. color:#AAAAAA;
  4932. vertical-align:none;
  4933. text-align:left;
  4934. text-transform:none;
  4935. background-color:transparent;
  4936. border-color:transparent;
  4937. }
  4938. #u35085_input.disabled {
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:120px;
  4943. height:23px;
  4944. padding:2px 2px 2px 2px;
  4945. font-family:'ArialMT', 'Arial', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:11px;
  4949. letter-spacing:normal;
  4950. color:#AAAAAA;
  4951. vertical-align:none;
  4952. text-align:left;
  4953. text-transform:none;
  4954. background-color:transparent;
  4955. border-color:transparent;
  4956. }
  4957. #u35085_div {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:120px;
  4963. height:23px;
  4964. background:inherit;
  4965. background-color:rgba(255, 255, 255, 1);
  4966. border:none;
  4967. border-radius:0px;
  4968. -moz-box-shadow:none;
  4969. -webkit-box-shadow:none;
  4970. box-shadow:none;
  4971. font-size:11px;
  4972. color:#AAAAAA;
  4973. }
  4974. #u35085 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:853px;
  4978. top:194px;
  4979. width:120px;
  4980. height:23px;
  4981. display:flex;
  4982. font-size:11px;
  4983. color:#AAAAAA;
  4984. }
  4985. #u35085 .text {
  4986. position:absolute;
  4987. align-self:flex-start;
  4988. padding:2px 2px 2px 2px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u35085_div.disabled {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:120px;
  4998. height:23px;
  4999. background:inherit;
  5000. background-color:rgba(240, 240, 240, 1);
  5001. border:none;
  5002. border-radius:0px;
  5003. -moz-box-shadow:none;
  5004. -webkit-box-shadow:none;
  5005. box-shadow:none;
  5006. font-size:11px;
  5007. color:#AAAAAA;
  5008. }
  5009. #u35085.disabled {
  5010. }
  5011. .u35085_input_option {
  5012. font-size:11px;
  5013. }
  5014. #u35086_div {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:109px;
  5020. height:50px;
  5021. background:inherit;
  5022. background-color:rgba(255, 255, 255, 0);
  5023. border:none;
  5024. border-left:0px;
  5025. border-top:0px;
  5026. border-right:0px;
  5027. border-radius:0px;
  5028. border-bottom-right-radius:0px;
  5029. border-bottom-left-radius:0px;
  5030. -moz-box-shadow:none;
  5031. -webkit-box-shadow:none;
  5032. box-shadow:none;
  5033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:18px;
  5037. }
  5038. #u35086 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:227px;
  5042. top:80px;
  5043. width:109px;
  5044. height:50px;
  5045. display:flex;
  5046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:18px;
  5050. }
  5051. #u35086 .text {
  5052. position:absolute;
  5053. align-self:center;
  5054. padding:0px 0px 0px 0px;
  5055. box-sizing:border-box;
  5056. width:100%;
  5057. }
  5058. #u35086_text {
  5059. border-width:0px;
  5060. white-space:nowrap;
  5061. text-transform:none;
  5062. }
  5063. #u35087 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:0px;
  5069. height:0px;
  5070. }
  5071. #u35088_div {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:140px;
  5077. height:30px;
  5078. background:inherit;
  5079. background-color:rgba(255, 255, 255, 1);
  5080. box-sizing:border-box;
  5081. border-width:1px;
  5082. border-style:solid;
  5083. border-color:rgba(201, 201, 201, 1);
  5084. border-radius:4px;
  5085. -moz-box-shadow:none;
  5086. -webkit-box-shadow:none;
  5087. box-shadow:none;
  5088. font-family:'Microsoft YaHei', sans-serif;
  5089. font-weight:400;
  5090. font-style:normal;
  5091. font-size:14px;
  5092. color:#CCCCCC;
  5093. text-align:left;
  5094. }
  5095. #u35088 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:546px;
  5099. top:192px;
  5100. width:140px;
  5101. height:30px;
  5102. display:flex;
  5103. font-family:'Microsoft YaHei', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:14px;
  5107. color:#CCCCCC;
  5108. text-align:left;
  5109. }
  5110. #u35088 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:2px 8px 2px 8px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u35088_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. visibility:hidden;
  5122. }
  5123. #u35089_input {
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:127px;
  5128. height:25px;
  5129. padding:2px 2px 2px 2px;
  5130. font-family:'Microsoft YaHei', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:10px;
  5134. letter-spacing:normal;
  5135. color:#000000;
  5136. vertical-align:none;
  5137. text-align:left;
  5138. text-transform:none;
  5139. background-color:transparent;
  5140. border-color:transparent;
  5141. }
  5142. #u35089_input.disabled {
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:127px;
  5147. height:25px;
  5148. padding:2px 2px 2px 2px;
  5149. font-family:'Microsoft YaHei', sans-serif;
  5150. font-weight:400;
  5151. font-style:normal;
  5152. font-size:10px;
  5153. letter-spacing:normal;
  5154. color:#000000;
  5155. vertical-align:none;
  5156. text-align:left;
  5157. text-transform:none;
  5158. background-color:transparent;
  5159. border-color:transparent;
  5160. }
  5161. #u35089_div {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:127px;
  5167. height:25px;
  5168. background:inherit;
  5169. background-color:rgba(255, 255, 255, 1);
  5170. border:none;
  5171. border-radius:0px;
  5172. -moz-box-shadow:none;
  5173. -webkit-box-shadow:none;
  5174. box-shadow:none;
  5175. font-family:'Microsoft YaHei', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:10px;
  5179. }
  5180. #u35089 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:554px;
  5184. top:193px;
  5185. width:127px;
  5186. height:25px;
  5187. display:flex;
  5188. font-family:'Microsoft YaHei', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:10px;
  5192. }
  5193. #u35089 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:2px 2px 2px 2px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u35089_div.disabled {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:127px;
  5206. height:25px;
  5207. background:inherit;
  5208. background-color:rgba(240, 240, 240, 1);
  5209. border:none;
  5210. border-radius:0px;
  5211. -moz-box-shadow:none;
  5212. -webkit-box-shadow:none;
  5213. box-shadow:none;
  5214. font-family:'Microsoft YaHei', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:10px;
  5218. }
  5219. #u35089.disabled {
  5220. }
  5221. #u35090 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:0px;
  5227. height:0px;
  5228. }
  5229. #u35091_div {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:100px;
  5235. height:100px;
  5236. background:inherit;
  5237. background-color:rgba(255, 255, 255, 1);
  5238. border:none;
  5239. border-radius:4px;
  5240. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5241. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5242. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5243. }
  5244. #u35091 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:1419px;
  5248. top:351px;
  5249. width:100px;
  5250. height:100px;
  5251. display:flex;
  5252. }
  5253. #u35091 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 2px 2px 2px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u35091_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u35092_div {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:83px;
  5272. height:40px;
  5273. background:inherit;
  5274. background-color:rgba(255, 255, 255, 1);
  5275. box-sizing:border-box;
  5276. border-width:1px;
  5277. border-style:solid;
  5278. border-color:rgba(242, 242, 242, 1);
  5279. border-left:0px;
  5280. border-top:0px;
  5281. border-right:0px;
  5282. border-radius:4px;
  5283. border-bottom-right-radius:0px;
  5284. border-bottom-left-radius:0px;
  5285. -moz-box-shadow:none;
  5286. -webkit-box-shadow:none;
  5287. box-shadow:none;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:14px;
  5292. }
  5293. #u35092 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1427px;
  5297. top:362px;
  5298. width:83px;
  5299. height:40px;
  5300. display:flex;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. }
  5306. #u35092 .text {
  5307. position:absolute;
  5308. align-self:center;
  5309. padding:5px 0px 5px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u35092_text {
  5314. border-width:0px;
  5315. word-wrap:break-word;
  5316. text-transform:none;
  5317. }
  5318. #u35093_div {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:83px;
  5324. height:40px;
  5325. background:inherit;
  5326. background-color:rgba(255, 255, 255, 1);
  5327. border:none;
  5328. border-left:0px;
  5329. border-top:0px;
  5330. border-right:0px;
  5331. border-radius:4px;
  5332. border-bottom-right-radius:0px;
  5333. border-bottom-left-radius:0px;
  5334. -moz-box-shadow:none;
  5335. -webkit-box-shadow:none;
  5336. box-shadow:none;
  5337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:14px;
  5341. }
  5342. #u35093 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:1427px;
  5346. top:402px;
  5347. width:83px;
  5348. height:40px;
  5349. display:flex;
  5350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5351. font-weight:400;
  5352. font-style:normal;
  5353. font-size:14px;
  5354. }
  5355. #u35093 .text {
  5356. position:absolute;
  5357. align-self:center;
  5358. padding:5px 0px 5px 0px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u35093_text {
  5363. border-width:0px;
  5364. word-wrap:break-word;
  5365. text-transform:none;
  5366. }
  5367. #u35094_img {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:11px;
  5373. height:11px;
  5374. }
  5375. #u35094 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:955px;
  5379. top:234px;
  5380. width:11px;
  5381. height:11px;
  5382. display:flex;
  5383. color:#FFFFFF;
  5384. }
  5385. #u35094 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u35094_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. visibility:hidden;
  5397. }
  5398. #u35095_div {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:79px;
  5404. height:30px;
  5405. background:inherit;
  5406. background-color:rgba(25, 140, 251, 1);
  5407. border:none;
  5408. border-radius:4px;
  5409. -moz-box-shadow:none;
  5410. -webkit-box-shadow:none;
  5411. box-shadow:none;
  5412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5413. font-weight:400;
  5414. font-style:normal;
  5415. font-size:12px;
  5416. color:#FFFFFF;
  5417. }
  5418. #u35095 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:546px;
  5422. top:242px;
  5423. width:79px;
  5424. height:30px;
  5425. display:flex;
  5426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:12px;
  5430. color:#FFFFFF;
  5431. }
  5432. #u35095 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:5px 15px 5px 15px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u35095_text {
  5440. border-width:0px;
  5441. white-space:nowrap;
  5442. text-transform:none;
  5443. }
  5444. #u35096_div {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:300px;
  5450. height:1080px;
  5451. background:inherit;
  5452. background-color:rgba(242, 242, 242, 1);
  5453. border:none;
  5454. border-radius:4px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. }
  5459. #u35096 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:226px;
  5463. top:132px;
  5464. width:300px;
  5465. height:1080px;
  5466. display:flex;
  5467. }
  5468. #u35096 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:2px 2px 2px 2px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u35096_text {
  5476. border-width:0px;
  5477. word-wrap:break-word;
  5478. text-transform:none;
  5479. visibility:hidden;
  5480. }
  5481. #u35097_div {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:120px;
  5487. height:50px;
  5488. background:inherit;
  5489. background-color:rgba(255, 255, 255, 0);
  5490. border:none;
  5491. border-left:0px;
  5492. border-top:0px;
  5493. border-right:0px;
  5494. border-radius:0px;
  5495. border-bottom-right-radius:0px;
  5496. border-bottom-left-radius:0px;
  5497. -moz-box-shadow:none;
  5498. -webkit-box-shadow:none;
  5499. box-shadow:none;
  5500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5501. font-weight:400;
  5502. font-style:normal;
  5503. font-size:18px;
  5504. color:#000000;
  5505. line-height:40px;
  5506. }
  5507. #u35097 {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:546px;
  5511. top:132px;
  5512. width:120px;
  5513. height:50px;
  5514. display:flex;
  5515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:18px;
  5519. color:#000000;
  5520. line-height:40px;
  5521. }
  5522. #u35097 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:0px 0px 0px 0px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u35097_text {
  5530. border-width:0px;
  5531. white-space:nowrap;
  5532. text-transform:none;
  5533. }
  5534. #u35098 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:250px;
  5538. top:157px;
  5539. width:168px;
  5540. height:260px;
  5541. }
  5542. #u35098_children {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:0px;
  5548. height:0px;
  5549. }
  5550. #u35099 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:113px;
  5556. height:20px;
  5557. color:#298FFF;
  5558. }
  5559. #u35100_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:9px;
  5565. height:9px;
  5566. }
  5567. #u35100 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:6px;
  5571. top:6px;
  5572. width:9px;
  5573. height:9px;
  5574. display:flex;
  5575. }
  5576. #u35100 .text {
  5577. position:absolute;
  5578. align-self:center;
  5579. padding:2px 2px 2px 2px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u35100_img.selected {
  5584. }
  5585. #u35100.selected {
  5586. }
  5587. #u35100_text {
  5588. border-width:0px;
  5589. word-wrap:break-word;
  5590. text-transform:none;
  5591. visibility:hidden;
  5592. }
  5593. #u35101_div {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:91px;
  5599. height:20px;
  5600. background:inherit;
  5601. background-color:rgba(255, 255, 255, 0);
  5602. border:none;
  5603. border-radius:0px;
  5604. -moz-box-shadow:none;
  5605. -webkit-box-shadow:none;
  5606. box-shadow:none;
  5607. }
  5608. #u35101 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:22px;
  5612. top:0px;
  5613. width:91px;
  5614. height:20px;
  5615. display:flex;
  5616. }
  5617. #u35101 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 3px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u35101_text {
  5625. border-width:0px;
  5626. white-space:nowrap;
  5627. text-transform:none;
  5628. }
  5629. #u35099_children {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:0px;
  5635. height:0px;
  5636. }
  5637. #u35102 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:20px;
  5641. top:20px;
  5642. width:148px;
  5643. height:20px;
  5644. }
  5645. #u35103_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:126px;
  5651. height:20px;
  5652. background:inherit;
  5653. background-color:rgba(255, 255, 255, 0);
  5654. border:none;
  5655. border-radius:0px;
  5656. -moz-box-shadow:none;
  5657. -webkit-box-shadow:none;
  5658. box-shadow:none;
  5659. }
  5660. #u35103 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:22px;
  5664. top:0px;
  5665. width:126px;
  5666. height:20px;
  5667. display:flex;
  5668. }
  5669. #u35103 .text {
  5670. position:absolute;
  5671. align-self:center;
  5672. padding:2px 2px 2px 3px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u35103_text {
  5677. border-width:0px;
  5678. white-space:nowrap;
  5679. text-transform:none;
  5680. }
  5681. #u35104 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:20px;
  5685. top:40px;
  5686. width:122px;
  5687. height:20px;
  5688. }
  5689. #u35105_div {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:100px;
  5695. height:20px;
  5696. background:inherit;
  5697. background-color:rgba(255, 255, 255, 0);
  5698. border:none;
  5699. border-radius:0px;
  5700. -moz-box-shadow:none;
  5701. -webkit-box-shadow:none;
  5702. box-shadow:none;
  5703. }
  5704. #u35105 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:22px;
  5708. top:0px;
  5709. width:100px;
  5710. height:20px;
  5711. display:flex;
  5712. }
  5713. #u35105 .text {
  5714. position:absolute;
  5715. align-self:center;
  5716. padding:2px 2px 2px 3px;
  5717. box-sizing:border-box;
  5718. width:100%;
  5719. }
  5720. #u35105_text {
  5721. border-width:0px;
  5722. white-space:nowrap;
  5723. text-transform:none;
  5724. }
  5725. #u35106 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:20px;
  5729. top:60px;
  5730. width:122px;
  5731. height:20px;
  5732. }
  5733. #u35107_div {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:100px;
  5739. height:20px;
  5740. background:inherit;
  5741. background-color:rgba(255, 255, 255, 0);
  5742. border:none;
  5743. border-radius:0px;
  5744. -moz-box-shadow:none;
  5745. -webkit-box-shadow:none;
  5746. box-shadow:none;
  5747. }
  5748. #u35107 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:22px;
  5752. top:0px;
  5753. width:100px;
  5754. height:20px;
  5755. display:flex;
  5756. }
  5757. #u35107 .text {
  5758. position:absolute;
  5759. align-self:center;
  5760. padding:2px 2px 2px 3px;
  5761. box-sizing:border-box;
  5762. width:100%;
  5763. }
  5764. #u35107_text {
  5765. border-width:0px;
  5766. white-space:nowrap;
  5767. text-transform:none;
  5768. }
  5769. #u35108 {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:80px;
  5774. width:113px;
  5775. height:20px;
  5776. }
  5777. #u35109_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:9px;
  5783. height:9px;
  5784. }
  5785. #u35109 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:6px;
  5789. top:6px;
  5790. width:9px;
  5791. height:9px;
  5792. display:flex;
  5793. }
  5794. #u35109 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:2px 2px 2px 2px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u35109_img.selected {
  5802. }
  5803. #u35109.selected {
  5804. }
  5805. #u35109_text {
  5806. border-width:0px;
  5807. word-wrap:break-word;
  5808. text-transform:none;
  5809. visibility:hidden;
  5810. }
  5811. #u35110_div {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:91px;
  5817. height:20px;
  5818. background:inherit;
  5819. background-color:rgba(255, 255, 255, 0);
  5820. border:none;
  5821. border-radius:0px;
  5822. -moz-box-shadow:none;
  5823. -webkit-box-shadow:none;
  5824. box-shadow:none;
  5825. }
  5826. #u35110 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:22px;
  5830. top:0px;
  5831. width:91px;
  5832. height:20px;
  5833. display:flex;
  5834. }
  5835. #u35110 .text {
  5836. position:absolute;
  5837. align-self:center;
  5838. padding:2px 2px 2px 3px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u35110_text {
  5843. border-width:0px;
  5844. white-space:nowrap;
  5845. text-transform:none;
  5846. }
  5847. #u35108_children {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:0px;
  5853. height:0px;
  5854. }
  5855. #u35111 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:20px;
  5859. top:20px;
  5860. width:93px;
  5861. height:20px;
  5862. }
  5863. #u35112_div {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:0px;
  5867. top:0px;
  5868. width:71px;
  5869. height:20px;
  5870. background:inherit;
  5871. background-color:rgba(255, 255, 255, 0);
  5872. border:none;
  5873. border-radius:0px;
  5874. -moz-box-shadow:none;
  5875. -webkit-box-shadow:none;
  5876. box-shadow:none;
  5877. }
  5878. #u35112 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:22px;
  5882. top:0px;
  5883. width:71px;
  5884. height:20px;
  5885. display:flex;
  5886. }
  5887. #u35112 .text {
  5888. position:absolute;
  5889. align-self:center;
  5890. padding:2px 2px 2px 3px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u35112_text {
  5895. border-width:0px;
  5896. white-space:nowrap;
  5897. text-transform:none;
  5898. }
  5899. #u35113 {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:20px;
  5903. top:40px;
  5904. width:93px;
  5905. height:20px;
  5906. }
  5907. #u35114_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:71px;
  5913. height:20px;
  5914. background:inherit;
  5915. background-color:rgba(255, 255, 255, 0);
  5916. border:none;
  5917. border-radius:0px;
  5918. -moz-box-shadow:none;
  5919. -webkit-box-shadow:none;
  5920. box-shadow:none;
  5921. }
  5922. #u35114 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:22px;
  5926. top:0px;
  5927. width:71px;
  5928. height:20px;
  5929. display:flex;
  5930. }
  5931. #u35114 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 3px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u35114_text {
  5939. border-width:0px;
  5940. white-space:nowrap;
  5941. text-transform:none;
  5942. }
  5943. #u35115 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:140px;
  5948. width:80px;
  5949. height:20px;
  5950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. }
  5954. #u35116_img {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:9px;
  5960. height:9px;
  5961. }
  5962. #u35116 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:6px;
  5966. top:6px;
  5967. width:9px;
  5968. height:9px;
  5969. display:flex;
  5970. }
  5971. #u35116 .text {
  5972. position:absolute;
  5973. align-self:center;
  5974. padding:2px 2px 2px 2px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u35116_img.selected {
  5979. }
  5980. #u35116.selected {
  5981. }
  5982. #u35116_text {
  5983. border-width:0px;
  5984. word-wrap:break-word;
  5985. text-transform:none;
  5986. visibility:hidden;
  5987. }
  5988. #u35117_div {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:58px;
  5994. height:20px;
  5995. background:inherit;
  5996. background-color:rgba(255, 255, 255, 0);
  5997. border:none;
  5998. border-radius:0px;
  5999. -moz-box-shadow:none;
  6000. -webkit-box-shadow:none;
  6001. box-shadow:none;
  6002. }
  6003. #u35117 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:22px;
  6007. top:0px;
  6008. width:58px;
  6009. height:20px;
  6010. display:flex;
  6011. }
  6012. #u35117 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 3px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u35117_text {
  6020. border-width:0px;
  6021. white-space:nowrap;
  6022. text-transform:none;
  6023. }
  6024. #u35115_children {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:0px;
  6030. height:0px;
  6031. }
  6032. #u35118 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:20px;
  6036. top:20px;
  6037. width:97px;
  6038. height:20px;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. }
  6043. #u35119_div {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:75px;
  6049. height:20px;
  6050. background:inherit;
  6051. background-color:rgba(255, 255, 255, 0);
  6052. border:none;
  6053. border-radius:0px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. }
  6058. #u35119 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:22px;
  6062. top:0px;
  6063. width:75px;
  6064. height:20px;
  6065. display:flex;
  6066. }
  6067. #u35119 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:2px 2px 2px 3px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u35119_text {
  6075. border-width:0px;
  6076. white-space:nowrap;
  6077. text-transform:none;
  6078. }
  6079. #u35120 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:20px;
  6083. top:40px;
  6084. width:97px;
  6085. height:20px;
  6086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. }
  6090. #u35121_div {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:75px;
  6096. height:20px;
  6097. background:inherit;
  6098. background-color:rgba(255, 255, 255, 0);
  6099. border:none;
  6100. border-radius:0px;
  6101. -moz-box-shadow:none;
  6102. -webkit-box-shadow:none;
  6103. box-shadow:none;
  6104. }
  6105. #u35121 {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:22px;
  6109. top:0px;
  6110. width:75px;
  6111. height:20px;
  6112. display:flex;
  6113. }
  6114. #u35121 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 3px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u35121_text {
  6122. border-width:0px;
  6123. white-space:nowrap;
  6124. text-transform:none;
  6125. }
  6126. #u35122 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:200px;
  6131. width:80px;
  6132. height:20px;
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. }
  6137. #u35123_img {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:0px;
  6141. top:0px;
  6142. width:9px;
  6143. height:9px;
  6144. }
  6145. #u35123 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:6px;
  6149. top:6px;
  6150. width:9px;
  6151. height:9px;
  6152. display:flex;
  6153. }
  6154. #u35123 .text {
  6155. position:absolute;
  6156. align-self:center;
  6157. padding:2px 2px 2px 2px;
  6158. box-sizing:border-box;
  6159. width:100%;
  6160. }
  6161. #u35123_img.selected {
  6162. }
  6163. #u35123.selected {
  6164. }
  6165. #u35123_text {
  6166. border-width:0px;
  6167. word-wrap:break-word;
  6168. text-transform:none;
  6169. visibility:hidden;
  6170. }
  6171. #u35124_div {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:58px;
  6177. height:20px;
  6178. background:inherit;
  6179. background-color:rgba(255, 255, 255, 0);
  6180. border:none;
  6181. border-radius:0px;
  6182. -moz-box-shadow:none;
  6183. -webkit-box-shadow:none;
  6184. box-shadow:none;
  6185. }
  6186. #u35124 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:22px;
  6190. top:0px;
  6191. width:58px;
  6192. height:20px;
  6193. display:flex;
  6194. }
  6195. #u35124 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 3px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u35124_text {
  6203. border-width:0px;
  6204. white-space:nowrap;
  6205. text-transform:none;
  6206. }
  6207. #u35122_children {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:0px;
  6213. height:0px;
  6214. }
  6215. #u35125 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:20px;
  6219. top:20px;
  6220. width:97px;
  6221. height:20px;
  6222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. }
  6226. #u35126_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:75px;
  6232. height:20px;
  6233. background:inherit;
  6234. background-color:rgba(255, 255, 255, 0);
  6235. border:none;
  6236. border-radius:0px;
  6237. -moz-box-shadow:none;
  6238. -webkit-box-shadow:none;
  6239. box-shadow:none;
  6240. }
  6241. #u35126 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:22px;
  6245. top:0px;
  6246. width:75px;
  6247. height:20px;
  6248. display:flex;
  6249. }
  6250. #u35126 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:2px 2px 2px 3px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u35126_text {
  6258. border-width:0px;
  6259. white-space:nowrap;
  6260. text-transform:none;
  6261. }
  6262. #u35127 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:20px;
  6266. top:40px;
  6267. width:97px;
  6268. height:20px;
  6269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. }
  6273. #u35128_div {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:75px;
  6279. height:20px;
  6280. background:inherit;
  6281. background-color:rgba(255, 255, 255, 0);
  6282. border:none;
  6283. border-radius:0px;
  6284. -moz-box-shadow:none;
  6285. -webkit-box-shadow:none;
  6286. box-shadow:none;
  6287. }
  6288. #u35128 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:22px;
  6292. top:0px;
  6293. width:75px;
  6294. height:20px;
  6295. display:flex;
  6296. }
  6297. #u35128 .text {
  6298. position:absolute;
  6299. align-self:center;
  6300. padding:2px 2px 2px 3px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u35128_text {
  6305. border-width:0px;
  6306. white-space:nowrap;
  6307. text-transform:none;
  6308. }
  6309. #u35129 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:0px;
  6315. height:0px;
  6316. }
  6317. #u35130_div {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:140px;
  6323. height:30px;
  6324. background:inherit;
  6325. background-color:rgba(255, 255, 255, 1);
  6326. box-sizing:border-box;
  6327. border-width:1px;
  6328. border-style:solid;
  6329. border-color:rgba(201, 201, 201, 1);
  6330. border-radius:4px;
  6331. -moz-box-shadow:none;
  6332. -webkit-box-shadow:none;
  6333. box-shadow:none;
  6334. font-family:'Microsoft YaHei', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:14px;
  6338. color:#CCCCCC;
  6339. text-align:left;
  6340. }
  6341. #u35130 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:696px;
  6345. top:192px;
  6346. width:140px;
  6347. height:30px;
  6348. display:flex;
  6349. font-family:'Microsoft YaHei', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:14px;
  6353. color:#CCCCCC;
  6354. text-align:left;
  6355. }
  6356. #u35130 .text {
  6357. position:absolute;
  6358. align-self:center;
  6359. padding:2px 8px 2px 8px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u35130_text {
  6364. border-width:0px;
  6365. word-wrap:break-word;
  6366. text-transform:none;
  6367. visibility:hidden;
  6368. }
  6369. #u35131_input {
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:127px;
  6374. height:25px;
  6375. padding:2px 2px 2px 2px;
  6376. font-family:'Microsoft YaHei', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:10px;
  6380. letter-spacing:normal;
  6381. color:#000000;
  6382. vertical-align:none;
  6383. text-align:left;
  6384. text-transform:none;
  6385. background-color:transparent;
  6386. border-color:transparent;
  6387. }
  6388. #u35131_input.disabled {
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:127px;
  6393. height:25px;
  6394. padding:2px 2px 2px 2px;
  6395. font-family:'Microsoft YaHei', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:10px;
  6399. letter-spacing:normal;
  6400. color:#000000;
  6401. vertical-align:none;
  6402. text-align:left;
  6403. text-transform:none;
  6404. background-color:transparent;
  6405. border-color:transparent;
  6406. }
  6407. #u35131_div {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:127px;
  6413. height:25px;
  6414. background:inherit;
  6415. background-color:rgba(255, 255, 255, 1);
  6416. border:none;
  6417. border-radius:0px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. font-family:'Microsoft YaHei', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:10px;
  6425. }
  6426. #u35131 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:704px;
  6430. top:193px;
  6431. width:127px;
  6432. height:25px;
  6433. display:flex;
  6434. font-family:'Microsoft YaHei', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:10px;
  6438. }
  6439. #u35131 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:2px 2px 2px 2px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u35131_div.disabled {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:127px;
  6452. height:25px;
  6453. background:inherit;
  6454. background-color:rgba(240, 240, 240, 1);
  6455. border:none;
  6456. border-radius:0px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. font-family:'Microsoft YaHei', sans-serif;
  6461. font-weight:400;
  6462. font-style:normal;
  6463. font-size:10px;
  6464. }
  6465. #u35131.disabled {
  6466. }
  6467. #u35132_div {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:0px;
  6471. top:0px;
  6472. width:79px;
  6473. height:30px;
  6474. background:inherit;
  6475. background-color:rgba(255, 255, 255, 1);
  6476. box-sizing:border-box;
  6477. border-width:1px;
  6478. border-style:solid;
  6479. border-color:rgba(170, 170, 170, 1);
  6480. border-radius:4px;
  6481. -moz-box-shadow:none;
  6482. -webkit-box-shadow:none;
  6483. box-shadow:none;
  6484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. font-size:12px;
  6488. color:#555555;
  6489. }
  6490. #u35132 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:635px;
  6494. top:242px;
  6495. width:79px;
  6496. height:30px;
  6497. display:flex;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:12px;
  6502. color:#555555;
  6503. }
  6504. #u35132 .text {
  6505. position:absolute;
  6506. align-self:center;
  6507. padding:5px 15px 5px 15px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u35132_text {
  6512. border-width:0px;
  6513. white-space:nowrap;
  6514. text-transform:none;
  6515. }
  6516. #u35133_div {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:79px;
  6522. height:30px;
  6523. background:inherit;
  6524. background-color:rgba(255, 255, 255, 1);
  6525. box-sizing:border-box;
  6526. border-width:1px;
  6527. border-style:solid;
  6528. border-color:rgba(170, 170, 170, 1);
  6529. border-radius:4px;
  6530. -moz-box-shadow:none;
  6531. -webkit-box-shadow:none;
  6532. box-shadow:none;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:12px;
  6537. color:#555555;
  6538. }
  6539. #u35133 {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:724px;
  6543. top:242px;
  6544. width:79px;
  6545. height:30px;
  6546. display:flex;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:12px;
  6551. color:#555555;
  6552. }
  6553. #u35133 .text {
  6554. position:absolute;
  6555. align-self:center;
  6556. padding:5px 15px 5px 15px;
  6557. box-sizing:border-box;
  6558. width:100%;
  6559. }
  6560. #u35133_text {
  6561. border-width:0px;
  6562. white-space:nowrap;
  6563. text-transform:none;
  6564. }
  6565. #u35134 {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:0px;
  6571. height:0px;
  6572. }
  6573. #u35135_div {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:500px;
  6579. height:514px;
  6580. background:inherit;
  6581. background-color:rgba(255, 255, 255, 1);
  6582. box-sizing:border-box;
  6583. border-width:1px;
  6584. border-style:solid;
  6585. border-color:rgba(215, 215, 215, 1);
  6586. border-radius:0px;
  6587. -moz-box-shadow:none;
  6588. -webkit-box-shadow:none;
  6589. box-shadow:none;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:14px;
  6594. color:#AAAAAA;
  6595. text-align:center;
  6596. line-height:30px;
  6597. }
  6598. #u35135 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:739px;
  6602. top:549px;
  6603. width:500px;
  6604. height:514px;
  6605. display:flex;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:14px;
  6610. color:#AAAAAA;
  6611. text-align:center;
  6612. line-height:30px;
  6613. }
  6614. #u35135 .text {
  6615. position:absolute;
  6616. align-self:center;
  6617. padding:5px 10px 5px 10px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u35135_text {
  6622. border-width:0px;
  6623. word-wrap:break-word;
  6624. text-transform:none;
  6625. visibility:hidden;
  6626. }
  6627. #u35136_div {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:83px;
  6633. height:35px;
  6634. background:inherit;
  6635. background-color:rgba(255, 255, 255, 0);
  6636. border:none;
  6637. border-top:0px;
  6638. border-right:0px;
  6639. border-bottom:0px;
  6640. border-radius:0px;
  6641. border-top-left-radius:0px;
  6642. border-bottom-left-radius:0px;
  6643. -moz-box-shadow:none;
  6644. -webkit-box-shadow:none;
  6645. box-shadow:none;
  6646. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6647. font-weight:500;
  6648. font-style:normal;
  6649. font-size:18px;
  6650. }
  6651. #u35136 {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:759px;
  6655. top:567px;
  6656. width:83px;
  6657. height:35px;
  6658. display:flex;
  6659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6660. font-weight:500;
  6661. font-style:normal;
  6662. font-size:18px;
  6663. }
  6664. #u35136 .text {
  6665. position:absolute;
  6666. align-self:center;
  6667. padding:5px 10px 5px 0px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u35136_text {
  6672. border-width:0px;
  6673. white-space:nowrap;
  6674. text-transform:none;
  6675. }
  6676. #u35137 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:0px;
  6682. height:0px;
  6683. }
  6684. #u35138_div {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:500px;
  6690. height:60px;
  6691. background:inherit;
  6692. background-color:rgba(255, 255, 255, 1);
  6693. box-sizing:border-box;
  6694. border-width:1px;
  6695. border-style:solid;
  6696. border-color:rgba(215, 215, 215, 1);
  6697. border-radius:0px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:14px;
  6705. color:#AAAAAA;
  6706. text-align:center;
  6707. line-height:30px;
  6708. }
  6709. #u35138 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:739px;
  6713. top:1003px;
  6714. width:500px;
  6715. height:60px;
  6716. display:flex;
  6717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:14px;
  6721. color:#AAAAAA;
  6722. text-align:center;
  6723. line-height:30px;
  6724. }
  6725. #u35138 .text {
  6726. position:absolute;
  6727. align-self:center;
  6728. padding:5px 10px 5px 10px;
  6729. box-sizing:border-box;
  6730. width:100%;
  6731. }
  6732. #u35138_text {
  6733. border-width:0px;
  6734. word-wrap:break-word;
  6735. text-transform:none;
  6736. visibility:hidden;
  6737. }
  6738. #u35139_div {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:60px;
  6744. height:30px;
  6745. background:inherit;
  6746. background-color:rgba(24, 144, 255, 1);
  6747. border:none;
  6748. border-radius:4px;
  6749. -moz-box-shadow:none;
  6750. -webkit-box-shadow:none;
  6751. box-shadow:none;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:14px;
  6756. color:#FFFFFF;
  6757. }
  6758. #u35139 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:1159px;
  6762. top:1018px;
  6763. width:60px;
  6764. height:30px;
  6765. display:flex;
  6766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:14px;
  6770. color:#FFFFFF;
  6771. }
  6772. #u35139 .text {
  6773. position:absolute;
  6774. align-self:center;
  6775. padding:2px 2px 2px 2px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u35139_text {
  6780. border-width:0px;
  6781. word-wrap:break-word;
  6782. text-transform:none;
  6783. }
  6784. #u35140_div {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:60px;
  6790. height:30px;
  6791. background:inherit;
  6792. background-color:rgba(255, 255, 255, 1);
  6793. box-sizing:border-box;
  6794. border-width:1px;
  6795. border-style:solid;
  6796. border-color:rgba(170, 170, 170, 1);
  6797. border-radius:4px;
  6798. -moz-box-shadow:none;
  6799. -webkit-box-shadow:none;
  6800. box-shadow:none;
  6801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6802. font-weight:400;
  6803. font-style:normal;
  6804. font-size:14px;
  6805. }
  6806. #u35140 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:1089px;
  6810. top:1018px;
  6811. width:60px;
  6812. height:30px;
  6813. display:flex;
  6814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. font-size:14px;
  6818. }
  6819. #u35140 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 2px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u35140_text {
  6827. border-width:0px;
  6828. word-wrap:break-word;
  6829. text-transform:none;
  6830. }
  6831. #u35141_div {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:440px;
  6837. height:40px;
  6838. background:inherit;
  6839. background-color:rgba(255, 255, 128, 0.2);
  6840. border:none;
  6841. border-top:0px;
  6842. border-right:0px;
  6843. border-bottom:0px;
  6844. border-radius:0px;
  6845. border-top-left-radius:0px;
  6846. border-bottom-left-radius:0px;
  6847. -moz-box-shadow:none;
  6848. -webkit-box-shadow:none;
  6849. box-shadow:none;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:14px;
  6854. color:#F59A23;
  6855. }
  6856. #u35141 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:785px;
  6860. top:625px;
  6861. width:440px;
  6862. height:40px;
  6863. display:flex;
  6864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:14px;
  6868. color:#F59A23;
  6869. }
  6870. #u35141 .text {
  6871. position:absolute;
  6872. align-self:center;
  6873. padding:5px 10px 5px 20px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u35141_text {
  6878. border-width:0px;
  6879. word-wrap:break-word;
  6880. text-transform:none;
  6881. }
  6882. #u35142 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:801px;
  6886. top:695px;
  6887. width:168px;
  6888. height:260px;
  6889. }
  6890. #u35142_children {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:0px;
  6896. height:0px;
  6897. }
  6898. #u35143 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:113px;
  6904. height:20px;
  6905. color:#298FFF;
  6906. }
  6907. #u35144_img {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:9px;
  6913. height:9px;
  6914. }
  6915. #u35144 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:6px;
  6919. top:6px;
  6920. width:9px;
  6921. height:9px;
  6922. display:flex;
  6923. }
  6924. #u35144 .text {
  6925. position:absolute;
  6926. align-self:center;
  6927. padding:2px 2px 2px 2px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u35144_img.selected {
  6932. }
  6933. #u35144.selected {
  6934. }
  6935. #u35144_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. visibility:hidden;
  6940. }
  6941. #u35145_div {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:91px;
  6947. height:20px;
  6948. background:inherit;
  6949. background-color:rgba(255, 255, 255, 0);
  6950. border:none;
  6951. border-radius:0px;
  6952. -moz-box-shadow:none;
  6953. -webkit-box-shadow:none;
  6954. box-shadow:none;
  6955. }
  6956. #u35145 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:22px;
  6960. top:0px;
  6961. width:91px;
  6962. height:20px;
  6963. display:flex;
  6964. }
  6965. #u35145 .text {
  6966. position:absolute;
  6967. align-self:center;
  6968. padding:2px 2px 2px 3px;
  6969. box-sizing:border-box;
  6970. width:100%;
  6971. }
  6972. #u35145_text {
  6973. border-width:0px;
  6974. white-space:nowrap;
  6975. text-transform:none;
  6976. }
  6977. #u35143_children {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:0px;
  6983. height:0px;
  6984. }
  6985. #u35146 {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:20px;
  6989. top:20px;
  6990. width:148px;
  6991. height:20px;
  6992. }
  6993. #u35147_div {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:0px;
  6997. top:0px;
  6998. width:126px;
  6999. height:20px;
  7000. background:inherit;
  7001. background-color:rgba(255, 255, 255, 0);
  7002. border:none;
  7003. border-radius:0px;
  7004. -moz-box-shadow:none;
  7005. -webkit-box-shadow:none;
  7006. box-shadow:none;
  7007. }
  7008. #u35147 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:22px;
  7012. top:0px;
  7013. width:126px;
  7014. height:20px;
  7015. display:flex;
  7016. }
  7017. #u35147 .text {
  7018. position:absolute;
  7019. align-self:center;
  7020. padding:2px 2px 2px 3px;
  7021. box-sizing:border-box;
  7022. width:100%;
  7023. }
  7024. #u35147_text {
  7025. border-width:0px;
  7026. white-space:nowrap;
  7027. text-transform:none;
  7028. }
  7029. #u35148 {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:20px;
  7033. top:40px;
  7034. width:122px;
  7035. height:20px;
  7036. }
  7037. #u35149_div {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:100px;
  7043. height:20px;
  7044. background:inherit;
  7045. background-color:rgba(255, 255, 255, 0);
  7046. border:none;
  7047. border-radius:0px;
  7048. -moz-box-shadow:none;
  7049. -webkit-box-shadow:none;
  7050. box-shadow:none;
  7051. }
  7052. #u35149 {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:22px;
  7056. top:0px;
  7057. width:100px;
  7058. height:20px;
  7059. display:flex;
  7060. }
  7061. #u35149 .text {
  7062. position:absolute;
  7063. align-self:center;
  7064. padding:2px 2px 2px 3px;
  7065. box-sizing:border-box;
  7066. width:100%;
  7067. }
  7068. #u35149_text {
  7069. border-width:0px;
  7070. white-space:nowrap;
  7071. text-transform:none;
  7072. }
  7073. #u35150 {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:20px;
  7077. top:60px;
  7078. width:122px;
  7079. height:20px;
  7080. }
  7081. #u35151_div {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:100px;
  7087. height:20px;
  7088. background:inherit;
  7089. background-color:rgba(255, 255, 255, 0);
  7090. border:none;
  7091. border-radius:0px;
  7092. -moz-box-shadow:none;
  7093. -webkit-box-shadow:none;
  7094. box-shadow:none;
  7095. }
  7096. #u35151 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:22px;
  7100. top:0px;
  7101. width:100px;
  7102. height:20px;
  7103. display:flex;
  7104. }
  7105. #u35151 .text {
  7106. position:absolute;
  7107. align-self:center;
  7108. padding:2px 2px 2px 3px;
  7109. box-sizing:border-box;
  7110. width:100%;
  7111. }
  7112. #u35151_text {
  7113. border-width:0px;
  7114. white-space:nowrap;
  7115. text-transform:none;
  7116. }
  7117. #u35152 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:80px;
  7122. width:113px;
  7123. height:20px;
  7124. }
  7125. #u35153_img {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:9px;
  7131. height:9px;
  7132. }
  7133. #u35153 {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:6px;
  7137. top:6px;
  7138. width:9px;
  7139. height:9px;
  7140. display:flex;
  7141. }
  7142. #u35153 .text {
  7143. position:absolute;
  7144. align-self:center;
  7145. padding:2px 2px 2px 2px;
  7146. box-sizing:border-box;
  7147. width:100%;
  7148. }
  7149. #u35153_img.selected {
  7150. }
  7151. #u35153.selected {
  7152. }
  7153. #u35153_text {
  7154. border-width:0px;
  7155. word-wrap:break-word;
  7156. text-transform:none;
  7157. visibility:hidden;
  7158. }
  7159. #u35154_div {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:91px;
  7165. height:20px;
  7166. background:inherit;
  7167. background-color:rgba(255, 255, 255, 0);
  7168. border:none;
  7169. border-radius:0px;
  7170. -moz-box-shadow:none;
  7171. -webkit-box-shadow:none;
  7172. box-shadow:none;
  7173. }
  7174. #u35154 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:22px;
  7178. top:0px;
  7179. width:91px;
  7180. height:20px;
  7181. display:flex;
  7182. }
  7183. #u35154 .text {
  7184. position:absolute;
  7185. align-self:center;
  7186. padding:2px 2px 2px 3px;
  7187. box-sizing:border-box;
  7188. width:100%;
  7189. }
  7190. #u35154_text {
  7191. border-width:0px;
  7192. white-space:nowrap;
  7193. text-transform:none;
  7194. }
  7195. #u35152_children {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:0px;
  7201. height:0px;
  7202. }
  7203. #u35155 {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:20px;
  7207. top:20px;
  7208. width:93px;
  7209. height:20px;
  7210. }
  7211. #u35156_div {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:71px;
  7217. height:20px;
  7218. background:inherit;
  7219. background-color:rgba(255, 255, 255, 0);
  7220. border:none;
  7221. border-radius:0px;
  7222. -moz-box-shadow:none;
  7223. -webkit-box-shadow:none;
  7224. box-shadow:none;
  7225. }
  7226. #u35156 {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:22px;
  7230. top:0px;
  7231. width:71px;
  7232. height:20px;
  7233. display:flex;
  7234. }
  7235. #u35156 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:2px 2px 2px 3px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u35156_text {
  7243. border-width:0px;
  7244. white-space:nowrap;
  7245. text-transform:none;
  7246. }
  7247. #u35157 {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:20px;
  7251. top:40px;
  7252. width:93px;
  7253. height:20px;
  7254. }
  7255. #u35158_div {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:0px;
  7259. top:0px;
  7260. width:71px;
  7261. height:20px;
  7262. background:inherit;
  7263. background-color:rgba(255, 255, 255, 0);
  7264. border:none;
  7265. border-radius:0px;
  7266. -moz-box-shadow:none;
  7267. -webkit-box-shadow:none;
  7268. box-shadow:none;
  7269. }
  7270. #u35158 {
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:22px;
  7274. top:0px;
  7275. width:71px;
  7276. height:20px;
  7277. display:flex;
  7278. }
  7279. #u35158 .text {
  7280. position:absolute;
  7281. align-self:center;
  7282. padding:2px 2px 2px 3px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u35158_text {
  7287. border-width:0px;
  7288. white-space:nowrap;
  7289. text-transform:none;
  7290. }
  7291. #u35159 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:140px;
  7296. width:80px;
  7297. height:20px;
  7298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7299. font-weight:400;
  7300. font-style:normal;
  7301. }
  7302. #u35160_img {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:0px;
  7306. top:0px;
  7307. width:9px;
  7308. height:9px;
  7309. }
  7310. #u35160 {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:6px;
  7314. top:6px;
  7315. width:9px;
  7316. height:9px;
  7317. display:flex;
  7318. }
  7319. #u35160 .text {
  7320. position:absolute;
  7321. align-self:center;
  7322. padding:2px 2px 2px 2px;
  7323. box-sizing:border-box;
  7324. width:100%;
  7325. }
  7326. #u35160_img.selected {
  7327. }
  7328. #u35160.selected {
  7329. }
  7330. #u35160_text {
  7331. border-width:0px;
  7332. word-wrap:break-word;
  7333. text-transform:none;
  7334. visibility:hidden;
  7335. }
  7336. #u35161_div {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:0px;
  7340. top:0px;
  7341. width:58px;
  7342. height:20px;
  7343. background:inherit;
  7344. background-color:rgba(255, 255, 255, 0);
  7345. border:none;
  7346. border-radius:0px;
  7347. -moz-box-shadow:none;
  7348. -webkit-box-shadow:none;
  7349. box-shadow:none;
  7350. }
  7351. #u35161 {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:22px;
  7355. top:0px;
  7356. width:58px;
  7357. height:20px;
  7358. display:flex;
  7359. }
  7360. #u35161 .text {
  7361. position:absolute;
  7362. align-self:center;
  7363. padding:2px 2px 2px 3px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u35161_text {
  7368. border-width:0px;
  7369. white-space:nowrap;
  7370. text-transform:none;
  7371. }
  7372. #u35159_children {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:0px;
  7378. height:0px;
  7379. }
  7380. #u35162 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:20px;
  7384. top:20px;
  7385. width:97px;
  7386. height:20px;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. }
  7391. #u35163_div {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:75px;
  7397. height:20px;
  7398. background:inherit;
  7399. background-color:rgba(255, 255, 255, 0);
  7400. border:none;
  7401. border-radius:0px;
  7402. -moz-box-shadow:none;
  7403. -webkit-box-shadow:none;
  7404. box-shadow:none;
  7405. }
  7406. #u35163 {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:22px;
  7410. top:0px;
  7411. width:75px;
  7412. height:20px;
  7413. display:flex;
  7414. }
  7415. #u35163 .text {
  7416. position:absolute;
  7417. align-self:center;
  7418. padding:2px 2px 2px 3px;
  7419. box-sizing:border-box;
  7420. width:100%;
  7421. }
  7422. #u35163_text {
  7423. border-width:0px;
  7424. white-space:nowrap;
  7425. text-transform:none;
  7426. }
  7427. #u35164 {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:20px;
  7431. top:40px;
  7432. width:97px;
  7433. height:20px;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. }
  7438. #u35165_div {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:0px;
  7442. top:0px;
  7443. width:75px;
  7444. height:20px;
  7445. background:inherit;
  7446. background-color:rgba(255, 255, 255, 0);
  7447. border:none;
  7448. border-radius:0px;
  7449. -moz-box-shadow:none;
  7450. -webkit-box-shadow:none;
  7451. box-shadow:none;
  7452. }
  7453. #u35165 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:22px;
  7457. top:0px;
  7458. width:75px;
  7459. height:20px;
  7460. display:flex;
  7461. }
  7462. #u35165 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:2px 2px 2px 3px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u35165_text {
  7470. border-width:0px;
  7471. white-space:nowrap;
  7472. text-transform:none;
  7473. }
  7474. #u35166 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:200px;
  7479. width:80px;
  7480. height:20px;
  7481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7482. font-weight:400;
  7483. font-style:normal;
  7484. }
  7485. #u35167_img {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:9px;
  7491. height:9px;
  7492. }
  7493. #u35167 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:6px;
  7497. top:6px;
  7498. width:9px;
  7499. height:9px;
  7500. display:flex;
  7501. }
  7502. #u35167 .text {
  7503. position:absolute;
  7504. align-self:center;
  7505. padding:2px 2px 2px 2px;
  7506. box-sizing:border-box;
  7507. width:100%;
  7508. }
  7509. #u35167_img.selected {
  7510. }
  7511. #u35167.selected {
  7512. }
  7513. #u35167_text {
  7514. border-width:0px;
  7515. word-wrap:break-word;
  7516. text-transform:none;
  7517. visibility:hidden;
  7518. }
  7519. #u35168_div {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:58px;
  7525. height:20px;
  7526. background:inherit;
  7527. background-color:rgba(255, 255, 255, 0);
  7528. border:none;
  7529. border-radius:0px;
  7530. -moz-box-shadow:none;
  7531. -webkit-box-shadow:none;
  7532. box-shadow:none;
  7533. }
  7534. #u35168 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:22px;
  7538. top:0px;
  7539. width:58px;
  7540. height:20px;
  7541. display:flex;
  7542. }
  7543. #u35168 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:2px 2px 2px 3px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u35168_text {
  7551. border-width:0px;
  7552. white-space:nowrap;
  7553. text-transform:none;
  7554. }
  7555. #u35166_children {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:0px;
  7559. top:0px;
  7560. width:0px;
  7561. height:0px;
  7562. }
  7563. #u35169 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:20px;
  7567. top:20px;
  7568. width:97px;
  7569. height:20px;
  7570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7571. font-weight:400;
  7572. font-style:normal;
  7573. }
  7574. #u35170_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:75px;
  7580. height:20px;
  7581. background:inherit;
  7582. background-color:rgba(255, 255, 255, 0);
  7583. border:none;
  7584. border-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. }
  7589. #u35170 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:22px;
  7593. top:0px;
  7594. width:75px;
  7595. height:20px;
  7596. display:flex;
  7597. }
  7598. #u35170 .text {
  7599. position:absolute;
  7600. align-self:center;
  7601. padding:2px 2px 2px 3px;
  7602. box-sizing:border-box;
  7603. width:100%;
  7604. }
  7605. #u35170_text {
  7606. border-width:0px;
  7607. white-space:nowrap;
  7608. text-transform:none;
  7609. }
  7610. #u35171 {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:20px;
  7614. top:40px;
  7615. width:97px;
  7616. height:20px;
  7617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. }
  7621. #u35172_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:75px;
  7627. height:20px;
  7628. background:inherit;
  7629. background-color:rgba(255, 255, 255, 0);
  7630. border:none;
  7631. border-radius:0px;
  7632. -moz-box-shadow:none;
  7633. -webkit-box-shadow:none;
  7634. box-shadow:none;
  7635. }
  7636. #u35172 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:22px;
  7640. top:0px;
  7641. width:75px;
  7642. height:20px;
  7643. display:flex;
  7644. }
  7645. #u35172 .text {
  7646. position:absolute;
  7647. align-self:center;
  7648. padding:2px 2px 2px 3px;
  7649. box-sizing:border-box;
  7650. width:100%;
  7651. }
  7652. #u35172_text {
  7653. border-width:0px;
  7654. white-space:nowrap;
  7655. text-transform:none;
  7656. }
  7657. #u35173_img {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:0px;
  7661. top:0px;
  7662. width:10px;
  7663. height:8px;
  7664. }
  7665. #u35173 {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:1190px;
  7669. top:700px;
  7670. width:10px;
  7671. height:8px;
  7672. display:flex;
  7673. }
  7674. #u35173 .text {
  7675. position:absolute;
  7676. align-self:center;
  7677. padding:2px 2px 2px 2px;
  7678. box-sizing:border-box;
  7679. width:100%;
  7680. }
  7681. #u35173_text {
  7682. border-width:0px;
  7683. word-wrap:break-word;
  7684. text-transform:none;
  7685. visibility:hidden;
  7686. }
  7687. #u35174_img {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:10px;
  7693. height:8px;
  7694. }
  7695. #u35174 {
  7696. border-width:0px;
  7697. position:absolute;
  7698. left:1190px;
  7699. top:720px;
  7700. width:10px;
  7701. height:8px;
  7702. display:flex;
  7703. }
  7704. #u35174 .text {
  7705. position:absolute;
  7706. align-self:center;
  7707. padding:2px 2px 2px 2px;
  7708. box-sizing:border-box;
  7709. width:100%;
  7710. }
  7711. #u35174_text {
  7712. border-width:0px;
  7713. word-wrap:break-word;
  7714. text-transform:none;
  7715. visibility:hidden;
  7716. }
  7717. #u35175_img {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:10px;
  7723. height:8px;
  7724. }
  7725. #u35175 {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:1190px;
  7729. top:740px;
  7730. width:10px;
  7731. height:8px;
  7732. display:flex;
  7733. }
  7734. #u35175 .text {
  7735. position:absolute;
  7736. align-self:center;
  7737. padding:2px 2px 2px 2px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u35175_text {
  7742. border-width:0px;
  7743. word-wrap:break-word;
  7744. text-transform:none;
  7745. visibility:hidden;
  7746. }
  7747. #u35176_img {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:10px;
  7753. height:8px;
  7754. }
  7755. #u35176 {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:1190px;
  7759. top:760px;
  7760. width:10px;
  7761. height:8px;
  7762. display:flex;
  7763. }
  7764. #u35176 .text {
  7765. position:absolute;
  7766. align-self:center;
  7767. padding:2px 2px 2px 2px;
  7768. box-sizing:border-box;
  7769. width:100%;
  7770. }
  7771. #u35176_text {
  7772. border-width:0px;
  7773. word-wrap:break-word;
  7774. text-transform:none;
  7775. visibility:hidden;
  7776. }
  7777. #u35177_img {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:10px;
  7783. height:8px;
  7784. }
  7785. #u35177 {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:1190px;
  7789. top:781px;
  7790. width:10px;
  7791. height:8px;
  7792. display:flex;
  7793. }
  7794. #u35177 .text {
  7795. position:absolute;
  7796. align-self:center;
  7797. padding:2px 2px 2px 2px;
  7798. box-sizing:border-box;
  7799. width:100%;
  7800. }
  7801. #u35177_text {
  7802. border-width:0px;
  7803. word-wrap:break-word;
  7804. text-transform:none;
  7805. visibility:hidden;
  7806. }
  7807. #u35178_img {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:0px;
  7811. top:0px;
  7812. width:10px;
  7813. height:8px;
  7814. }
  7815. #u35178 {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:1190px;
  7819. top:801px;
  7820. width:10px;
  7821. height:8px;
  7822. display:flex;
  7823. }
  7824. #u35178 .text {
  7825. position:absolute;
  7826. align-self:center;
  7827. padding:2px 2px 2px 2px;
  7828. box-sizing:border-box;
  7829. width:100%;
  7830. }
  7831. #u35178_text {
  7832. border-width:0px;
  7833. word-wrap:break-word;
  7834. text-transform:none;
  7835. visibility:hidden;
  7836. }
  7837. #u35179_img {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:0px;
  7841. top:0px;
  7842. width:10px;
  7843. height:8px;
  7844. }
  7845. #u35179 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:1190px;
  7849. top:821px;
  7850. width:10px;
  7851. height:8px;
  7852. display:flex;
  7853. }
  7854. #u35179 .text {
  7855. position:absolute;
  7856. align-self:center;
  7857. padding:2px 2px 2px 2px;
  7858. box-sizing:border-box;
  7859. width:100%;
  7860. }
  7861. #u35179_text {
  7862. border-width:0px;
  7863. word-wrap:break-word;
  7864. text-transform:none;
  7865. visibility:hidden;
  7866. }
  7867. #u35180_img {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:10px;
  7873. height:8px;
  7874. }
  7875. #u35180 {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:1190px;
  7879. top:841px;
  7880. width:10px;
  7881. height:8px;
  7882. display:flex;
  7883. }
  7884. #u35180 .text {
  7885. position:absolute;
  7886. align-self:center;
  7887. padding:2px 2px 2px 2px;
  7888. box-sizing:border-box;
  7889. width:100%;
  7890. }
  7891. #u35180_text {
  7892. border-width:0px;
  7893. word-wrap:break-word;
  7894. text-transform:none;
  7895. visibility:hidden;
  7896. }
  7897. #u35181_img {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:10px;
  7903. height:8px;
  7904. }
  7905. #u35181 {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:1190px;
  7909. top:861px;
  7910. width:10px;
  7911. height:8px;
  7912. display:flex;
  7913. }
  7914. #u35181 .text {
  7915. position:absolute;
  7916. align-self:center;
  7917. padding:2px 2px 2px 2px;
  7918. box-sizing:border-box;
  7919. width:100%;
  7920. }
  7921. #u35181_text {
  7922. border-width:0px;
  7923. word-wrap:break-word;
  7924. text-transform:none;
  7925. visibility:hidden;
  7926. }
  7927. #u35182_img {
  7928. border-width:0px;
  7929. position:absolute;
  7930. left:0px;
  7931. top:0px;
  7932. width:10px;
  7933. height:8px;
  7934. }
  7935. #u35182 {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:1190px;
  7939. top:881px;
  7940. width:10px;
  7941. height:8px;
  7942. display:flex;
  7943. }
  7944. #u35182 .text {
  7945. position:absolute;
  7946. align-self:center;
  7947. padding:2px 2px 2px 2px;
  7948. box-sizing:border-box;
  7949. width:100%;
  7950. }
  7951. #u35182_text {
  7952. border-width:0px;
  7953. word-wrap:break-word;
  7954. text-transform:none;
  7955. visibility:hidden;
  7956. }
  7957. #u35183_img {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:0px;
  7961. top:0px;
  7962. width:10px;
  7963. height:8px;
  7964. }
  7965. #u35183 {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:1190px;
  7969. top:902px;
  7970. width:10px;
  7971. height:8px;
  7972. display:flex;
  7973. }
  7974. #u35183 .text {
  7975. position:absolute;
  7976. align-self:center;
  7977. padding:2px 2px 2px 2px;
  7978. box-sizing:border-box;
  7979. width:100%;
  7980. }
  7981. #u35183_text {
  7982. border-width:0px;
  7983. word-wrap:break-word;
  7984. text-transform:none;
  7985. visibility:hidden;
  7986. }
  7987. #u35184_img {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:0px;
  7991. top:0px;
  7992. width:10px;
  7993. height:8px;
  7994. }
  7995. #u35184 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:1190px;
  7999. top:922px;
  8000. width:10px;
  8001. height:8px;
  8002. display:flex;
  8003. }
  8004. #u35184 .text {
  8005. position:absolute;
  8006. align-self:center;
  8007. padding:2px 2px 2px 2px;
  8008. box-sizing:border-box;
  8009. width:100%;
  8010. }
  8011. #u35184_text {
  8012. border-width:0px;
  8013. word-wrap:break-word;
  8014. text-transform:none;
  8015. visibility:hidden;
  8016. }
  8017. #u35185_img {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:0px;
  8021. top:0px;
  8022. width:10px;
  8023. height:8px;
  8024. }
  8025. #u35185 {
  8026. border-width:0px;
  8027. position:absolute;
  8028. left:1190px;
  8029. top:942px;
  8030. width:10px;
  8031. height:8px;
  8032. display:flex;
  8033. }
  8034. #u35185 .text {
  8035. position:absolute;
  8036. align-self:center;
  8037. padding:2px 2px 2px 2px;
  8038. box-sizing:border-box;
  8039. width:100%;
  8040. }
  8041. #u35185_text {
  8042. border-width:0px;
  8043. word-wrap:break-word;
  8044. text-transform:none;
  8045. visibility:hidden;
  8046. }
  8047. #u35186_div {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:0px;
  8051. top:0px;
  8052. width:21px;
  8053. height:35px;
  8054. background:inherit;
  8055. background-color:rgba(255, 255, 255, 0);
  8056. border:none;
  8057. border-top:0px;
  8058. border-right:0px;
  8059. border-bottom:0px;
  8060. border-radius:0px;
  8061. border-top-left-radius:0px;
  8062. border-bottom-left-radius:0px;
  8063. -moz-box-shadow:none;
  8064. -webkit-box-shadow:none;
  8065. box-shadow:none;
  8066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8067. font-weight:500;
  8068. font-style:normal;
  8069. font-size:18px;
  8070. }
  8071. #u35186 {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:1218px;
  8075. top:549px;
  8076. width:21px;
  8077. height:35px;
  8078. display:flex;
  8079. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8080. font-weight:500;
  8081. font-style:normal;
  8082. font-size:18px;
  8083. }
  8084. #u35186 .text {
  8085. position:absolute;
  8086. align-self:center;
  8087. padding:5px 10px 5px 0px;
  8088. box-sizing:border-box;
  8089. width:100%;
  8090. }
  8091. #u35186_text {
  8092. border-width:0px;
  8093. white-space:nowrap;
  8094. text-transform:none;
  8095. }