styles.css 148 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2973px;
  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. #u74705_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. #u74705 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u74705 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u74705_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u74706_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. #u74706 {
  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. #u74706 .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. #u74706_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u74707_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. #u74707 {
  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. #u74707 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u74707_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u74708 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u74709_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u74709 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u74709 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u74709_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u74710_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. #u74710 {
  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. #u74710 .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. #u74710_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u74711_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. #u74711 {
  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. #u74711 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u74711_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u74712 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u74713_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. #u74713 {
  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. #u74713 .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. #u74713_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u74714_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u74714 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u74714 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u74714_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u74715 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u74716_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. #u74716 {
  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. #u74716 .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. #u74716_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u74717_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u74717 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u74717 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u74717_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u74718 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u74719_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. #u74719 {
  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. #u74719 .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. #u74719_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u74720_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u74720 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u74720 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u74720_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u74721 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u74722_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. #u74722 {
  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. #u74722 .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. #u74722_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u74723_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u74723 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u74723 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u74723_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u74724 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u74725_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. #u74725 {
  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. #u74725 .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. #u74725_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u74726_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u74726 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u74726 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u74726_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u74727 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u74728_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. #u74728 {
  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. #u74728 .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. #u74728_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u74729_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u74729 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u74729 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u74729_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u74730 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u74731_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. #u74731 {
  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. #u74731 .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. #u74731_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u74732_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u74732 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u74732 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u74732_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u74733 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u74734_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. #u74734 {
  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. #u74734 .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. #u74734_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u74735_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u74735 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u74735 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u74735_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u74736 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u74737_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. #u74737 {
  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. #u74737 .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. #u74737_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u74738_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u74738 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u74738 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u74738_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u74739_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. #u74739 {
  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. #u74739 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u74739_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u74740_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u74740 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u74740 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u74740_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u74741_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. #u74741 {
  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. #u74741 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u74741_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u74742_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u74742 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u74742 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u74742_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u74743 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u74744_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. #u74744 {
  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. #u74744 .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. #u74744_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u74745_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u74745 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u74745 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u74745_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u74746 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u74747_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. #u74747 {
  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. #u74747 .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. #u74747_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u74748_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u74748 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u74748 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u74748_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u74749 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u74750_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. #u74750_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. #u74750_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. #u74750 {
  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. #u74750 .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. #u74750_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. #u74750.disabled {
  1428. }
  1429. .u74750_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u74751_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u74751 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u74751 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u74751_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u74752_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. #u74752 {
  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. #u74752 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u74752_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u74753_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u74753 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u74753 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u74753_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u74754_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1261px;
  1544. height:1191px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. }
  1553. #u74754 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1261px;
  1559. height:1191px;
  1560. display:flex;
  1561. }
  1562. #u74754 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u74754_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u74755 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:0px;
  1581. height:0px;
  1582. }
  1583. #u74756_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:199px;
  1589. height:40px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 0);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1598. font-weight:500;
  1599. font-style:normal;
  1600. font-size:18px;
  1601. line-height:40px;
  1602. }
  1603. #u74756 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:743px;
  1607. top:82px;
  1608. width:199px;
  1609. height:40px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1612. font-weight:500;
  1613. font-style:normal;
  1614. font-size:18px;
  1615. line-height:40px;
  1616. }
  1617. #u74756 .text {
  1618. position:absolute;
  1619. align-self:flex-start;
  1620. padding:0px 0px 0px 0px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u74756_text {
  1625. border-width:0px;
  1626. white-space:nowrap;
  1627. text-transform:none;
  1628. }
  1629. #u74757_img {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:30px;
  1635. height:30px;
  1636. }
  1637. #u74757 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:703px;
  1641. top:87px;
  1642. width:30px;
  1643. height:30px;
  1644. display:flex;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:10px;
  1649. color:#FFFFFF;
  1650. }
  1651. #u74757 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 2px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u74757_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. }
  1663. #u74758_img {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:879px;
  1669. height:275px;
  1670. }
  1671. #u74758 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:703px;
  1675. top:233px;
  1676. width:879px;
  1677. height:275px;
  1678. display:flex;
  1679. }
  1680. #u74758 .text {
  1681. position:absolute;
  1682. align-self:center;
  1683. padding:2px 2px 2px 2px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u74758_text {
  1688. border-width:0px;
  1689. word-wrap:break-word;
  1690. text-transform:none;
  1691. visibility:hidden;
  1692. }
  1693. #u74759_div {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:0px;
  1697. top:0px;
  1698. width:57px;
  1699. height:40px;
  1700. background:inherit;
  1701. background-color:rgba(255, 255, 255, 0);
  1702. border:none;
  1703. border-radius:0px;
  1704. -moz-box-shadow:none;
  1705. -webkit-box-shadow:none;
  1706. box-shadow:none;
  1707. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1708. font-weight:500;
  1709. font-style:normal;
  1710. line-height:40px;
  1711. }
  1712. #u74759 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:718px;
  1716. top:191px;
  1717. width:57px;
  1718. height:40px;
  1719. display:flex;
  1720. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1721. font-weight:500;
  1722. font-style:normal;
  1723. line-height:40px;
  1724. }
  1725. #u74759 .text {
  1726. position:absolute;
  1727. align-self:flex-start;
  1728. padding:0px 0px 0px 0px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u74759_text {
  1733. border-width:0px;
  1734. white-space:nowrap;
  1735. text-transform:none;
  1736. }
  1737. #u74760_div {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:32px;
  1743. height:40px;
  1744. background:inherit;
  1745. background-color:rgba(255, 255, 255, 0);
  1746. border:none;
  1747. border-radius:0px;
  1748. -moz-box-shadow:none;
  1749. -webkit-box-shadow:none;
  1750. box-shadow:none;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:12px;
  1755. color:#1890FF;
  1756. line-height:40px;
  1757. }
  1758. #u74760 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:807px;
  1762. top:191px;
  1763. width:32px;
  1764. height:40px;
  1765. display:flex;
  1766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:12px;
  1770. color:#1890FF;
  1771. line-height:40px;
  1772. }
  1773. #u74760 .text {
  1774. position:absolute;
  1775. align-self:flex-start;
  1776. padding:0px 0px 0px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u74760_text {
  1781. border-width:0px;
  1782. white-space:nowrap;
  1783. text-transform:none;
  1784. }
  1785. #u74761 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:0px;
  1791. height:0px;
  1792. }
  1793. #u74762_div {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:630px;
  1799. height:1196px;
  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(215, 215, 215, 1);
  1806. border-radius:0px;
  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. color:#AAAAAA;
  1815. text-align:center;
  1816. line-height:30px;
  1817. }
  1818. #u74762 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:1672px;
  1822. top:50px;
  1823. width:630px;
  1824. height:1196px;
  1825. display:flex;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:14px;
  1830. color:#AAAAAA;
  1831. text-align:center;
  1832. line-height:30px;
  1833. }
  1834. #u74762 .text {
  1835. position:absolute;
  1836. align-self:center;
  1837. padding:5px 10px 5px 10px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u74762_text {
  1842. border-width:0px;
  1843. word-wrap:break-word;
  1844. text-transform:none;
  1845. visibility:hidden;
  1846. }
  1847. #u74763_div {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:119px;
  1853. height:35px;
  1854. background:inherit;
  1855. background-color:rgba(255, 255, 255, 0);
  1856. border:none;
  1857. border-top:0px;
  1858. border-right:0px;
  1859. border-bottom:0px;
  1860. border-radius:0px;
  1861. border-top-left-radius:0px;
  1862. border-bottom-left-radius:0px;
  1863. -moz-box-shadow:none;
  1864. -webkit-box-shadow:none;
  1865. box-shadow:none;
  1866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1867. font-weight:500;
  1868. font-style:normal;
  1869. font-size:18px;
  1870. }
  1871. #u74763 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:1692px;
  1875. top:68px;
  1876. width:119px;
  1877. height:35px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1880. font-weight:500;
  1881. font-style:normal;
  1882. font-size:18px;
  1883. }
  1884. #u74763 .text {
  1885. position:absolute;
  1886. align-self:center;
  1887. padding:5px 10px 5px 0px;
  1888. box-sizing:border-box;
  1889. width:100%;
  1890. }
  1891. #u74763_text {
  1892. border-width:0px;
  1893. white-space:nowrap;
  1894. text-transform:none;
  1895. }
  1896. #u74764_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:40px;
  1902. height:40px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 0);
  1905. border:none;
  1906. border-top:0px;
  1907. border-right:0px;
  1908. border-bottom:0px;
  1909. border-radius:0px;
  1910. border-top-left-radius:0px;
  1911. border-bottom-left-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1916. font-weight:500;
  1917. font-style:normal;
  1918. font-size:18px;
  1919. text-align:center;
  1920. }
  1921. #u74764 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:2262px;
  1925. top:50px;
  1926. width:40px;
  1927. height:40px;
  1928. display:flex;
  1929. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1930. font-weight:500;
  1931. font-style:normal;
  1932. font-size:18px;
  1933. text-align:center;
  1934. }
  1935. #u74764 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:5px 10px 5px 0px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u74764_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u74765_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:13px;
  1953. height:13px;
  1954. }
  1955. #u74765 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:2250px;
  1959. top:66px;
  1960. width:13px;
  1961. height:13px;
  1962. display:flex;
  1963. }
  1964. #u74765 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 2px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u74765_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. visibility:hidden;
  1976. }
  1977. #u74766 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:0px;
  1983. height:0px;
  1984. }
  1985. #u74767_div {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:630px;
  1991. height:50px;
  1992. background:inherit;
  1993. background-color:rgba(255, 255, 255, 1);
  1994. box-sizing:border-box;
  1995. border-width:1px;
  1996. border-style:solid;
  1997. border-color:rgba(215, 215, 215, 1);
  1998. border-radius:0px;
  1999. -moz-box-shadow:none;
  2000. -webkit-box-shadow:none;
  2001. box-shadow:none;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:14px;
  2006. color:#AAAAAA;
  2007. text-align:center;
  2008. line-height:30px;
  2009. }
  2010. #u74767 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:1672px;
  2014. top:1196px;
  2015. width:630px;
  2016. height:50px;
  2017. display:flex;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:14px;
  2022. color:#AAAAAA;
  2023. text-align:center;
  2024. line-height:30px;
  2025. }
  2026. #u74767 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:5px 10px 5px 10px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u74767_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. visibility:hidden;
  2038. }
  2039. #u74768_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:80px;
  2045. height:30px;
  2046. background:inherit;
  2047. background-color:rgba(24, 144, 255, 1);
  2048. border:none;
  2049. border-radius:4px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:14px;
  2057. color:#FFFFFF;
  2058. }
  2059. #u74768 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:2200px;
  2063. top:1206px;
  2064. width:80px;
  2065. height:30px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. color:#FFFFFF;
  2072. }
  2073. #u74768 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 2px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u74768_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. }
  2085. #u74769_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:80px;
  2091. height:30px;
  2092. background:inherit;
  2093. background-color:rgba(255, 255, 255, 1);
  2094. box-sizing:border-box;
  2095. border-width:1px;
  2096. border-style:solid;
  2097. border-color:rgba(121, 121, 121, 1);
  2098. border-radius:4px;
  2099. -moz-box-shadow:none;
  2100. -webkit-box-shadow:none;
  2101. box-shadow:none;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:14px;
  2106. }
  2107. #u74769 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:2110px;
  2111. top:1206px;
  2112. width:80px;
  2113. height:30px;
  2114. display:flex;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:14px;
  2119. }
  2120. #u74769 .text {
  2121. position:absolute;
  2122. align-self:center;
  2123. padding:2px 2px 2px 2px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u74769_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. }
  2132. #u74770_div {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:137px;
  2138. height:30px;
  2139. background:inherit;
  2140. background-color:rgba(255, 255, 255, 0);
  2141. border:none;
  2142. border-top:0px;
  2143. border-right:0px;
  2144. border-bottom:0px;
  2145. border-radius:0px;
  2146. border-top-left-radius:0px;
  2147. border-bottom-left-radius:0px;
  2148. -moz-box-shadow:none;
  2149. -webkit-box-shadow:none;
  2150. box-shadow:none;
  2151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2152. font-weight:400;
  2153. font-style:normal;
  2154. font-size:14px;
  2155. }
  2156. #u74770 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:1707px;
  2160. top:167px;
  2161. width:137px;
  2162. height:30px;
  2163. display:flex;
  2164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2165. font-weight:400;
  2166. font-style:normal;
  2167. font-size:14px;
  2168. }
  2169. #u74770 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:5px 10px 5px 0px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u74770_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. }
  2181. #u74771_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:80px;
  2187. height:27px;
  2188. background:inherit;
  2189. background-color:rgba(24, 144, 255, 1);
  2190. border:none;
  2191. border-radius:4px;
  2192. -moz-box-shadow:none;
  2193. -webkit-box-shadow:none;
  2194. box-shadow:none;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:12px;
  2199. color:#FFFFFF;
  2200. text-align:center;
  2201. }
  2202. #u74771 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:1707px;
  2206. top:120px;
  2207. width:80px;
  2208. height:27px;
  2209. display:flex;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:12px;
  2214. color:#FFFFFF;
  2215. text-align:center;
  2216. }
  2217. #u74771 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:5px 0px 5px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u74771_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. }
  2229. #u74772_div {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:80px;
  2235. height:27px;
  2236. background:inherit;
  2237. background-color:rgba(242, 242, 242, 1);
  2238. border:none;
  2239. border-radius:4px;
  2240. -moz-box-shadow:none;
  2241. -webkit-box-shadow:none;
  2242. box-shadow:none;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:12px;
  2247. text-align:center;
  2248. }
  2249. #u74772 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:1801px;
  2253. top:120px;
  2254. width:80px;
  2255. height:27px;
  2256. display:flex;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:12px;
  2261. text-align:center;
  2262. }
  2263. #u74772 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:5px 0px 5px 0px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u74772_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. }
  2275. #u74773 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:0px;
  2281. height:0px;
  2282. }
  2283. #u74774_div {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:560px;
  2289. height:40px;
  2290. background:inherit;
  2291. background-color:rgba(255, 255, 255, 1);
  2292. box-sizing:border-box;
  2293. border-width:1px;
  2294. border-style:solid;
  2295. border-color:rgba(170, 170, 170, 1);
  2296. border-radius:4px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. }
  2301. #u74774 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:1707px;
  2305. top:197px;
  2306. width:560px;
  2307. height:40px;
  2308. display:flex;
  2309. }
  2310. #u74774 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u74774_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u74775_input {
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:545px;
  2328. height:30px;
  2329. padding:2px 2px 2px 0px;
  2330. font-family:'ArialMT', 'Arial', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:13px;
  2334. letter-spacing:normal;
  2335. color:#AAAAAA;
  2336. vertical-align:none;
  2337. text-align:left;
  2338. text-transform:none;
  2339. background-color:transparent;
  2340. border-color:transparent;
  2341. }
  2342. #u74775_input.disabled {
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:545px;
  2347. height:30px;
  2348. padding:2px 2px 2px 0px;
  2349. font-family:'ArialMT', 'Arial', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:13px;
  2353. letter-spacing:normal;
  2354. color:#AAAAAA;
  2355. vertical-align:none;
  2356. text-align:left;
  2357. text-transform:none;
  2358. background-color:transparent;
  2359. border-color:transparent;
  2360. }
  2361. #u74775_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:545px;
  2367. height:30px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 1);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. color:#AAAAAA;
  2376. }
  2377. #u74775 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:1717px;
  2381. top:202px;
  2382. width:545px;
  2383. height:30px;
  2384. display:flex;
  2385. color:#AAAAAA;
  2386. }
  2387. #u74775 .text {
  2388. position:absolute;
  2389. align-self:flex-start;
  2390. padding:2px 2px 2px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u74775_div.disabled {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:545px;
  2400. height:30px;
  2401. background:inherit;
  2402. background-color:rgba(240, 240, 240, 1);
  2403. border:none;
  2404. border-radius:0px;
  2405. -moz-box-shadow:none;
  2406. -webkit-box-shadow:none;
  2407. box-shadow:none;
  2408. color:#AAAAAA;
  2409. }
  2410. #u74775.disabled {
  2411. }
  2412. .u74775_input_option {
  2413. }
  2414. #u74776_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:137px;
  2420. height:30px;
  2421. background:inherit;
  2422. background-color:rgba(255, 255, 255, 0);
  2423. border:none;
  2424. border-top:0px;
  2425. border-right:0px;
  2426. border-bottom:0px;
  2427. border-radius:0px;
  2428. border-top-left-radius:0px;
  2429. border-bottom-left-radius:0px;
  2430. -moz-box-shadow:none;
  2431. -webkit-box-shadow:none;
  2432. box-shadow:none;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:14px;
  2437. }
  2438. #u74776 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:1707px;
  2442. top:257px;
  2443. width:137px;
  2444. height:30px;
  2445. display:flex;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:14px;
  2450. }
  2451. #u74776 .text {
  2452. position:absolute;
  2453. align-self:center;
  2454. padding:5px 10px 5px 0px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u74776_text {
  2459. border-width:0px;
  2460. word-wrap:break-word;
  2461. text-transform:none;
  2462. }
  2463. #u74777_div {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:560px;
  2469. height:80px;
  2470. background:inherit;
  2471. background-color:rgba(255, 255, 255, 1);
  2472. box-sizing:border-box;
  2473. border-width:1px;
  2474. border-style:solid;
  2475. border-color:rgba(170, 170, 170, 1);
  2476. border-radius:4px;
  2477. -moz-box-shadow:none;
  2478. -webkit-box-shadow:none;
  2479. box-shadow:none;
  2480. }
  2481. #u74777 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:1707px;
  2485. top:287px;
  2486. width:560px;
  2487. height:80px;
  2488. display:flex;
  2489. }
  2490. #u74777 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u74777_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u74778 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:0px;
  2509. height:0px;
  2510. }
  2511. #u74779_div {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:630px;
  2517. height:1196px;
  2518. background:inherit;
  2519. background-color:rgba(255, 255, 255, 1);
  2520. box-sizing:border-box;
  2521. border-width:1px;
  2522. border-style:solid;
  2523. border-color:rgba(215, 215, 215, 1);
  2524. border-radius:0px;
  2525. -moz-box-shadow:none;
  2526. -webkit-box-shadow:none;
  2527. box-shadow:none;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:14px;
  2532. color:#AAAAAA;
  2533. text-align:center;
  2534. line-height:30px;
  2535. }
  2536. #u74779 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:2343px;
  2540. top:50px;
  2541. width:630px;
  2542. height:1196px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:14px;
  2548. color:#AAAAAA;
  2549. text-align:center;
  2550. line-height:30px;
  2551. }
  2552. #u74779 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:5px 10px 5px 10px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u74779_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. visibility:hidden;
  2564. }
  2565. #u74780_div {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:119px;
  2571. height:35px;
  2572. background:inherit;
  2573. background-color:rgba(255, 255, 255, 0);
  2574. border:none;
  2575. border-top:0px;
  2576. border-right:0px;
  2577. border-bottom:0px;
  2578. border-radius:0px;
  2579. border-top-left-radius:0px;
  2580. border-bottom-left-radius:0px;
  2581. -moz-box-shadow:none;
  2582. -webkit-box-shadow:none;
  2583. box-shadow:none;
  2584. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2585. font-weight:500;
  2586. font-style:normal;
  2587. font-size:18px;
  2588. }
  2589. #u74780 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:2363px;
  2593. top:68px;
  2594. width:119px;
  2595. height:35px;
  2596. display:flex;
  2597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2598. font-weight:500;
  2599. font-style:normal;
  2600. font-size:18px;
  2601. }
  2602. #u74780 .text {
  2603. position:absolute;
  2604. align-self:center;
  2605. padding:5px 10px 5px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u74780_text {
  2610. border-width:0px;
  2611. white-space:nowrap;
  2612. text-transform:none;
  2613. }
  2614. #u74781_div {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:40px;
  2620. height:40px;
  2621. background:inherit;
  2622. background-color:rgba(255, 255, 255, 0);
  2623. border:none;
  2624. border-top:0px;
  2625. border-right:0px;
  2626. border-bottom:0px;
  2627. border-radius:0px;
  2628. border-top-left-radius:0px;
  2629. border-bottom-left-radius:0px;
  2630. -moz-box-shadow:none;
  2631. -webkit-box-shadow:none;
  2632. box-shadow:none;
  2633. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2634. font-weight:500;
  2635. font-style:normal;
  2636. font-size:18px;
  2637. text-align:center;
  2638. }
  2639. #u74781 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:2933px;
  2643. top:50px;
  2644. width:40px;
  2645. height:40px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2648. font-weight:500;
  2649. font-style:normal;
  2650. font-size:18px;
  2651. text-align:center;
  2652. }
  2653. #u74781 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:5px 10px 5px 0px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u74781_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. }
  2665. #u74782_img {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:13px;
  2671. height:13px;
  2672. }
  2673. #u74782 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:2921px;
  2677. top:66px;
  2678. width:13px;
  2679. height:13px;
  2680. display:flex;
  2681. }
  2682. #u74782 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 2px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u74782_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u74783 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:0px;
  2701. height:0px;
  2702. }
  2703. #u74784_div {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:630px;
  2709. height:50px;
  2710. background:inherit;
  2711. background-color:rgba(255, 255, 255, 1);
  2712. box-sizing:border-box;
  2713. border-width:1px;
  2714. border-style:solid;
  2715. border-color:rgba(215, 215, 215, 1);
  2716. border-radius:0px;
  2717. -moz-box-shadow:none;
  2718. -webkit-box-shadow:none;
  2719. box-shadow:none;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:14px;
  2724. color:#AAAAAA;
  2725. text-align:center;
  2726. line-height:30px;
  2727. }
  2728. #u74784 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:2343px;
  2732. top:1196px;
  2733. width:630px;
  2734. height:50px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:14px;
  2740. color:#AAAAAA;
  2741. text-align:center;
  2742. line-height:30px;
  2743. }
  2744. #u74784 .text {
  2745. position:absolute;
  2746. align-self:center;
  2747. padding:5px 10px 5px 10px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u74784_text {
  2752. border-width:0px;
  2753. word-wrap:break-word;
  2754. text-transform:none;
  2755. visibility:hidden;
  2756. }
  2757. #u74785_div {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:0px;
  2761. top:0px;
  2762. width:80px;
  2763. height:30px;
  2764. background:inherit;
  2765. background-color:rgba(24, 144, 255, 1);
  2766. border:none;
  2767. border-radius:4px;
  2768. -moz-box-shadow:none;
  2769. -webkit-box-shadow:none;
  2770. box-shadow:none;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:14px;
  2775. color:#FFFFFF;
  2776. }
  2777. #u74785 {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:2871px;
  2781. top:1206px;
  2782. width:80px;
  2783. height:30px;
  2784. display:flex;
  2785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. font-size:14px;
  2789. color:#FFFFFF;
  2790. }
  2791. #u74785 .text {
  2792. position:absolute;
  2793. align-self:center;
  2794. padding:2px 2px 2px 2px;
  2795. box-sizing:border-box;
  2796. width:100%;
  2797. }
  2798. #u74785_text {
  2799. border-width:0px;
  2800. word-wrap:break-word;
  2801. text-transform:none;
  2802. }
  2803. #u74786_div {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:80px;
  2809. height:30px;
  2810. background:inherit;
  2811. background-color:rgba(255, 255, 255, 1);
  2812. box-sizing:border-box;
  2813. border-width:1px;
  2814. border-style:solid;
  2815. border-color:rgba(121, 121, 121, 1);
  2816. border-radius:4px;
  2817. -moz-box-shadow:none;
  2818. -webkit-box-shadow:none;
  2819. box-shadow:none;
  2820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:14px;
  2824. }
  2825. #u74786 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:2781px;
  2829. top:1206px;
  2830. width:80px;
  2831. height:30px;
  2832. display:flex;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:14px;
  2837. }
  2838. #u74786 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u74786_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. }
  2850. #u74787_div {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:137px;
  2856. height:30px;
  2857. background:inherit;
  2858. background-color:rgba(255, 255, 255, 0);
  2859. border:none;
  2860. border-top:0px;
  2861. border-right:0px;
  2862. border-bottom:0px;
  2863. border-radius:0px;
  2864. border-top-left-radius:0px;
  2865. border-bottom-left-radius:0px;
  2866. -moz-box-shadow:none;
  2867. -webkit-box-shadow:none;
  2868. box-shadow:none;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:14px;
  2873. }
  2874. #u74787 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:2378px;
  2878. top:167px;
  2879. width:137px;
  2880. height:30px;
  2881. display:flex;
  2882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. font-size:14px;
  2886. }
  2887. #u74787 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:5px 10px 5px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u74787_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u74788_div {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:80px;
  2905. height:27px;
  2906. background:inherit;
  2907. background-color:rgba(24, 144, 255, 1);
  2908. border:none;
  2909. border-radius:4px;
  2910. -moz-box-shadow:none;
  2911. -webkit-box-shadow:none;
  2912. box-shadow:none;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:12px;
  2917. color:#FFFFFF;
  2918. text-align:center;
  2919. }
  2920. #u74788 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:2468px;
  2924. top:120px;
  2925. width:80px;
  2926. height:27px;
  2927. display:flex;
  2928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2929. font-weight:400;
  2930. font-style:normal;
  2931. font-size:12px;
  2932. color:#FFFFFF;
  2933. text-align:center;
  2934. }
  2935. #u74788 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:5px 0px 5px 0px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u74788_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. }
  2947. #u74789_div {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:80px;
  2953. height:27px;
  2954. background:inherit;
  2955. background-color:rgba(242, 242, 242, 1);
  2956. border:none;
  2957. border-radius:4px;
  2958. -moz-box-shadow:none;
  2959. -webkit-box-shadow:none;
  2960. box-shadow:none;
  2961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2962. font-weight:400;
  2963. font-style:normal;
  2964. font-size:12px;
  2965. text-align:center;
  2966. }
  2967. #u74789 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:2378px;
  2971. top:120px;
  2972. width:80px;
  2973. height:27px;
  2974. display:flex;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. text-align:center;
  2980. }
  2981. #u74789 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:5px 0px 5px 0px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u74789_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u74790 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:0px;
  2999. height:0px;
  3000. }
  3001. #u74791_div {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:560px;
  3007. height:40px;
  3008. background:inherit;
  3009. background-color:rgba(255, 255, 255, 1);
  3010. box-sizing:border-box;
  3011. border-width:1px;
  3012. border-style:solid;
  3013. border-color:rgba(170, 170, 170, 1);
  3014. border-radius:4px;
  3015. -moz-box-shadow:none;
  3016. -webkit-box-shadow:none;
  3017. box-shadow:none;
  3018. }
  3019. #u74791 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:2378px;
  3023. top:197px;
  3024. width:560px;
  3025. height:40px;
  3026. display:flex;
  3027. }
  3028. #u74791 .text {
  3029. position:absolute;
  3030. align-self:center;
  3031. padding:2px 2px 2px 0px;
  3032. box-sizing:border-box;
  3033. width:100%;
  3034. }
  3035. #u74791_text {
  3036. border-width:0px;
  3037. word-wrap:break-word;
  3038. text-transform:none;
  3039. visibility:hidden;
  3040. }
  3041. #u74792_div {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:137px;
  3047. height:30px;
  3048. background:inherit;
  3049. background-color:rgba(255, 255, 255, 0);
  3050. border:none;
  3051. border-top:0px;
  3052. border-right:0px;
  3053. border-bottom:0px;
  3054. border-radius:0px;
  3055. border-top-left-radius:0px;
  3056. border-bottom-left-radius:0px;
  3057. -moz-box-shadow:none;
  3058. -webkit-box-shadow:none;
  3059. box-shadow:none;
  3060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3061. font-weight:400;
  3062. font-style:normal;
  3063. font-size:14px;
  3064. }
  3065. #u74792 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:2378px;
  3069. top:347px;
  3070. width:137px;
  3071. height:30px;
  3072. display:flex;
  3073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:14px;
  3077. }
  3078. #u74792 .text {
  3079. position:absolute;
  3080. align-self:center;
  3081. padding:5px 10px 5px 0px;
  3082. box-sizing:border-box;
  3083. width:100%;
  3084. }
  3085. #u74792_text {
  3086. border-width:0px;
  3087. word-wrap:break-word;
  3088. text-transform:none;
  3089. }
  3090. #u74793_div {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:560px;
  3096. height:80px;
  3097. background:inherit;
  3098. background-color:rgba(255, 255, 255, 1);
  3099. box-sizing:border-box;
  3100. border-width:1px;
  3101. border-style:solid;
  3102. border-color:rgba(170, 170, 170, 1);
  3103. border-radius:4px;
  3104. -moz-box-shadow:none;
  3105. -webkit-box-shadow:none;
  3106. box-shadow:none;
  3107. }
  3108. #u74793 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:2378px;
  3112. top:377px;
  3113. width:560px;
  3114. height:80px;
  3115. display:flex;
  3116. }
  3117. #u74793 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 0px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u74793_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u74794_div {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:137px;
  3136. height:30px;
  3137. background:inherit;
  3138. background-color:rgba(255, 255, 255, 0);
  3139. border:none;
  3140. border-top:0px;
  3141. border-right:0px;
  3142. border-bottom:0px;
  3143. border-radius:0px;
  3144. border-top-left-radius:0px;
  3145. border-bottom-left-radius:0px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:14px;
  3153. }
  3154. #u74794 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:2378px;
  3158. top:257px;
  3159. width:137px;
  3160. height:30px;
  3161. display:flex;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:14px;
  3166. }
  3167. #u74794 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:5px 10px 5px 0px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u74794_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. }
  3179. #u74795 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:0px;
  3185. height:0px;
  3186. }
  3187. #u74796_div {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:560px;
  3193. height:40px;
  3194. background:inherit;
  3195. background-color:rgba(255, 255, 255, 1);
  3196. box-sizing:border-box;
  3197. border-width:1px;
  3198. border-style:solid;
  3199. border-color:rgba(170, 170, 170, 1);
  3200. border-radius:4px;
  3201. -moz-box-shadow:none;
  3202. -webkit-box-shadow:none;
  3203. box-shadow:none;
  3204. }
  3205. #u74796 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:2378px;
  3209. top:287px;
  3210. width:560px;
  3211. height:40px;
  3212. display:flex;
  3213. }
  3214. #u74796 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 0px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u74796_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u74797_div {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:85px;
  3233. height:40px;
  3234. background:inherit;
  3235. background-color:rgba(255, 255, 255, 0);
  3236. border:none;
  3237. border-radius:0px;
  3238. -moz-box-shadow:none;
  3239. -webkit-box-shadow:none;
  3240. box-shadow:none;
  3241. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3242. font-weight:500;
  3243. font-style:normal;
  3244. line-height:40px;
  3245. }
  3246. #u74797 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:729px;
  3250. top:140px;
  3251. width:85px;
  3252. height:40px;
  3253. display:flex;
  3254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3255. font-weight:500;
  3256. font-style:normal;
  3257. line-height:40px;
  3258. }
  3259. #u74797 .text {
  3260. position:absolute;
  3261. align-self:flex-start;
  3262. padding:0px 0px 0px 0px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u74797_text {
  3267. border-width:0px;
  3268. white-space:nowrap;
  3269. text-transform:none;
  3270. }
  3271. #u74798_div {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:85px;
  3277. height:40px;
  3278. background:inherit;
  3279. background-color:rgba(255, 255, 255, 0);
  3280. border:none;
  3281. border-radius:0px;
  3282. -moz-box-shadow:none;
  3283. -webkit-box-shadow:none;
  3284. box-shadow:none;
  3285. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3286. font-weight:500;
  3287. font-style:normal;
  3288. line-height:40px;
  3289. }
  3290. #u74798 {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:844px;
  3294. top:140px;
  3295. width:85px;
  3296. height:40px;
  3297. display:flex;
  3298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3299. font-weight:500;
  3300. font-style:normal;
  3301. line-height:40px;
  3302. }
  3303. #u74798 .text {
  3304. position:absolute;
  3305. align-self:flex-start;
  3306. padding:0px 0px 0px 0px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u74798_text {
  3311. border-width:0px;
  3312. white-space:nowrap;
  3313. text-transform:none;
  3314. }
  3315. #u74799_div {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:113px;
  3321. height:40px;
  3322. background:inherit;
  3323. background-color:rgba(255, 255, 255, 0);
  3324. border:none;
  3325. border-radius:0px;
  3326. -moz-box-shadow:none;
  3327. -webkit-box-shadow:none;
  3328. box-shadow:none;
  3329. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3330. font-weight:500;
  3331. font-style:normal;
  3332. color:#1890FF;
  3333. line-height:40px;
  3334. }
  3335. #u74799 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:959px;
  3339. top:140px;
  3340. width:113px;
  3341. height:40px;
  3342. display:flex;
  3343. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3344. font-weight:500;
  3345. font-style:normal;
  3346. color:#1890FF;
  3347. line-height:40px;
  3348. }
  3349. #u74799 .text {
  3350. position:absolute;
  3351. align-self:flex-start;
  3352. padding:0px 0px 0px 0px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u74799_text {
  3357. border-width:0px;
  3358. white-space:nowrap;
  3359. text-transform:none;
  3360. }
  3361. #u74800_div {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:57px;
  3367. height:40px;
  3368. background:inherit;
  3369. background-color:rgba(255, 255, 255, 0);
  3370. border:none;
  3371. border-radius:0px;
  3372. -moz-box-shadow:none;
  3373. -webkit-box-shadow:none;
  3374. box-shadow:none;
  3375. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3376. font-weight:500;
  3377. font-style:normal;
  3378. line-height:40px;
  3379. }
  3380. #u74800 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:1102px;
  3384. top:140px;
  3385. width:57px;
  3386. height:40px;
  3387. display:flex;
  3388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3389. font-weight:500;
  3390. font-style:normal;
  3391. line-height:40px;
  3392. }
  3393. #u74800 .text {
  3394. position:absolute;
  3395. align-self:flex-start;
  3396. padding:0px 0px 0px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u74800_text {
  3401. border-width:0px;
  3402. white-space:nowrap;
  3403. text-transform:none;
  3404. }
  3405. #u74801 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:0px;
  3411. height:0px;
  3412. }
  3413. #u74802_div {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:350px;
  3419. height:1126px;
  3420. background:inherit;
  3421. background-color:rgba(240, 242, 245, 1);
  3422. border:none;
  3423. border-radius:0px;
  3424. -moz-box-shadow:none;
  3425. -webkit-box-shadow:none;
  3426. box-shadow:none;
  3427. }
  3428. #u74802 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:331px;
  3432. top:50px;
  3433. width:350px;
  3434. height:1126px;
  3435. display:flex;
  3436. }
  3437. #u74802 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 2px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u74802_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u74803 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:0px;
  3456. height:0px;
  3457. }
  3458. #u74804_div {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:300px;
  3464. height:40px;
  3465. background:inherit;
  3466. background-color:rgba(255, 255, 255, 1);
  3467. box-sizing:border-box;
  3468. border-width:1px;
  3469. border-style:solid;
  3470. border-color:rgba(242, 242, 242, 1);
  3471. border-radius:4px;
  3472. -moz-box-shadow:none;
  3473. -webkit-box-shadow:none;
  3474. box-shadow:none;
  3475. font-family:'Microsoft YaHei', sans-serif;
  3476. font-weight:400;
  3477. font-style:normal;
  3478. font-size:14px;
  3479. color:#CCCCCC;
  3480. text-align:left;
  3481. }
  3482. #u74804 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:351px;
  3486. top:119px;
  3487. width:300px;
  3488. height:40px;
  3489. display:flex;
  3490. font-family:'Microsoft YaHei', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:14px;
  3494. color:#CCCCCC;
  3495. text-align:left;
  3496. }
  3497. #u74804 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 8px 2px 8px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u74804_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u74805_input {
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:263px;
  3515. height:33px;
  3516. padding:2px 2px 2px 2px;
  3517. font-family:'Microsoft YaHei', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:14px;
  3521. letter-spacing:normal;
  3522. color:#000000;
  3523. vertical-align:none;
  3524. text-align:left;
  3525. text-transform:none;
  3526. background-color:transparent;
  3527. border-color:transparent;
  3528. }
  3529. #u74805_input.disabled {
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:263px;
  3534. height:33px;
  3535. padding:2px 2px 2px 2px;
  3536. font-family:'Microsoft YaHei', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:14px;
  3540. letter-spacing:normal;
  3541. color:#000000;
  3542. vertical-align:none;
  3543. text-align:left;
  3544. text-transform:none;
  3545. background-color:transparent;
  3546. border-color:transparent;
  3547. }
  3548. #u74805_div {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:263px;
  3554. height:33px;
  3555. background:inherit;
  3556. background-color:rgba(255, 255, 255, 1);
  3557. border:none;
  3558. border-radius:0px;
  3559. -moz-box-shadow:none;
  3560. -webkit-box-shadow:none;
  3561. box-shadow:none;
  3562. font-family:'Microsoft YaHei', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:14px;
  3566. }
  3567. #u74805 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:359px;
  3571. top:120px;
  3572. width:263px;
  3573. height:33px;
  3574. display:flex;
  3575. font-family:'Microsoft YaHei', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. }
  3580. #u74805 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 2px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u74805_div.disabled {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:263px;
  3593. height:33px;
  3594. background:inherit;
  3595. background-color:rgba(240, 240, 240, 1);
  3596. border:none;
  3597. border-radius:0px;
  3598. -moz-box-shadow:none;
  3599. -webkit-box-shadow:none;
  3600. box-shadow:none;
  3601. font-family:'Microsoft YaHei', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:14px;
  3605. }
  3606. #u74805.disabled {
  3607. }
  3608. #u74806_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:14px;
  3614. height:14px;
  3615. }
  3616. #u74806 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:626px;
  3620. top:131px;
  3621. width:14px;
  3622. height:14px;
  3623. display:flex;
  3624. }
  3625. #u74806 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 2px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u74806_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. visibility:hidden;
  3637. }
  3638. #u74807 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:0px;
  3644. height:0px;
  3645. }
  3646. #u74808_div {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:300px;
  3652. height:50px;
  3653. background:inherit;
  3654. background-color:rgba(242, 242, 242, 0);
  3655. border:none;
  3656. border-radius:4px;
  3657. -moz-box-shadow:none;
  3658. -webkit-box-shadow:none;
  3659. box-shadow:none;
  3660. font-family:'Microsoft YaHei', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:14px;
  3664. color:#CCCCCC;
  3665. text-align:left;
  3666. }
  3667. #u74808 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:351px;
  3671. top:169px;
  3672. width:300px;
  3673. height:50px;
  3674. display:flex;
  3675. font-family:'Microsoft YaHei', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:14px;
  3679. color:#CCCCCC;
  3680. text-align:left;
  3681. }
  3682. #u74808 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:2px 8px 2px 8px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u74808_text {
  3690. border-width:0px;
  3691. word-wrap:break-word;
  3692. text-transform:none;
  3693. visibility:hidden;
  3694. }
  3695. #u74809_div {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:15px;
  3701. height:15px;
  3702. background:inherit;
  3703. background-color:rgba(51, 51, 51, 1);
  3704. border:none;
  3705. border-radius:8px;
  3706. -moz-box-shadow:none;
  3707. -webkit-box-shadow:none;
  3708. box-shadow:none;
  3709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:10px;
  3713. color:#FFFFFF;
  3714. }
  3715. #u74809 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:364px;
  3719. top:187px;
  3720. width:15px;
  3721. height:15px;
  3722. display:flex;
  3723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. font-size:10px;
  3727. color:#FFFFFF;
  3728. }
  3729. #u74809 .text {
  3730. position:absolute;
  3731. align-self:center;
  3732. padding:0px 0px 0px 0px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u74809_text {
  3737. border-width:0px;
  3738. word-wrap:break-word;
  3739. text-transform:none;
  3740. }
  3741. #u74810_div {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:127px;
  3747. height:20px;
  3748. background:inherit;
  3749. background-color:rgba(51, 51, 51, 0);
  3750. border:none;
  3751. border-radius:4px;
  3752. -moz-box-shadow:none;
  3753. -webkit-box-shadow:none;
  3754. box-shadow:none;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:14px;
  3759. text-align:left;
  3760. }
  3761. #u74810 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:385px;
  3765. top:184px;
  3766. width:127px;
  3767. height:20px;
  3768. display:flex;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:14px;
  3773. text-align:left;
  3774. }
  3775. #u74810 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:0px 0px 0px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u74810_text {
  3783. border-width:0px;
  3784. white-space:nowrap;
  3785. text-transform:none;
  3786. }
  3787. #u74811 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:0px;
  3793. height:0px;
  3794. }
  3795. #u74812 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:0px;
  3801. height:0px;
  3802. }
  3803. #u74813_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:300px;
  3809. height:50px;
  3810. background:inherit;
  3811. background-color:rgba(242, 242, 242, 1);
  3812. border:none;
  3813. border-radius:4px;
  3814. -moz-box-shadow:none;
  3815. -webkit-box-shadow:none;
  3816. box-shadow:none;
  3817. font-family:'Microsoft YaHei', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:14px;
  3821. color:#CCCCCC;
  3822. text-align:left;
  3823. }
  3824. #u74813 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:351px;
  3828. top:219px;
  3829. width:300px;
  3830. height:50px;
  3831. display:flex;
  3832. font-family:'Microsoft YaHei', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:14px;
  3836. color:#CCCCCC;
  3837. text-align:left;
  3838. }
  3839. #u74813 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 8px 2px 8px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u74813_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u74814_div {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:57px;
  3858. height:20px;
  3859. background:inherit;
  3860. background-color:rgba(51, 51, 51, 0);
  3861. border:none;
  3862. border-radius:4px;
  3863. -moz-box-shadow:none;
  3864. -webkit-box-shadow:none;
  3865. box-shadow:none;
  3866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:14px;
  3870. text-align:left;
  3871. }
  3872. #u74814 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:429px;
  3876. top:234px;
  3877. width:57px;
  3878. height:20px;
  3879. display:flex;
  3880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:14px;
  3884. text-align:left;
  3885. }
  3886. #u74814 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:0px 0px 0px 0px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u74814_text {
  3894. border-width:0px;
  3895. white-space:nowrap;
  3896. text-transform:none;
  3897. }
  3898. #u74815_img {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:15px;
  3904. height:15px;
  3905. }
  3906. #u74815 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:410px;
  3910. top:237px;
  3911. width:15px;
  3912. height:15px;
  3913. display:flex;
  3914. }
  3915. #u74815 .text {
  3916. position:absolute;
  3917. align-self:center;
  3918. padding:2px 2px 2px 2px;
  3919. box-sizing:border-box;
  3920. width:100%;
  3921. }
  3922. #u74815_text {
  3923. border-width:0px;
  3924. word-wrap:break-word;
  3925. text-transform:none;
  3926. visibility:hidden;
  3927. }
  3928. #u74816 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:0px;
  3934. height:0px;
  3935. }
  3936. #u74817_div {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:300px;
  3942. height:50px;
  3943. background:inherit;
  3944. background-color:rgba(216, 233, 245, 1);
  3945. border:none;
  3946. border-radius:4px;
  3947. -moz-box-shadow:none;
  3948. -webkit-box-shadow:none;
  3949. box-shadow:none;
  3950. font-family:'Microsoft YaHei', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:14px;
  3954. color:#CCCCCC;
  3955. text-align:left;
  3956. }
  3957. #u74817 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:351px;
  3961. top:269px;
  3962. width:300px;
  3963. height:50px;
  3964. display:flex;
  3965. font-family:'Microsoft YaHei', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:14px;
  3969. color:#CCCCCC;
  3970. text-align:left;
  3971. }
  3972. #u74817 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:2px 8px 2px 8px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u74817_text {
  3980. border-width:0px;
  3981. word-wrap:break-word;
  3982. text-transform:none;
  3983. visibility:hidden;
  3984. }
  3985. #u74818_div {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:0px;
  3989. top:0px;
  3990. width:85px;
  3991. height:20px;
  3992. background:inherit;
  3993. background-color:rgba(51, 51, 51, 0);
  3994. border:none;
  3995. border-radius:4px;
  3996. -moz-box-shadow:none;
  3997. -webkit-box-shadow:none;
  3998. box-shadow:none;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:14px;
  4003. text-align:left;
  4004. }
  4005. #u74818 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:450px;
  4009. top:284px;
  4010. width:85px;
  4011. height:20px;
  4012. display:flex;
  4013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. font-size:14px;
  4017. text-align:left;
  4018. }
  4019. #u74818 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:0px 0px 0px 0px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u74818_text {
  4027. border-width:0px;
  4028. white-space:nowrap;
  4029. text-transform:none;
  4030. }
  4031. #u74819_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:14px;
  4037. height:14px;
  4038. }
  4039. #u74819 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:431px;
  4043. top:287px;
  4044. width:14px;
  4045. height:14px;
  4046. display:flex;
  4047. }
  4048. #u74819 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 2px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u74819_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. visibility:hidden;
  4060. }
  4061. #u74820 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:0px;
  4067. height:0px;
  4068. }
  4069. #u74821_div {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:300px;
  4075. height:50px;
  4076. background:inherit;
  4077. background-color:rgba(255, 255, 255, 0);
  4078. border:none;
  4079. border-radius:4px;
  4080. -moz-box-shadow:none;
  4081. -webkit-box-shadow:none;
  4082. box-shadow:none;
  4083. font-family:'Microsoft YaHei', sans-serif;
  4084. font-weight:400;
  4085. font-style:normal;
  4086. font-size:14px;
  4087. color:#CCCCCC;
  4088. text-align:left;
  4089. }
  4090. #u74821 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:351px;
  4094. top:313px;
  4095. width:300px;
  4096. height:50px;
  4097. display:flex;
  4098. font-family:'Microsoft YaHei', sans-serif;
  4099. font-weight:400;
  4100. font-style:normal;
  4101. font-size:14px;
  4102. color:#CCCCCC;
  4103. text-align:left;
  4104. }
  4105. #u74821 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 8px 2px 8px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u74821_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. visibility:hidden;
  4117. }
  4118. #u74822_div {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:57px;
  4124. height:20px;
  4125. background:inherit;
  4126. background-color:rgba(51, 51, 51, 0);
  4127. border:none;
  4128. border-radius:4px;
  4129. -moz-box-shadow:none;
  4130. -webkit-box-shadow:none;
  4131. box-shadow:none;
  4132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4133. font-weight:400;
  4134. font-style:normal;
  4135. font-size:14px;
  4136. text-align:left;
  4137. }
  4138. #u74822 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:429px;
  4142. top:328px;
  4143. width:57px;
  4144. height:20px;
  4145. display:flex;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. text-align:left;
  4151. }
  4152. #u74822 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:0px 0px 0px 0px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u74822_text {
  4160. border-width:0px;
  4161. white-space:nowrap;
  4162. text-transform:none;
  4163. }
  4164. #u74823_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:15px;
  4170. height:15px;
  4171. }
  4172. #u74823 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:410px;
  4176. top:331px;
  4177. width:15px;
  4178. height:15px;
  4179. display:flex;
  4180. }
  4181. #u74823 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 2px 2px 2px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u74823_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. visibility:hidden;
  4193. }
  4194. #u74824 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:0px;
  4200. height:0px;
  4201. }
  4202. #u74825_div {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:300px;
  4208. height:50px;
  4209. background:inherit;
  4210. background-color:rgba(255, 255, 255, 0);
  4211. border:none;
  4212. border-radius:4px;
  4213. -moz-box-shadow:none;
  4214. -webkit-box-shadow:none;
  4215. box-shadow:none;
  4216. font-family:'Microsoft YaHei', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:14px;
  4220. color:#CCCCCC;
  4221. text-align:left;
  4222. }
  4223. #u74825 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:351px;
  4227. top:358px;
  4228. width:300px;
  4229. height:50px;
  4230. display:flex;
  4231. font-family:'Microsoft YaHei', sans-serif;
  4232. font-weight:400;
  4233. font-style:normal;
  4234. font-size:14px;
  4235. color:#CCCCCC;
  4236. text-align:left;
  4237. }
  4238. #u74825 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 8px 2px 8px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u74825_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. visibility:hidden;
  4250. }
  4251. #u74826_div {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:85px;
  4257. height:20px;
  4258. background:inherit;
  4259. background-color:rgba(51, 51, 51, 0);
  4260. border:none;
  4261. border-radius:4px;
  4262. -moz-box-shadow:none;
  4263. -webkit-box-shadow:none;
  4264. box-shadow:none;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:14px;
  4269. text-align:left;
  4270. }
  4271. #u74826 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:450px;
  4275. top:373px;
  4276. width:85px;
  4277. height:20px;
  4278. display:flex;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:14px;
  4283. text-align:left;
  4284. }
  4285. #u74826 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:0px 0px 0px 0px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u74826_text {
  4293. border-width:0px;
  4294. white-space:nowrap;
  4295. text-transform:none;
  4296. }
  4297. #u74827_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:14px;
  4303. height:14px;
  4304. }
  4305. #u74827 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:431px;
  4309. top:376px;
  4310. width:14px;
  4311. height:14px;
  4312. display:flex;
  4313. }
  4314. #u74827 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:2px 2px 2px 2px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u74827_text {
  4322. border-width:0px;
  4323. word-wrap:break-word;
  4324. text-transform:none;
  4325. visibility:hidden;
  4326. }
  4327. #u74828 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:0px;
  4333. height:0px;
  4334. }
  4335. #u74829_div {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:300px;
  4341. height:50px;
  4342. background:inherit;
  4343. background-color:rgba(255, 255, 255, 0);
  4344. border:none;
  4345. border-radius:4px;
  4346. -moz-box-shadow:none;
  4347. -webkit-box-shadow:none;
  4348. box-shadow:none;
  4349. font-family:'Microsoft YaHei', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:14px;
  4353. color:#CCCCCC;
  4354. text-align:left;
  4355. }
  4356. #u74829 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:351px;
  4360. top:408px;
  4361. width:300px;
  4362. height:50px;
  4363. display:flex;
  4364. font-family:'Microsoft YaHei', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:14px;
  4368. color:#CCCCCC;
  4369. text-align:left;
  4370. }
  4371. #u74829 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 8px 2px 8px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u74829_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u74830_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:51px;
  4390. height:20px;
  4391. background:inherit;
  4392. background-color:rgba(51, 51, 51, 0);
  4393. border:none;
  4394. border-radius:4px;
  4395. -moz-box-shadow:none;
  4396. -webkit-box-shadow:none;
  4397. box-shadow:none;
  4398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:14px;
  4402. text-align:left;
  4403. }
  4404. #u74830 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:429px;
  4408. top:423px;
  4409. width:51px;
  4410. height:20px;
  4411. display:flex;
  4412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:14px;
  4416. text-align:left;
  4417. }
  4418. #u74830 .text {
  4419. position:absolute;
  4420. align-self:center;
  4421. padding:0px 0px 0px 0px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u74830_text {
  4426. border-width:0px;
  4427. white-space:nowrap;
  4428. text-transform:none;
  4429. }
  4430. #u74831_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:15px;
  4436. height:15px;
  4437. }
  4438. #u74831 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:410px;
  4442. top:426px;
  4443. width:15px;
  4444. height:15px;
  4445. display:flex;
  4446. }
  4447. #u74831 .text {
  4448. position:absolute;
  4449. align-self:center;
  4450. padding:2px 2px 2px 2px;
  4451. box-sizing:border-box;
  4452. width:100%;
  4453. }
  4454. #u74831_text {
  4455. border-width:0px;
  4456. word-wrap:break-word;
  4457. text-transform:none;
  4458. visibility:hidden;
  4459. }
  4460. #u74832 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:0px;
  4466. height:0px;
  4467. }
  4468. #u74833_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:300px;
  4474. height:50px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 0);
  4477. border:none;
  4478. border-radius:4px;
  4479. -moz-box-shadow:none;
  4480. -webkit-box-shadow:none;
  4481. box-shadow:none;
  4482. font-family:'Microsoft YaHei', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:14px;
  4486. color:#CCCCCC;
  4487. text-align:left;
  4488. }
  4489. #u74833 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:351px;
  4493. top:458px;
  4494. width:300px;
  4495. height:50px;
  4496. display:flex;
  4497. font-family:'Microsoft YaHei', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:14px;
  4501. color:#CCCCCC;
  4502. text-align:left;
  4503. }
  4504. #u74833 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 8px 2px 8px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u74833_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u74834_div {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:51px;
  4523. height:20px;
  4524. background:inherit;
  4525. background-color:rgba(51, 51, 51, 0);
  4526. border:none;
  4527. border-radius:4px;
  4528. -moz-box-shadow:none;
  4529. -webkit-box-shadow:none;
  4530. box-shadow:none;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:14px;
  4535. text-align:left;
  4536. }
  4537. #u74834 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:450px;
  4541. top:473px;
  4542. width:51px;
  4543. height:20px;
  4544. display:flex;
  4545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:14px;
  4549. text-align:left;
  4550. }
  4551. #u74834 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:0px 0px 0px 0px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u74834_text {
  4559. border-width:0px;
  4560. white-space:nowrap;
  4561. text-transform:none;
  4562. }
  4563. #u74835_img {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:14px;
  4569. height:14px;
  4570. }
  4571. #u74835 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:431px;
  4575. top:476px;
  4576. width:14px;
  4577. height:14px;
  4578. display:flex;
  4579. }
  4580. #u74835 .text {
  4581. position:absolute;
  4582. align-self:center;
  4583. padding:2px 2px 2px 2px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u74835_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. visibility:hidden;
  4592. }
  4593. #u74836 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:0px;
  4599. height:0px;
  4600. }
  4601. #u74837_div {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:300px;
  4607. height:50px;
  4608. background:inherit;
  4609. background-color:rgba(255, 255, 255, 0);
  4610. border:none;
  4611. border-radius:4px;
  4612. -moz-box-shadow:none;
  4613. -webkit-box-shadow:none;
  4614. box-shadow:none;
  4615. font-family:'Microsoft YaHei', sans-serif;
  4616. font-weight:400;
  4617. font-style:normal;
  4618. font-size:14px;
  4619. color:#CCCCCC;
  4620. text-align:left;
  4621. }
  4622. #u74837 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:351px;
  4626. top:502px;
  4627. width:300px;
  4628. height:50px;
  4629. display:flex;
  4630. font-family:'Microsoft YaHei', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:14px;
  4634. color:#CCCCCC;
  4635. text-align:left;
  4636. }
  4637. #u74837 .text {
  4638. position:absolute;
  4639. align-self:center;
  4640. padding:2px 8px 2px 8px;
  4641. box-sizing:border-box;
  4642. width:100%;
  4643. }
  4644. #u74837_text {
  4645. border-width:0px;
  4646. word-wrap:break-word;
  4647. text-transform:none;
  4648. visibility:hidden;
  4649. }
  4650. #u74838_div {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:49px;
  4656. height:20px;
  4657. background:inherit;
  4658. background-color:rgba(51, 51, 51, 0);
  4659. border:none;
  4660. border-radius:4px;
  4661. -moz-box-shadow:none;
  4662. -webkit-box-shadow:none;
  4663. box-shadow:none;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:14px;
  4668. text-align:left;
  4669. }
  4670. #u74838 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:429px;
  4674. top:517px;
  4675. width:49px;
  4676. height:20px;
  4677. display:flex;
  4678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4679. font-weight:400;
  4680. font-style:normal;
  4681. font-size:14px;
  4682. text-align:left;
  4683. }
  4684. #u74838 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:0px 0px 0px 0px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u74838_text {
  4692. border-width:0px;
  4693. white-space:nowrap;
  4694. text-transform:none;
  4695. }
  4696. #u74839_img {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:15px;
  4702. height:15px;
  4703. }
  4704. #u74839 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:410px;
  4708. top:520px;
  4709. width:15px;
  4710. height:15px;
  4711. display:flex;
  4712. }
  4713. #u74839 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:2px 2px 2px 2px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u74839_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. visibility:hidden;
  4725. }
  4726. #u74840 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:0px;
  4732. height:0px;
  4733. }
  4734. #u74841_div {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:300px;
  4740. height:50px;
  4741. background:inherit;
  4742. background-color:rgba(255, 255, 255, 0);
  4743. border:none;
  4744. border-radius:4px;
  4745. -moz-box-shadow:none;
  4746. -webkit-box-shadow:none;
  4747. box-shadow:none;
  4748. font-family:'Microsoft YaHei', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:14px;
  4752. color:#CCCCCC;
  4753. text-align:left;
  4754. }
  4755. #u74841 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:351px;
  4759. top:552px;
  4760. width:300px;
  4761. height:50px;
  4762. display:flex;
  4763. font-family:'Microsoft YaHei', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:14px;
  4767. color:#CCCCCC;
  4768. text-align:left;
  4769. }
  4770. #u74841 .text {
  4771. position:absolute;
  4772. align-self:center;
  4773. padding:2px 8px 2px 8px;
  4774. box-sizing:border-box;
  4775. width:100%;
  4776. }
  4777. #u74841_text {
  4778. border-width:0px;
  4779. word-wrap:break-word;
  4780. text-transform:none;
  4781. visibility:hidden;
  4782. }
  4783. #u74842_div {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:49px;
  4789. height:20px;
  4790. background:inherit;
  4791. background-color:rgba(51, 51, 51, 0);
  4792. border:none;
  4793. border-radius:4px;
  4794. -moz-box-shadow:none;
  4795. -webkit-box-shadow:none;
  4796. box-shadow:none;
  4797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. font-size:14px;
  4801. text-align:left;
  4802. }
  4803. #u74842 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:450px;
  4807. top:567px;
  4808. width:49px;
  4809. height:20px;
  4810. display:flex;
  4811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:14px;
  4815. text-align:left;
  4816. }
  4817. #u74842 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:0px 0px 0px 0px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u74842_text {
  4825. border-width:0px;
  4826. white-space:nowrap;
  4827. text-transform:none;
  4828. }
  4829. #u74843_img {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:14px;
  4835. height:14px;
  4836. }
  4837. #u74843 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:431px;
  4841. top:570px;
  4842. width:14px;
  4843. height:14px;
  4844. display:flex;
  4845. }
  4846. #u74843 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 2px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u74843_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u74844 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:0px;
  4865. height:0px;
  4866. }
  4867. #u74845_div {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:300px;
  4873. height:50px;
  4874. background:inherit;
  4875. background-color:rgba(255, 255, 255, 0);
  4876. border:none;
  4877. border-radius:4px;
  4878. -moz-box-shadow:none;
  4879. -webkit-box-shadow:none;
  4880. box-shadow:none;
  4881. font-family:'Microsoft YaHei', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:14px;
  4885. color:#CCCCCC;
  4886. text-align:left;
  4887. }
  4888. #u74845 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:351px;
  4892. top:662px;
  4893. width:300px;
  4894. height:50px;
  4895. display:flex;
  4896. font-family:'Microsoft YaHei', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:14px;
  4900. color:#CCCCCC;
  4901. text-align:left;
  4902. }
  4903. #u74845 .text {
  4904. position:absolute;
  4905. align-self:center;
  4906. padding:2px 8px 2px 8px;
  4907. box-sizing:border-box;
  4908. width:100%;
  4909. }
  4910. #u74845_text {
  4911. border-width:0px;
  4912. word-wrap:break-word;
  4913. text-transform:none;
  4914. visibility:hidden;
  4915. }
  4916. #u74846_div {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:51px;
  4922. height:20px;
  4923. background:inherit;
  4924. background-color:rgba(51, 51, 51, 0);
  4925. border:none;
  4926. border-radius:4px;
  4927. -moz-box-shadow:none;
  4928. -webkit-box-shadow:none;
  4929. box-shadow:none;
  4930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4931. font-weight:400;
  4932. font-style:normal;
  4933. font-size:14px;
  4934. text-align:left;
  4935. }
  4936. #u74846 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:429px;
  4940. top:677px;
  4941. width:51px;
  4942. height:20px;
  4943. display:flex;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:14px;
  4948. text-align:left;
  4949. }
  4950. #u74846 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:0px 0px 0px 0px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u74846_text {
  4958. border-width:0px;
  4959. white-space:nowrap;
  4960. text-transform:none;
  4961. }
  4962. #u74847_img {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:15px;
  4968. height:15px;
  4969. }
  4970. #u74847 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:410px;
  4974. top:680px;
  4975. width:15px;
  4976. height:15px;
  4977. display:flex;
  4978. }
  4979. #u74847 .text {
  4980. position:absolute;
  4981. align-self:center;
  4982. padding:2px 2px 2px 2px;
  4983. box-sizing:border-box;
  4984. width:100%;
  4985. }
  4986. #u74847_text {
  4987. border-width:0px;
  4988. word-wrap:break-word;
  4989. text-transform:none;
  4990. visibility:hidden;
  4991. }
  4992. #u74848 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:0px;
  4998. height:0px;
  4999. }
  5000. #u74849_div {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:300px;
  5006. height:50px;
  5007. background:inherit;
  5008. background-color:rgba(255, 255, 255, 0);
  5009. border:none;
  5010. border-radius:4px;
  5011. -moz-box-shadow:none;
  5012. -webkit-box-shadow:none;
  5013. box-shadow:none;
  5014. font-family:'Microsoft YaHei', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:14px;
  5018. color:#CCCCCC;
  5019. text-align:left;
  5020. }
  5021. #u74849 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:351px;
  5025. top:712px;
  5026. width:300px;
  5027. height:50px;
  5028. display:flex;
  5029. font-family:'Microsoft YaHei', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:14px;
  5033. color:#CCCCCC;
  5034. text-align:left;
  5035. }
  5036. #u74849 .text {
  5037. position:absolute;
  5038. align-self:center;
  5039. padding:2px 8px 2px 8px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u74849_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. visibility:hidden;
  5048. }
  5049. #u74850_div {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:51px;
  5055. height:20px;
  5056. background:inherit;
  5057. background-color:rgba(51, 51, 51, 0);
  5058. border:none;
  5059. border-radius:4px;
  5060. -moz-box-shadow:none;
  5061. -webkit-box-shadow:none;
  5062. box-shadow:none;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:14px;
  5067. text-align:left;
  5068. }
  5069. #u74850 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:450px;
  5073. top:727px;
  5074. width:51px;
  5075. height:20px;
  5076. display:flex;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:14px;
  5081. text-align:left;
  5082. }
  5083. #u74850 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:0px 0px 0px 0px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u74850_text {
  5091. border-width:0px;
  5092. white-space:nowrap;
  5093. text-transform:none;
  5094. }
  5095. #u74851_img {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:14px;
  5101. height:14px;
  5102. }
  5103. #u74851 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:431px;
  5107. top:730px;
  5108. width:14px;
  5109. height:14px;
  5110. display:flex;
  5111. }
  5112. #u74851 .text {
  5113. position:absolute;
  5114. align-self:center;
  5115. padding:2px 2px 2px 2px;
  5116. box-sizing:border-box;
  5117. width:100%;
  5118. }
  5119. #u74851_text {
  5120. border-width:0px;
  5121. word-wrap:break-word;
  5122. text-transform:none;
  5123. visibility:hidden;
  5124. }
  5125. #u74852 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:0px;
  5129. top:0px;
  5130. width:0px;
  5131. height:0px;
  5132. }
  5133. #u74853_div {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:300px;
  5139. height:50px;
  5140. background:inherit;
  5141. background-color:rgba(242, 242, 242, 1);
  5142. border:none;
  5143. border-radius:4px;
  5144. -moz-box-shadow:none;
  5145. -webkit-box-shadow:none;
  5146. box-shadow:none;
  5147. font-family:'Microsoft YaHei', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:14px;
  5151. color:#CCCCCC;
  5152. text-align:left;
  5153. }
  5154. #u74853 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:351px;
  5158. top:612px;
  5159. width:300px;
  5160. height:50px;
  5161. display:flex;
  5162. font-family:'Microsoft YaHei', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:14px;
  5166. color:#CCCCCC;
  5167. text-align:left;
  5168. }
  5169. #u74853 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 8px 2px 8px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u74853_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. visibility:hidden;
  5181. }
  5182. #u74854_div {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:15px;
  5188. height:15px;
  5189. background:inherit;
  5190. background-color:rgba(51, 51, 51, 0);
  5191. box-sizing:border-box;
  5192. border-width:1px;
  5193. border-style:solid;
  5194. border-color:rgba(51, 51, 51, 1);
  5195. border-radius:8px;
  5196. -moz-box-shadow:none;
  5197. -webkit-box-shadow:none;
  5198. box-shadow:none;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:10px;
  5203. }
  5204. #u74854 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:384px;
  5208. top:630px;
  5209. width:15px;
  5210. height:15px;
  5211. display:flex;
  5212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:10px;
  5216. }
  5217. #u74854 .text {
  5218. position:absolute;
  5219. align-self:center;
  5220. padding:0px 0px 0px 0px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u74854_text {
  5225. border-width:0px;
  5226. word-wrap:break-word;
  5227. text-transform:none;
  5228. }
  5229. #u74855_div {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:127px;
  5235. height:20px;
  5236. background:inherit;
  5237. background-color:rgba(51, 51, 51, 0);
  5238. border:none;
  5239. border-radius:4px;
  5240. -moz-box-shadow:none;
  5241. -webkit-box-shadow:none;
  5242. box-shadow:none;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:14px;
  5247. text-align:left;
  5248. }
  5249. #u74855 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:405px;
  5253. top:627px;
  5254. width:127px;
  5255. height:20px;
  5256. display:flex;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:14px;
  5261. text-align:left;
  5262. }
  5263. #u74855 .text {
  5264. position:absolute;
  5265. align-self:center;
  5266. padding:0px 0px 0px 0px;
  5267. box-sizing:border-box;
  5268. width:100%;
  5269. }
  5270. #u74855_text {
  5271. border-width:0px;
  5272. white-space:nowrap;
  5273. text-transform:none;
  5274. }
  5275. #u74856_img {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:14px;
  5281. height:8px;
  5282. }
  5283. #u74856 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:620px;
  5287. top:633px;
  5288. width:14px;
  5289. height:8px;
  5290. display:flex;
  5291. }
  5292. #u74856 .text {
  5293. position:absolute;
  5294. align-self:center;
  5295. padding:2px 2px 2px 2px;
  5296. box-sizing:border-box;
  5297. width:100%;
  5298. }
  5299. #u74856_text {
  5300. border-width:0px;
  5301. word-wrap:break-word;
  5302. text-transform:none;
  5303. visibility:hidden;
  5304. }
  5305. #u74857_div {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:73px;
  5311. height:50px;
  5312. background:inherit;
  5313. background-color:rgba(255, 255, 255, 0);
  5314. border:none;
  5315. border-left:0px;
  5316. border-top:0px;
  5317. border-right:0px;
  5318. border-radius:0px;
  5319. border-bottom-right-radius:0px;
  5320. border-bottom-left-radius:0px;
  5321. -moz-box-shadow:none;
  5322. -webkit-box-shadow:none;
  5323. box-shadow:none;
  5324. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5325. font-weight:500;
  5326. font-style:normal;
  5327. font-size:18px;
  5328. line-height:40px;
  5329. }
  5330. #u74857 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:345px;
  5334. top:63px;
  5335. width:73px;
  5336. height:50px;
  5337. display:flex;
  5338. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5339. font-weight:500;
  5340. font-style:normal;
  5341. font-size:18px;
  5342. line-height:40px;
  5343. }
  5344. #u74857 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:5px 0px 5px 0px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u74857_text {
  5352. border-width:0px;
  5353. white-space:nowrap;
  5354. text-transform:none;
  5355. }
  5356. #u74858 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:0px;
  5362. height:0px;
  5363. }
  5364. #u74859_div {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:300px;
  5370. height:50px;
  5371. background:inherit;
  5372. background-color:rgba(242, 242, 242, 0.0980392156862745);
  5373. border:none;
  5374. border-radius:4px;
  5375. -moz-box-shadow:none;
  5376. -webkit-box-shadow:none;
  5377. box-shadow:none;
  5378. font-family:'Microsoft YaHei', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:14px;
  5382. color:#CCCCCC;
  5383. text-align:left;
  5384. }
  5385. #u74859 {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:351px;
  5389. top:219px;
  5390. width:300px;
  5391. height:50px;
  5392. display:flex;
  5393. font-family:'Microsoft YaHei', sans-serif;
  5394. font-weight:400;
  5395. font-style:normal;
  5396. font-size:14px;
  5397. color:#CCCCCC;
  5398. text-align:left;
  5399. }
  5400. #u74859 .text {
  5401. position:absolute;
  5402. align-self:center;
  5403. padding:2px 8px 2px 8px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u74859_text {
  5408. border-width:0px;
  5409. word-wrap:break-word;
  5410. text-transform:none;
  5411. visibility:hidden;
  5412. }
  5413. #u74860_div {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:15px;
  5419. height:15px;
  5420. background:inherit;
  5421. background-color:rgba(51, 51, 51, 1);
  5422. border:none;
  5423. border-radius:8px;
  5424. -moz-box-shadow:none;
  5425. -webkit-box-shadow:none;
  5426. box-shadow:none;
  5427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5428. font-weight:400;
  5429. font-style:normal;
  5430. font-size:10px;
  5431. color:#FFFFFF;
  5432. }
  5433. #u74860 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:364px;
  5437. top:237px;
  5438. width:15px;
  5439. height:15px;
  5440. display:flex;
  5441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:10px;
  5445. color:#FFFFFF;
  5446. }
  5447. #u74860 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:0px 0px 0px 0px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u74860_text {
  5455. border-width:0px;
  5456. word-wrap:break-word;
  5457. text-transform:none;
  5458. }
  5459. #u74861_div {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:127px;
  5465. height:20px;
  5466. background:inherit;
  5467. background-color:rgba(51, 51, 51, 0);
  5468. border:none;
  5469. border-radius:4px;
  5470. -moz-box-shadow:none;
  5471. -webkit-box-shadow:none;
  5472. box-shadow:none;
  5473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:14px;
  5477. text-align:left;
  5478. }
  5479. #u74861 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:385px;
  5483. top:234px;
  5484. width:127px;
  5485. height:20px;
  5486. display:flex;
  5487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:14px;
  5491. text-align:left;
  5492. }
  5493. #u74861 .text {
  5494. position:absolute;
  5495. align-self:center;
  5496. padding:0px 0px 0px 0px;
  5497. box-sizing:border-box;
  5498. width:100%;
  5499. }
  5500. #u74861_text {
  5501. border-width:0px;
  5502. white-space:nowrap;
  5503. text-transform:none;
  5504. }
  5505. #u74862 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:0px;
  5511. height:0px;
  5512. }
  5513. #u74863_div {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:300px;
  5519. height:50px;
  5520. background:inherit;
  5521. background-color:rgba(242, 242, 242, 1);
  5522. border:none;
  5523. border-radius:4px;
  5524. -moz-box-shadow:none;
  5525. -webkit-box-shadow:none;
  5526. box-shadow:none;
  5527. font-family:'Microsoft YaHei', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:14px;
  5531. color:#CCCCCC;
  5532. text-align:left;
  5533. }
  5534. #u74863 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:351px;
  5538. top:269px;
  5539. width:300px;
  5540. height:50px;
  5541. display:flex;
  5542. font-family:'Microsoft YaHei', sans-serif;
  5543. font-weight:400;
  5544. font-style:normal;
  5545. font-size:14px;
  5546. color:#CCCCCC;
  5547. text-align:left;
  5548. }
  5549. #u74863 .text {
  5550. position:absolute;
  5551. align-self:center;
  5552. padding:2px 8px 2px 8px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u74863_text {
  5557. border-width:0px;
  5558. word-wrap:break-word;
  5559. text-transform:none;
  5560. visibility:hidden;
  5561. }
  5562. #u74864_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:15px;
  5568. height:15px;
  5569. background:inherit;
  5570. background-color:rgba(51, 51, 51, 0);
  5571. box-sizing:border-box;
  5572. border-width:1px;
  5573. border-style:solid;
  5574. border-color:rgba(51, 51, 51, 1);
  5575. border-radius:8px;
  5576. -moz-box-shadow:none;
  5577. -webkit-box-shadow:none;
  5578. box-shadow:none;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:10px;
  5583. }
  5584. #u74864 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:384px;
  5588. top:287px;
  5589. width:15px;
  5590. height:15px;
  5591. display:flex;
  5592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:10px;
  5596. }
  5597. #u74864 .text {
  5598. position:absolute;
  5599. align-self:center;
  5600. padding:0px 0px 0px 0px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u74864_text {
  5605. border-width:0px;
  5606. word-wrap:break-word;
  5607. text-transform:none;
  5608. }
  5609. #u74865_div {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:155px;
  5615. height:20px;
  5616. background:inherit;
  5617. background-color:rgba(51, 51, 51, 0);
  5618. border:none;
  5619. border-radius:4px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:14px;
  5627. text-align:left;
  5628. }
  5629. #u74865 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:405px;
  5633. top:284px;
  5634. width:155px;
  5635. height:20px;
  5636. display:flex;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:14px;
  5641. text-align:left;
  5642. }
  5643. #u74865 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:0px 0px 0px 0px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u74865_text {
  5651. border-width:0px;
  5652. white-space:nowrap;
  5653. text-transform:none;
  5654. }
  5655. #u74866 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:0px;
  5661. height:0px;
  5662. }
  5663. #u74867_div {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:300px;
  5669. height:50px;
  5670. background:inherit;
  5671. background-color:rgba(242, 242, 242, 0.0980392156862745);
  5672. border:none;
  5673. border-radius:4px;
  5674. -moz-box-shadow:none;
  5675. -webkit-box-shadow:none;
  5676. box-shadow:none;
  5677. font-family:'Microsoft YaHei', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:14px;
  5681. color:#CCCCCC;
  5682. text-align:left;
  5683. }
  5684. #u74867 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:351px;
  5688. top:319px;
  5689. width:300px;
  5690. height:50px;
  5691. display:flex;
  5692. font-family:'Microsoft YaHei', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:14px;
  5696. color:#CCCCCC;
  5697. text-align:left;
  5698. }
  5699. #u74867 .text {
  5700. position:absolute;
  5701. align-self:center;
  5702. padding:2px 8px 2px 8px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u74867_text {
  5707. border-width:0px;
  5708. word-wrap:break-word;
  5709. text-transform:none;
  5710. visibility:hidden;
  5711. }
  5712. #u74868_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:15px;
  5718. height:15px;
  5719. background:inherit;
  5720. background-color:rgba(51, 51, 51, 1);
  5721. border:none;
  5722. border-radius:8px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:10px;
  5730. color:#FFFFFF;
  5731. }
  5732. #u74868 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:364px;
  5736. top:337px;
  5737. width:15px;
  5738. height:15px;
  5739. display:flex;
  5740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:10px;
  5744. color:#FFFFFF;
  5745. }
  5746. #u74868 .text {
  5747. position:absolute;
  5748. align-self:center;
  5749. padding:0px 0px 0px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u74868_text {
  5754. border-width:0px;
  5755. word-wrap:break-word;
  5756. text-transform:none;
  5757. }
  5758. #u74869_div {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:113px;
  5764. height:20px;
  5765. background:inherit;
  5766. background-color:rgba(51, 51, 51, 0);
  5767. border:none;
  5768. border-radius:4px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:14px;
  5776. text-align:left;
  5777. }
  5778. #u74869 {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:385px;
  5782. top:334px;
  5783. width:113px;
  5784. height:20px;
  5785. display:flex;
  5786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5787. font-weight:400;
  5788. font-style:normal;
  5789. font-size:14px;
  5790. text-align:left;
  5791. }
  5792. #u74869 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:0px 0px 0px 0px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u74869_text {
  5800. border-width:0px;
  5801. white-space:nowrap;
  5802. text-transform:none;
  5803. }
  5804. #u74870 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:0px;
  5810. height:0px;
  5811. }
  5812. #u74871_div {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:300px;
  5818. height:50px;
  5819. background:inherit;
  5820. background-color:rgba(242, 242, 242, 0.0980392156862745);
  5821. border:none;
  5822. border-radius:4px;
  5823. -moz-box-shadow:none;
  5824. -webkit-box-shadow:none;
  5825. box-shadow:none;
  5826. font-family:'Microsoft YaHei', sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:14px;
  5830. color:#CCCCCC;
  5831. text-align:left;
  5832. }
  5833. #u74871 {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:351px;
  5837. top:369px;
  5838. width:300px;
  5839. height:50px;
  5840. display:flex;
  5841. font-family:'Microsoft YaHei', sans-serif;
  5842. font-weight:400;
  5843. font-style:normal;
  5844. font-size:14px;
  5845. color:#CCCCCC;
  5846. text-align:left;
  5847. }
  5848. #u74871 .text {
  5849. position:absolute;
  5850. align-self:center;
  5851. padding:2px 8px 2px 8px;
  5852. box-sizing:border-box;
  5853. width:100%;
  5854. }
  5855. #u74871_text {
  5856. border-width:0px;
  5857. word-wrap:break-word;
  5858. text-transform:none;
  5859. visibility:hidden;
  5860. }
  5861. #u74872_div {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:15px;
  5867. height:15px;
  5868. background:inherit;
  5869. background-color:rgba(51, 51, 51, 1);
  5870. border:none;
  5871. border-radius:8px;
  5872. -moz-box-shadow:none;
  5873. -webkit-box-shadow:none;
  5874. box-shadow:none;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:10px;
  5879. color:#FFFFFF;
  5880. }
  5881. #u74872 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:364px;
  5885. top:387px;
  5886. width:15px;
  5887. height:15px;
  5888. display:flex;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:10px;
  5893. color:#FFFFFF;
  5894. }
  5895. #u74872 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:0px 0px 0px 0px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u74872_text {
  5903. border-width:0px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. }
  5907. #u74873_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:127px;
  5913. height:20px;
  5914. background:inherit;
  5915. background-color:rgba(51, 51, 51, 0);
  5916. border:none;
  5917. border-radius:4px;
  5918. -moz-box-shadow:none;
  5919. -webkit-box-shadow:none;
  5920. box-shadow:none;
  5921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5922. font-weight:400;
  5923. font-style:normal;
  5924. font-size:14px;
  5925. text-align:left;
  5926. }
  5927. #u74873 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:385px;
  5931. top:384px;
  5932. width:127px;
  5933. height:20px;
  5934. display:flex;
  5935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5936. font-weight:400;
  5937. font-style:normal;
  5938. font-size:14px;
  5939. text-align:left;
  5940. }
  5941. #u74873 .text {
  5942. position:absolute;
  5943. align-self:center;
  5944. padding:0px 0px 0px 0px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u74873_text {
  5949. border-width:0px;
  5950. white-space:nowrap;
  5951. text-transform:none;
  5952. }
  5953. #u74875 {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:0px;
  5959. height:0px;
  5960. }
  5961. #u74876_img {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:200px;
  5967. height:1191px;
  5968. }
  5969. #u74876 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:120px;
  5973. top:50px;
  5974. width:200px;
  5975. height:1191px;
  5976. display:flex;
  5977. }
  5978. #u74876 .text {
  5979. position:absolute;
  5980. align-self:center;
  5981. padding:2px 2px 2px 2px;
  5982. box-sizing:border-box;
  5983. width:100%;
  5984. }
  5985. #u74876_text {
  5986. border-width:0px;
  5987. word-wrap:break-word;
  5988. text-transform:none;
  5989. visibility:hidden;
  5990. }
  5991. #u74877_div {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:200px;
  5997. height:60px;
  5998. background:inherit;
  5999. background-color:rgba(224, 231, 247, 1);
  6000. border:none;
  6001. border-radius:0px;
  6002. -moz-box-shadow:none;
  6003. -webkit-box-shadow:none;
  6004. box-shadow:none;
  6005. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6006. font-weight:500;
  6007. font-style:normal;
  6008. font-size:18px;
  6009. }
  6010. #u74877 {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:120px;
  6014. top:50px;
  6015. width:200px;
  6016. height:60px;
  6017. display:flex;
  6018. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6019. font-weight:500;
  6020. font-style:normal;
  6021. font-size:18px;
  6022. }
  6023. #u74877 .text {
  6024. position:absolute;
  6025. align-self:center;
  6026. padding:0px 0px 0px 20px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u74877_text {
  6031. border-width:0px;
  6032. word-wrap:break-word;
  6033. text-transform:none;
  6034. }
  6035. #u74878 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:120px;
  6039. top:130px;
  6040. width:200px;
  6041. height:1078px;
  6042. }
  6043. #u74878_state0 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:200px;
  6049. height:1078px;
  6050. overflow:auto;
  6051. -webkit-overflow-scrolling:touch;
  6052. -ms-overflow-x:hidden;
  6053. overflow-x:hidden;
  6054. background-image:none;
  6055. border:none;
  6056. border-radius:0px;
  6057. -moz-box-shadow:none;
  6058. -webkit-box-shadow:none;
  6059. box-shadow:none;
  6060. }
  6061. #u74878_state0_content {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:1px;
  6067. height:1px;
  6068. }
  6069. #u74879_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:97px;
  6075. height:22px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 0);
  6078. border:none;
  6079. border-radius:0px;
  6080. -moz-box-shadow:none;
  6081. -webkit-box-shadow:none;
  6082. box-shadow:none;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:16px;
  6087. }
  6088. #u74879 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:30px;
  6092. top:0px;
  6093. width:97px;
  6094. height:22px;
  6095. display:flex;
  6096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:16px;
  6100. }
  6101. #u74879 .text {
  6102. position:absolute;
  6103. align-self:flex-start;
  6104. padding:0px 0px 0px 0px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u74879_text {
  6109. border-width:0px;
  6110. word-wrap:break-word;
  6111. text-transform:none;
  6112. }
  6113. #u74880_div {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:65px;
  6119. height:22px;
  6120. background:inherit;
  6121. background-color:rgba(255, 255, 255, 0);
  6122. border:none;
  6123. border-radius:0px;
  6124. -moz-box-shadow:none;
  6125. -webkit-box-shadow:none;
  6126. box-shadow:none;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:16px;
  6131. }
  6132. #u74880 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:30px;
  6136. top:42px;
  6137. width:65px;
  6138. height:22px;
  6139. display:flex;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:16px;
  6144. }
  6145. #u74880 .text {
  6146. position:absolute;
  6147. align-self:flex-start;
  6148. padding:0px 0px 0px 0px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u74880_text {
  6153. border-width:0px;
  6154. white-space:nowrap;
  6155. text-transform:none;
  6156. }
  6157. #u74881_div {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:49px;
  6163. height:22px;
  6164. background:inherit;
  6165. background-color:rgba(255, 255, 255, 0);
  6166. border:none;
  6167. border-radius:0px;
  6168. -moz-box-shadow:none;
  6169. -webkit-box-shadow:none;
  6170. box-shadow:none;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:16px;
  6175. }
  6176. #u74881 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:30px;
  6180. top:145px;
  6181. width:49px;
  6182. height:22px;
  6183. display:flex;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:16px;
  6188. }
  6189. #u74881 .text {
  6190. position:absolute;
  6191. align-self:flex-start;
  6192. padding:0px 0px 0px 0px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u74881_text {
  6197. border-width:0px;
  6198. white-space:nowrap;
  6199. text-transform:none;
  6200. }
  6201. #u74882_div {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:97px;
  6207. height:22px;
  6208. background:inherit;
  6209. background-color:rgba(255, 255, 255, 0);
  6210. border:none;
  6211. border-radius:0px;
  6212. -moz-box-shadow:none;
  6213. -webkit-box-shadow:none;
  6214. box-shadow:none;
  6215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:16px;
  6219. }
  6220. #u74882 {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:30px;
  6224. top:187px;
  6225. width:97px;
  6226. height:22px;
  6227. display:flex;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:16px;
  6232. }
  6233. #u74882 .text {
  6234. position:absolute;
  6235. align-self:flex-start;
  6236. padding:0px 0px 0px 0px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u74882_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. }
  6245. #u74883_img {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:201px;
  6251. height:2px;
  6252. }
  6253. #u74883 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:84px;
  6258. width:200px;
  6259. height:1px;
  6260. display:flex;
  6261. }
  6262. #u74883 .text {
  6263. position:absolute;
  6264. align-self:center;
  6265. padding:2px 2px 2px 2px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u74883_text {
  6270. border-width:0px;
  6271. word-wrap:break-word;
  6272. text-transform:none;
  6273. visibility:hidden;
  6274. }
  6275. #u74884_div {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:49px;
  6281. height:17px;
  6282. background:inherit;
  6283. background-color:rgba(255, 255, 255, 0);
  6284. border:none;
  6285. border-radius:0px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:12px;
  6293. color:#AAAAAA;
  6294. }
  6295. #u74884 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:30px;
  6299. top:105px;
  6300. width:49px;
  6301. height:17px;
  6302. display:flex;
  6303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6304. font-weight:400;
  6305. font-style:normal;
  6306. font-size:12px;
  6307. color:#AAAAAA;
  6308. }
  6309. #u74884 .text {
  6310. position:absolute;
  6311. align-self:flex-start;
  6312. padding:0px 0px 0px 0px;
  6313. box-sizing:border-box;
  6314. width:100%;
  6315. }
  6316. #u74884_text {
  6317. border-width:0px;
  6318. white-space:nowrap;
  6319. text-transform:none;
  6320. }
  6321. #u74885_div {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:97px;
  6327. height:22px;
  6328. background:inherit;
  6329. background-color:rgba(255, 255, 255, 0);
  6330. border:none;
  6331. border-radius:0px;
  6332. -moz-box-shadow:none;
  6333. -webkit-box-shadow:none;
  6334. box-shadow:none;
  6335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:16px;
  6339. }
  6340. #u74885 {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:30px;
  6344. top:229px;
  6345. width:97px;
  6346. height:22px;
  6347. display:flex;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:16px;
  6352. }
  6353. #u74885 .text {
  6354. position:absolute;
  6355. align-self:flex-start;
  6356. padding:0px 0px 0px 0px;
  6357. box-sizing:border-box;
  6358. width:100%;
  6359. }
  6360. #u74885_text {
  6361. border-width:0px;
  6362. word-wrap:break-word;
  6363. text-transform:none;
  6364. }
  6365. #u74886_div {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:0px;
  6369. top:0px;
  6370. width:65px;
  6371. height:22px;
  6372. background:inherit;
  6373. background-color:rgba(255, 255, 255, 0);
  6374. border:none;
  6375. border-radius:0px;
  6376. -moz-box-shadow:none;
  6377. -webkit-box-shadow:none;
  6378. box-shadow:none;
  6379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6380. font-weight:400;
  6381. font-style:normal;
  6382. font-size:16px;
  6383. }
  6384. #u74886 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:30px;
  6388. top:271px;
  6389. width:65px;
  6390. height:22px;
  6391. display:flex;
  6392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:16px;
  6396. }
  6397. #u74886 .text {
  6398. position:absolute;
  6399. align-self:flex-start;
  6400. padding:0px 0px 0px 0px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u74886_text {
  6405. border-width:0px;
  6406. white-space:nowrap;
  6407. text-transform:none;
  6408. }
  6409. #u74887_img {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:201px;
  6415. height:2px;
  6416. }
  6417. #u74887 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:313px;
  6422. width:200px;
  6423. height:1px;
  6424. display:flex;
  6425. }
  6426. #u74887 .text {
  6427. position:absolute;
  6428. align-self:center;
  6429. padding:2px 2px 2px 2px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u74887_text {
  6434. border-width:0px;
  6435. word-wrap:break-word;
  6436. text-transform:none;
  6437. visibility:hidden;
  6438. }
  6439. #u74888_div {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:65px;
  6445. height:22px;
  6446. background:inherit;
  6447. background-color:rgba(255, 255, 255, 0);
  6448. border:none;
  6449. border-radius:0px;
  6450. -moz-box-shadow:none;
  6451. -webkit-box-shadow:none;
  6452. box-shadow:none;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:16px;
  6457. }
  6458. #u74888 {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:30px;
  6462. top:370px;
  6463. width:65px;
  6464. height:22px;
  6465. display:flex;
  6466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:16px;
  6470. }
  6471. #u74888 .text {
  6472. position:absolute;
  6473. align-self:flex-start;
  6474. padding:0px 0px 0px 0px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u74888_text {
  6479. border-width:0px;
  6480. white-space:nowrap;
  6481. text-transform:none;
  6482. }
  6483. #u74889_div {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:49px;
  6489. height:17px;
  6490. background:inherit;
  6491. background-color:rgba(255, 255, 255, 0);
  6492. border:none;
  6493. border-radius:0px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. color:#AAAAAA;
  6502. }
  6503. #u74889 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:30px;
  6507. top:334px;
  6508. width:49px;
  6509. height:17px;
  6510. display:flex;
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:12px;
  6515. color:#AAAAAA;
  6516. }
  6517. #u74889 .text {
  6518. position:absolute;
  6519. align-self:flex-start;
  6520. padding:0px 0px 0px 0px;
  6521. box-sizing:border-box;
  6522. width:100%;
  6523. }
  6524. #u74889_text {
  6525. border-width:0px;
  6526. white-space:nowrap;
  6527. text-transform:none;
  6528. }
  6529. #u74890_div {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:65px;
  6535. height:22px;
  6536. background:inherit;
  6537. background-color:rgba(255, 255, 255, 0);
  6538. border:none;
  6539. border-radius:0px;
  6540. -moz-box-shadow:none;
  6541. -webkit-box-shadow:none;
  6542. box-shadow:none;
  6543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6544. font-weight:400;
  6545. font-style:normal;
  6546. font-size:16px;
  6547. }
  6548. #u74890 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:30px;
  6552. top:412px;
  6553. width:65px;
  6554. height:22px;
  6555. display:flex;
  6556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6557. font-weight:400;
  6558. font-style:normal;
  6559. font-size:16px;
  6560. }
  6561. #u74890 .text {
  6562. position:absolute;
  6563. align-self:flex-start;
  6564. padding:0px 0px 0px 0px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u74890_text {
  6569. border-width:0px;
  6570. white-space:nowrap;
  6571. text-transform:none;
  6572. }
  6573. #u74891_div {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:65px;
  6579. height:22px;
  6580. background:inherit;
  6581. background-color:rgba(255, 255, 255, 0);
  6582. border:none;
  6583. border-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:16px;
  6591. }
  6592. #u74891 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:30px;
  6596. top:454px;
  6597. width:65px;
  6598. height:22px;
  6599. display:flex;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:16px;
  6604. }
  6605. #u74891 .text {
  6606. position:absolute;
  6607. align-self:flex-start;
  6608. padding:0px 0px 0px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u74891_text {
  6613. border-width:0px;
  6614. white-space:nowrap;
  6615. text-transform:none;
  6616. }
  6617. #u74892_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:65px;
  6623. height:22px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 0);
  6626. border:none;
  6627. border-radius:0px;
  6628. -moz-box-shadow:none;
  6629. -webkit-box-shadow:none;
  6630. box-shadow:none;
  6631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6632. font-weight:400;
  6633. font-style:normal;
  6634. font-size:16px;
  6635. }
  6636. #u74892 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:30px;
  6640. top:496px;
  6641. width:65px;
  6642. height:22px;
  6643. display:flex;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:16px;
  6648. }
  6649. #u74892 .text {
  6650. position:absolute;
  6651. align-self:flex-start;
  6652. padding:0px 0px 0px 0px;
  6653. box-sizing:border-box;
  6654. width:100%;
  6655. }
  6656. #u74892_text {
  6657. border-width:0px;
  6658. white-space:nowrap;
  6659. text-transform:none;
  6660. }
  6661. #u74893_div {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:65px;
  6667. height:22px;
  6668. background:inherit;
  6669. background-color:rgba(255, 255, 255, 0);
  6670. border:none;
  6671. border-radius:0px;
  6672. -moz-box-shadow:none;
  6673. -webkit-box-shadow:none;
  6674. box-shadow:none;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:16px;
  6679. }
  6680. #u74893 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:30px;
  6684. top:538px;
  6685. width:65px;
  6686. height:22px;
  6687. display:flex;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:16px;
  6692. }
  6693. #u74893 .text {
  6694. position:absolute;
  6695. align-self:flex-start;
  6696. padding:0px 0px 0px 0px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u74893_text {
  6701. border-width:0px;
  6702. white-space:nowrap;
  6703. text-transform:none;
  6704. }
  6705. #u74894_div {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:65px;
  6711. height:22px;
  6712. background:inherit;
  6713. background-color:rgba(255, 255, 255, 0);
  6714. border:none;
  6715. border-radius:0px;
  6716. -moz-box-shadow:none;
  6717. -webkit-box-shadow:none;
  6718. box-shadow:none;
  6719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6720. font-weight:400;
  6721. font-style:normal;
  6722. font-size:16px;
  6723. }
  6724. #u74894 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:30px;
  6728. top:580px;
  6729. width:65px;
  6730. height:22px;
  6731. display:flex;
  6732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:16px;
  6736. }
  6737. #u74894 .text {
  6738. position:absolute;
  6739. align-self:flex-start;
  6740. padding:0px 0px 0px 0px;
  6741. box-sizing:border-box;
  6742. width:100%;
  6743. }
  6744. #u74894_text {
  6745. border-width:0px;
  6746. white-space:nowrap;
  6747. text-transform:none;
  6748. }
  6749. #u74895_img {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:201px;
  6755. height:2px;
  6756. }
  6757. #u74895 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:1289px;
  6762. width:200px;
  6763. height:1px;
  6764. display:flex;
  6765. }
  6766. #u74895 .text {
  6767. position:absolute;
  6768. align-self:center;
  6769. padding:2px 2px 2px 2px;
  6770. box-sizing:border-box;
  6771. width:100%;
  6772. }
  6773. #u74895_text {
  6774. border-width:0px;
  6775. word-wrap:break-word;
  6776. text-transform:none;
  6777. visibility:hidden;
  6778. }
  6779. #u74896_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:65px;
  6785. height:22px;
  6786. background:inherit;
  6787. background-color:rgba(255, 255, 255, 0);
  6788. border:none;
  6789. border-radius:0px;
  6790. -moz-box-shadow:none;
  6791. -webkit-box-shadow:none;
  6792. box-shadow:none;
  6793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6794. font-weight:400;
  6795. font-style:normal;
  6796. font-size:16px;
  6797. }
  6798. #u74896 {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:30px;
  6802. top:1346px;
  6803. width:65px;
  6804. height:22px;
  6805. display:flex;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:16px;
  6810. }
  6811. #u74896 .text {
  6812. position:absolute;
  6813. align-self:flex-start;
  6814. padding:0px 0px 0px 0px;
  6815. box-sizing:border-box;
  6816. width:100%;
  6817. }
  6818. #u74896_text {
  6819. border-width:0px;
  6820. white-space:nowrap;
  6821. text-transform:none;
  6822. }
  6823. #u74897_div {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:49px;
  6829. height:17px;
  6830. background:inherit;
  6831. background-color:rgba(255, 255, 255, 0);
  6832. border:none;
  6833. border-radius:0px;
  6834. -moz-box-shadow:none;
  6835. -webkit-box-shadow:none;
  6836. box-shadow:none;
  6837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:12px;
  6841. color:#AAAAAA;
  6842. }
  6843. #u74897 {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:30px;
  6847. top:1310px;
  6848. width:49px;
  6849. height:17px;
  6850. display:flex;
  6851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6852. font-weight:400;
  6853. font-style:normal;
  6854. font-size:12px;
  6855. color:#AAAAAA;
  6856. }
  6857. #u74897 .text {
  6858. position:absolute;
  6859. align-self:flex-start;
  6860. padding:0px 0px 0px 0px;
  6861. box-sizing:border-box;
  6862. width:100%;
  6863. }
  6864. #u74897_text {
  6865. border-width:0px;
  6866. white-space:nowrap;
  6867. text-transform:none;
  6868. }
  6869. #u74898_div {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:65px;
  6875. height:22px;
  6876. background:inherit;
  6877. background-color:rgba(255, 255, 255, 0);
  6878. border:none;
  6879. border-radius:0px;
  6880. -moz-box-shadow:none;
  6881. -webkit-box-shadow:none;
  6882. box-shadow:none;
  6883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:16px;
  6887. }
  6888. #u74898 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:30px;
  6892. top:1388px;
  6893. width:65px;
  6894. height:22px;
  6895. display:flex;
  6896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:16px;
  6900. }
  6901. #u74898 .text {
  6902. position:absolute;
  6903. align-self:flex-start;
  6904. padding:0px 0px 0px 0px;
  6905. box-sizing:border-box;
  6906. width:100%;
  6907. }
  6908. #u74898_text {
  6909. border-width:0px;
  6910. white-space:nowrap;
  6911. text-transform:none;
  6912. }
  6913. #u74899_div {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:0px;
  6917. top:0px;
  6918. width:65px;
  6919. height:22px;
  6920. background:inherit;
  6921. background-color:rgba(255, 255, 255, 0);
  6922. border:none;
  6923. border-radius:0px;
  6924. -moz-box-shadow:none;
  6925. -webkit-box-shadow:none;
  6926. box-shadow:none;
  6927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. font-size:16px;
  6931. }
  6932. #u74899 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:30px;
  6936. top:1472px;
  6937. width:65px;
  6938. height:22px;
  6939. display:flex;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:16px;
  6944. }
  6945. #u74899 .text {
  6946. position:absolute;
  6947. align-self:flex-start;
  6948. padding:0px 0px 0px 0px;
  6949. box-sizing:border-box;
  6950. width:100%;
  6951. }
  6952. #u74899_text {
  6953. border-width:0px;
  6954. white-space:nowrap;
  6955. text-transform:none;
  6956. }
  6957. #u74900_img {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:201px;
  6963. height:2px;
  6964. }
  6965. #u74900 {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:1514px;
  6970. width:200px;
  6971. height:1px;
  6972. display:flex;
  6973. }
  6974. #u74900 .text {
  6975. position:absolute;
  6976. align-self:center;
  6977. padding:2px 2px 2px 2px;
  6978. box-sizing:border-box;
  6979. width:100%;
  6980. }
  6981. #u74900_text {
  6982. border-width:0px;
  6983. word-wrap:break-word;
  6984. text-transform:none;
  6985. visibility:hidden;
  6986. }
  6987. #u74901_div {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:0px;
  6991. top:0px;
  6992. width:49px;
  6993. height:22px;
  6994. background:inherit;
  6995. background-color:rgba(255, 255, 255, 0);
  6996. border:none;
  6997. border-radius:0px;
  6998. -moz-box-shadow:none;
  6999. -webkit-box-shadow:none;
  7000. box-shadow:none;
  7001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:16px;
  7005. }
  7006. #u74901 {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:30px;
  7010. top:1571px;
  7011. width:49px;
  7012. height:22px;
  7013. display:flex;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:16px;
  7018. }
  7019. #u74901 .text {
  7020. position:absolute;
  7021. align-self:flex-start;
  7022. padding:0px 0px 0px 0px;
  7023. box-sizing:border-box;
  7024. width:100%;
  7025. }
  7026. #u74901_text {
  7027. border-width:0px;
  7028. white-space:nowrap;
  7029. text-transform:none;
  7030. }
  7031. #u74902_div {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:49px;
  7037. height:17px;
  7038. background:inherit;
  7039. background-color:rgba(255, 255, 255, 0);
  7040. border:none;
  7041. border-radius:0px;
  7042. -moz-box-shadow:none;
  7043. -webkit-box-shadow:none;
  7044. box-shadow:none;
  7045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7046. font-weight:400;
  7047. font-style:normal;
  7048. font-size:12px;
  7049. color:#AAAAAA;
  7050. }
  7051. #u74902 {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:30px;
  7055. top:1535px;
  7056. width:49px;
  7057. height:17px;
  7058. display:flex;
  7059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7060. font-weight:400;
  7061. font-style:normal;
  7062. font-size:12px;
  7063. color:#AAAAAA;
  7064. }
  7065. #u74902 .text {
  7066. position:absolute;
  7067. align-self:flex-start;
  7068. padding:0px 0px 0px 0px;
  7069. box-sizing:border-box;
  7070. width:100%;
  7071. }
  7072. #u74902_text {
  7073. border-width:0px;
  7074. white-space:nowrap;
  7075. text-transform:none;
  7076. }
  7077. #u74903_div {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:49px;
  7083. height:22px;
  7084. background:inherit;
  7085. background-color:rgba(255, 255, 255, 0);
  7086. border:none;
  7087. border-radius:0px;
  7088. -moz-box-shadow:none;
  7089. -webkit-box-shadow:none;
  7090. box-shadow:none;
  7091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:16px;
  7095. }
  7096. #u74903 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:30px;
  7100. top:1613px;
  7101. width:49px;
  7102. height:22px;
  7103. display:flex;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:16px;
  7108. }
  7109. #u74903 .text {
  7110. position:absolute;
  7111. align-self:flex-start;
  7112. padding:0px 0px 0px 0px;
  7113. box-sizing:border-box;
  7114. width:100%;
  7115. }
  7116. #u74903_text {
  7117. border-width:0px;
  7118. white-space:nowrap;
  7119. text-transform:none;
  7120. }
  7121. #u74904_div {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:0px;
  7125. top:0px;
  7126. width:65px;
  7127. height:22px;
  7128. background:inherit;
  7129. background-color:rgba(255, 255, 255, 0);
  7130. border:none;
  7131. border-radius:0px;
  7132. -moz-box-shadow:none;
  7133. -webkit-box-shadow:none;
  7134. box-shadow:none;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:16px;
  7139. }
  7140. #u74904 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:30px;
  7144. top:1655px;
  7145. width:65px;
  7146. height:22px;
  7147. display:flex;
  7148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7149. font-weight:400;
  7150. font-style:normal;
  7151. font-size:16px;
  7152. }
  7153. #u74904 .text {
  7154. position:absolute;
  7155. align-self:flex-start;
  7156. padding:0px 0px 0px 0px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u74904_text {
  7161. border-width:0px;
  7162. white-space:nowrap;
  7163. text-transform:none;
  7164. }
  7165. #u74905_img {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:201px;
  7171. height:2px;
  7172. }
  7173. #u74905 {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:1697px;
  7178. width:200px;
  7179. height:1px;
  7180. display:flex;
  7181. }
  7182. #u74905 .text {
  7183. position:absolute;
  7184. align-self:center;
  7185. padding:2px 2px 2px 2px;
  7186. box-sizing:border-box;
  7187. width:100%;
  7188. }
  7189. #u74905_text {
  7190. border-width:0px;
  7191. word-wrap:break-word;
  7192. text-transform:none;
  7193. visibility:hidden;
  7194. }
  7195. #u74906_div {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:81px;
  7201. height:22px;
  7202. background:inherit;
  7203. background-color:rgba(255, 255, 255, 0);
  7204. border:none;
  7205. border-radius:0px;
  7206. -moz-box-shadow:none;
  7207. -webkit-box-shadow:none;
  7208. box-shadow:none;
  7209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:16px;
  7213. }
  7214. #u74906 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:30px;
  7218. top:1754px;
  7219. width:81px;
  7220. height:22px;
  7221. display:flex;
  7222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:16px;
  7226. }
  7227. #u74906 .text {
  7228. position:absolute;
  7229. align-self:flex-start;
  7230. padding:0px 0px 0px 0px;
  7231. box-sizing:border-box;
  7232. width:100%;
  7233. }
  7234. #u74906_text {
  7235. border-width:0px;
  7236. white-space:nowrap;
  7237. text-transform:none;
  7238. }
  7239. #u74907_div {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:49px;
  7245. height:17px;
  7246. background:inherit;
  7247. background-color:rgba(255, 255, 255, 0);
  7248. border:none;
  7249. border-radius:0px;
  7250. -moz-box-shadow:none;
  7251. -webkit-box-shadow:none;
  7252. box-shadow:none;
  7253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7254. font-weight:400;
  7255. font-style:normal;
  7256. font-size:12px;
  7257. color:#AAAAAA;
  7258. }
  7259. #u74907 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:30px;
  7263. top:1718px;
  7264. width:49px;
  7265. height:17px;
  7266. display:flex;
  7267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:12px;
  7271. color:#AAAAAA;
  7272. }
  7273. #u74907 .text {
  7274. position:absolute;
  7275. align-self:flex-start;
  7276. padding:0px 0px 0px 0px;
  7277. box-sizing:border-box;
  7278. width:100%;
  7279. }
  7280. #u74907_text {
  7281. border-width:0px;
  7282. white-space:nowrap;
  7283. text-transform:none;
  7284. }
  7285. #u74908_div {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:81px;
  7291. height:22px;
  7292. background:inherit;
  7293. background-color:rgba(255, 255, 255, 0);
  7294. border:none;
  7295. border-radius:0px;
  7296. -moz-box-shadow:none;
  7297. -webkit-box-shadow:none;
  7298. box-shadow:none;
  7299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:16px;
  7303. }
  7304. #u74908 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:30px;
  7308. top:1796px;
  7309. width:81px;
  7310. height:22px;
  7311. display:flex;
  7312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7313. font-weight:400;
  7314. font-style:normal;
  7315. font-size:16px;
  7316. }
  7317. #u74908 .text {
  7318. position:absolute;
  7319. align-self:flex-start;
  7320. padding:0px 0px 0px 0px;
  7321. box-sizing:border-box;
  7322. width:100%;
  7323. }
  7324. #u74908_text {
  7325. border-width:0px;
  7326. white-space:nowrap;
  7327. text-transform:none;
  7328. }
  7329. #u74909_div {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:81px;
  7335. height:22px;
  7336. background:inherit;
  7337. background-color:rgba(255, 255, 255, 0);
  7338. border:none;
  7339. border-radius:0px;
  7340. -moz-box-shadow:none;
  7341. -webkit-box-shadow:none;
  7342. box-shadow:none;
  7343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. font-size:16px;
  7347. }
  7348. #u74909 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:30px;
  7352. top:1838px;
  7353. width:81px;
  7354. height:22px;
  7355. display:flex;
  7356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:16px;
  7360. }
  7361. #u74909 .text {
  7362. position:absolute;
  7363. align-self:flex-start;
  7364. padding:0px 0px 0px 0px;
  7365. box-sizing:border-box;
  7366. width:100%;
  7367. }
  7368. #u74909_text {
  7369. border-width:0px;
  7370. white-space:nowrap;
  7371. text-transform:none;
  7372. }
  7373. #u74910_div {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:0px;
  7377. top:0px;
  7378. width:65px;
  7379. height:22px;
  7380. background:inherit;
  7381. background-color:rgba(255, 255, 255, 0);
  7382. border:none;
  7383. border-radius:0px;
  7384. -moz-box-shadow:none;
  7385. -webkit-box-shadow:none;
  7386. box-shadow:none;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:16px;
  7391. }
  7392. #u74910 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:30px;
  7396. top:1430px;
  7397. width:65px;
  7398. height:22px;
  7399. display:flex;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:16px;
  7404. }
  7405. #u74910 .text {
  7406. position:absolute;
  7407. align-self:flex-start;
  7408. padding:0px 0px 0px 0px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u74910_text {
  7413. border-width:0px;
  7414. white-space:nowrap;
  7415. text-transform:none;
  7416. }
  7417. #u74911_img {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:201px;
  7423. height:2px;
  7424. }
  7425. #u74911 {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:669px;
  7430. width:200px;
  7431. height:1px;
  7432. display:flex;
  7433. }
  7434. #u74911 .text {
  7435. position:absolute;
  7436. align-self:center;
  7437. padding:2px 2px 2px 2px;
  7438. box-sizing:border-box;
  7439. width:100%;
  7440. }
  7441. #u74911_text {
  7442. border-width:0px;
  7443. word-wrap:break-word;
  7444. text-transform:none;
  7445. visibility:hidden;
  7446. }
  7447. #u74912_div {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:0px;
  7451. top:0px;
  7452. width:65px;
  7453. height:22px;
  7454. background:inherit;
  7455. background-color:rgba(255, 255, 255, 0);
  7456. border:none;
  7457. border-radius:0px;
  7458. -moz-box-shadow:none;
  7459. -webkit-box-shadow:none;
  7460. box-shadow:none;
  7461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:16px;
  7465. }
  7466. #u74912 {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:30px;
  7470. top:726px;
  7471. width:65px;
  7472. height:22px;
  7473. display:flex;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:16px;
  7478. }
  7479. #u74912 .text {
  7480. position:absolute;
  7481. align-self:flex-start;
  7482. padding:0px 0px 0px 0px;
  7483. box-sizing:border-box;
  7484. width:100%;
  7485. }
  7486. #u74912_text {
  7487. border-width:0px;
  7488. white-space:nowrap;
  7489. text-transform:none;
  7490. }
  7491. #u74913_div {
  7492. border-width:0px;
  7493. position:absolute;
  7494. left:0px;
  7495. top:0px;
  7496. width:49px;
  7497. height:17px;
  7498. background:inherit;
  7499. background-color:rgba(255, 255, 255, 0);
  7500. border:none;
  7501. border-radius:0px;
  7502. -moz-box-shadow:none;
  7503. -webkit-box-shadow:none;
  7504. box-shadow:none;
  7505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7506. font-weight:400;
  7507. font-style:normal;
  7508. font-size:12px;
  7509. color:#AAAAAA;
  7510. }
  7511. #u74913 {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:30px;
  7515. top:690px;
  7516. width:49px;
  7517. height:17px;
  7518. display:flex;
  7519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7520. font-weight:400;
  7521. font-style:normal;
  7522. font-size:12px;
  7523. color:#AAAAAA;
  7524. }
  7525. #u74913 .text {
  7526. position:absolute;
  7527. align-self:flex-start;
  7528. padding:0px 0px 0px 0px;
  7529. box-sizing:border-box;
  7530. width:100%;
  7531. }
  7532. #u74913_text {
  7533. border-width:0px;
  7534. white-space:nowrap;
  7535. text-transform:none;
  7536. }
  7537. #u74914_div {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:0px;
  7541. top:0px;
  7542. width:65px;
  7543. height:22px;
  7544. background:inherit;
  7545. background-color:rgba(255, 255, 255, 0);
  7546. border:none;
  7547. border-radius:0px;
  7548. -moz-box-shadow:none;
  7549. -webkit-box-shadow:none;
  7550. box-shadow:none;
  7551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7552. font-weight:400;
  7553. font-style:normal;
  7554. font-size:16px;
  7555. }
  7556. #u74914 {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:30px;
  7560. top:768px;
  7561. width:65px;
  7562. height:22px;
  7563. display:flex;
  7564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7565. font-weight:400;
  7566. font-style:normal;
  7567. font-size:16px;
  7568. }
  7569. #u74914 .text {
  7570. position:absolute;
  7571. align-self:flex-start;
  7572. padding:0px 0px 0px 0px;
  7573. box-sizing:border-box;
  7574. width:100%;
  7575. }
  7576. #u74914_text {
  7577. border-width:0px;
  7578. white-space:nowrap;
  7579. text-transform:none;
  7580. }
  7581. #u74915_div {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:65px;
  7587. height:22px;
  7588. background:inherit;
  7589. background-color:rgba(255, 255, 255, 0);
  7590. border:none;
  7591. border-radius:0px;
  7592. -moz-box-shadow:none;
  7593. -webkit-box-shadow:none;
  7594. box-shadow:none;
  7595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:16px;
  7599. }
  7600. #u74915 {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:30px;
  7604. top:852px;
  7605. width:65px;
  7606. height:22px;
  7607. display:flex;
  7608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7609. font-weight:400;
  7610. font-style:normal;
  7611. font-size:16px;
  7612. }
  7613. #u74915 .text {
  7614. position:absolute;
  7615. align-self:flex-start;
  7616. padding:0px 0px 0px 0px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u74915_text {
  7621. border-width:0px;
  7622. white-space:nowrap;
  7623. text-transform:none;
  7624. }
  7625. #u74916_div {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:65px;
  7631. height:22px;
  7632. background:inherit;
  7633. background-color:rgba(255, 255, 255, 0);
  7634. border:none;
  7635. border-radius:0px;
  7636. -moz-box-shadow:none;
  7637. -webkit-box-shadow:none;
  7638. box-shadow:none;
  7639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7640. font-weight:400;
  7641. font-style:normal;
  7642. font-size:16px;
  7643. }
  7644. #u74916 {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:30px;
  7648. top:810px;
  7649. width:65px;
  7650. height:22px;
  7651. display:flex;
  7652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7653. font-weight:400;
  7654. font-style:normal;
  7655. font-size:16px;
  7656. }
  7657. #u74916 .text {
  7658. position:absolute;
  7659. align-self:flex-start;
  7660. padding:0px 0px 0px 0px;
  7661. box-sizing:border-box;
  7662. width:100%;
  7663. }
  7664. #u74916_text {
  7665. border-width:0px;
  7666. white-space:nowrap;
  7667. text-transform:none;
  7668. }
  7669. #u74917_div {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:0px;
  7673. top:0px;
  7674. width:65px;
  7675. height:22px;
  7676. background:inherit;
  7677. background-color:rgba(255, 255, 255, 0);
  7678. border:none;
  7679. border-radius:0px;
  7680. -moz-box-shadow:none;
  7681. -webkit-box-shadow:none;
  7682. box-shadow:none;
  7683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7684. font-weight:400;
  7685. font-style:normal;
  7686. font-size:16px;
  7687. }
  7688. #u74917 {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:30px;
  7692. top:894px;
  7693. width:65px;
  7694. height:22px;
  7695. display:flex;
  7696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7697. font-weight:400;
  7698. font-style:normal;
  7699. font-size:16px;
  7700. }
  7701. #u74917 .text {
  7702. position:absolute;
  7703. align-self:flex-start;
  7704. padding:0px 0px 0px 0px;
  7705. box-sizing:border-box;
  7706. width:100%;
  7707. }
  7708. #u74917_text {
  7709. border-width:0px;
  7710. white-space:nowrap;
  7711. text-transform:none;
  7712. }
  7713. #u74918_div {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:0px;
  7717. top:0px;
  7718. width:65px;
  7719. height:22px;
  7720. background:inherit;
  7721. background-color:rgba(255, 255, 255, 0);
  7722. border:none;
  7723. border-radius:0px;
  7724. -moz-box-shadow:none;
  7725. -webkit-box-shadow:none;
  7726. box-shadow:none;
  7727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:16px;
  7731. }
  7732. #u74918 {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:30px;
  7736. top:936px;
  7737. width:65px;
  7738. height:22px;
  7739. display:flex;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. font-size:16px;
  7744. }
  7745. #u74918 .text {
  7746. position:absolute;
  7747. align-self:flex-start;
  7748. padding:0px 0px 0px 0px;
  7749. box-sizing:border-box;
  7750. width:100%;
  7751. }
  7752. #u74918_text {
  7753. border-width:0px;
  7754. white-space:nowrap;
  7755. text-transform:none;
  7756. }
  7757. #u74919_img {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:0px;
  7761. top:0px;
  7762. width:201px;
  7763. height:2px;
  7764. }
  7765. #u74919 {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:1018px;
  7770. width:200px;
  7771. height:1px;
  7772. display:flex;
  7773. }
  7774. #u74919 .text {
  7775. position:absolute;
  7776. align-self:center;
  7777. padding:2px 2px 2px 2px;
  7778. box-sizing:border-box;
  7779. width:100%;
  7780. }
  7781. #u74919_text {
  7782. border-width:0px;
  7783. word-wrap:break-word;
  7784. text-transform:none;
  7785. visibility:hidden;
  7786. }
  7787. #u74920_div {
  7788. border-width:0px;
  7789. position:absolute;
  7790. left:0px;
  7791. top:0px;
  7792. width:65px;
  7793. height:22px;
  7794. background:inherit;
  7795. background-color:rgba(255, 255, 255, 0);
  7796. border:none;
  7797. border-radius:0px;
  7798. -moz-box-shadow:none;
  7799. -webkit-box-shadow:none;
  7800. box-shadow:none;
  7801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7802. font-weight:400;
  7803. font-style:normal;
  7804. font-size:16px;
  7805. }
  7806. #u74920 {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:30px;
  7810. top:1075px;
  7811. width:65px;
  7812. height:22px;
  7813. display:flex;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:16px;
  7818. }
  7819. #u74920 .text {
  7820. position:absolute;
  7821. align-self:flex-start;
  7822. padding:0px 0px 0px 0px;
  7823. box-sizing:border-box;
  7824. width:100%;
  7825. }
  7826. #u74920_text {
  7827. border-width:0px;
  7828. white-space:nowrap;
  7829. text-transform:none;
  7830. }
  7831. #u74921_div {
  7832. border-width:0px;
  7833. position:absolute;
  7834. left:0px;
  7835. top:0px;
  7836. width:49px;
  7837. height:17px;
  7838. background:inherit;
  7839. background-color:rgba(255, 255, 255, 0);
  7840. border:none;
  7841. border-radius:0px;
  7842. -moz-box-shadow:none;
  7843. -webkit-box-shadow:none;
  7844. box-shadow:none;
  7845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7846. font-weight:400;
  7847. font-style:normal;
  7848. font-size:12px;
  7849. color:#AAAAAA;
  7850. }
  7851. #u74921 {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:30px;
  7855. top:1039px;
  7856. width:49px;
  7857. height:17px;
  7858. display:flex;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:12px;
  7863. color:#AAAAAA;
  7864. }
  7865. #u74921 .text {
  7866. position:absolute;
  7867. align-self:flex-start;
  7868. padding:0px 0px 0px 0px;
  7869. box-sizing:border-box;
  7870. width:100%;
  7871. }
  7872. #u74921_text {
  7873. border-width:0px;
  7874. white-space:nowrap;
  7875. text-transform:none;
  7876. }
  7877. #u74922_div {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:0px;
  7881. top:0px;
  7882. width:65px;
  7883. height:22px;
  7884. background:inherit;
  7885. background-color:rgba(255, 255, 255, 0);
  7886. border:none;
  7887. border-radius:0px;
  7888. -moz-box-shadow:none;
  7889. -webkit-box-shadow:none;
  7890. box-shadow:none;
  7891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7892. font-weight:400;
  7893. font-style:normal;
  7894. font-size:16px;
  7895. }
  7896. #u74922 {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:30px;
  7900. top:1117px;
  7901. width:65px;
  7902. height:22px;
  7903. display:flex;
  7904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7905. font-weight:400;
  7906. font-style:normal;
  7907. font-size:16px;
  7908. }
  7909. #u74922 .text {
  7910. position:absolute;
  7911. align-self:flex-start;
  7912. padding:0px 0px 0px 0px;
  7913. box-sizing:border-box;
  7914. width:100%;
  7915. }
  7916. #u74922_text {
  7917. border-width:0px;
  7918. white-space:nowrap;
  7919. text-transform:none;
  7920. }
  7921. #u74923_div {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:65px;
  7927. height:22px;
  7928. background:inherit;
  7929. background-color:rgba(255, 255, 255, 0);
  7930. border:none;
  7931. border-radius:0px;
  7932. -moz-box-shadow:none;
  7933. -webkit-box-shadow:none;
  7934. box-shadow:none;
  7935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7936. font-weight:400;
  7937. font-style:normal;
  7938. font-size:16px;
  7939. }
  7940. #u74923 {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:30px;
  7944. top:1201px;
  7945. width:65px;
  7946. height:22px;
  7947. display:flex;
  7948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7949. font-weight:400;
  7950. font-style:normal;
  7951. font-size:16px;
  7952. }
  7953. #u74923 .text {
  7954. position:absolute;
  7955. align-self:flex-start;
  7956. padding:0px 0px 0px 0px;
  7957. box-sizing:border-box;
  7958. width:100%;
  7959. }
  7960. #u74923_text {
  7961. border-width:0px;
  7962. white-space:nowrap;
  7963. text-transform:none;
  7964. }
  7965. #u74924_div {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:65px;
  7971. height:22px;
  7972. background:inherit;
  7973. background-color:rgba(255, 255, 255, 0);
  7974. border:none;
  7975. border-radius:0px;
  7976. -moz-box-shadow:none;
  7977. -webkit-box-shadow:none;
  7978. box-shadow:none;
  7979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7980. font-weight:400;
  7981. font-style:normal;
  7982. font-size:16px;
  7983. }
  7984. #u74924 {
  7985. border-width:0px;
  7986. position:absolute;
  7987. left:30px;
  7988. top:1159px;
  7989. width:65px;
  7990. height:22px;
  7991. display:flex;
  7992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7993. font-weight:400;
  7994. font-style:normal;
  7995. font-size:16px;
  7996. }
  7997. #u74924 .text {
  7998. position:absolute;
  7999. align-self:flex-start;
  8000. padding:0px 0px 0px 0px;
  8001. box-sizing:border-box;
  8002. width:100%;
  8003. }
  8004. #u74924_text {
  8005. border-width:0px;
  8006. white-space:nowrap;
  8007. text-transform:none;
  8008. }
  8009. #u74925_div {
  8010. border-width:0px;
  8011. position:absolute;
  8012. left:0px;
  8013. top:0px;
  8014. width:65px;
  8015. height:22px;
  8016. background:inherit;
  8017. background-color:rgba(255, 255, 255, 0);
  8018. border:none;
  8019. border-radius:0px;
  8020. -moz-box-shadow:none;
  8021. -webkit-box-shadow:none;
  8022. box-shadow:none;
  8023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8024. font-weight:400;
  8025. font-style:normal;
  8026. font-size:16px;
  8027. }
  8028. #u74925 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:30px;
  8032. top:1243px;
  8033. width:65px;
  8034. height:22px;
  8035. display:flex;
  8036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:16px;
  8040. }
  8041. #u74925 .text {
  8042. position:absolute;
  8043. align-self:flex-start;
  8044. padding:0px 0px 0px 0px;
  8045. box-sizing:border-box;
  8046. width:100%;
  8047. }
  8048. #u74925_text {
  8049. border-width:0px;
  8050. white-space:nowrap;
  8051. text-transform:none;
  8052. }
  8053. #u74926_div {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:65px;
  8059. height:22px;
  8060. background:inherit;
  8061. background-color:rgba(255, 255, 255, 0);
  8062. border:none;
  8063. border-radius:0px;
  8064. -moz-box-shadow:none;
  8065. -webkit-box-shadow:none;
  8066. box-shadow:none;
  8067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:16px;
  8071. }
  8072. #u74926 {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:30px;
  8076. top:978px;
  8077. width:65px;
  8078. height:22px;
  8079. display:flex;
  8080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:16px;
  8084. }
  8085. #u74926 .text {
  8086. position:absolute;
  8087. align-self:flex-start;
  8088. padding:0px 0px 0px 0px;
  8089. box-sizing:border-box;
  8090. width:100%;
  8091. }
  8092. #u74926_text {
  8093. border-width:0px;
  8094. white-space:nowrap;
  8095. text-transform:none;
  8096. }
  8097. #u74927_div {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:0px;
  8101. top:0px;
  8102. width:65px;
  8103. height:22px;
  8104. background:inherit;
  8105. background-color:rgba(255, 255, 255, 0);
  8106. border:none;
  8107. border-radius:0px;
  8108. -moz-box-shadow:none;
  8109. -webkit-box-shadow:none;
  8110. box-shadow:none;
  8111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8112. font-weight:400;
  8113. font-style:normal;
  8114. font-size:16px;
  8115. }
  8116. #u74927 {
  8117. border-width:0px;
  8118. position:absolute;
  8119. left:30px;
  8120. top:622px;
  8121. width:65px;
  8122. height:22px;
  8123. display:flex;
  8124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8125. font-weight:400;
  8126. font-style:normal;
  8127. font-size:16px;
  8128. }
  8129. #u74927 .text {
  8130. position:absolute;
  8131. align-self:flex-start;
  8132. padding:0px 0px 0px 0px;
  8133. box-sizing:border-box;
  8134. width:100%;
  8135. }
  8136. #u74927_text {
  8137. border-width:0px;
  8138. white-space:nowrap;
  8139. text-transform:none;
  8140. }