styles.css 122 KB

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