styles.css 168 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2451px;
  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. #u84598_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. #u84598 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u84598 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u84598_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u84599_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. #u84599 {
  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. #u84599 .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. #u84599_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u84600_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. #u84600 {
  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. #u84600 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u84600_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u84601 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u84602_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u84602 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u84602 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u84602_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u84603_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. #u84603 {
  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. #u84603 .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. #u84603_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u84604_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. #u84604 {
  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. #u84604 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u84604_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u84605 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u84606_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. #u84606 {
  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. #u84606 .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. #u84606_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u84607_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u84607 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u84607 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u84607_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u84608 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u84609_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. #u84609 {
  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. #u84609 .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. #u84609_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u84610_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u84610 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u84610 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u84610_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u84611 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u84612_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. #u84612 {
  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. #u84612 .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. #u84612_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u84613_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u84613 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u84613 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u84613_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u84614 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u84615_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. #u84615 {
  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. #u84615 .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. #u84615_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u84616_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u84616 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u84616 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u84616_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u84617 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u84618_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. #u84618 {
  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. #u84618 .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. #u84618_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u84619_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u84619 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u84619 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u84619_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u84620 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u84621_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. #u84621 {
  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. #u84621 .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. #u84621_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u84622_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u84622 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u84622 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u84622_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u84623 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u84624_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. #u84624 {
  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. #u84624 .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. #u84624_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u84625_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u84625 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u84625 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u84625_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u84626 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u84627_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. #u84627 {
  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. #u84627 .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. #u84627_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u84628_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u84628 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u84628 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u84628_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u84629 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u84630_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. #u84630 {
  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. #u84630 .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. #u84630_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u84631_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u84631 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u84631 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u84631_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u84632_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. #u84632 {
  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. #u84632 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u84632_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u84633_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u84633 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u84633 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u84633_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u84634_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. #u84634 {
  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. #u84634 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u84634_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u84635_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u84635 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u84635 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u84635_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u84636 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u84637_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. #u84637 {
  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. #u84637 .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. #u84637_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u84638_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u84638 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u84638 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u84638_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u84639 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u84640_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. #u84640 {
  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. #u84640 .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. #u84640_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u84641_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u84641 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u84641 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u84641_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u84642 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u84643_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. #u84643_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. #u84643_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. #u84643 {
  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. #u84643 .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. #u84643_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. #u84643.disabled {
  1428. }
  1429. .u84643_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u84644_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u84644 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u84644 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u84644_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u84645_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. #u84645 {
  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. #u84645 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u84645_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u84646_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u84646 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u84646 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u84646_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u84647_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1262px;
  1544. height:1184px;
  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. #u84647 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1262px;
  1559. height:1184px;
  1560. display:flex;
  1561. }
  1562. #u84647 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u84647_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u84648 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:668px;
  1579. top:252px;
  1580. width:905px;
  1581. height:465px;
  1582. }
  1583. #u84649_img {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:138px;
  1589. height:41px;
  1590. }
  1591. #u84649 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:138px;
  1597. height:41px;
  1598. display:flex;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:12px;
  1603. color:#FFFFFF;
  1604. }
  1605. #u84649 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u84649_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. }
  1617. #u84650_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:158px;
  1623. height:41px;
  1624. }
  1625. #u84650 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:138px;
  1629. top:0px;
  1630. width:158px;
  1631. height:41px;
  1632. display:flex;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:12px;
  1637. color:#FFFFFF;
  1638. }
  1639. #u84650 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 2px 2px 0px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u84650_text {
  1647. border-width:0px;
  1648. word-wrap:break-word;
  1649. text-transform:none;
  1650. }
  1651. #u84651_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:158px;
  1657. height:41px;
  1658. }
  1659. #u84651 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:296px;
  1663. top:0px;
  1664. width:158px;
  1665. height:41px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. }
  1673. #u84651 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 0px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u84651_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. }
  1685. #u84652_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:138px;
  1691. height:41px;
  1692. }
  1693. #u84652 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:454px;
  1697. top:0px;
  1698. width:138px;
  1699. height:41px;
  1700. display:flex;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:12px;
  1705. color:#FFFFFF;
  1706. }
  1707. #u84652 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u84652_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u84653_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:158px;
  1725. height:41px;
  1726. }
  1727. #u84653 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:592px;
  1731. top:0px;
  1732. width:158px;
  1733. height:41px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:12px;
  1739. color:#FFFFFF;
  1740. }
  1741. #u84653 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 0px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u84653_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. }
  1753. #u84654_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:155px;
  1759. height:41px;
  1760. }
  1761. #u84654 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:750px;
  1765. top:0px;
  1766. width:155px;
  1767. height:41px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:12px;
  1773. color:#FFFFFF;
  1774. }
  1775. #u84654 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:2px 2px 2px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u84654_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. }
  1787. #u84655_img {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:138px;
  1793. height:39px;
  1794. }
  1795. #u84655 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:41px;
  1800. width:138px;
  1801. height:39px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:12px;
  1807. }
  1808. #u84655 .text {
  1809. position:absolute;
  1810. align-self:center;
  1811. padding:2px 2px 2px 0px;
  1812. box-sizing:border-box;
  1813. width:100%;
  1814. }
  1815. #u84655_text {
  1816. border-width:0px;
  1817. word-wrap:break-word;
  1818. text-transform:none;
  1819. }
  1820. #u84656_img {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:158px;
  1826. height:39px;
  1827. }
  1828. #u84656 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:138px;
  1832. top:41px;
  1833. width:158px;
  1834. height:39px;
  1835. display:flex;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:12px;
  1840. }
  1841. #u84656 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u84656_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u84657_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:158px;
  1859. height:39px;
  1860. }
  1861. #u84657 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:296px;
  1865. top:41px;
  1866. width:158px;
  1867. height:39px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. }
  1874. #u84657 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 0px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u84657_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. }
  1886. #u84658_img {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:138px;
  1892. height:39px;
  1893. }
  1894. #u84658 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:454px;
  1898. top:41px;
  1899. width:138px;
  1900. height:39px;
  1901. display:flex;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:12px;
  1906. }
  1907. #u84658 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 0px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u84658_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. }
  1919. #u84659_img {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:158px;
  1925. height:39px;
  1926. }
  1927. #u84659 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:592px;
  1931. top:41px;
  1932. width:158px;
  1933. height:39px;
  1934. display:flex;
  1935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1936. font-weight:400;
  1937. font-style:normal;
  1938. font-size:12px;
  1939. }
  1940. #u84659 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u84659_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u84660_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:155px;
  1958. height:39px;
  1959. }
  1960. #u84660 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:750px;
  1964. top:41px;
  1965. width:155px;
  1966. height:39px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. color:#1890FF;
  1973. }
  1974. #u84660 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u84660_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u84661_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:138px;
  1992. height:35px;
  1993. }
  1994. #u84661 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:80px;
  1999. width:138px;
  2000. height:35px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:12px;
  2006. }
  2007. #u84661 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u84661_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u84662_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:158px;
  2025. height:35px;
  2026. }
  2027. #u84662 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:138px;
  2031. top:80px;
  2032. width:158px;
  2033. height:35px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:12px;
  2039. }
  2040. #u84662 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 0px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u84662_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u84663_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:158px;
  2058. height:35px;
  2059. }
  2060. #u84663 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:296px;
  2064. top:80px;
  2065. width:158px;
  2066. height:35px;
  2067. display:flex;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:12px;
  2072. }
  2073. #u84663 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 0px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u84663_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. }
  2085. #u84664_img {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:138px;
  2091. height:35px;
  2092. }
  2093. #u84664 {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:454px;
  2097. top:80px;
  2098. width:138px;
  2099. height:35px;
  2100. display:flex;
  2101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2102. font-weight:400;
  2103. font-style:normal;
  2104. font-size:12px;
  2105. }
  2106. #u84664 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:2px 2px 2px 0px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u84664_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. }
  2118. #u84665_img {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:158px;
  2124. height:35px;
  2125. }
  2126. #u84665 {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:592px;
  2130. top:80px;
  2131. width:158px;
  2132. height:35px;
  2133. display:flex;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:12px;
  2138. }
  2139. #u84665 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u84665_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. }
  2151. #u84666_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:155px;
  2157. height:35px;
  2158. }
  2159. #u84666 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:750px;
  2163. top:80px;
  2164. width:155px;
  2165. height:35px;
  2166. display:flex;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. color:#1890FF;
  2172. }
  2173. #u84666 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u84666_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u84667_img {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:138px;
  2191. height:35px;
  2192. }
  2193. #u84667 {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:115px;
  2198. width:138px;
  2199. height:35px;
  2200. display:flex;
  2201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:12px;
  2205. }
  2206. #u84667 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 0px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u84667_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. }
  2218. #u84668_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:158px;
  2224. height:35px;
  2225. }
  2226. #u84668 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:138px;
  2230. top:115px;
  2231. width:158px;
  2232. height:35px;
  2233. display:flex;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. }
  2239. #u84668 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 0px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u84668_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. }
  2251. #u84669_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:158px;
  2257. height:35px;
  2258. }
  2259. #u84669 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:296px;
  2263. top:115px;
  2264. width:158px;
  2265. height:35px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:12px;
  2271. }
  2272. #u84669 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 0px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u84669_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. }
  2284. #u84670_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:138px;
  2290. height:35px;
  2291. }
  2292. #u84670 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:454px;
  2296. top:115px;
  2297. width:138px;
  2298. height:35px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. }
  2305. #u84670 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u84670_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. }
  2317. #u84671_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:158px;
  2323. height:35px;
  2324. }
  2325. #u84671 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:592px;
  2329. top:115px;
  2330. width:158px;
  2331. height:35px;
  2332. display:flex;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:12px;
  2337. }
  2338. #u84671 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u84671_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. }
  2350. #u84672_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:155px;
  2356. height:35px;
  2357. }
  2358. #u84672 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:750px;
  2362. top:115px;
  2363. width:155px;
  2364. height:35px;
  2365. display:flex;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:12px;
  2370. color:#1890FF;
  2371. }
  2372. #u84672 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u84672_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. }
  2384. #u84673_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:138px;
  2390. height:34px;
  2391. }
  2392. #u84673 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:150px;
  2397. width:138px;
  2398. height:34px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:12px;
  2404. }
  2405. #u84673 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 2px 2px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u84673_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. }
  2417. #u84674_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:158px;
  2423. height:34px;
  2424. }
  2425. #u84674 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:138px;
  2429. top:150px;
  2430. width:158px;
  2431. height:34px;
  2432. display:flex;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:12px;
  2437. }
  2438. #u84674 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u84674_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. }
  2450. #u84675_img {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:158px;
  2456. height:34px;
  2457. }
  2458. #u84675 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:296px;
  2462. top:150px;
  2463. width:158px;
  2464. height:34px;
  2465. display:flex;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:12px;
  2470. }
  2471. #u84675 .text {
  2472. position:absolute;
  2473. align-self:center;
  2474. padding:2px 2px 2px 0px;
  2475. box-sizing:border-box;
  2476. width:100%;
  2477. }
  2478. #u84675_text {
  2479. border-width:0px;
  2480. word-wrap:break-word;
  2481. text-transform:none;
  2482. }
  2483. #u84676_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:138px;
  2489. height:34px;
  2490. }
  2491. #u84676 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:454px;
  2495. top:150px;
  2496. width:138px;
  2497. height:34px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. }
  2504. #u84676 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 0px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u84676_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. }
  2516. #u84677_img {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:158px;
  2522. height:34px;
  2523. }
  2524. #u84677 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:592px;
  2528. top:150px;
  2529. width:158px;
  2530. height:34px;
  2531. display:flex;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:12px;
  2536. }
  2537. #u84677 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u84677_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. }
  2549. #u84678_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:155px;
  2555. height:34px;
  2556. }
  2557. #u84678 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:750px;
  2561. top:150px;
  2562. width:155px;
  2563. height:34px;
  2564. display:flex;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:12px;
  2569. color:#1890FF;
  2570. }
  2571. #u84678 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u84678_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. }
  2583. #u84679_img {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:138px;
  2589. height:36px;
  2590. }
  2591. #u84679 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:184px;
  2596. width:138px;
  2597. height:36px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. }
  2604. #u84679 .text {
  2605. position:absolute;
  2606. align-self:center;
  2607. padding:2px 2px 2px 0px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u84679_text {
  2612. border-width:0px;
  2613. word-wrap:break-word;
  2614. text-transform:none;
  2615. visibility:hidden;
  2616. }
  2617. #u84680_img {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:158px;
  2623. height:36px;
  2624. }
  2625. #u84680 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:138px;
  2629. top:184px;
  2630. width:158px;
  2631. height:36px;
  2632. display:flex;
  2633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:12px;
  2637. }
  2638. #u84680 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u84680_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u84681_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:158px;
  2657. height:36px;
  2658. }
  2659. #u84681 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:296px;
  2663. top:184px;
  2664. width:158px;
  2665. height:36px;
  2666. display:flex;
  2667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2668. font-weight:400;
  2669. font-style:normal;
  2670. font-size:12px;
  2671. }
  2672. #u84681 .text {
  2673. position:absolute;
  2674. align-self:center;
  2675. padding:2px 2px 2px 0px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u84681_text {
  2680. border-width:0px;
  2681. word-wrap:break-word;
  2682. text-transform:none;
  2683. visibility:hidden;
  2684. }
  2685. #u84682_img {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:138px;
  2691. height:36px;
  2692. }
  2693. #u84682 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:454px;
  2697. top:184px;
  2698. width:138px;
  2699. height:36px;
  2700. display:flex;
  2701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:12px;
  2705. }
  2706. #u84682 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 2px 2px 0px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u84682_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. visibility:hidden;
  2718. }
  2719. #u84683_img {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:158px;
  2725. height:36px;
  2726. }
  2727. #u84683 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:592px;
  2731. top:184px;
  2732. width:158px;
  2733. height:36px;
  2734. display:flex;
  2735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. font-size:12px;
  2739. }
  2740. #u84683 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u84683_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. visibility:hidden;
  2752. }
  2753. #u84684_img {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:155px;
  2759. height:36px;
  2760. }
  2761. #u84684 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:750px;
  2765. top:184px;
  2766. width:155px;
  2767. height:36px;
  2768. display:flex;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:12px;
  2773. color:#1890FF;
  2774. }
  2775. #u84684 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 0px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u84684_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u84685_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:138px;
  2794. height:35px;
  2795. }
  2796. #u84685 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:220px;
  2801. width:138px;
  2802. height:35px;
  2803. display:flex;
  2804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:12px;
  2808. }
  2809. #u84685 .text {
  2810. position:absolute;
  2811. align-self:center;
  2812. padding:2px 2px 2px 0px;
  2813. box-sizing:border-box;
  2814. width:100%;
  2815. }
  2816. #u84685_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. visibility:hidden;
  2821. }
  2822. #u84686_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:158px;
  2828. height:35px;
  2829. }
  2830. #u84686 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:138px;
  2834. top:220px;
  2835. width:158px;
  2836. height:35px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. }
  2843. #u84686 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 2px 2px 0px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u84686_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u84687_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:158px;
  2862. height:35px;
  2863. }
  2864. #u84687 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:296px;
  2868. top:220px;
  2869. width:158px;
  2870. height:35px;
  2871. display:flex;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:12px;
  2876. }
  2877. #u84687 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 0px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u84687_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. visibility:hidden;
  2889. }
  2890. #u84688_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:138px;
  2896. height:35px;
  2897. }
  2898. #u84688 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:454px;
  2902. top:220px;
  2903. width:138px;
  2904. height:35px;
  2905. display:flex;
  2906. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:12px;
  2910. }
  2911. #u84688 .text {
  2912. position:absolute;
  2913. align-self:center;
  2914. padding:2px 2px 2px 0px;
  2915. box-sizing:border-box;
  2916. width:100%;
  2917. }
  2918. #u84688_text {
  2919. border-width:0px;
  2920. word-wrap:break-word;
  2921. text-transform:none;
  2922. visibility:hidden;
  2923. }
  2924. #u84689_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:158px;
  2930. height:35px;
  2931. }
  2932. #u84689 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:592px;
  2936. top:220px;
  2937. width:158px;
  2938. height:35px;
  2939. display:flex;
  2940. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:12px;
  2944. }
  2945. #u84689 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:2px 2px 2px 0px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u84689_text {
  2953. border-width:0px;
  2954. word-wrap:break-word;
  2955. text-transform:none;
  2956. visibility:hidden;
  2957. }
  2958. #u84690_img {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:155px;
  2964. height:35px;
  2965. }
  2966. #u84690 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:750px;
  2970. top:220px;
  2971. width:155px;
  2972. height:35px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#1890FF;
  2979. }
  2980. #u84690 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u84690_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. visibility:hidden;
  2992. }
  2993. #u84691_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:138px;
  2999. height:35px;
  3000. }
  3001. #u84691 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:255px;
  3006. width:138px;
  3007. height:35px;
  3008. display:flex;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:12px;
  3013. }
  3014. #u84691 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 0px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u84691_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. visibility:hidden;
  3026. }
  3027. #u84692_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:158px;
  3033. height:35px;
  3034. }
  3035. #u84692 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:138px;
  3039. top:255px;
  3040. width:158px;
  3041. height:35px;
  3042. display:flex;
  3043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:12px;
  3047. }
  3048. #u84692 .text {
  3049. position:absolute;
  3050. align-self:center;
  3051. padding:2px 2px 2px 0px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u84692_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. visibility:hidden;
  3060. }
  3061. #u84693_img {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:158px;
  3067. height:35px;
  3068. }
  3069. #u84693 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:296px;
  3073. top:255px;
  3074. width:158px;
  3075. height:35px;
  3076. display:flex;
  3077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3078. font-weight:400;
  3079. font-style:normal;
  3080. font-size:12px;
  3081. }
  3082. #u84693 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:2px 2px 2px 0px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u84693_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. visibility:hidden;
  3094. }
  3095. #u84694_img {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:138px;
  3101. height:35px;
  3102. }
  3103. #u84694 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:454px;
  3107. top:255px;
  3108. width:138px;
  3109. height:35px;
  3110. display:flex;
  3111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3112. font-weight:400;
  3113. font-style:normal;
  3114. font-size:12px;
  3115. }
  3116. #u84694 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 0px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u84694_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u84695_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:158px;
  3135. height:35px;
  3136. }
  3137. #u84695 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:592px;
  3141. top:255px;
  3142. width:158px;
  3143. height:35px;
  3144. display:flex;
  3145. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. }
  3150. #u84695 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 2px 2px 0px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u84695_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. visibility:hidden;
  3162. }
  3163. #u84696_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:155px;
  3169. height:35px;
  3170. }
  3171. #u84696 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:750px;
  3175. top:255px;
  3176. width:155px;
  3177. height:35px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:12px;
  3183. color:#1890FF;
  3184. }
  3185. #u84696 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u84696_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u84697_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:138px;
  3204. height:35px;
  3205. }
  3206. #u84697 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:290px;
  3211. width:138px;
  3212. height:35px;
  3213. display:flex;
  3214. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:12px;
  3218. color:#606266;
  3219. }
  3220. #u84697 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 0px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u84697_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u84698_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:158px;
  3239. height:35px;
  3240. }
  3241. #u84698 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:138px;
  3245. top:290px;
  3246. width:158px;
  3247. height:35px;
  3248. display:flex;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:12px;
  3253. }
  3254. #u84698 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 0px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u84698_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. visibility:hidden;
  3266. }
  3267. #u84699_img {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:158px;
  3273. height:35px;
  3274. }
  3275. #u84699 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:296px;
  3279. top:290px;
  3280. width:158px;
  3281. height:35px;
  3282. display:flex;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:12px;
  3287. }
  3288. #u84699 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u84699_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. visibility:hidden;
  3300. }
  3301. #u84700_img {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:138px;
  3307. height:35px;
  3308. }
  3309. #u84700 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:454px;
  3313. top:290px;
  3314. width:138px;
  3315. height:35px;
  3316. display:flex;
  3317. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:12px;
  3321. color:#606266;
  3322. }
  3323. #u84700 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 0px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u84700_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. visibility:hidden;
  3335. }
  3336. #u84701_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:158px;
  3342. height:35px;
  3343. }
  3344. #u84701 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:592px;
  3348. top:290px;
  3349. width:158px;
  3350. height:35px;
  3351. display:flex;
  3352. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:12px;
  3356. color:#606266;
  3357. }
  3358. #u84701 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 2px 2px 0px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u84701_text {
  3366. border-width:0px;
  3367. word-wrap:break-word;
  3368. text-transform:none;
  3369. visibility:hidden;
  3370. }
  3371. #u84702_img {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:155px;
  3377. height:35px;
  3378. }
  3379. #u84702 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:750px;
  3383. top:290px;
  3384. width:155px;
  3385. height:35px;
  3386. display:flex;
  3387. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3388. font-weight:400;
  3389. font-style:normal;
  3390. font-size:12px;
  3391. color:#606266;
  3392. }
  3393. #u84702 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 2px 2px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u84702_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. visibility:hidden;
  3405. }
  3406. #u84703_img {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:138px;
  3412. height:35px;
  3413. }
  3414. #u84703 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:325px;
  3419. width:138px;
  3420. height:35px;
  3421. display:flex;
  3422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:12px;
  3426. color:#606266;
  3427. }
  3428. #u84703 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 0px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u84703_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. visibility:hidden;
  3440. }
  3441. #u84704_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:158px;
  3447. height:35px;
  3448. }
  3449. #u84704 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:138px;
  3453. top:325px;
  3454. width:158px;
  3455. height:35px;
  3456. display:flex;
  3457. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:12px;
  3461. color:#606266;
  3462. }
  3463. #u84704 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 0px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u84704_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. visibility:hidden;
  3475. }
  3476. #u84705_img {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:158px;
  3482. height:35px;
  3483. }
  3484. #u84705 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:296px;
  3488. top:325px;
  3489. width:158px;
  3490. height:35px;
  3491. display:flex;
  3492. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:12px;
  3496. color:#606266;
  3497. }
  3498. #u84705 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 0px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u84705_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u84706_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:138px;
  3517. height:35px;
  3518. }
  3519. #u84706 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:454px;
  3523. top:325px;
  3524. width:138px;
  3525. height:35px;
  3526. display:flex;
  3527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. color:#606266;
  3532. }
  3533. #u84706 .text {
  3534. position:absolute;
  3535. align-self:center;
  3536. padding:2px 2px 2px 0px;
  3537. box-sizing:border-box;
  3538. width:100%;
  3539. }
  3540. #u84706_text {
  3541. border-width:0px;
  3542. word-wrap:break-word;
  3543. text-transform:none;
  3544. visibility:hidden;
  3545. }
  3546. #u84707_img {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:158px;
  3552. height:35px;
  3553. }
  3554. #u84707 {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:592px;
  3558. top:325px;
  3559. width:158px;
  3560. height:35px;
  3561. display:flex;
  3562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:12px;
  3566. color:#606266;
  3567. }
  3568. #u84707 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 2px 2px 0px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u84707_text {
  3576. border-width:0px;
  3577. word-wrap:break-word;
  3578. text-transform:none;
  3579. visibility:hidden;
  3580. }
  3581. #u84708_img {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:155px;
  3587. height:35px;
  3588. }
  3589. #u84708 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:750px;
  3593. top:325px;
  3594. width:155px;
  3595. height:35px;
  3596. display:flex;
  3597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3598. font-weight:400;
  3599. font-style:normal;
  3600. font-size:12px;
  3601. color:#606266;
  3602. }
  3603. #u84708 .text {
  3604. position:absolute;
  3605. align-self:center;
  3606. padding:2px 2px 2px 0px;
  3607. box-sizing:border-box;
  3608. width:100%;
  3609. }
  3610. #u84708_text {
  3611. border-width:0px;
  3612. word-wrap:break-word;
  3613. text-transform:none;
  3614. visibility:hidden;
  3615. }
  3616. #u84709_img {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:138px;
  3622. height:35px;
  3623. }
  3624. #u84709 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:360px;
  3629. width:138px;
  3630. height:35px;
  3631. display:flex;
  3632. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:12px;
  3636. color:#606266;
  3637. }
  3638. #u84709 .text {
  3639. position:absolute;
  3640. align-self:center;
  3641. padding:2px 2px 2px 0px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u84709_text {
  3646. border-width:0px;
  3647. word-wrap:break-word;
  3648. text-transform:none;
  3649. visibility:hidden;
  3650. }
  3651. #u84710_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:158px;
  3657. height:35px;
  3658. }
  3659. #u84710 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:138px;
  3663. top:360px;
  3664. width:158px;
  3665. height:35px;
  3666. display:flex;
  3667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:12px;
  3671. color:#606266;
  3672. }
  3673. #u84710 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 0px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u84710_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. visibility:hidden;
  3685. }
  3686. #u84711_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:158px;
  3692. height:35px;
  3693. }
  3694. #u84711 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:296px;
  3698. top:360px;
  3699. width:158px;
  3700. height:35px;
  3701. display:flex;
  3702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:12px;
  3706. color:#606266;
  3707. }
  3708. #u84711 .text {
  3709. position:absolute;
  3710. align-self:center;
  3711. padding:2px 2px 2px 0px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u84711_text {
  3716. border-width:0px;
  3717. word-wrap:break-word;
  3718. text-transform:none;
  3719. visibility:hidden;
  3720. }
  3721. #u84712_img {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:138px;
  3727. height:35px;
  3728. }
  3729. #u84712 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:454px;
  3733. top:360px;
  3734. width:138px;
  3735. height:35px;
  3736. display:flex;
  3737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3738. font-weight:400;
  3739. font-style:normal;
  3740. font-size:12px;
  3741. color:#606266;
  3742. }
  3743. #u84712 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 2px 2px 0px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u84712_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u84713_img {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:158px;
  3762. height:35px;
  3763. }
  3764. #u84713 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:592px;
  3768. top:360px;
  3769. width:158px;
  3770. height:35px;
  3771. display:flex;
  3772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:12px;
  3776. color:#606266;
  3777. }
  3778. #u84713 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 0px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u84713_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. visibility:hidden;
  3790. }
  3791. #u84714_img {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:155px;
  3797. height:35px;
  3798. }
  3799. #u84714 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:750px;
  3803. top:360px;
  3804. width:155px;
  3805. height:35px;
  3806. display:flex;
  3807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:12px;
  3811. color:#606266;
  3812. }
  3813. #u84714 .text {
  3814. position:absolute;
  3815. align-self:center;
  3816. padding:2px 2px 2px 0px;
  3817. box-sizing:border-box;
  3818. width:100%;
  3819. }
  3820. #u84714_text {
  3821. border-width:0px;
  3822. word-wrap:break-word;
  3823. text-transform:none;
  3824. visibility:hidden;
  3825. }
  3826. #u84715_img {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:0px;
  3830. top:0px;
  3831. width:138px;
  3832. height:35px;
  3833. }
  3834. #u84715 {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:395px;
  3839. width:138px;
  3840. height:35px;
  3841. display:flex;
  3842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. font-size:12px;
  3846. color:#606266;
  3847. }
  3848. #u84715 .text {
  3849. position:absolute;
  3850. align-self:center;
  3851. padding:2px 2px 2px 0px;
  3852. box-sizing:border-box;
  3853. width:100%;
  3854. }
  3855. #u84715_text {
  3856. border-width:0px;
  3857. word-wrap:break-word;
  3858. text-transform:none;
  3859. visibility:hidden;
  3860. }
  3861. #u84716_img {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:158px;
  3867. height:35px;
  3868. }
  3869. #u84716 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:138px;
  3873. top:395px;
  3874. width:158px;
  3875. height:35px;
  3876. display:flex;
  3877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:12px;
  3881. color:#606266;
  3882. }
  3883. #u84716 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:2px 2px 2px 0px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u84716_text {
  3891. border-width:0px;
  3892. word-wrap:break-word;
  3893. text-transform:none;
  3894. visibility:hidden;
  3895. }
  3896. #u84717_img {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:158px;
  3902. height:35px;
  3903. }
  3904. #u84717 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:296px;
  3908. top:395px;
  3909. width:158px;
  3910. height:35px;
  3911. display:flex;
  3912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:12px;
  3916. color:#606266;
  3917. }
  3918. #u84717 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 2px 2px 0px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u84717_text {
  3926. border-width:0px;
  3927. word-wrap:break-word;
  3928. text-transform:none;
  3929. visibility:hidden;
  3930. }
  3931. #u84718_img {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:138px;
  3937. height:35px;
  3938. }
  3939. #u84718 {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:454px;
  3943. top:395px;
  3944. width:138px;
  3945. height:35px;
  3946. display:flex;
  3947. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3948. font-weight:400;
  3949. font-style:normal;
  3950. font-size:12px;
  3951. color:#606266;
  3952. }
  3953. #u84718 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 0px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u84718_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u84719_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:158px;
  3972. height:35px;
  3973. }
  3974. #u84719 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:592px;
  3978. top:395px;
  3979. width:158px;
  3980. height:35px;
  3981. display:flex;
  3982. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:12px;
  3986. color:#606266;
  3987. }
  3988. #u84719 .text {
  3989. position:absolute;
  3990. align-self:center;
  3991. padding:2px 2px 2px 0px;
  3992. box-sizing:border-box;
  3993. width:100%;
  3994. }
  3995. #u84719_text {
  3996. border-width:0px;
  3997. word-wrap:break-word;
  3998. text-transform:none;
  3999. visibility:hidden;
  4000. }
  4001. #u84720_img {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:155px;
  4007. height:35px;
  4008. }
  4009. #u84720 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:750px;
  4013. top:395px;
  4014. width:155px;
  4015. height:35px;
  4016. display:flex;
  4017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4018. font-weight:400;
  4019. font-style:normal;
  4020. font-size:12px;
  4021. color:#606266;
  4022. }
  4023. #u84720 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 2px 2px 0px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u84720_text {
  4031. border-width:0px;
  4032. word-wrap:break-word;
  4033. text-transform:none;
  4034. visibility:hidden;
  4035. }
  4036. #u84721_img {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:0px;
  4041. width:138px;
  4042. height:35px;
  4043. }
  4044. #u84721 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:430px;
  4049. width:138px;
  4050. height:35px;
  4051. display:flex;
  4052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4053. font-weight:400;
  4054. font-style:normal;
  4055. font-size:12px;
  4056. color:#606266;
  4057. }
  4058. #u84721 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 0px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u84721_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u84722_img {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:158px;
  4077. height:35px;
  4078. }
  4079. #u84722 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:138px;
  4083. top:430px;
  4084. width:158px;
  4085. height:35px;
  4086. display:flex;
  4087. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:12px;
  4091. color:#606266;
  4092. }
  4093. #u84722 .text {
  4094. position:absolute;
  4095. align-self:center;
  4096. padding:2px 2px 2px 0px;
  4097. box-sizing:border-box;
  4098. width:100%;
  4099. }
  4100. #u84722_text {
  4101. border-width:0px;
  4102. word-wrap:break-word;
  4103. text-transform:none;
  4104. visibility:hidden;
  4105. }
  4106. #u84723_img {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:158px;
  4112. height:35px;
  4113. }
  4114. #u84723 {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:296px;
  4118. top:430px;
  4119. width:158px;
  4120. height:35px;
  4121. display:flex;
  4122. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:12px;
  4126. color:#606266;
  4127. }
  4128. #u84723 .text {
  4129. position:absolute;
  4130. align-self:center;
  4131. padding:2px 2px 2px 0px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u84723_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. visibility:hidden;
  4140. }
  4141. #u84724_img {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:138px;
  4147. height:35px;
  4148. }
  4149. #u84724 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:454px;
  4153. top:430px;
  4154. width:138px;
  4155. height:35px;
  4156. display:flex;
  4157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:12px;
  4161. color:#606266;
  4162. }
  4163. #u84724 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 0px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u84724_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u84725_img {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:158px;
  4182. height:35px;
  4183. }
  4184. #u84725 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:592px;
  4188. top:430px;
  4189. width:158px;
  4190. height:35px;
  4191. display:flex;
  4192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:12px;
  4196. color:#606266;
  4197. }
  4198. #u84725 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 0px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u84725_text {
  4206. border-width:0px;
  4207. word-wrap:break-word;
  4208. text-transform:none;
  4209. visibility:hidden;
  4210. }
  4211. #u84726_img {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:155px;
  4217. height:35px;
  4218. }
  4219. #u84726 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:750px;
  4223. top:430px;
  4224. width:155px;
  4225. height:35px;
  4226. display:flex;
  4227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:12px;
  4231. color:#606266;
  4232. }
  4233. #u84726 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 0px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u84726_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u84727_div {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:59px;
  4252. height:30px;
  4253. background:inherit;
  4254. background-color:rgba(41, 143, 255, 1);
  4255. border:none;
  4256. border-radius:4px;
  4257. -moz-box-shadow:none;
  4258. -webkit-box-shadow:none;
  4259. box-shadow:none;
  4260. font-family:'Microsoft YaHei', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:14px;
  4264. color:#FFFFFF;
  4265. }
  4266. #u84727 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:1128px;
  4270. top:162px;
  4271. width:59px;
  4272. height:30px;
  4273. display:flex;
  4274. font-family:'Microsoft YaHei', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:14px;
  4278. color:#FFFFFF;
  4279. }
  4280. #u84727 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:5px 15px 5px 15px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u84727_text {
  4288. border-width:0px;
  4289. white-space:nowrap;
  4290. text-transform:none;
  4291. }
  4292. #u84728_div {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:55px;
  4298. height:30px;
  4299. background:inherit;
  4300. background-color:rgba(255, 255, 255, 1);
  4301. box-sizing:border-box;
  4302. border-width:1px;
  4303. border-style:solid;
  4304. border-color:rgba(170, 170, 170, 1);
  4305. border-radius:4px;
  4306. -moz-box-shadow:none;
  4307. -webkit-box-shadow:none;
  4308. box-shadow:none;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:12px;
  4313. color:#555555;
  4314. }
  4315. #u84728 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:1197px;
  4319. top:162px;
  4320. width:55px;
  4321. height:30px;
  4322. display:flex;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:12px;
  4327. color:#555555;
  4328. }
  4329. #u84728 .text {
  4330. position:absolute;
  4331. align-self:center;
  4332. padding:5px 15px 5px 15px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u84728_text {
  4337. border-width:0px;
  4338. white-space:nowrap;
  4339. text-transform:none;
  4340. }
  4341. #u84729_div {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:80px;
  4347. height:30px;
  4348. background:inherit;
  4349. background-color:rgba(24, 144, 255, 1);
  4350. border:none;
  4351. border-radius:4px;
  4352. -moz-box-shadow:none;
  4353. -webkit-box-shadow:none;
  4354. box-shadow:none;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:12px;
  4359. color:#FFFFFF;
  4360. }
  4361. #u84729 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:538px;
  4365. top:150px;
  4366. width:80px;
  4367. height:30px;
  4368. display:flex;
  4369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:12px;
  4373. color:#FFFFFF;
  4374. }
  4375. #u84729 .text {
  4376. position:absolute;
  4377. align-self:center;
  4378. padding:5px 15px 5px 15px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u84729_text {
  4383. border-width:0px;
  4384. word-wrap:break-word;
  4385. text-transform:none;
  4386. }
  4387. #u84730 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:0px;
  4393. height:0px;
  4394. }
  4395. #u84731_div {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:140px;
  4401. height:30px;
  4402. background:inherit;
  4403. background-color:rgba(255, 255, 255, 1);
  4404. box-sizing:border-box;
  4405. border-width:1px;
  4406. border-style:solid;
  4407. border-color:rgba(215, 215, 215, 1);
  4408. border-radius:4px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. font-size:11px;
  4413. }
  4414. #u84731 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:968px;
  4418. top:162px;
  4419. width:140px;
  4420. height:30px;
  4421. display:flex;
  4422. font-size:11px;
  4423. }
  4424. #u84731 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 2px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u84731_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u84732_input {
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:120px;
  4442. height:23px;
  4443. padding:2px 2px 2px 2px;
  4444. font-family:'ArialMT', 'Arial', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:11px;
  4448. letter-spacing:normal;
  4449. color:#AAAAAA;
  4450. vertical-align:none;
  4451. text-align:left;
  4452. text-transform:none;
  4453. background-color:transparent;
  4454. border-color:transparent;
  4455. }
  4456. #u84732_input.disabled {
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:120px;
  4461. height:23px;
  4462. padding:2px 2px 2px 2px;
  4463. font-family:'ArialMT', 'Arial', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:11px;
  4467. letter-spacing:normal;
  4468. color:#AAAAAA;
  4469. vertical-align:none;
  4470. text-align:left;
  4471. text-transform:none;
  4472. background-color:transparent;
  4473. border-color:transparent;
  4474. }
  4475. #u84732_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:120px;
  4481. height:23px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 1);
  4484. border:none;
  4485. border-radius:0px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. font-size:11px;
  4490. color:#AAAAAA;
  4491. }
  4492. #u84732 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:975px;
  4496. top:164px;
  4497. width:120px;
  4498. height:23px;
  4499. display:flex;
  4500. font-size:11px;
  4501. color:#AAAAAA;
  4502. }
  4503. #u84732 .text {
  4504. position:absolute;
  4505. align-self:flex-start;
  4506. padding:2px 2px 2px 2px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u84732_div.disabled {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:120px;
  4516. height:23px;
  4517. background:inherit;
  4518. background-color:rgba(240, 240, 240, 1);
  4519. border:none;
  4520. border-radius:0px;
  4521. -moz-box-shadow:none;
  4522. -webkit-box-shadow:none;
  4523. box-shadow:none;
  4524. font-size:11px;
  4525. color:#AAAAAA;
  4526. }
  4527. #u84732.disabled {
  4528. }
  4529. .u84732_input_option {
  4530. font-size:11px;
  4531. }
  4532. #u84733_div {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:109px;
  4538. height:50px;
  4539. background:inherit;
  4540. background-color:rgba(255, 255, 255, 0);
  4541. border:none;
  4542. border-left:0px;
  4543. border-top:0px;
  4544. border-right:0px;
  4545. border-radius:0px;
  4546. border-bottom-right-radius:0px;
  4547. border-bottom-left-radius:0px;
  4548. -moz-box-shadow:none;
  4549. -webkit-box-shadow:none;
  4550. box-shadow:none;
  4551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:18px;
  4555. }
  4556. #u84733 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:349px;
  4560. top:50px;
  4561. width:109px;
  4562. height:50px;
  4563. display:flex;
  4564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4565. font-weight:400;
  4566. font-style:normal;
  4567. font-size:18px;
  4568. }
  4569. #u84733 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:0px 0px 0px 0px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u84733_text {
  4577. border-width:0px;
  4578. white-space:nowrap;
  4579. text-transform:none;
  4580. }
  4581. #u84734 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:0px;
  4587. height:0px;
  4588. }
  4589. #u84735_div {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:140px;
  4595. height:30px;
  4596. background:inherit;
  4597. background-color:rgba(255, 255, 255, 1);
  4598. box-sizing:border-box;
  4599. border-width:1px;
  4600. border-style:solid;
  4601. border-color:rgba(201, 201, 201, 1);
  4602. border-radius:4px;
  4603. -moz-box-shadow:none;
  4604. -webkit-box-shadow:none;
  4605. box-shadow:none;
  4606. font-family:'Microsoft YaHei', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:14px;
  4610. color:#CCCCCC;
  4611. text-align:left;
  4612. }
  4613. #u84735 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:668px;
  4617. top:162px;
  4618. width:140px;
  4619. height:30px;
  4620. display:flex;
  4621. font-family:'Microsoft YaHei', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:14px;
  4625. color:#CCCCCC;
  4626. text-align:left;
  4627. }
  4628. #u84735 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 8px 2px 8px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u84735_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u84736_input {
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:127px;
  4646. height:25px;
  4647. padding:2px 2px 2px 2px;
  4648. font-family:'Microsoft YaHei', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:10px;
  4652. letter-spacing:normal;
  4653. color:#000000;
  4654. vertical-align:none;
  4655. text-align:left;
  4656. text-transform:none;
  4657. background-color:transparent;
  4658. border-color:transparent;
  4659. }
  4660. #u84736_input.disabled {
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:127px;
  4665. height:25px;
  4666. padding:2px 2px 2px 2px;
  4667. font-family:'Microsoft YaHei', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:10px;
  4671. letter-spacing:normal;
  4672. color:#000000;
  4673. vertical-align:none;
  4674. text-align:left;
  4675. text-transform:none;
  4676. background-color:transparent;
  4677. border-color:transparent;
  4678. }
  4679. #u84736_div {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:127px;
  4685. height:25px;
  4686. background:inherit;
  4687. background-color:rgba(255, 255, 255, 1);
  4688. border:none;
  4689. border-radius:0px;
  4690. -moz-box-shadow:none;
  4691. -webkit-box-shadow:none;
  4692. box-shadow:none;
  4693. font-family:'Microsoft YaHei', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:10px;
  4697. }
  4698. #u84736 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:676px;
  4702. top:163px;
  4703. width:127px;
  4704. height:25px;
  4705. display:flex;
  4706. font-family:'Microsoft YaHei', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:10px;
  4710. }
  4711. #u84736 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:2px 2px 2px 2px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u84736_div.disabled {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:127px;
  4724. height:25px;
  4725. background:inherit;
  4726. background-color:rgba(240, 240, 240, 1);
  4727. border:none;
  4728. border-radius:0px;
  4729. -moz-box-shadow:none;
  4730. -webkit-box-shadow:none;
  4731. box-shadow:none;
  4732. font-family:'Microsoft YaHei', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:10px;
  4736. }
  4737. #u84736.disabled {
  4738. }
  4739. #u84737 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:0px;
  4745. height:0px;
  4746. }
  4747. #u84738_div {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:100px;
  4753. height:100px;
  4754. background:inherit;
  4755. background-color:rgba(255, 255, 255, 1);
  4756. border:none;
  4757. border-radius:4px;
  4758. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4759. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4760. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4761. }
  4762. #u84738 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:1403px;
  4766. top:427px;
  4767. width:100px;
  4768. height:100px;
  4769. display:flex;
  4770. }
  4771. #u84738 .text {
  4772. position:absolute;
  4773. align-self:center;
  4774. padding:2px 2px 2px 2px;
  4775. box-sizing:border-box;
  4776. width:100%;
  4777. }
  4778. #u84738_text {
  4779. border-width:0px;
  4780. word-wrap:break-word;
  4781. text-transform:none;
  4782. visibility:hidden;
  4783. }
  4784. #u84739_div {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:0px;
  4788. top:0px;
  4789. width:83px;
  4790. height:40px;
  4791. background:inherit;
  4792. background-color:rgba(255, 255, 255, 1);
  4793. box-sizing:border-box;
  4794. border-width:1px;
  4795. border-style:solid;
  4796. border-color:rgba(242, 242, 242, 1);
  4797. border-left:0px;
  4798. border-top:0px;
  4799. border-right:0px;
  4800. border-radius:4px;
  4801. border-bottom-right-radius:0px;
  4802. border-bottom-left-radius:0px;
  4803. -moz-box-shadow:none;
  4804. -webkit-box-shadow:none;
  4805. box-shadow:none;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:14px;
  4810. }
  4811. #u84739 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:1411px;
  4815. top:438px;
  4816. width:83px;
  4817. height:40px;
  4818. display:flex;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:14px;
  4823. }
  4824. #u84739 .text {
  4825. position:absolute;
  4826. align-self:center;
  4827. padding:5px 0px 5px 0px;
  4828. box-sizing:border-box;
  4829. width:100%;
  4830. }
  4831. #u84739_text {
  4832. border-width:0px;
  4833. word-wrap:break-word;
  4834. text-transform:none;
  4835. }
  4836. #u84740_div {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:83px;
  4842. height:40px;
  4843. background:inherit;
  4844. background-color:rgba(255, 255, 255, 1);
  4845. border:none;
  4846. border-left:0px;
  4847. border-top:0px;
  4848. border-right:0px;
  4849. border-radius:4px;
  4850. border-bottom-right-radius:0px;
  4851. border-bottom-left-radius:0px;
  4852. -moz-box-shadow:none;
  4853. -webkit-box-shadow:none;
  4854. box-shadow:none;
  4855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4856. font-weight:400;
  4857. font-style:normal;
  4858. font-size:14px;
  4859. }
  4860. #u84740 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:1411px;
  4864. top:478px;
  4865. width:83px;
  4866. height:40px;
  4867. display:flex;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:14px;
  4872. }
  4873. #u84740 .text {
  4874. position:absolute;
  4875. align-self:center;
  4876. padding:5px 0px 5px 0px;
  4877. box-sizing:border-box;
  4878. width:100%;
  4879. }
  4880. #u84740_text {
  4881. border-width:0px;
  4882. word-wrap:break-word;
  4883. text-transform:none;
  4884. }
  4885. #u84741_img {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:11px;
  4891. height:11px;
  4892. }
  4893. #u84741 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:1077px;
  4897. top:204px;
  4898. width:11px;
  4899. height:11px;
  4900. display:flex;
  4901. color:#FFFFFF;
  4902. }
  4903. #u84741 .text {
  4904. position:absolute;
  4905. align-self:center;
  4906. padding:2px 2px 2px 2px;
  4907. box-sizing:border-box;
  4908. width:100%;
  4909. }
  4910. #u84741_text {
  4911. border-width:0px;
  4912. word-wrap:break-word;
  4913. text-transform:none;
  4914. visibility:hidden;
  4915. }
  4916. #u84742_div {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:79px;
  4922. height:30px;
  4923. background:inherit;
  4924. background-color:rgba(25, 140, 251, 1);
  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:12px;
  4934. color:#FFFFFF;
  4935. }
  4936. #u84742 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:668px;
  4940. top:212px;
  4941. width:79px;
  4942. height:30px;
  4943. display:flex;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:12px;
  4948. color:#FFFFFF;
  4949. }
  4950. #u84742 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:5px 15px 5px 15px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u84742_text {
  4958. border-width:0px;
  4959. white-space:nowrap;
  4960. text-transform:none;
  4961. }
  4962. #u84743_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:300px;
  4968. height:1080px;
  4969. background:inherit;
  4970. background-color:rgba(242, 242, 242, 1);
  4971. border:none;
  4972. border-radius:4px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. }
  4977. #u84743 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:348px;
  4981. top:102px;
  4982. width:300px;
  4983. height:1080px;
  4984. display:flex;
  4985. }
  4986. #u84743 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:2px 2px 2px 2px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u84743_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. visibility:hidden;
  4998. }
  4999. #u84744_div {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:120px;
  5005. height:50px;
  5006. background:inherit;
  5007. background-color:rgba(255, 255, 255, 0);
  5008. border:none;
  5009. border-left:0px;
  5010. border-top:0px;
  5011. border-right:0px;
  5012. border-radius:0px;
  5013. border-bottom-right-radius:0px;
  5014. border-bottom-left-radius:0px;
  5015. -moz-box-shadow:none;
  5016. -webkit-box-shadow:none;
  5017. box-shadow:none;
  5018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:18px;
  5022. color:#000000;
  5023. line-height:40px;
  5024. }
  5025. #u84744 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:668px;
  5029. top:102px;
  5030. width:120px;
  5031. height:50px;
  5032. display:flex;
  5033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:18px;
  5037. color:#000000;
  5038. line-height:40px;
  5039. }
  5040. #u84744 .text {
  5041. position:absolute;
  5042. align-self:center;
  5043. padding:0px 0px 0px 0px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u84744_text {
  5048. border-width:0px;
  5049. white-space:nowrap;
  5050. text-transform:none;
  5051. }
  5052. #u84745 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:372px;
  5056. top:127px;
  5057. width:168px;
  5058. height:280px;
  5059. }
  5060. #u84745_children {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:0px;
  5066. height:0px;
  5067. }
  5068. #u84746 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:93px;
  5074. height:20px;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. }
  5079. #u84747_div {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:71px;
  5085. height:20px;
  5086. background:inherit;
  5087. background-color:rgba(255, 255, 255, 0);
  5088. border:none;
  5089. border-radius:0px;
  5090. -moz-box-shadow:none;
  5091. -webkit-box-shadow:none;
  5092. box-shadow:none;
  5093. }
  5094. #u84747 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:22px;
  5098. top:0px;
  5099. width:71px;
  5100. height:20px;
  5101. display:flex;
  5102. }
  5103. #u84747 .text {
  5104. position:absolute;
  5105. align-self:center;
  5106. padding:2px 2px 2px 3px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u84747_text {
  5111. border-width:0px;
  5112. white-space:nowrap;
  5113. text-transform:none;
  5114. }
  5115. #u84748 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:20px;
  5120. width:113px;
  5121. height:20px;
  5122. color:#298FFF;
  5123. }
  5124. #u84749_img {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:9px;
  5130. height:9px;
  5131. }
  5132. #u84749 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:6px;
  5136. top:6px;
  5137. width:9px;
  5138. height:9px;
  5139. display:flex;
  5140. }
  5141. #u84749 .text {
  5142. position:absolute;
  5143. align-self:center;
  5144. padding:2px 2px 2px 2px;
  5145. box-sizing:border-box;
  5146. width:100%;
  5147. }
  5148. #u84749_img.selected {
  5149. }
  5150. #u84749.selected {
  5151. }
  5152. #u84749_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. visibility:hidden;
  5157. }
  5158. #u84750_div {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:91px;
  5164. height:20px;
  5165. background:inherit;
  5166. background-color:rgba(255, 255, 255, 0);
  5167. border:none;
  5168. border-radius:0px;
  5169. -moz-box-shadow:none;
  5170. -webkit-box-shadow:none;
  5171. box-shadow:none;
  5172. }
  5173. #u84750 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:22px;
  5177. top:0px;
  5178. width:91px;
  5179. height:20px;
  5180. display:flex;
  5181. }
  5182. #u84750 .text {
  5183. position:absolute;
  5184. align-self:center;
  5185. padding:2px 2px 2px 3px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u84750_text {
  5190. border-width:0px;
  5191. white-space:nowrap;
  5192. text-transform:none;
  5193. }
  5194. #u84748_children {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:0px;
  5200. height:0px;
  5201. }
  5202. #u84751 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:20px;
  5206. top:20px;
  5207. width:148px;
  5208. height:20px;
  5209. }
  5210. #u84752_div {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:0px;
  5214. top:0px;
  5215. width:126px;
  5216. height:20px;
  5217. background:inherit;
  5218. background-color:rgba(255, 255, 255, 0);
  5219. border:none;
  5220. border-radius:0px;
  5221. -moz-box-shadow:none;
  5222. -webkit-box-shadow:none;
  5223. box-shadow:none;
  5224. }
  5225. #u84752 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:22px;
  5229. top:0px;
  5230. width:126px;
  5231. height:20px;
  5232. display:flex;
  5233. }
  5234. #u84752 .text {
  5235. position:absolute;
  5236. align-self:center;
  5237. padding:2px 2px 2px 3px;
  5238. box-sizing:border-box;
  5239. width:100%;
  5240. }
  5241. #u84752_text {
  5242. border-width:0px;
  5243. white-space:nowrap;
  5244. text-transform:none;
  5245. }
  5246. #u84753 {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:20px;
  5250. top:40px;
  5251. width:122px;
  5252. height:20px;
  5253. }
  5254. #u84754_div {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:100px;
  5260. height:20px;
  5261. background:inherit;
  5262. background-color:rgba(255, 255, 255, 0);
  5263. border:none;
  5264. border-radius:0px;
  5265. -moz-box-shadow:none;
  5266. -webkit-box-shadow:none;
  5267. box-shadow:none;
  5268. }
  5269. #u84754 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:22px;
  5273. top:0px;
  5274. width:100px;
  5275. height:20px;
  5276. display:flex;
  5277. }
  5278. #u84754 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 3px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u84754_text {
  5286. border-width:0px;
  5287. white-space:nowrap;
  5288. text-transform:none;
  5289. }
  5290. #u84755 {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:20px;
  5294. top:60px;
  5295. width:122px;
  5296. height:20px;
  5297. }
  5298. #u84756_div {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:100px;
  5304. height:20px;
  5305. background:inherit;
  5306. background-color:rgba(255, 255, 255, 0);
  5307. border:none;
  5308. border-radius:0px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. }
  5313. #u84756 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:22px;
  5317. top:0px;
  5318. width:100px;
  5319. height:20px;
  5320. display:flex;
  5321. }
  5322. #u84756 .text {
  5323. position:absolute;
  5324. align-self:center;
  5325. padding:2px 2px 2px 3px;
  5326. box-sizing:border-box;
  5327. width:100%;
  5328. }
  5329. #u84756_text {
  5330. border-width:0px;
  5331. white-space:nowrap;
  5332. text-transform:none;
  5333. }
  5334. #u84757 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:100px;
  5339. width:113px;
  5340. height:20px;
  5341. }
  5342. #u84758_img {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:9px;
  5348. height:9px;
  5349. }
  5350. #u84758 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:6px;
  5354. top:6px;
  5355. width:9px;
  5356. height:9px;
  5357. display:flex;
  5358. }
  5359. #u84758 .text {
  5360. position:absolute;
  5361. align-self:center;
  5362. padding:2px 2px 2px 2px;
  5363. box-sizing:border-box;
  5364. width:100%;
  5365. }
  5366. #u84758_img.selected {
  5367. }
  5368. #u84758.selected {
  5369. }
  5370. #u84758_text {
  5371. border-width:0px;
  5372. word-wrap:break-word;
  5373. text-transform:none;
  5374. visibility:hidden;
  5375. }
  5376. #u84759_div {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:91px;
  5382. height:20px;
  5383. background:inherit;
  5384. background-color:rgba(255, 255, 255, 0);
  5385. border:none;
  5386. border-radius:0px;
  5387. -moz-box-shadow:none;
  5388. -webkit-box-shadow:none;
  5389. box-shadow:none;
  5390. }
  5391. #u84759 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:22px;
  5395. top:0px;
  5396. width:91px;
  5397. height:20px;
  5398. display:flex;
  5399. }
  5400. #u84759 .text {
  5401. position:absolute;
  5402. align-self:center;
  5403. padding:2px 2px 2px 3px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u84759_text {
  5408. border-width:0px;
  5409. white-space:nowrap;
  5410. text-transform:none;
  5411. }
  5412. #u84757_children {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:0px;
  5418. height:0px;
  5419. }
  5420. #u84760 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:20px;
  5424. top:20px;
  5425. width:93px;
  5426. height:20px;
  5427. }
  5428. #u84761_div {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:71px;
  5434. height:20px;
  5435. background:inherit;
  5436. background-color:rgba(255, 255, 255, 0);
  5437. border:none;
  5438. border-radius:0px;
  5439. -moz-box-shadow:none;
  5440. -webkit-box-shadow:none;
  5441. box-shadow:none;
  5442. }
  5443. #u84761 {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:22px;
  5447. top:0px;
  5448. width:71px;
  5449. height:20px;
  5450. display:flex;
  5451. }
  5452. #u84761 .text {
  5453. position:absolute;
  5454. align-self:center;
  5455. padding:2px 2px 2px 3px;
  5456. box-sizing:border-box;
  5457. width:100%;
  5458. }
  5459. #u84761_text {
  5460. border-width:0px;
  5461. white-space:nowrap;
  5462. text-transform:none;
  5463. }
  5464. #u84762 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:20px;
  5468. top:40px;
  5469. width:93px;
  5470. height:20px;
  5471. }
  5472. #u84763_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:71px;
  5478. height:20px;
  5479. background:inherit;
  5480. background-color:rgba(255, 255, 255, 0);
  5481. border:none;
  5482. border-radius:0px;
  5483. -moz-box-shadow:none;
  5484. -webkit-box-shadow:none;
  5485. box-shadow:none;
  5486. }
  5487. #u84763 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:22px;
  5491. top:0px;
  5492. width:71px;
  5493. height:20px;
  5494. display:flex;
  5495. }
  5496. #u84763 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:2px 2px 2px 3px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u84763_text {
  5504. border-width:0px;
  5505. white-space:nowrap;
  5506. text-transform:none;
  5507. }
  5508. #u84764 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:160px;
  5513. width:80px;
  5514. height:20px;
  5515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. }
  5519. #u84765_img {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:9px;
  5525. height:9px;
  5526. }
  5527. #u84765 {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:6px;
  5531. top:6px;
  5532. width:9px;
  5533. height:9px;
  5534. display:flex;
  5535. }
  5536. #u84765 .text {
  5537. position:absolute;
  5538. align-self:center;
  5539. padding:2px 2px 2px 2px;
  5540. box-sizing:border-box;
  5541. width:100%;
  5542. }
  5543. #u84765_img.selected {
  5544. }
  5545. #u84765.selected {
  5546. }
  5547. #u84765_text {
  5548. border-width:0px;
  5549. word-wrap:break-word;
  5550. text-transform:none;
  5551. visibility:hidden;
  5552. }
  5553. #u84766_div {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:58px;
  5559. height:20px;
  5560. background:inherit;
  5561. background-color:rgba(255, 255, 255, 0);
  5562. border:none;
  5563. border-radius:0px;
  5564. -moz-box-shadow:none;
  5565. -webkit-box-shadow:none;
  5566. box-shadow:none;
  5567. }
  5568. #u84766 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:22px;
  5572. top:0px;
  5573. width:58px;
  5574. height:20px;
  5575. display:flex;
  5576. }
  5577. #u84766 .text {
  5578. position:absolute;
  5579. align-self:center;
  5580. padding:2px 2px 2px 3px;
  5581. box-sizing:border-box;
  5582. width:100%;
  5583. }
  5584. #u84766_text {
  5585. border-width:0px;
  5586. white-space:nowrap;
  5587. text-transform:none;
  5588. }
  5589. #u84764_children {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:0px;
  5593. top:0px;
  5594. width:0px;
  5595. height:0px;
  5596. }
  5597. #u84767 {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:20px;
  5601. top:20px;
  5602. width:97px;
  5603. height:20px;
  5604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5605. font-weight:400;
  5606. font-style:normal;
  5607. }
  5608. #u84768_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:75px;
  5614. height:20px;
  5615. background:inherit;
  5616. background-color:rgba(255, 255, 255, 0);
  5617. border:none;
  5618. border-radius:0px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. }
  5623. #u84768 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:22px;
  5627. top:0px;
  5628. width:75px;
  5629. height:20px;
  5630. display:flex;
  5631. }
  5632. #u84768 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 3px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u84768_text {
  5640. border-width:0px;
  5641. white-space:nowrap;
  5642. text-transform:none;
  5643. }
  5644. #u84769 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:20px;
  5648. top:40px;
  5649. width:97px;
  5650. height:20px;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. }
  5655. #u84770_div {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:75px;
  5661. height:20px;
  5662. background:inherit;
  5663. background-color:rgba(255, 255, 255, 0);
  5664. border:none;
  5665. border-radius:0px;
  5666. -moz-box-shadow:none;
  5667. -webkit-box-shadow:none;
  5668. box-shadow:none;
  5669. }
  5670. #u84770 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:22px;
  5674. top:0px;
  5675. width:75px;
  5676. height:20px;
  5677. display:flex;
  5678. }
  5679. #u84770 .text {
  5680. position:absolute;
  5681. align-self:center;
  5682. padding:2px 2px 2px 3px;
  5683. box-sizing:border-box;
  5684. width:100%;
  5685. }
  5686. #u84770_text {
  5687. border-width:0px;
  5688. white-space:nowrap;
  5689. text-transform:none;
  5690. }
  5691. #u84771 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:220px;
  5696. width:80px;
  5697. height:20px;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. }
  5702. #u84772_img {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:9px;
  5708. height:9px;
  5709. }
  5710. #u84772 {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:6px;
  5714. top:6px;
  5715. width:9px;
  5716. height:9px;
  5717. display:flex;
  5718. }
  5719. #u84772 .text {
  5720. position:absolute;
  5721. align-self:center;
  5722. padding:2px 2px 2px 2px;
  5723. box-sizing:border-box;
  5724. width:100%;
  5725. }
  5726. #u84772_img.selected {
  5727. }
  5728. #u84772.selected {
  5729. }
  5730. #u84772_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u84773_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:58px;
  5742. height:20px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 0);
  5745. border:none;
  5746. border-radius:0px;
  5747. -moz-box-shadow:none;
  5748. -webkit-box-shadow:none;
  5749. box-shadow:none;
  5750. }
  5751. #u84773 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:22px;
  5755. top:0px;
  5756. width:58px;
  5757. height:20px;
  5758. display:flex;
  5759. }
  5760. #u84773 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 3px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u84773_text {
  5768. border-width:0px;
  5769. white-space:nowrap;
  5770. text-transform:none;
  5771. }
  5772. #u84771_children {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:0px;
  5778. height:0px;
  5779. }
  5780. #u84774 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:20px;
  5784. top:20px;
  5785. width:97px;
  5786. height:20px;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. }
  5791. #u84775_div {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:75px;
  5797. height:20px;
  5798. background:inherit;
  5799. background-color:rgba(255, 255, 255, 0);
  5800. border:none;
  5801. border-radius:0px;
  5802. -moz-box-shadow:none;
  5803. -webkit-box-shadow:none;
  5804. box-shadow:none;
  5805. }
  5806. #u84775 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:22px;
  5810. top:0px;
  5811. width:75px;
  5812. height:20px;
  5813. display:flex;
  5814. }
  5815. #u84775 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 2px 2px 3px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u84775_text {
  5823. border-width:0px;
  5824. white-space:nowrap;
  5825. text-transform:none;
  5826. }
  5827. #u84776 {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:20px;
  5831. top:40px;
  5832. width:97px;
  5833. height:20px;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. }
  5838. #u84777_div {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:75px;
  5844. height:20px;
  5845. background:inherit;
  5846. background-color:rgba(255, 255, 255, 0);
  5847. border:none;
  5848. border-radius:0px;
  5849. -moz-box-shadow:none;
  5850. -webkit-box-shadow:none;
  5851. box-shadow:none;
  5852. }
  5853. #u84777 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:22px;
  5857. top:0px;
  5858. width:75px;
  5859. height:20px;
  5860. display:flex;
  5861. }
  5862. #u84777 .text {
  5863. position:absolute;
  5864. align-self:center;
  5865. padding:2px 2px 2px 3px;
  5866. box-sizing:border-box;
  5867. width:100%;
  5868. }
  5869. #u84777_text {
  5870. border-width:0px;
  5871. white-space:nowrap;
  5872. text-transform:none;
  5873. }
  5874. #u84778 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:0px;
  5880. height:0px;
  5881. }
  5882. #u84779_div {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:140px;
  5888. height:30px;
  5889. background:inherit;
  5890. background-color:rgba(255, 255, 255, 1);
  5891. box-sizing:border-box;
  5892. border-width:1px;
  5893. border-style:solid;
  5894. border-color:rgba(201, 201, 201, 1);
  5895. border-radius:4px;
  5896. -moz-box-shadow:none;
  5897. -webkit-box-shadow:none;
  5898. box-shadow:none;
  5899. font-family:'Microsoft YaHei', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:14px;
  5903. color:#CCCCCC;
  5904. text-align:left;
  5905. }
  5906. #u84779 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:818px;
  5910. top:162px;
  5911. width:140px;
  5912. height:30px;
  5913. display:flex;
  5914. font-family:'Microsoft YaHei', sans-serif;
  5915. font-weight:400;
  5916. font-style:normal;
  5917. font-size:14px;
  5918. color:#CCCCCC;
  5919. text-align:left;
  5920. }
  5921. #u84779 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 8px 2px 8px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u84779_text {
  5929. border-width:0px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u84780_input {
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:127px;
  5939. height:25px;
  5940. padding:2px 2px 2px 2px;
  5941. font-family:'Microsoft YaHei', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:10px;
  5945. letter-spacing:normal;
  5946. color:#000000;
  5947. vertical-align:none;
  5948. text-align:left;
  5949. text-transform:none;
  5950. background-color:transparent;
  5951. border-color:transparent;
  5952. }
  5953. #u84780_input.disabled {
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:127px;
  5958. height:25px;
  5959. padding:2px 2px 2px 2px;
  5960. font-family:'Microsoft YaHei', sans-serif;
  5961. font-weight:400;
  5962. font-style:normal;
  5963. font-size:10px;
  5964. letter-spacing:normal;
  5965. color:#000000;
  5966. vertical-align:none;
  5967. text-align:left;
  5968. text-transform:none;
  5969. background-color:transparent;
  5970. border-color:transparent;
  5971. }
  5972. #u84780_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:127px;
  5978. height:25px;
  5979. background:inherit;
  5980. background-color:rgba(255, 255, 255, 1);
  5981. border:none;
  5982. border-radius:0px;
  5983. -moz-box-shadow:none;
  5984. -webkit-box-shadow:none;
  5985. box-shadow:none;
  5986. font-family:'Microsoft YaHei', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:10px;
  5990. }
  5991. #u84780 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:826px;
  5995. top:163px;
  5996. width:127px;
  5997. height:25px;
  5998. display:flex;
  5999. font-family:'Microsoft YaHei', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:10px;
  6003. }
  6004. #u84780 .text {
  6005. position:absolute;
  6006. align-self:center;
  6007. padding:2px 2px 2px 2px;
  6008. box-sizing:border-box;
  6009. width:100%;
  6010. }
  6011. #u84780_div.disabled {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:127px;
  6017. height:25px;
  6018. background:inherit;
  6019. background-color:rgba(240, 240, 240, 1);
  6020. border:none;
  6021. border-radius:0px;
  6022. -moz-box-shadow:none;
  6023. -webkit-box-shadow:none;
  6024. box-shadow:none;
  6025. font-family:'Microsoft YaHei', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:10px;
  6029. }
  6030. #u84780.disabled {
  6031. }
  6032. #u84781_div {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:79px;
  6038. height:30px;
  6039. background:inherit;
  6040. background-color:rgba(255, 255, 255, 1);
  6041. box-sizing:border-box;
  6042. border-width:1px;
  6043. border-style:solid;
  6044. border-color:rgba(170, 170, 170, 1);
  6045. border-radius:4px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:12px;
  6053. color:#555555;
  6054. }
  6055. #u84781 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:757px;
  6059. top:212px;
  6060. width:79px;
  6061. height:30px;
  6062. display:flex;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:12px;
  6067. color:#555555;
  6068. }
  6069. #u84781 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:5px 15px 5px 15px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u84781_text {
  6077. border-width:0px;
  6078. white-space:nowrap;
  6079. text-transform:none;
  6080. }
  6081. #u84782_div {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:79px;
  6087. height:30px;
  6088. background:inherit;
  6089. background-color:rgba(255, 255, 255, 1);
  6090. box-sizing:border-box;
  6091. border-width:1px;
  6092. border-style:solid;
  6093. border-color:rgba(170, 170, 170, 1);
  6094. border-radius:4px;
  6095. -moz-box-shadow:none;
  6096. -webkit-box-shadow:none;
  6097. box-shadow:none;
  6098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. font-size:12px;
  6102. color:#555555;
  6103. }
  6104. #u84782 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:846px;
  6108. top:212px;
  6109. width:79px;
  6110. height:30px;
  6111. display:flex;
  6112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:12px;
  6116. color:#555555;
  6117. }
  6118. #u84782 .text {
  6119. position:absolute;
  6120. align-self:center;
  6121. padding:5px 15px 5px 15px;
  6122. box-sizing:border-box;
  6123. width:100%;
  6124. }
  6125. #u84782_text {
  6126. border-width:0px;
  6127. white-space:nowrap;
  6128. text-transform:none;
  6129. }
  6130. #u84783 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:0px;
  6136. height:0px;
  6137. }
  6138. #u84784_div {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:500px;
  6144. height:514px;
  6145. background:inherit;
  6146. background-color:rgba(255, 255, 255, 1);
  6147. box-sizing:border-box;
  6148. border-width:1px;
  6149. border-style:solid;
  6150. border-color:rgba(215, 215, 215, 1);
  6151. border-radius:0px;
  6152. -moz-box-shadow:none;
  6153. -webkit-box-shadow:none;
  6154. box-shadow:none;
  6155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. font-size:14px;
  6159. color:#AAAAAA;
  6160. text-align:center;
  6161. line-height:30px;
  6162. }
  6163. #u84784 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:861px;
  6167. top:519px;
  6168. width:500px;
  6169. height:514px;
  6170. display:flex;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:14px;
  6175. color:#AAAAAA;
  6176. text-align:center;
  6177. line-height:30px;
  6178. }
  6179. #u84784 .text {
  6180. position:absolute;
  6181. align-self:center;
  6182. padding:5px 10px 5px 10px;
  6183. box-sizing:border-box;
  6184. width:100%;
  6185. }
  6186. #u84784_text {
  6187. border-width:0px;
  6188. word-wrap:break-word;
  6189. text-transform:none;
  6190. visibility:hidden;
  6191. }
  6192. #u84785_div {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:83px;
  6198. height:35px;
  6199. background:inherit;
  6200. background-color:rgba(255, 255, 255, 0);
  6201. border:none;
  6202. border-top:0px;
  6203. border-right:0px;
  6204. border-bottom:0px;
  6205. border-radius:0px;
  6206. border-top-left-radius:0px;
  6207. border-bottom-left-radius:0px;
  6208. -moz-box-shadow:none;
  6209. -webkit-box-shadow:none;
  6210. box-shadow:none;
  6211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6212. font-weight:500;
  6213. font-style:normal;
  6214. font-size:18px;
  6215. }
  6216. #u84785 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:881px;
  6220. top:537px;
  6221. width:83px;
  6222. height:35px;
  6223. display:flex;
  6224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6225. font-weight:500;
  6226. font-style:normal;
  6227. font-size:18px;
  6228. }
  6229. #u84785 .text {
  6230. position:absolute;
  6231. align-self:center;
  6232. padding:5px 10px 5px 0px;
  6233. box-sizing:border-box;
  6234. width:100%;
  6235. }
  6236. #u84785_text {
  6237. border-width:0px;
  6238. white-space:nowrap;
  6239. text-transform:none;
  6240. }
  6241. #u84786 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:0px;
  6247. height:0px;
  6248. }
  6249. #u84787_div {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:500px;
  6255. height:60px;
  6256. background:inherit;
  6257. background-color:rgba(255, 255, 255, 1);
  6258. box-sizing:border-box;
  6259. border-width:1px;
  6260. border-style:solid;
  6261. border-color:rgba(215, 215, 215, 1);
  6262. border-radius:0px;
  6263. -moz-box-shadow:none;
  6264. -webkit-box-shadow:none;
  6265. box-shadow:none;
  6266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:14px;
  6270. color:#AAAAAA;
  6271. text-align:center;
  6272. line-height:30px;
  6273. }
  6274. #u84787 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:861px;
  6278. top:973px;
  6279. width:500px;
  6280. height:60px;
  6281. display:flex;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:14px;
  6286. color:#AAAAAA;
  6287. text-align:center;
  6288. line-height:30px;
  6289. }
  6290. #u84787 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:5px 10px 5px 10px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u84787_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u84788_div {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:60px;
  6309. height:30px;
  6310. background:inherit;
  6311. background-color:rgba(24, 144, 255, 1);
  6312. border:none;
  6313. border-radius:4px;
  6314. -moz-box-shadow:none;
  6315. -webkit-box-shadow:none;
  6316. box-shadow:none;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:14px;
  6321. color:#FFFFFF;
  6322. }
  6323. #u84788 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:1281px;
  6327. top:988px;
  6328. width:60px;
  6329. height:30px;
  6330. display:flex;
  6331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:14px;
  6335. color:#FFFFFF;
  6336. }
  6337. #u84788 .text {
  6338. position:absolute;
  6339. align-self:center;
  6340. padding:2px 2px 2px 2px;
  6341. box-sizing:border-box;
  6342. width:100%;
  6343. }
  6344. #u84788_text {
  6345. border-width:0px;
  6346. word-wrap:break-word;
  6347. text-transform:none;
  6348. }
  6349. #u84789_div {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:60px;
  6355. height:30px;
  6356. background:inherit;
  6357. background-color:rgba(255, 255, 255, 1);
  6358. box-sizing:border-box;
  6359. border-width:1px;
  6360. border-style:solid;
  6361. border-color:rgba(170, 170, 170, 1);
  6362. border-radius:4px;
  6363. -moz-box-shadow:none;
  6364. -webkit-box-shadow:none;
  6365. box-shadow:none;
  6366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:14px;
  6370. }
  6371. #u84789 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:1211px;
  6375. top:988px;
  6376. width:60px;
  6377. height:30px;
  6378. display:flex;
  6379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6380. font-weight:400;
  6381. font-style:normal;
  6382. font-size:14px;
  6383. }
  6384. #u84789 .text {
  6385. position:absolute;
  6386. align-self:center;
  6387. padding:2px 2px 2px 2px;
  6388. box-sizing:border-box;
  6389. width:100%;
  6390. }
  6391. #u84789_text {
  6392. border-width:0px;
  6393. word-wrap:break-word;
  6394. text-transform:none;
  6395. }
  6396. #u84790_div {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:440px;
  6402. height:40px;
  6403. background:inherit;
  6404. background-color:rgba(255, 255, 128, 0.2);
  6405. border:none;
  6406. border-top:0px;
  6407. border-right:0px;
  6408. border-bottom:0px;
  6409. border-radius:0px;
  6410. border-top-left-radius:0px;
  6411. border-bottom-left-radius:0px;
  6412. -moz-box-shadow:none;
  6413. -webkit-box-shadow:none;
  6414. box-shadow:none;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:14px;
  6419. color:#F59A23;
  6420. }
  6421. #u84790 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:907px;
  6425. top:595px;
  6426. width:440px;
  6427. height:40px;
  6428. display:flex;
  6429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6430. font-weight:400;
  6431. font-style:normal;
  6432. font-size:14px;
  6433. color:#F59A23;
  6434. }
  6435. #u84790 .text {
  6436. position:absolute;
  6437. align-self:center;
  6438. padding:5px 10px 5px 20px;
  6439. box-sizing:border-box;
  6440. width:100%;
  6441. }
  6442. #u84790_text {
  6443. border-width:0px;
  6444. word-wrap:break-word;
  6445. text-transform:none;
  6446. }
  6447. #u84791 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:923px;
  6451. top:665px;
  6452. width:168px;
  6453. height:260px;
  6454. }
  6455. #u84791_children {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:0px;
  6459. top:0px;
  6460. width:0px;
  6461. height:0px;
  6462. }
  6463. #u84792 {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:0px;
  6467. top:0px;
  6468. width:113px;
  6469. height:20px;
  6470. color:#298FFF;
  6471. }
  6472. #u84793_img {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:9px;
  6478. height:9px;
  6479. }
  6480. #u84793 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:6px;
  6484. top:6px;
  6485. width:9px;
  6486. height:9px;
  6487. display:flex;
  6488. }
  6489. #u84793 .text {
  6490. position:absolute;
  6491. align-self:center;
  6492. padding:2px 2px 2px 2px;
  6493. box-sizing:border-box;
  6494. width:100%;
  6495. }
  6496. #u84793_img.selected {
  6497. }
  6498. #u84793.selected {
  6499. }
  6500. #u84793_text {
  6501. border-width:0px;
  6502. word-wrap:break-word;
  6503. text-transform:none;
  6504. visibility:hidden;
  6505. }
  6506. #u84794_div {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:91px;
  6512. height:20px;
  6513. background:inherit;
  6514. background-color:rgba(255, 255, 255, 0);
  6515. border:none;
  6516. border-radius:0px;
  6517. -moz-box-shadow:none;
  6518. -webkit-box-shadow:none;
  6519. box-shadow:none;
  6520. }
  6521. #u84794 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:22px;
  6525. top:0px;
  6526. width:91px;
  6527. height:20px;
  6528. display:flex;
  6529. }
  6530. #u84794 .text {
  6531. position:absolute;
  6532. align-self:center;
  6533. padding:2px 2px 2px 3px;
  6534. box-sizing:border-box;
  6535. width:100%;
  6536. }
  6537. #u84794_text {
  6538. border-width:0px;
  6539. white-space:nowrap;
  6540. text-transform:none;
  6541. }
  6542. #u84792_children {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:0px;
  6547. width:0px;
  6548. height:0px;
  6549. }
  6550. #u84795 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:20px;
  6554. top:20px;
  6555. width:148px;
  6556. height:20px;
  6557. }
  6558. #u84796_div {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:0px;
  6562. top:0px;
  6563. width:126px;
  6564. height:20px;
  6565. background:inherit;
  6566. background-color:rgba(255, 255, 255, 0);
  6567. border:none;
  6568. border-radius:0px;
  6569. -moz-box-shadow:none;
  6570. -webkit-box-shadow:none;
  6571. box-shadow:none;
  6572. }
  6573. #u84796 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:22px;
  6577. top:0px;
  6578. width:126px;
  6579. height:20px;
  6580. display:flex;
  6581. }
  6582. #u84796 .text {
  6583. position:absolute;
  6584. align-self:center;
  6585. padding:2px 2px 2px 3px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u84796_text {
  6590. border-width:0px;
  6591. white-space:nowrap;
  6592. text-transform:none;
  6593. }
  6594. #u84797 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:20px;
  6598. top:40px;
  6599. width:122px;
  6600. height:20px;
  6601. }
  6602. #u84798_div {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:0px;
  6606. top:0px;
  6607. width:100px;
  6608. height:20px;
  6609. background:inherit;
  6610. background-color:rgba(255, 255, 255, 0);
  6611. border:none;
  6612. border-radius:0px;
  6613. -moz-box-shadow:none;
  6614. -webkit-box-shadow:none;
  6615. box-shadow:none;
  6616. }
  6617. #u84798 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:22px;
  6621. top:0px;
  6622. width:100px;
  6623. height:20px;
  6624. display:flex;
  6625. }
  6626. #u84798 .text {
  6627. position:absolute;
  6628. align-self:center;
  6629. padding:2px 2px 2px 3px;
  6630. box-sizing:border-box;
  6631. width:100%;
  6632. }
  6633. #u84798_text {
  6634. border-width:0px;
  6635. white-space:nowrap;
  6636. text-transform:none;
  6637. }
  6638. #u84799 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:20px;
  6642. top:60px;
  6643. width:122px;
  6644. height:20px;
  6645. }
  6646. #u84800_div {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:100px;
  6652. height:20px;
  6653. background:inherit;
  6654. background-color:rgba(255, 255, 255, 0);
  6655. border:none;
  6656. border-radius:0px;
  6657. -moz-box-shadow:none;
  6658. -webkit-box-shadow:none;
  6659. box-shadow:none;
  6660. }
  6661. #u84800 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:22px;
  6665. top:0px;
  6666. width:100px;
  6667. height:20px;
  6668. display:flex;
  6669. }
  6670. #u84800 .text {
  6671. position:absolute;
  6672. align-self:center;
  6673. padding:2px 2px 2px 3px;
  6674. box-sizing:border-box;
  6675. width:100%;
  6676. }
  6677. #u84800_text {
  6678. border-width:0px;
  6679. white-space:nowrap;
  6680. text-transform:none;
  6681. }
  6682. #u84801 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:80px;
  6687. width:113px;
  6688. height:20px;
  6689. }
  6690. #u84802_img {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:9px;
  6696. height:9px;
  6697. }
  6698. #u84802 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:6px;
  6702. top:6px;
  6703. width:9px;
  6704. height:9px;
  6705. display:flex;
  6706. }
  6707. #u84802 .text {
  6708. position:absolute;
  6709. align-self:center;
  6710. padding:2px 2px 2px 2px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u84802_img.selected {
  6715. }
  6716. #u84802.selected {
  6717. }
  6718. #u84802_text {
  6719. border-width:0px;
  6720. word-wrap:break-word;
  6721. text-transform:none;
  6722. visibility:hidden;
  6723. }
  6724. #u84803_div {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:91px;
  6730. height:20px;
  6731. background:inherit;
  6732. background-color:rgba(255, 255, 255, 0);
  6733. border:none;
  6734. border-radius:0px;
  6735. -moz-box-shadow:none;
  6736. -webkit-box-shadow:none;
  6737. box-shadow:none;
  6738. }
  6739. #u84803 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:22px;
  6743. top:0px;
  6744. width:91px;
  6745. height:20px;
  6746. display:flex;
  6747. }
  6748. #u84803 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:2px 2px 2px 3px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u84803_text {
  6756. border-width:0px;
  6757. white-space:nowrap;
  6758. text-transform:none;
  6759. }
  6760. #u84801_children {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:0px;
  6766. height:0px;
  6767. }
  6768. #u84804 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:20px;
  6772. top:20px;
  6773. width:93px;
  6774. height:20px;
  6775. }
  6776. #u84805_div {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:0px;
  6780. top:0px;
  6781. width:71px;
  6782. height:20px;
  6783. background:inherit;
  6784. background-color:rgba(255, 255, 255, 0);
  6785. border:none;
  6786. border-radius:0px;
  6787. -moz-box-shadow:none;
  6788. -webkit-box-shadow:none;
  6789. box-shadow:none;
  6790. }
  6791. #u84805 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:22px;
  6795. top:0px;
  6796. width:71px;
  6797. height:20px;
  6798. display:flex;
  6799. }
  6800. #u84805 .text {
  6801. position:absolute;
  6802. align-self:center;
  6803. padding:2px 2px 2px 3px;
  6804. box-sizing:border-box;
  6805. width:100%;
  6806. }
  6807. #u84805_text {
  6808. border-width:0px;
  6809. white-space:nowrap;
  6810. text-transform:none;
  6811. }
  6812. #u84806 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:20px;
  6816. top:40px;
  6817. width:93px;
  6818. height:20px;
  6819. }
  6820. #u84807_div {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:0px;
  6824. top:0px;
  6825. width:71px;
  6826. height:20px;
  6827. background:inherit;
  6828. background-color:rgba(255, 255, 255, 0);
  6829. border:none;
  6830. border-radius:0px;
  6831. -moz-box-shadow:none;
  6832. -webkit-box-shadow:none;
  6833. box-shadow:none;
  6834. }
  6835. #u84807 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:22px;
  6839. top:0px;
  6840. width:71px;
  6841. height:20px;
  6842. display:flex;
  6843. }
  6844. #u84807 .text {
  6845. position:absolute;
  6846. align-self:center;
  6847. padding:2px 2px 2px 3px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u84807_text {
  6852. border-width:0px;
  6853. white-space:nowrap;
  6854. text-transform:none;
  6855. }
  6856. #u84808 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:140px;
  6861. width:80px;
  6862. height:20px;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. }
  6867. #u84809_img {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:9px;
  6873. height:9px;
  6874. }
  6875. #u84809 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:6px;
  6879. top:6px;
  6880. width:9px;
  6881. height:9px;
  6882. display:flex;
  6883. }
  6884. #u84809 .text {
  6885. position:absolute;
  6886. align-self:center;
  6887. padding:2px 2px 2px 2px;
  6888. box-sizing:border-box;
  6889. width:100%;
  6890. }
  6891. #u84809_img.selected {
  6892. }
  6893. #u84809.selected {
  6894. }
  6895. #u84809_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. visibility:hidden;
  6900. }
  6901. #u84810_div {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:58px;
  6907. height:20px;
  6908. background:inherit;
  6909. background-color:rgba(255, 255, 255, 0);
  6910. border:none;
  6911. border-radius:0px;
  6912. -moz-box-shadow:none;
  6913. -webkit-box-shadow:none;
  6914. box-shadow:none;
  6915. }
  6916. #u84810 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:22px;
  6920. top:0px;
  6921. width:58px;
  6922. height:20px;
  6923. display:flex;
  6924. }
  6925. #u84810 .text {
  6926. position:absolute;
  6927. align-self:center;
  6928. padding:2px 2px 2px 3px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u84810_text {
  6933. border-width:0px;
  6934. white-space:nowrap;
  6935. text-transform:none;
  6936. }
  6937. #u84808_children {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:0px;
  6943. height:0px;
  6944. }
  6945. #u84811 {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:20px;
  6949. top:20px;
  6950. width:97px;
  6951. height:20px;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. }
  6956. #u84812_div {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:75px;
  6962. height:20px;
  6963. background:inherit;
  6964. background-color:rgba(255, 255, 255, 0);
  6965. border:none;
  6966. border-radius:0px;
  6967. -moz-box-shadow:none;
  6968. -webkit-box-shadow:none;
  6969. box-shadow:none;
  6970. }
  6971. #u84812 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:22px;
  6975. top:0px;
  6976. width:75px;
  6977. height:20px;
  6978. display:flex;
  6979. }
  6980. #u84812 .text {
  6981. position:absolute;
  6982. align-self:center;
  6983. padding:2px 2px 2px 3px;
  6984. box-sizing:border-box;
  6985. width:100%;
  6986. }
  6987. #u84812_text {
  6988. border-width:0px;
  6989. white-space:nowrap;
  6990. text-transform:none;
  6991. }
  6992. #u84813 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:20px;
  6996. top:40px;
  6997. width:97px;
  6998. height:20px;
  6999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. }
  7003. #u84814_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:75px;
  7009. height:20px;
  7010. background:inherit;
  7011. background-color:rgba(255, 255, 255, 0);
  7012. border:none;
  7013. border-radius:0px;
  7014. -moz-box-shadow:none;
  7015. -webkit-box-shadow:none;
  7016. box-shadow:none;
  7017. }
  7018. #u84814 {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:22px;
  7022. top:0px;
  7023. width:75px;
  7024. height:20px;
  7025. display:flex;
  7026. }
  7027. #u84814 .text {
  7028. position:absolute;
  7029. align-self:center;
  7030. padding:2px 2px 2px 3px;
  7031. box-sizing:border-box;
  7032. width:100%;
  7033. }
  7034. #u84814_text {
  7035. border-width:0px;
  7036. white-space:nowrap;
  7037. text-transform:none;
  7038. }
  7039. #u84815 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:0px;
  7043. top:200px;
  7044. width:80px;
  7045. height:20px;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. }
  7050. #u84816_img {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:9px;
  7056. height:9px;
  7057. }
  7058. #u84816 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:6px;
  7062. top:6px;
  7063. width:9px;
  7064. height:9px;
  7065. display:flex;
  7066. }
  7067. #u84816 .text {
  7068. position:absolute;
  7069. align-self:center;
  7070. padding:2px 2px 2px 2px;
  7071. box-sizing:border-box;
  7072. width:100%;
  7073. }
  7074. #u84816_img.selected {
  7075. }
  7076. #u84816.selected {
  7077. }
  7078. #u84816_text {
  7079. border-width:0px;
  7080. word-wrap:break-word;
  7081. text-transform:none;
  7082. visibility:hidden;
  7083. }
  7084. #u84817_div {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:0px;
  7088. top:0px;
  7089. width:58px;
  7090. height:20px;
  7091. background:inherit;
  7092. background-color:rgba(255, 255, 255, 0);
  7093. border:none;
  7094. border-radius:0px;
  7095. -moz-box-shadow:none;
  7096. -webkit-box-shadow:none;
  7097. box-shadow:none;
  7098. }
  7099. #u84817 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:22px;
  7103. top:0px;
  7104. width:58px;
  7105. height:20px;
  7106. display:flex;
  7107. }
  7108. #u84817 .text {
  7109. position:absolute;
  7110. align-self:center;
  7111. padding:2px 2px 2px 3px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u84817_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u84815_children {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:0px;
  7126. height:0px;
  7127. }
  7128. #u84818 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:20px;
  7132. top:20px;
  7133. width:97px;
  7134. height:20px;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. }
  7139. #u84819_div {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:75px;
  7145. height:20px;
  7146. background:inherit;
  7147. background-color:rgba(255, 255, 255, 0);
  7148. border:none;
  7149. border-radius:0px;
  7150. -moz-box-shadow:none;
  7151. -webkit-box-shadow:none;
  7152. box-shadow:none;
  7153. }
  7154. #u84819 {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:22px;
  7158. top:0px;
  7159. width:75px;
  7160. height:20px;
  7161. display:flex;
  7162. }
  7163. #u84819 .text {
  7164. position:absolute;
  7165. align-self:center;
  7166. padding:2px 2px 2px 3px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u84819_text {
  7171. border-width:0px;
  7172. white-space:nowrap;
  7173. text-transform:none;
  7174. }
  7175. #u84820 {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:20px;
  7179. top:40px;
  7180. width:97px;
  7181. height:20px;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. }
  7186. #u84821_div {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:0px;
  7191. width:75px;
  7192. height:20px;
  7193. background:inherit;
  7194. background-color:rgba(255, 255, 255, 0);
  7195. border:none;
  7196. border-radius:0px;
  7197. -moz-box-shadow:none;
  7198. -webkit-box-shadow:none;
  7199. box-shadow:none;
  7200. }
  7201. #u84821 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:22px;
  7205. top:0px;
  7206. width:75px;
  7207. height:20px;
  7208. display:flex;
  7209. }
  7210. #u84821 .text {
  7211. position:absolute;
  7212. align-self:center;
  7213. padding:2px 2px 2px 3px;
  7214. box-sizing:border-box;
  7215. width:100%;
  7216. }
  7217. #u84821_text {
  7218. border-width:0px;
  7219. white-space:nowrap;
  7220. text-transform:none;
  7221. }
  7222. #u84822_img {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:0px;
  7226. top:0px;
  7227. width:10px;
  7228. height:8px;
  7229. }
  7230. #u84822 {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:1312px;
  7234. top:670px;
  7235. width:10px;
  7236. height:8px;
  7237. display:flex;
  7238. }
  7239. #u84822 .text {
  7240. position:absolute;
  7241. align-self:center;
  7242. padding:2px 2px 2px 2px;
  7243. box-sizing:border-box;
  7244. width:100%;
  7245. }
  7246. #u84822_text {
  7247. border-width:0px;
  7248. word-wrap:break-word;
  7249. text-transform:none;
  7250. visibility:hidden;
  7251. }
  7252. #u84823_img {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:10px;
  7258. height:8px;
  7259. }
  7260. #u84823 {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:1312px;
  7264. top:690px;
  7265. width:10px;
  7266. height:8px;
  7267. display:flex;
  7268. }
  7269. #u84823 .text {
  7270. position:absolute;
  7271. align-self:center;
  7272. padding:2px 2px 2px 2px;
  7273. box-sizing:border-box;
  7274. width:100%;
  7275. }
  7276. #u84823_text {
  7277. border-width:0px;
  7278. word-wrap:break-word;
  7279. text-transform:none;
  7280. visibility:hidden;
  7281. }
  7282. #u84824_img {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:10px;
  7288. height:8px;
  7289. }
  7290. #u84824 {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:1312px;
  7294. top:710px;
  7295. width:10px;
  7296. height:8px;
  7297. display:flex;
  7298. }
  7299. #u84824 .text {
  7300. position:absolute;
  7301. align-self:center;
  7302. padding:2px 2px 2px 2px;
  7303. box-sizing:border-box;
  7304. width:100%;
  7305. }
  7306. #u84824_text {
  7307. border-width:0px;
  7308. word-wrap:break-word;
  7309. text-transform:none;
  7310. visibility:hidden;
  7311. }
  7312. #u84825_img {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:0px;
  7316. top:0px;
  7317. width:10px;
  7318. height:8px;
  7319. }
  7320. #u84825 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:1312px;
  7324. top:730px;
  7325. width:10px;
  7326. height:8px;
  7327. display:flex;
  7328. }
  7329. #u84825 .text {
  7330. position:absolute;
  7331. align-self:center;
  7332. padding:2px 2px 2px 2px;
  7333. box-sizing:border-box;
  7334. width:100%;
  7335. }
  7336. #u84825_text {
  7337. border-width:0px;
  7338. word-wrap:break-word;
  7339. text-transform:none;
  7340. visibility:hidden;
  7341. }
  7342. #u84826_img {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:10px;
  7348. height:8px;
  7349. }
  7350. #u84826 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:1312px;
  7354. top:751px;
  7355. width:10px;
  7356. height:8px;
  7357. display:flex;
  7358. }
  7359. #u84826 .text {
  7360. position:absolute;
  7361. align-self:center;
  7362. padding:2px 2px 2px 2px;
  7363. box-sizing:border-box;
  7364. width:100%;
  7365. }
  7366. #u84826_text {
  7367. border-width:0px;
  7368. word-wrap:break-word;
  7369. text-transform:none;
  7370. visibility:hidden;
  7371. }
  7372. #u84827_img {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:10px;
  7378. height:8px;
  7379. }
  7380. #u84827 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:1312px;
  7384. top:771px;
  7385. width:10px;
  7386. height:8px;
  7387. display:flex;
  7388. }
  7389. #u84827 .text {
  7390. position:absolute;
  7391. align-self:center;
  7392. padding:2px 2px 2px 2px;
  7393. box-sizing:border-box;
  7394. width:100%;
  7395. }
  7396. #u84827_text {
  7397. border-width:0px;
  7398. word-wrap:break-word;
  7399. text-transform:none;
  7400. visibility:hidden;
  7401. }
  7402. #u84828_img {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:0px;
  7406. top:0px;
  7407. width:10px;
  7408. height:8px;
  7409. }
  7410. #u84828 {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:1312px;
  7414. top:791px;
  7415. width:10px;
  7416. height:8px;
  7417. display:flex;
  7418. }
  7419. #u84828 .text {
  7420. position:absolute;
  7421. align-self:center;
  7422. padding:2px 2px 2px 2px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u84828_text {
  7427. border-width:0px;
  7428. word-wrap:break-word;
  7429. text-transform:none;
  7430. visibility:hidden;
  7431. }
  7432. #u84829_img {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:0px;
  7436. top:0px;
  7437. width:10px;
  7438. height:8px;
  7439. }
  7440. #u84829 {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:1312px;
  7444. top:811px;
  7445. width:10px;
  7446. height:8px;
  7447. display:flex;
  7448. }
  7449. #u84829 .text {
  7450. position:absolute;
  7451. align-self:center;
  7452. padding:2px 2px 2px 2px;
  7453. box-sizing:border-box;
  7454. width:100%;
  7455. }
  7456. #u84829_text {
  7457. border-width:0px;
  7458. word-wrap:break-word;
  7459. text-transform:none;
  7460. visibility:hidden;
  7461. }
  7462. #u84830_img {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:10px;
  7468. height:8px;
  7469. }
  7470. #u84830 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:1312px;
  7474. top:831px;
  7475. width:10px;
  7476. height:8px;
  7477. display:flex;
  7478. }
  7479. #u84830 .text {
  7480. position:absolute;
  7481. align-self:center;
  7482. padding:2px 2px 2px 2px;
  7483. box-sizing:border-box;
  7484. width:100%;
  7485. }
  7486. #u84830_text {
  7487. border-width:0px;
  7488. word-wrap:break-word;
  7489. text-transform:none;
  7490. visibility:hidden;
  7491. }
  7492. #u84831_img {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:10px;
  7498. height:8px;
  7499. }
  7500. #u84831 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:1312px;
  7504. top:851px;
  7505. width:10px;
  7506. height:8px;
  7507. display:flex;
  7508. }
  7509. #u84831 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:2px 2px 2px 2px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u84831_text {
  7517. border-width:0px;
  7518. word-wrap:break-word;
  7519. text-transform:none;
  7520. visibility:hidden;
  7521. }
  7522. #u84832_img {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:0px;
  7526. top:0px;
  7527. width:10px;
  7528. height:8px;
  7529. }
  7530. #u84832 {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:1312px;
  7534. top:872px;
  7535. width:10px;
  7536. height:8px;
  7537. display:flex;
  7538. }
  7539. #u84832 .text {
  7540. position:absolute;
  7541. align-self:center;
  7542. padding:2px 2px 2px 2px;
  7543. box-sizing:border-box;
  7544. width:100%;
  7545. }
  7546. #u84832_text {
  7547. border-width:0px;
  7548. word-wrap:break-word;
  7549. text-transform:none;
  7550. visibility:hidden;
  7551. }
  7552. #u84833_img {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:0px;
  7556. top:0px;
  7557. width:10px;
  7558. height:8px;
  7559. }
  7560. #u84833 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:1312px;
  7564. top:892px;
  7565. width:10px;
  7566. height:8px;
  7567. display:flex;
  7568. }
  7569. #u84833 .text {
  7570. position:absolute;
  7571. align-self:center;
  7572. padding:2px 2px 2px 2px;
  7573. box-sizing:border-box;
  7574. width:100%;
  7575. }
  7576. #u84833_text {
  7577. border-width:0px;
  7578. word-wrap:break-word;
  7579. text-transform:none;
  7580. visibility:hidden;
  7581. }
  7582. #u84834_img {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:0px;
  7586. top:0px;
  7587. width:10px;
  7588. height:8px;
  7589. }
  7590. #u84834 {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:1312px;
  7594. top:912px;
  7595. width:10px;
  7596. height:8px;
  7597. display:flex;
  7598. }
  7599. #u84834 .text {
  7600. position:absolute;
  7601. align-self:center;
  7602. padding:2px 2px 2px 2px;
  7603. box-sizing:border-box;
  7604. width:100%;
  7605. }
  7606. #u84834_text {
  7607. border-width:0px;
  7608. word-wrap:break-word;
  7609. text-transform:none;
  7610. visibility:hidden;
  7611. }
  7612. #u84835_div {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:0px;
  7616. top:0px;
  7617. width:21px;
  7618. height:35px;
  7619. background:inherit;
  7620. background-color:rgba(255, 255, 255, 0);
  7621. border:none;
  7622. border-top:0px;
  7623. border-right:0px;
  7624. border-bottom:0px;
  7625. border-radius:0px;
  7626. border-top-left-radius:0px;
  7627. border-bottom-left-radius:0px;
  7628. -moz-box-shadow:none;
  7629. -webkit-box-shadow:none;
  7630. box-shadow:none;
  7631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7632. font-weight:500;
  7633. font-style:normal;
  7634. font-size:18px;
  7635. }
  7636. #u84835 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:1340px;
  7640. top:519px;
  7641. width:21px;
  7642. height:35px;
  7643. display:flex;
  7644. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7645. font-weight:500;
  7646. font-style:normal;
  7647. font-size:18px;
  7648. }
  7649. #u84835 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:5px 10px 5px 0px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u84835_text {
  7657. border-width:0px;
  7658. white-space:nowrap;
  7659. text-transform:none;
  7660. }
  7661. #u84836 {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:0px;
  7667. height:0px;
  7668. }
  7669. #u84837_div {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:0px;
  7673. top:0px;
  7674. width:800px;
  7675. height:1200px;
  7676. background:inherit;
  7677. background-color:rgba(255, 255, 255, 1);
  7678. box-sizing:border-box;
  7679. border-width:1px;
  7680. border-style:solid;
  7681. border-color:rgba(215, 215, 215, 1);
  7682. border-radius:0px;
  7683. -moz-box-shadow:none;
  7684. -webkit-box-shadow:none;
  7685. box-shadow:none;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:14px;
  7690. color:#AAAAAA;
  7691. text-align:center;
  7692. line-height:30px;
  7693. }
  7694. #u84837 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:1651px;
  7698. top:50px;
  7699. width:800px;
  7700. height:1200px;
  7701. display:flex;
  7702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7703. font-weight:400;
  7704. font-style:normal;
  7705. font-size:14px;
  7706. color:#AAAAAA;
  7707. text-align:center;
  7708. line-height:30px;
  7709. }
  7710. #u84837 .text {
  7711. position:absolute;
  7712. align-self:center;
  7713. padding:5px 10px 5px 10px;
  7714. box-sizing:border-box;
  7715. width:100%;
  7716. }
  7717. #u84837_text {
  7718. border-width:0px;
  7719. word-wrap:break-word;
  7720. text-transform:none;
  7721. visibility:hidden;
  7722. }
  7723. #u84838_div {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:0px;
  7727. top:0px;
  7728. width:83px;
  7729. height:35px;
  7730. background:inherit;
  7731. background-color:rgba(255, 255, 255, 0);
  7732. border:none;
  7733. border-top:0px;
  7734. border-right:0px;
  7735. border-bottom:0px;
  7736. border-radius:0px;
  7737. border-top-left-radius:0px;
  7738. border-bottom-left-radius:0px;
  7739. -moz-box-shadow:none;
  7740. -webkit-box-shadow:none;
  7741. box-shadow:none;
  7742. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7743. font-weight:500;
  7744. font-style:normal;
  7745. font-size:18px;
  7746. }
  7747. #u84838 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:1671px;
  7751. top:68px;
  7752. width:83px;
  7753. height:35px;
  7754. display:flex;
  7755. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7756. font-weight:500;
  7757. font-style:normal;
  7758. font-size:18px;
  7759. }
  7760. #u84838 .text {
  7761. position:absolute;
  7762. align-self:center;
  7763. padding:5px 10px 5px 0px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u84838_text {
  7768. border-width:0px;
  7769. white-space:nowrap;
  7770. text-transform:none;
  7771. }
  7772. #u84839 {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:0px;
  7778. height:0px;
  7779. }
  7780. #u84840_div {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:800px;
  7786. height:60px;
  7787. background:inherit;
  7788. background-color:rgba(255, 255, 255, 1);
  7789. box-sizing:border-box;
  7790. border-width:1px;
  7791. border-style:solid;
  7792. border-color:rgba(215, 215, 215, 1);
  7793. border-radius:0px;
  7794. -moz-box-shadow:none;
  7795. -webkit-box-shadow:none;
  7796. box-shadow:none;
  7797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7798. font-weight:400;
  7799. font-style:normal;
  7800. font-size:14px;
  7801. color:#AAAAAA;
  7802. text-align:center;
  7803. line-height:30px;
  7804. }
  7805. #u84840 {
  7806. border-width:0px;
  7807. position:absolute;
  7808. left:1651px;
  7809. top:1190px;
  7810. width:800px;
  7811. height:60px;
  7812. display:flex;
  7813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7814. font-weight:400;
  7815. font-style:normal;
  7816. font-size:14px;
  7817. color:#AAAAAA;
  7818. text-align:center;
  7819. line-height:30px;
  7820. }
  7821. #u84840 .text {
  7822. position:absolute;
  7823. align-self:center;
  7824. padding:5px 10px 5px 10px;
  7825. box-sizing:border-box;
  7826. width:100%;
  7827. }
  7828. #u84840_text {
  7829. border-width:0px;
  7830. word-wrap:break-word;
  7831. text-transform:none;
  7832. visibility:hidden;
  7833. }
  7834. #u84841_div {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:80px;
  7840. height:30px;
  7841. background:inherit;
  7842. background-color:rgba(24, 144, 255, 1);
  7843. border:none;
  7844. border-radius:4px;
  7845. -moz-box-shadow:none;
  7846. -webkit-box-shadow:none;
  7847. box-shadow:none;
  7848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7849. font-weight:400;
  7850. font-style:normal;
  7851. font-size:14px;
  7852. color:#FFFFFF;
  7853. }
  7854. #u84841 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:2316px;
  7858. top:1205px;
  7859. width:80px;
  7860. height:30px;
  7861. display:flex;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:14px;
  7866. color:#FFFFFF;
  7867. }
  7868. #u84841 .text {
  7869. position:absolute;
  7870. align-self:center;
  7871. padding:2px 2px 2px 2px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u84841_text {
  7876. border-width:0px;
  7877. word-wrap:break-word;
  7878. text-transform:none;
  7879. }
  7880. #u84842_div {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:80px;
  7886. height:30px;
  7887. background:inherit;
  7888. background-color:rgba(255, 255, 255, 1);
  7889. box-sizing:border-box;
  7890. border-width:1px;
  7891. border-style:solid;
  7892. border-color:rgba(170, 170, 170, 1);
  7893. border-radius:4px;
  7894. -moz-box-shadow:none;
  7895. -webkit-box-shadow:none;
  7896. box-shadow:none;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:14px;
  7901. }
  7902. #u84842 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:2216px;
  7906. top:1205px;
  7907. width:80px;
  7908. height:30px;
  7909. display:flex;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:14px;
  7914. }
  7915. #u84842 .text {
  7916. position:absolute;
  7917. align-self:center;
  7918. padding:2px 2px 2px 2px;
  7919. box-sizing:border-box;
  7920. width:100%;
  7921. }
  7922. #u84842_text {
  7923. border-width:0px;
  7924. word-wrap:break-word;
  7925. text-transform:none;
  7926. }
  7927. #u84843_div {
  7928. border-width:0px;
  7929. position:absolute;
  7930. left:0px;
  7931. top:0px;
  7932. width:88px;
  7933. height:40px;
  7934. background:inherit;
  7935. background-color:rgba(255, 255, 255, 0);
  7936. border:none;
  7937. border-top:0px;
  7938. border-right:0px;
  7939. border-bottom:0px;
  7940. border-radius:0px;
  7941. border-top-left-radius:0px;
  7942. border-bottom-left-radius:0px;
  7943. -moz-box-shadow:none;
  7944. -webkit-box-shadow:none;
  7945. box-shadow:none;
  7946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7947. font-weight:400;
  7948. font-style:normal;
  7949. font-size:14px;
  7950. color:#7F7F7F;
  7951. text-align:right;
  7952. }
  7953. #u84843 {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:1724px;
  7957. top:126px;
  7958. width:88px;
  7959. height:40px;
  7960. display:flex;
  7961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:14px;
  7965. color:#7F7F7F;
  7966. text-align:right;
  7967. }
  7968. #u84843 .text {
  7969. position:absolute;
  7970. align-self:center;
  7971. padding:5px 10px 5px 0px;
  7972. box-sizing:border-box;
  7973. width:100%;
  7974. }
  7975. #u84843_text {
  7976. border-width:0px;
  7977. white-space:nowrap;
  7978. text-transform:none;
  7979. }
  7980. #u84844 {
  7981. border-width:0px;
  7982. position:absolute;
  7983. left:0px;
  7984. top:0px;
  7985. width:0px;
  7986. height:0px;
  7987. }
  7988. #u84845_div {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:0px;
  7992. top:0px;
  7993. width:400px;
  7994. height:40px;
  7995. background:inherit;
  7996. background-color:rgba(255, 255, 255, 1);
  7997. box-sizing:border-box;
  7998. border-width:1px;
  7999. border-style:solid;
  8000. border-color:rgba(201, 201, 201, 1);
  8001. border-radius:4px;
  8002. -moz-box-shadow:none;
  8003. -webkit-box-shadow:none;
  8004. box-shadow:none;
  8005. font-family:'Microsoft YaHei', sans-serif;
  8006. font-weight:400;
  8007. font-style:normal;
  8008. font-size:14px;
  8009. color:#CCCCCC;
  8010. text-align:left;
  8011. }
  8012. #u84845 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:1822px;
  8016. top:127px;
  8017. width:400px;
  8018. height:40px;
  8019. display:flex;
  8020. font-family:'Microsoft YaHei', sans-serif;
  8021. font-weight:400;
  8022. font-style:normal;
  8023. font-size:14px;
  8024. color:#CCCCCC;
  8025. text-align:left;
  8026. }
  8027. #u84845 .text {
  8028. position:absolute;
  8029. align-self:center;
  8030. padding:2px 8px 2px 8px;
  8031. box-sizing:border-box;
  8032. width:100%;
  8033. }
  8034. #u84845_text {
  8035. border-width:0px;
  8036. word-wrap:break-word;
  8037. text-transform:none;
  8038. visibility:hidden;
  8039. }
  8040. #u84846_input {
  8041. position:absolute;
  8042. left:0px;
  8043. top:0px;
  8044. width:380px;
  8045. height:38px;
  8046. padding:2px 2px 2px 2px;
  8047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8048. font-weight:400;
  8049. font-style:normal;
  8050. font-size:14px;
  8051. letter-spacing:normal;
  8052. color:#000000;
  8053. vertical-align:none;
  8054. text-align:left;
  8055. text-transform:none;
  8056. background-color:transparent;
  8057. border-color:transparent;
  8058. }
  8059. #u84846_input.disabled {
  8060. position:absolute;
  8061. left:0px;
  8062. top:0px;
  8063. width:380px;
  8064. height:38px;
  8065. padding:2px 2px 2px 2px;
  8066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8067. font-weight:400;
  8068. font-style:normal;
  8069. font-size:14px;
  8070. letter-spacing:normal;
  8071. color:#000000;
  8072. vertical-align:none;
  8073. text-align:left;
  8074. text-transform:none;
  8075. background-color:transparent;
  8076. border-color:transparent;
  8077. }
  8078. #u84846_div {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:0px;
  8082. top:0px;
  8083. width:380px;
  8084. height:38px;
  8085. background:inherit;
  8086. background-color:rgba(255, 255, 255, 1);
  8087. border:none;
  8088. border-radius:0px;
  8089. -moz-box-shadow:none;
  8090. -webkit-box-shadow:none;
  8091. box-shadow:none;
  8092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8093. font-weight:400;
  8094. font-style:normal;
  8095. font-size:14px;
  8096. }
  8097. #u84846 {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:1833px;
  8101. top:128px;
  8102. width:380px;
  8103. height:38px;
  8104. display:flex;
  8105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8106. font-weight:400;
  8107. font-style:normal;
  8108. font-size:14px;
  8109. }
  8110. #u84846 .text {
  8111. position:absolute;
  8112. align-self:center;
  8113. padding:2px 2px 2px 2px;
  8114. box-sizing:border-box;
  8115. width:100%;
  8116. }
  8117. #u84846_div.disabled {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:380px;
  8123. height:38px;
  8124. background:inherit;
  8125. background-color:rgba(240, 240, 240, 1);
  8126. border:none;
  8127. border-radius:0px;
  8128. -moz-box-shadow:none;
  8129. -webkit-box-shadow:none;
  8130. box-shadow:none;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. font-size:14px;
  8135. }
  8136. #u84846.disabled {
  8137. }
  8138. #u84847_div {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:0px;
  8142. top:0px;
  8143. width:88px;
  8144. height:40px;
  8145. background:inherit;
  8146. background-color:rgba(255, 255, 255, 0);
  8147. border:none;
  8148. border-top:0px;
  8149. border-right:0px;
  8150. border-bottom:0px;
  8151. border-radius:0px;
  8152. border-top-left-radius:0px;
  8153. border-bottom-left-radius:0px;
  8154. -moz-box-shadow:none;
  8155. -webkit-box-shadow:none;
  8156. box-shadow:none;
  8157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8158. font-weight:400;
  8159. font-style:normal;
  8160. font-size:14px;
  8161. color:#7F7F7F;
  8162. text-align:right;
  8163. }
  8164. #u84847 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:1724px;
  8168. top:177px;
  8169. width:88px;
  8170. height:40px;
  8171. display:flex;
  8172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:14px;
  8176. color:#7F7F7F;
  8177. text-align:right;
  8178. }
  8179. #u84847 .text {
  8180. position:absolute;
  8181. align-self:center;
  8182. padding:5px 10px 5px 0px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u84847_text {
  8187. border-width:0px;
  8188. white-space:nowrap;
  8189. text-transform:none;
  8190. }
  8191. #u84848 {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:0px;
  8197. height:0px;
  8198. }
  8199. #u84849_div {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:0px;
  8203. top:0px;
  8204. width:400px;
  8205. height:40px;
  8206. background:inherit;
  8207. background-color:rgba(255, 255, 255, 1);
  8208. box-sizing:border-box;
  8209. border-width:1px;
  8210. border-style:solid;
  8211. border-color:rgba(201, 201, 201, 1);
  8212. border-radius:4px;
  8213. -moz-box-shadow:none;
  8214. -webkit-box-shadow:none;
  8215. box-shadow:none;
  8216. font-family:'Microsoft YaHei', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:14px;
  8220. color:#CCCCCC;
  8221. text-align:left;
  8222. }
  8223. #u84849 {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:1822px;
  8227. top:178px;
  8228. width:400px;
  8229. height:40px;
  8230. display:flex;
  8231. font-family:'Microsoft YaHei', sans-serif;
  8232. font-weight:400;
  8233. font-style:normal;
  8234. font-size:14px;
  8235. color:#CCCCCC;
  8236. text-align:left;
  8237. }
  8238. #u84849 .text {
  8239. position:absolute;
  8240. align-self:center;
  8241. padding:2px 8px 2px 8px;
  8242. box-sizing:border-box;
  8243. width:100%;
  8244. }
  8245. #u84849_text {
  8246. border-width:0px;
  8247. word-wrap:break-word;
  8248. text-transform:none;
  8249. visibility:hidden;
  8250. }
  8251. #u84850_input {
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:380px;
  8256. height:38px;
  8257. padding:2px 2px 2px 2px;
  8258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8259. font-weight:400;
  8260. font-style:normal;
  8261. font-size:14px;
  8262. letter-spacing:normal;
  8263. color:#000000;
  8264. vertical-align:none;
  8265. text-align:left;
  8266. text-transform:none;
  8267. background-color:transparent;
  8268. border-color:transparent;
  8269. }
  8270. #u84850_input.disabled {
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:380px;
  8275. height:38px;
  8276. padding:2px 2px 2px 2px;
  8277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8278. font-weight:400;
  8279. font-style:normal;
  8280. font-size:14px;
  8281. letter-spacing:normal;
  8282. color:#000000;
  8283. vertical-align:none;
  8284. text-align:left;
  8285. text-transform:none;
  8286. background-color:transparent;
  8287. border-color:transparent;
  8288. }
  8289. #u84850_div {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:0px;
  8293. top:0px;
  8294. width:380px;
  8295. height:38px;
  8296. background:inherit;
  8297. background-color:rgba(255, 255, 255, 1);
  8298. border:none;
  8299. border-radius:0px;
  8300. -moz-box-shadow:none;
  8301. -webkit-box-shadow:none;
  8302. box-shadow:none;
  8303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8304. font-weight:400;
  8305. font-style:normal;
  8306. font-size:14px;
  8307. }
  8308. #u84850 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:1833px;
  8312. top:179px;
  8313. width:380px;
  8314. height:38px;
  8315. display:flex;
  8316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:14px;
  8320. }
  8321. #u84850 .text {
  8322. position:absolute;
  8323. align-self:center;
  8324. padding:2px 2px 2px 2px;
  8325. box-sizing:border-box;
  8326. width:100%;
  8327. }
  8328. #u84850_div.disabled {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:0px;
  8332. top:0px;
  8333. width:380px;
  8334. height:38px;
  8335. background:inherit;
  8336. background-color:rgba(240, 240, 240, 1);
  8337. border:none;
  8338. border-radius:0px;
  8339. -moz-box-shadow:none;
  8340. -webkit-box-shadow:none;
  8341. box-shadow:none;
  8342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8343. font-weight:400;
  8344. font-style:normal;
  8345. font-size:14px;
  8346. }
  8347. #u84850.disabled {
  8348. }
  8349. #u84851_div {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:88px;
  8355. height:40px;
  8356. background:inherit;
  8357. background-color:rgba(255, 255, 255, 0);
  8358. border:none;
  8359. border-top:0px;
  8360. border-right:0px;
  8361. border-bottom:0px;
  8362. border-radius:0px;
  8363. border-top-left-radius:0px;
  8364. border-bottom-left-radius:0px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8369. font-weight:400;
  8370. font-style:normal;
  8371. font-size:14px;
  8372. color:#7F7F7F;
  8373. text-align:right;
  8374. }
  8375. #u84851 {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:1724px;
  8379. top:233px;
  8380. width:88px;
  8381. height:40px;
  8382. display:flex;
  8383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8384. font-weight:400;
  8385. font-style:normal;
  8386. font-size:14px;
  8387. color:#7F7F7F;
  8388. text-align:right;
  8389. }
  8390. #u84851 .text {
  8391. position:absolute;
  8392. align-self:center;
  8393. padding:5px 10px 5px 0px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u84851_text {
  8398. border-width:0px;
  8399. white-space:nowrap;
  8400. text-transform:none;
  8401. }
  8402. #u84852 {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:0px;
  8408. height:0px;
  8409. }
  8410. #u84853_div {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:0px;
  8414. top:0px;
  8415. width:400px;
  8416. height:40px;
  8417. background:inherit;
  8418. background-color:rgba(255, 255, 255, 1);
  8419. box-sizing:border-box;
  8420. border-width:1px;
  8421. border-style:solid;
  8422. border-color:rgba(215, 215, 215, 1);
  8423. border-radius:4px;
  8424. -moz-box-shadow:none;
  8425. -webkit-box-shadow:none;
  8426. box-shadow:none;
  8427. font-size:11px;
  8428. }
  8429. #u84853 {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:1822px;
  8433. top:233px;
  8434. width:400px;
  8435. height:40px;
  8436. display:flex;
  8437. font-size:11px;
  8438. }
  8439. #u84853 .text {
  8440. position:absolute;
  8441. align-self:center;
  8442. padding:2px 2px 2px 2px;
  8443. box-sizing:border-box;
  8444. width:100%;
  8445. }
  8446. #u84853_text {
  8447. border-width:0px;
  8448. word-wrap:break-word;
  8449. text-transform:none;
  8450. visibility:hidden;
  8451. }
  8452. #u84854_input {
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:380px;
  8457. height:31px;
  8458. padding:2px 2px 2px 2px;
  8459. font-family:'ArialMT', 'Arial', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:12px;
  8463. letter-spacing:normal;
  8464. color:#AAAAAA;
  8465. vertical-align:none;
  8466. text-align:left;
  8467. text-transform:none;
  8468. background-color:transparent;
  8469. border-color:transparent;
  8470. }
  8471. #u84854_input.disabled {
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:380px;
  8476. height:31px;
  8477. padding:2px 2px 2px 2px;
  8478. font-family:'ArialMT', 'Arial', sans-serif;
  8479. font-weight:400;
  8480. font-style:normal;
  8481. font-size:12px;
  8482. letter-spacing:normal;
  8483. color:#AAAAAA;
  8484. vertical-align:none;
  8485. text-align:left;
  8486. text-transform:none;
  8487. background-color:transparent;
  8488. border-color:transparent;
  8489. }
  8490. #u84854_div {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:380px;
  8496. height:31px;
  8497. background:inherit;
  8498. background-color:rgba(255, 255, 255, 1);
  8499. border:none;
  8500. border-radius:0px;
  8501. -moz-box-shadow:none;
  8502. -webkit-box-shadow:none;
  8503. box-shadow:none;
  8504. font-size:12px;
  8505. color:#AAAAAA;
  8506. }
  8507. #u84854 {
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:1833px;
  8511. top:236px;
  8512. width:380px;
  8513. height:31px;
  8514. display:flex;
  8515. font-size:12px;
  8516. color:#AAAAAA;
  8517. }
  8518. #u84854 .text {
  8519. position:absolute;
  8520. align-self:flex-start;
  8521. padding:2px 2px 2px 2px;
  8522. box-sizing:border-box;
  8523. width:100%;
  8524. }
  8525. #u84854_div.disabled {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:380px;
  8531. height:31px;
  8532. background:inherit;
  8533. background-color:rgba(240, 240, 240, 1);
  8534. border:none;
  8535. border-radius:0px;
  8536. -moz-box-shadow:none;
  8537. -webkit-box-shadow:none;
  8538. box-shadow:none;
  8539. font-size:12px;
  8540. color:#AAAAAA;
  8541. }
  8542. #u84854.disabled {
  8543. }
  8544. .u84854_input_option {
  8545. font-size:12px;
  8546. }
  8547. #u84855_div {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:0px;
  8551. top:0px;
  8552. width:109px;
  8553. height:40px;
  8554. background:inherit;
  8555. background-color:rgba(255, 255, 255, 0);
  8556. border:none;
  8557. border-top:0px;
  8558. border-right:0px;
  8559. border-bottom:0px;
  8560. border-radius:0px;
  8561. border-top-left-radius:0px;
  8562. border-bottom-left-radius:0px;
  8563. -moz-box-shadow:none;
  8564. -webkit-box-shadow:none;
  8565. box-shadow:none;
  8566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8567. font-weight:400;
  8568. font-style:normal;
  8569. font-size:14px;
  8570. color:#7F7F7F;
  8571. text-align:right;
  8572. }
  8573. #u84855 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:1703px;
  8577. top:283px;
  8578. width:109px;
  8579. height:40px;
  8580. display:flex;
  8581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8582. font-weight:400;
  8583. font-style:normal;
  8584. font-size:14px;
  8585. color:#7F7F7F;
  8586. text-align:right;
  8587. }
  8588. #u84855 .text {
  8589. position:absolute;
  8590. align-self:center;
  8591. padding:5px 10px 5px 0px;
  8592. box-sizing:border-box;
  8593. width:100%;
  8594. }
  8595. #u84855_text {
  8596. border-width:0px;
  8597. white-space:nowrap;
  8598. text-transform:none;
  8599. }
  8600. #u84856 {
  8601. border-width:0px;
  8602. position:absolute;
  8603. left:0px;
  8604. top:0px;
  8605. width:0px;
  8606. height:0px;
  8607. }
  8608. #u84857_div {
  8609. border-width:0px;
  8610. position:absolute;
  8611. left:0px;
  8612. top:0px;
  8613. width:400px;
  8614. height:40px;
  8615. background:inherit;
  8616. background-color:rgba(255, 255, 255, 1);
  8617. box-sizing:border-box;
  8618. border-width:1px;
  8619. border-style:solid;
  8620. border-color:rgba(201, 201, 201, 1);
  8621. border-radius:4px;
  8622. -moz-box-shadow:none;
  8623. -webkit-box-shadow:none;
  8624. box-shadow:none;
  8625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8626. font-weight:400;
  8627. font-style:normal;
  8628. font-size:12px;
  8629. text-align:right;
  8630. }
  8631. #u84857 {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:1822px;
  8635. top:283px;
  8636. width:400px;
  8637. height:40px;
  8638. display:flex;
  8639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8640. font-weight:400;
  8641. font-style:normal;
  8642. font-size:12px;
  8643. text-align:right;
  8644. }
  8645. #u84857 .text {
  8646. position:absolute;
  8647. align-self:center;
  8648. padding:2px 8px 2px 8px;
  8649. box-sizing:border-box;
  8650. width:100%;
  8651. }
  8652. #u84857_text {
  8653. border-width:0px;
  8654. word-wrap:break-word;
  8655. text-transform:none;
  8656. }
  8657. #u84858_input {
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:323px;
  8662. height:38px;
  8663. padding:2px 2px 2px 2px;
  8664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8665. font-weight:400;
  8666. font-style:normal;
  8667. font-size:14px;
  8668. letter-spacing:normal;
  8669. color:#000000;
  8670. vertical-align:none;
  8671. text-align:left;
  8672. text-transform:none;
  8673. background-color:transparent;
  8674. border-color:transparent;
  8675. }
  8676. #u84858_input.disabled {
  8677. position:absolute;
  8678. left:0px;
  8679. top:0px;
  8680. width:323px;
  8681. height:38px;
  8682. padding:2px 2px 2px 2px;
  8683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:14px;
  8687. letter-spacing:normal;
  8688. color:#000000;
  8689. vertical-align:none;
  8690. text-align:left;
  8691. text-transform:none;
  8692. background-color:transparent;
  8693. border-color:transparent;
  8694. }
  8695. #u84858_div {
  8696. border-width:0px;
  8697. position:absolute;
  8698. left:0px;
  8699. top:0px;
  8700. width:323px;
  8701. height:38px;
  8702. background:inherit;
  8703. background-color:rgba(255, 255, 255, 1);
  8704. border:none;
  8705. border-radius:0px;
  8706. -moz-box-shadow:none;
  8707. -webkit-box-shadow:none;
  8708. box-shadow:none;
  8709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8710. font-weight:400;
  8711. font-style:normal;
  8712. font-size:14px;
  8713. }
  8714. #u84858 {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:1833px;
  8718. top:284px;
  8719. width:323px;
  8720. height:38px;
  8721. display:flex;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:14px;
  8726. }
  8727. #u84858 .text {
  8728. position:absolute;
  8729. align-self:center;
  8730. padding:2px 2px 2px 2px;
  8731. box-sizing:border-box;
  8732. width:100%;
  8733. }
  8734. #u84858_div.disabled {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:0px;
  8738. top:0px;
  8739. width:323px;
  8740. height:38px;
  8741. background:inherit;
  8742. background-color:rgba(240, 240, 240, 1);
  8743. border:none;
  8744. border-radius:0px;
  8745. -moz-box-shadow:none;
  8746. -webkit-box-shadow:none;
  8747. box-shadow:none;
  8748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8749. font-weight:400;
  8750. font-style:normal;
  8751. font-size:14px;
  8752. }
  8753. #u84858.disabled {
  8754. }
  8755. #u84859_div {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:0px;
  8759. top:0px;
  8760. width:81px;
  8761. height:40px;
  8762. background:inherit;
  8763. background-color:rgba(255, 255, 255, 0);
  8764. border:none;
  8765. border-top:0px;
  8766. border-right:0px;
  8767. border-bottom:0px;
  8768. border-radius:0px;
  8769. border-top-left-radius:0px;
  8770. border-bottom-left-radius:0px;
  8771. -moz-box-shadow:none;
  8772. -webkit-box-shadow:none;
  8773. box-shadow:none;
  8774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8775. font-weight:400;
  8776. font-style:normal;
  8777. font-size:14px;
  8778. color:#7F7F7F;
  8779. text-align:right;
  8780. }
  8781. #u84859 {
  8782. border-width:0px;
  8783. position:absolute;
  8784. left:1731px;
  8785. top:333px;
  8786. width:81px;
  8787. height:40px;
  8788. display:flex;
  8789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8790. font-weight:400;
  8791. font-style:normal;
  8792. font-size:14px;
  8793. color:#7F7F7F;
  8794. text-align:right;
  8795. }
  8796. #u84859 .text {
  8797. position:absolute;
  8798. align-self:center;
  8799. padding:5px 10px 5px 0px;
  8800. box-sizing:border-box;
  8801. width:100%;
  8802. }
  8803. #u84859_text {
  8804. border-width:0px;
  8805. white-space:nowrap;
  8806. text-transform:none;
  8807. }
  8808. #u84860 {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:0px;
  8812. top:0px;
  8813. width:0px;
  8814. height:0px;
  8815. }
  8816. #u84861_div {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:400px;
  8822. height:40px;
  8823. background:inherit;
  8824. background-color:rgba(255, 255, 255, 1);
  8825. box-sizing:border-box;
  8826. border-width:1px;
  8827. border-style:solid;
  8828. border-color:rgba(201, 201, 201, 1);
  8829. border-radius:4px;
  8830. -moz-box-shadow:none;
  8831. -webkit-box-shadow:none;
  8832. box-shadow:none;
  8833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8834. font-weight:400;
  8835. font-style:normal;
  8836. font-size:12px;
  8837. text-align:right;
  8838. }
  8839. #u84861 {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:1822px;
  8843. top:333px;
  8844. width:400px;
  8845. height:40px;
  8846. display:flex;
  8847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. font-size:12px;
  8851. text-align:right;
  8852. }
  8853. #u84861 .text {
  8854. position:absolute;
  8855. align-self:center;
  8856. padding:2px 8px 2px 8px;
  8857. box-sizing:border-box;
  8858. width:100%;
  8859. }
  8860. #u84861_text {
  8861. border-width:0px;
  8862. word-wrap:break-word;
  8863. text-transform:none;
  8864. visibility:hidden;
  8865. }
  8866. #u84862_input {
  8867. position:absolute;
  8868. left:0px;
  8869. top:0px;
  8870. width:323px;
  8871. height:38px;
  8872. padding:2px 2px 2px 2px;
  8873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8874. font-weight:400;
  8875. font-style:normal;
  8876. font-size:14px;
  8877. letter-spacing:normal;
  8878. color:#000000;
  8879. vertical-align:none;
  8880. text-align:left;
  8881. text-transform:none;
  8882. background-color:transparent;
  8883. border-color:transparent;
  8884. }
  8885. #u84862_input.disabled {
  8886. position:absolute;
  8887. left:0px;
  8888. top:0px;
  8889. width:323px;
  8890. height:38px;
  8891. padding:2px 2px 2px 2px;
  8892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:14px;
  8896. letter-spacing:normal;
  8897. color:#000000;
  8898. vertical-align:none;
  8899. text-align:left;
  8900. text-transform:none;
  8901. background-color:transparent;
  8902. border-color:transparent;
  8903. }
  8904. #u84862_div {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:323px;
  8910. height:38px;
  8911. background:inherit;
  8912. background-color:rgba(255, 255, 255, 1);
  8913. border:none;
  8914. border-radius:0px;
  8915. -moz-box-shadow:none;
  8916. -webkit-box-shadow:none;
  8917. box-shadow:none;
  8918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:14px;
  8922. }
  8923. #u84862 {
  8924. border-width:0px;
  8925. position:absolute;
  8926. left:1833px;
  8927. top:334px;
  8928. width:323px;
  8929. height:38px;
  8930. display:flex;
  8931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8932. font-weight:400;
  8933. font-style:normal;
  8934. font-size:14px;
  8935. }
  8936. #u84862 .text {
  8937. position:absolute;
  8938. align-self:center;
  8939. padding:2px 2px 2px 2px;
  8940. box-sizing:border-box;
  8941. width:100%;
  8942. }
  8943. #u84862_div.disabled {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:0px;
  8947. top:0px;
  8948. width:323px;
  8949. height:38px;
  8950. background:inherit;
  8951. background-color:rgba(240, 240, 240, 1);
  8952. border:none;
  8953. border-radius:0px;
  8954. -moz-box-shadow:none;
  8955. -webkit-box-shadow:none;
  8956. box-shadow:none;
  8957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8958. font-weight:400;
  8959. font-style:normal;
  8960. font-size:14px;
  8961. }
  8962. #u84862.disabled {
  8963. }
  8964. #u84863 {
  8965. border-width:0px;
  8966. position:absolute;
  8967. left:0px;
  8968. top:0px;
  8969. width:0px;
  8970. height:0px;
  8971. }
  8972. #u84864_div {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:0px;
  8976. top:0px;
  8977. width:200px;
  8978. height:1180px;
  8979. background:inherit;
  8980. background-color:rgba(255, 255, 255, 1);
  8981. border:none;
  8982. border-radius:0px;
  8983. -moz-box-shadow:none;
  8984. -webkit-box-shadow:none;
  8985. box-shadow:none;
  8986. }
  8987. #u84864 {
  8988. border-width:0px;
  8989. position:absolute;
  8990. left:121px;
  8991. top:50px;
  8992. width:200px;
  8993. height:1180px;
  8994. display:flex;
  8995. }
  8996. #u84864 .text {
  8997. position:absolute;
  8998. align-self:center;
  8999. padding:2px 2px 2px 2px;
  9000. box-sizing:border-box;
  9001. width:100%;
  9002. }
  9003. #u84864_text {
  9004. border-width:0px;
  9005. word-wrap:break-word;
  9006. text-transform:none;
  9007. visibility:hidden;
  9008. }
  9009. #u84865_div {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:0px;
  9013. top:0px;
  9014. width:200px;
  9015. height:60px;
  9016. background:inherit;
  9017. background-color:rgba(224, 231, 247, 1);
  9018. border:none;
  9019. border-radius:0px;
  9020. -moz-box-shadow:none;
  9021. -webkit-box-shadow:none;
  9022. box-shadow:none;
  9023. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9024. font-weight:500;
  9025. font-style:normal;
  9026. font-size:18px;
  9027. }
  9028. #u84865 {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:121px;
  9032. top:50px;
  9033. width:200px;
  9034. height:60px;
  9035. display:flex;
  9036. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9037. font-weight:500;
  9038. font-style:normal;
  9039. font-size:18px;
  9040. }
  9041. #u84865 .text {
  9042. position:absolute;
  9043. align-self:center;
  9044. padding:0px 0px 0px 20px;
  9045. box-sizing:border-box;
  9046. width:100%;
  9047. }
  9048. #u84865_text {
  9049. border-width:0px;
  9050. word-wrap:break-word;
  9051. text-transform:none;
  9052. }
  9053. #u84866_div {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:0px;
  9057. top:0px;
  9058. width:97px;
  9059. height:22px;
  9060. background:inherit;
  9061. background-color:rgba(255, 255, 255, 0);
  9062. border:none;
  9063. border-radius:0px;
  9064. -moz-box-shadow:none;
  9065. -webkit-box-shadow:none;
  9066. box-shadow:none;
  9067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9068. font-weight:400;
  9069. font-style:normal;
  9070. font-size:16px;
  9071. }
  9072. #u84866 {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:148px;
  9076. top:369px;
  9077. width:97px;
  9078. height:22px;
  9079. display:flex;
  9080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9081. font-weight:400;
  9082. font-style:normal;
  9083. font-size:16px;
  9084. }
  9085. #u84866 .text {
  9086. position:absolute;
  9087. align-self:flex-start;
  9088. padding:0px 0px 0px 0px;
  9089. box-sizing:border-box;
  9090. width:100%;
  9091. }
  9092. #u84866_text {
  9093. border-width:0px;
  9094. word-wrap:break-word;
  9095. text-transform:none;
  9096. }
  9097. #u84867_div {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:0px;
  9101. top:0px;
  9102. width:97px;
  9103. height:22px;
  9104. background:inherit;
  9105. background-color:rgba(255, 255, 255, 0);
  9106. border:none;
  9107. border-radius:0px;
  9108. -moz-box-shadow:none;
  9109. -webkit-box-shadow:none;
  9110. box-shadow:none;
  9111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. font-size:16px;
  9115. }
  9116. #u84867 {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:148px;
  9120. top:597px;
  9121. width:97px;
  9122. height:22px;
  9123. display:flex;
  9124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9125. font-weight:400;
  9126. font-style:normal;
  9127. font-size:16px;
  9128. }
  9129. #u84867 .text {
  9130. position:absolute;
  9131. align-self:flex-start;
  9132. padding:0px 0px 0px 0px;
  9133. box-sizing:border-box;
  9134. width:100%;
  9135. }
  9136. #u84867_text {
  9137. border-width:0px;
  9138. word-wrap:break-word;
  9139. text-transform:none;
  9140. }
  9141. #u84868_div {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:49px;
  9147. height:17px;
  9148. background:inherit;
  9149. background-color:rgba(255, 255, 255, 0);
  9150. border:none;
  9151. border-radius:0px;
  9152. -moz-box-shadow:none;
  9153. -webkit-box-shadow:none;
  9154. box-shadow:none;
  9155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9156. font-weight:400;
  9157. font-style:normal;
  9158. font-size:12px;
  9159. color:#AAAAAA;
  9160. }
  9161. #u84868 {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:148px;
  9165. top:518px;
  9166. width:49px;
  9167. height:17px;
  9168. display:flex;
  9169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9170. font-weight:400;
  9171. font-style:normal;
  9172. font-size:12px;
  9173. color:#AAAAAA;
  9174. }
  9175. #u84868 .text {
  9176. position:absolute;
  9177. align-self:flex-start;
  9178. padding:0px 0px 0px 0px;
  9179. box-sizing:border-box;
  9180. width:100%;
  9181. }
  9182. #u84868_text {
  9183. border-width:0px;
  9184. white-space:nowrap;
  9185. text-transform:none;
  9186. }
  9187. #u84869_div {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:65px;
  9193. height:22px;
  9194. background:inherit;
  9195. background-color:rgba(255, 255, 255, 0);
  9196. border:none;
  9197. border-radius:0px;
  9198. -moz-box-shadow:none;
  9199. -webkit-box-shadow:none;
  9200. box-shadow:none;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. font-size:16px;
  9205. }
  9206. #u84869 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:148px;
  9210. top:455px;
  9211. width:65px;
  9212. height:22px;
  9213. display:flex;
  9214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9215. font-weight:400;
  9216. font-style:normal;
  9217. font-size:16px;
  9218. }
  9219. #u84869 .text {
  9220. position:absolute;
  9221. align-self:flex-start;
  9222. padding:0px 0px 0px 0px;
  9223. box-sizing:border-box;
  9224. width:100%;
  9225. }
  9226. #u84869_text {
  9227. border-width:0px;
  9228. white-space:nowrap;
  9229. text-transform:none;
  9230. }
  9231. #u84870_img {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:0px;
  9235. top:0px;
  9236. width:201px;
  9237. height:2px;
  9238. }
  9239. #u84870 {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:121px;
  9243. top:497px;
  9244. width:200px;
  9245. height:1px;
  9246. display:flex;
  9247. }
  9248. #u84870 .text {
  9249. position:absolute;
  9250. align-self:center;
  9251. padding:2px 2px 2px 2px;
  9252. box-sizing:border-box;
  9253. width:100%;
  9254. }
  9255. #u84870_text {
  9256. border-width:0px;
  9257. word-wrap:break-word;
  9258. text-transform:none;
  9259. visibility:hidden;
  9260. }
  9261. #u84871_div {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:0px;
  9265. top:0px;
  9266. width:49px;
  9267. height:17px;
  9268. background:inherit;
  9269. background-color:rgba(255, 255, 255, 0);
  9270. border:none;
  9271. border-radius:0px;
  9272. -moz-box-shadow:none;
  9273. -webkit-box-shadow:none;
  9274. box-shadow:none;
  9275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9276. font-weight:400;
  9277. font-style:normal;
  9278. font-size:12px;
  9279. color:#AAAAAA;
  9280. }
  9281. #u84871 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:148px;
  9285. top:332px;
  9286. width:49px;
  9287. height:17px;
  9288. display:flex;
  9289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9290. font-weight:400;
  9291. font-style:normal;
  9292. font-size:12px;
  9293. color:#AAAAAA;
  9294. }
  9295. #u84871 .text {
  9296. position:absolute;
  9297. align-self:flex-start;
  9298. padding:0px 0px 0px 0px;
  9299. box-sizing:border-box;
  9300. width:100%;
  9301. }
  9302. #u84871_text {
  9303. border-width:0px;
  9304. white-space:nowrap;
  9305. text-transform:none;
  9306. }
  9307. #u84872_div {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:97px;
  9313. height:22px;
  9314. background:inherit;
  9315. background-color:rgba(255, 255, 255, 0);
  9316. border:none;
  9317. border-radius:0px;
  9318. -moz-box-shadow:none;
  9319. -webkit-box-shadow:none;
  9320. box-shadow:none;
  9321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9322. font-weight:400;
  9323. font-style:normal;
  9324. font-size:16px;
  9325. }
  9326. #u84872 {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:148px;
  9330. top:639px;
  9331. width:97px;
  9332. height:22px;
  9333. display:flex;
  9334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9335. font-weight:400;
  9336. font-style:normal;
  9337. font-size:16px;
  9338. }
  9339. #u84872 .text {
  9340. position:absolute;
  9341. align-self:flex-start;
  9342. padding:0px 0px 0px 0px;
  9343. box-sizing:border-box;
  9344. width:100%;
  9345. }
  9346. #u84872_text {
  9347. border-width:0px;
  9348. word-wrap:break-word;
  9349. text-transform:none;
  9350. }
  9351. #u84873_div {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:0px;
  9355. top:0px;
  9356. width:97px;
  9357. height:22px;
  9358. background:inherit;
  9359. background-color:rgba(255, 255, 255, 0);
  9360. border:none;
  9361. border-radius:0px;
  9362. -moz-box-shadow:none;
  9363. -webkit-box-shadow:none;
  9364. box-shadow:none;
  9365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9366. font-weight:400;
  9367. font-style:normal;
  9368. font-size:16px;
  9369. }
  9370. #u84873 {
  9371. border-width:0px;
  9372. position:absolute;
  9373. left:148px;
  9374. top:253px;
  9375. width:97px;
  9376. height:22px;
  9377. display:flex;
  9378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9379. font-weight:400;
  9380. font-style:normal;
  9381. font-size:16px;
  9382. }
  9383. #u84873 .text {
  9384. position:absolute;
  9385. align-self:flex-start;
  9386. padding:0px 0px 0px 0px;
  9387. box-sizing:border-box;
  9388. width:100%;
  9389. }
  9390. #u84873_text {
  9391. border-width:0px;
  9392. word-wrap:break-word;
  9393. text-transform:none;
  9394. }
  9395. #u84874_div {
  9396. border-width:0px;
  9397. position:absolute;
  9398. left:0px;
  9399. top:0px;
  9400. width:97px;
  9401. height:22px;
  9402. background:inherit;
  9403. background-color:rgba(255, 255, 255, 0);
  9404. border:none;
  9405. border-radius:0px;
  9406. -moz-box-shadow:none;
  9407. -webkit-box-shadow:none;
  9408. box-shadow:none;
  9409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9410. font-weight:400;
  9411. font-style:normal;
  9412. font-size:16px;
  9413. }
  9414. #u84874 {
  9415. border-width:0px;
  9416. position:absolute;
  9417. left:148px;
  9418. top:413px;
  9419. width:97px;
  9420. height:22px;
  9421. display:flex;
  9422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9423. font-weight:400;
  9424. font-style:normal;
  9425. font-size:16px;
  9426. }
  9427. #u84874 .text {
  9428. position:absolute;
  9429. align-self:flex-start;
  9430. padding:0px 0px 0px 0px;
  9431. box-sizing:border-box;
  9432. width:100%;
  9433. }
  9434. #u84874_text {
  9435. border-width:0px;
  9436. word-wrap:break-word;
  9437. text-transform:none;
  9438. }
  9439. #u84875_div {
  9440. border-width:0px;
  9441. position:absolute;
  9442. left:0px;
  9443. top:0px;
  9444. width:97px;
  9445. height:22px;
  9446. background:inherit;
  9447. background-color:rgba(255, 255, 255, 0);
  9448. border:none;
  9449. border-radius:0px;
  9450. -moz-box-shadow:none;
  9451. -webkit-box-shadow:none;
  9452. box-shadow:none;
  9453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9454. font-weight:400;
  9455. font-style:normal;
  9456. font-size:16px;
  9457. }
  9458. #u84875 {
  9459. border-width:0px;
  9460. position:absolute;
  9461. left:148px;
  9462. top:555px;
  9463. width:97px;
  9464. height:22px;
  9465. display:flex;
  9466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9467. font-weight:400;
  9468. font-style:normal;
  9469. font-size:16px;
  9470. }
  9471. #u84875 .text {
  9472. position:absolute;
  9473. align-self:flex-start;
  9474. padding:0px 0px 0px 0px;
  9475. box-sizing:border-box;
  9476. width:100%;
  9477. }
  9478. #u84875_text {
  9479. border-width:0px;
  9480. word-wrap:break-word;
  9481. text-transform:none;
  9482. }
  9483. #u84876_div {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:0px;
  9487. top:0px;
  9488. width:97px;
  9489. height:22px;
  9490. background:inherit;
  9491. background-color:rgba(255, 255, 255, 0);
  9492. border:none;
  9493. border-radius:0px;
  9494. -moz-box-shadow:none;
  9495. -webkit-box-shadow:none;
  9496. box-shadow:none;
  9497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9498. font-weight:400;
  9499. font-style:normal;
  9500. font-size:16px;
  9501. }
  9502. #u84876 {
  9503. border-width:0px;
  9504. position:absolute;
  9505. left:148px;
  9506. top:167px;
  9507. width:97px;
  9508. height:22px;
  9509. display:flex;
  9510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9511. font-weight:400;
  9512. font-style:normal;
  9513. font-size:16px;
  9514. }
  9515. #u84876 .text {
  9516. position:absolute;
  9517. align-self:flex-start;
  9518. padding:0px 0px 0px 0px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u84876_text {
  9523. border-width:0px;
  9524. word-wrap:break-word;
  9525. text-transform:none;
  9526. }
  9527. #u84877_img {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:0px;
  9531. top:0px;
  9532. width:201px;
  9533. height:2px;
  9534. }
  9535. #u84877 {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:121px;
  9539. top:302px;
  9540. width:200px;
  9541. height:1px;
  9542. display:flex;
  9543. }
  9544. #u84877 .text {
  9545. position:absolute;
  9546. align-self:center;
  9547. padding:2px 2px 2px 2px;
  9548. box-sizing:border-box;
  9549. width:100%;
  9550. }
  9551. #u84877_text {
  9552. border-width:0px;
  9553. word-wrap:break-word;
  9554. text-transform:none;
  9555. visibility:hidden;
  9556. }
  9557. #u84878_div {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:49px;
  9563. height:17px;
  9564. background:inherit;
  9565. background-color:rgba(255, 255, 255, 0);
  9566. border:none;
  9567. border-radius:0px;
  9568. -moz-box-shadow:none;
  9569. -webkit-box-shadow:none;
  9570. box-shadow:none;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. font-size:12px;
  9575. color:#AAAAAA;
  9576. }
  9577. #u84878 {
  9578. border-width:0px;
  9579. position:absolute;
  9580. left:148px;
  9581. top:130px;
  9582. width:49px;
  9583. height:17px;
  9584. display:flex;
  9585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9586. font-weight:400;
  9587. font-style:normal;
  9588. font-size:12px;
  9589. color:#AAAAAA;
  9590. }
  9591. #u84878 .text {
  9592. position:absolute;
  9593. align-self:flex-start;
  9594. padding:0px 0px 0px 0px;
  9595. box-sizing:border-box;
  9596. width:100%;
  9597. }
  9598. #u84878_text {
  9599. border-width:0px;
  9600. white-space:nowrap;
  9601. text-transform:none;
  9602. }
  9603. #u84879_div {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:0px;
  9607. top:0px;
  9608. width:97px;
  9609. height:22px;
  9610. background:inherit;
  9611. background-color:rgba(255, 255, 255, 0);
  9612. border:none;
  9613. border-radius:0px;
  9614. -moz-box-shadow:none;
  9615. -webkit-box-shadow:none;
  9616. box-shadow:none;
  9617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9618. font-weight:400;
  9619. font-style:normal;
  9620. font-size:16px;
  9621. }
  9622. #u84879 {
  9623. border-width:0px;
  9624. position:absolute;
  9625. left:148px;
  9626. top:209px;
  9627. width:97px;
  9628. height:22px;
  9629. display:flex;
  9630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9631. font-weight:400;
  9632. font-style:normal;
  9633. font-size:16px;
  9634. }
  9635. #u84879 .text {
  9636. position:absolute;
  9637. align-self:flex-start;
  9638. padding:0px 0px 0px 0px;
  9639. box-sizing:border-box;
  9640. width:100%;
  9641. }
  9642. #u84879_text {
  9643. border-width:0px;
  9644. word-wrap:break-word;
  9645. text-transform:none;
  9646. }