styles.css 167 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2337px;
  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. #u81610_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. #u81610 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u81610 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u81610_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u81611_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. #u81611 {
  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. #u81611 .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. #u81611_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u81612_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. #u81612 {
  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. #u81612 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u81612_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u81613 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u81614_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u81614 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u81614 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u81614_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u81615_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. #u81615 {
  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. #u81615 .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. #u81615_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u81616_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. #u81616 {
  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. #u81616 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u81616_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u81617 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u81618_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u81618_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u81618_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u81618 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u81618 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u81618_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u81618.disabled {
  356. }
  357. .u81618_input_option {
  358. font-size:14px;
  359. }
  360. #u81619_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u81619 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u81619 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u81619_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u81620_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u81620 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u81620 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u81620_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u81621_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u81621 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u81621 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u81621_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u81622 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u81623_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u81623 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u81623 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u81623_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u81624_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u81624 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u81624 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u81624_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u81625 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u81626_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u81626 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u81626 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u81626_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u81627_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u81627 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u81627 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u81627_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u81628 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u81629_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u81629 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u81629 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u81629_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u81630_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u81630 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u81630 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u81630_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u81631 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u81632_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u81632 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u81632 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u81632_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u81633_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u81633 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u81633 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u81633_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u81634 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u81635_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u81635 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u81635 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u81635_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u81636_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u81636 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u81636 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u81636_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u81637 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u81638_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u81638 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u81638 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u81638_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u81639_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u81639 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u81639 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u81639_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u81640 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u81641_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u81641 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u81641 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u81641_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u81642_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u81642 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u81642 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u81642_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u81643 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u81644_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u81644 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u81644 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u81644_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u81645_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u81645 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u81645 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u81645_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u81646 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u81647_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u81647 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u81647 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u81647_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u81648_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u81648 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u81648 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u81648_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u81649 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u81650_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u81650 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u81650 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u81650_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u81651_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u81651 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u81651 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u81651_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u81652_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u81652 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u81652 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u81652_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u81653_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u81653 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u81653 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u81653_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u81654_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u81654 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u81654 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u81654_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u81655_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u81655 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u81655 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u81655_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u81656 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u81657_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u81657 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u81657 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u81657_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u81658_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u81658 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u81658 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u81658_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u81659 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u81660_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u81660 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u81660 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u81660_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u81661_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u81661 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u81661 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u81661_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u81662_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. text-align:left;
  1658. }
  1659. #u81662 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:331px;
  1663. top:50px;
  1664. width:1260px;
  1665. height:1191px;
  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. text-align:left;
  1673. }
  1674. #u81662 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u81662_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u81663_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:73px;
  1693. height:50px;
  1694. background:inherit;
  1695. background-color:rgba(255, 255, 255, 0);
  1696. border:none;
  1697. border-left:0px;
  1698. border-top:0px;
  1699. border-right:0px;
  1700. border-radius:0px;
  1701. border-bottom-right-radius:0px;
  1702. border-bottom-left-radius:0px;
  1703. -moz-box-shadow:none;
  1704. -webkit-box-shadow:none;
  1705. box-shadow:none;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u81663 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:350px;
  1715. top:50px;
  1716. width:73px;
  1717. height:50px;
  1718. display:flex;
  1719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1720. font-weight:400;
  1721. font-style:normal;
  1722. font-size:18px;
  1723. }
  1724. #u81663 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:0px 0px 0px 0px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u81663_text {
  1732. border-width:0px;
  1733. white-space:nowrap;
  1734. text-transform:none;
  1735. }
  1736. #u81664 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:0px;
  1742. height:0px;
  1743. }
  1744. #u81665 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:0px;
  1750. height:0px;
  1751. }
  1752. #u81666_div {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:59px;
  1758. height:30px;
  1759. background:inherit;
  1760. background-color:rgba(24, 144, 255, 1);
  1761. box-sizing:border-box;
  1762. border-width:1px;
  1763. border-style:solid;
  1764. border-color:rgba(0, 153, 255, 1);
  1765. border-radius:4px;
  1766. -moz-box-shadow:none;
  1767. -webkit-box-shadow:none;
  1768. box-shadow:none;
  1769. font-family:'Microsoft YaHei', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:14px;
  1773. color:#FFFFFF;
  1774. }
  1775. #u81666 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:800px;
  1779. top:110px;
  1780. width:59px;
  1781. height:30px;
  1782. display:flex;
  1783. font-family:'Microsoft YaHei', sans-serif;
  1784. font-weight:400;
  1785. font-style:normal;
  1786. font-size:14px;
  1787. color:#FFFFFF;
  1788. }
  1789. #u81666 .text {
  1790. position:absolute;
  1791. align-self:center;
  1792. padding:5px 15px 5px 15px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u81666_text {
  1797. border-width:0px;
  1798. white-space:nowrap;
  1799. text-transform:none;
  1800. }
  1801. #u81667_div {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:55px;
  1807. height:30px;
  1808. background:inherit;
  1809. background-color:rgba(255, 255, 255, 1);
  1810. box-sizing:border-box;
  1811. border-width:1px;
  1812. border-style:solid;
  1813. border-color:rgba(170, 170, 170, 1);
  1814. border-radius:4px;
  1815. -moz-box-shadow:none;
  1816. -webkit-box-shadow:none;
  1817. box-shadow:none;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:12px;
  1822. color:#555555;
  1823. }
  1824. #u81667 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:869px;
  1828. top:110px;
  1829. width:55px;
  1830. height:30px;
  1831. display:flex;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:12px;
  1836. color:#555555;
  1837. }
  1838. #u81667 .text {
  1839. position:absolute;
  1840. align-self:center;
  1841. padding:5px 15px 5px 15px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u81667_text {
  1846. border-width:0px;
  1847. white-space:nowrap;
  1848. text-transform:none;
  1849. }
  1850. #u81668 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:0px;
  1856. height:0px;
  1857. }
  1858. #u81669_div {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:140px;
  1864. height:30px;
  1865. background:inherit;
  1866. background-color:rgba(255, 255, 255, 1);
  1867. box-sizing:border-box;
  1868. border-width:1px;
  1869. border-style:solid;
  1870. border-color:rgba(215, 215, 215, 1);
  1871. border-radius:4px;
  1872. -moz-box-shadow:none;
  1873. -webkit-box-shadow:none;
  1874. box-shadow:none;
  1875. font-size:11px;
  1876. }
  1877. #u81669 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:350px;
  1881. top:110px;
  1882. width:140px;
  1883. height:30px;
  1884. display:flex;
  1885. font-size:11px;
  1886. }
  1887. #u81669 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 2px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u81669_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. visibility:hidden;
  1899. }
  1900. #u81670_input {
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:126px;
  1905. height:23px;
  1906. padding:2px 2px 2px 2px;
  1907. font-family:'ArialMT', 'Arial', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:11px;
  1911. letter-spacing:normal;
  1912. color:#AAAAAA;
  1913. vertical-align:none;
  1914. text-align:left;
  1915. text-transform:none;
  1916. background-color:transparent;
  1917. border-color:transparent;
  1918. }
  1919. #u81670_input.disabled {
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:126px;
  1924. height:23px;
  1925. padding:2px 2px 2px 2px;
  1926. font-family:'ArialMT', 'Arial', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:11px;
  1930. letter-spacing:normal;
  1931. color:#AAAAAA;
  1932. vertical-align:none;
  1933. text-align:left;
  1934. text-transform:none;
  1935. background-color:transparent;
  1936. border-color:transparent;
  1937. }
  1938. #u81670_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:126px;
  1944. height:23px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 1);
  1947. border:none;
  1948. border-radius:0px;
  1949. -moz-box-shadow:none;
  1950. -webkit-box-shadow:none;
  1951. box-shadow:none;
  1952. font-size:11px;
  1953. color:#AAAAAA;
  1954. }
  1955. #u81670 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:357px;
  1959. top:112px;
  1960. width:126px;
  1961. height:23px;
  1962. display:flex;
  1963. font-size:11px;
  1964. color:#AAAAAA;
  1965. }
  1966. #u81670 .text {
  1967. position:absolute;
  1968. align-self:flex-start;
  1969. padding:2px 2px 2px 2px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u81670_div.disabled {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:126px;
  1979. height:23px;
  1980. background:inherit;
  1981. background-color:rgba(240, 240, 240, 1);
  1982. border:none;
  1983. border-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-size:11px;
  1988. color:#AAAAAA;
  1989. }
  1990. #u81670.disabled {
  1991. }
  1992. .u81670_input_option {
  1993. font-size:11px;
  1994. }
  1995. #u81671 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:0px;
  2001. height:0px;
  2002. }
  2003. #u81672_div {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:140px;
  2009. height:30px;
  2010. background:inherit;
  2011. background-color:rgba(255, 255, 255, 1);
  2012. box-sizing:border-box;
  2013. border-width:1px;
  2014. border-style:solid;
  2015. border-color:rgba(201, 201, 201, 1);
  2016. border-radius:4px;
  2017. -moz-box-shadow:none;
  2018. -webkit-box-shadow:none;
  2019. box-shadow:none;
  2020. font-family:'Microsoft YaHei', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:14px;
  2024. color:#CCCCCC;
  2025. text-align:left;
  2026. }
  2027. #u81672 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:500px;
  2031. top:110px;
  2032. width:140px;
  2033. height:30px;
  2034. display:flex;
  2035. font-family:'Microsoft YaHei', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:14px;
  2039. color:#CCCCCC;
  2040. text-align:left;
  2041. }
  2042. #u81672 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 8px 2px 8px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u81672_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. visibility:hidden;
  2054. }
  2055. #u81673_input {
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:127px;
  2060. height:25px;
  2061. padding:2px 2px 2px 2px;
  2062. font-family:'Microsoft YaHei', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:10px;
  2066. letter-spacing:normal;
  2067. color:#000000;
  2068. vertical-align:none;
  2069. text-align:left;
  2070. text-transform:none;
  2071. background-color:transparent;
  2072. border-color:transparent;
  2073. }
  2074. #u81673_input.disabled {
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:127px;
  2079. height:25px;
  2080. padding:2px 2px 2px 2px;
  2081. font-family:'Microsoft YaHei', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:10px;
  2085. letter-spacing:normal;
  2086. color:#000000;
  2087. vertical-align:none;
  2088. text-align:left;
  2089. text-transform:none;
  2090. background-color:transparent;
  2091. border-color:transparent;
  2092. }
  2093. #u81673_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:127px;
  2099. height:25px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 1);
  2102. border:none;
  2103. border-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. font-family:'Microsoft YaHei', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:10px;
  2111. }
  2112. #u81673 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:508px;
  2116. top:111px;
  2117. width:127px;
  2118. height:25px;
  2119. display:flex;
  2120. font-family:'Microsoft YaHei', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:10px;
  2124. }
  2125. #u81673 .text {
  2126. position:absolute;
  2127. align-self:center;
  2128. padding:2px 2px 2px 2px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u81673_div.disabled {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:127px;
  2138. height:25px;
  2139. background:inherit;
  2140. background-color:rgba(240, 240, 240, 1);
  2141. border:none;
  2142. border-radius:0px;
  2143. -moz-box-shadow:none;
  2144. -webkit-box-shadow:none;
  2145. box-shadow:none;
  2146. font-family:'Microsoft YaHei', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:10px;
  2150. }
  2151. #u81673.disabled {
  2152. }
  2153. #u81674 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:0px;
  2159. height:0px;
  2160. }
  2161. #u81675_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:140px;
  2167. height:30px;
  2168. background:inherit;
  2169. background-color:rgba(255, 255, 255, 1);
  2170. box-sizing:border-box;
  2171. border-width:1px;
  2172. border-style:solid;
  2173. border-color:rgba(188, 188, 188, 1);
  2174. border-radius:4px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. color:#FFFFFF;
  2183. }
  2184. #u81675 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:650px;
  2188. top:110px;
  2189. width:140px;
  2190. height:30px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. color:#FFFFFF;
  2197. }
  2198. #u81675 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:8px 15px 8px 15px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u81675_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. visibility:hidden;
  2210. }
  2211. #u81676_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:18px;
  2217. height:18px;
  2218. }
  2219. #u81676 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:767px;
  2223. top:116px;
  2224. width:18px;
  2225. height:18px;
  2226. display:flex;
  2227. opacity:0.5;
  2228. }
  2229. #u81676 .text {
  2230. position:absolute;
  2231. align-self:center;
  2232. padding:2px 2px 2px 2px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u81676_text {
  2237. border-width:0px;
  2238. word-wrap:break-word;
  2239. text-transform:none;
  2240. visibility:hidden;
  2241. }
  2242. #u81677 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:350px;
  2246. top:210px;
  2247. width:1222px;
  2248. height:293px;
  2249. }
  2250. #u81678_img {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:102px;
  2256. height:34px;
  2257. }
  2258. #u81678 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:102px;
  2264. height:34px;
  2265. display:flex;
  2266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:14px;
  2270. color:#FFFFFF;
  2271. text-align:left;
  2272. line-height:30px;
  2273. }
  2274. #u81678 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:2px 10px 2px 10px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u81678_text {
  2282. border-width:0px;
  2283. word-wrap:break-word;
  2284. text-transform:none;
  2285. }
  2286. #u81679_img {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:102px;
  2292. height:34px;
  2293. }
  2294. #u81679 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:102px;
  2298. top:0px;
  2299. width:102px;
  2300. height:34px;
  2301. display:flex;
  2302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2303. font-weight:400;
  2304. font-style:normal;
  2305. font-size:14px;
  2306. color:#FFFFFF;
  2307. text-align:left;
  2308. line-height:30px;
  2309. }
  2310. #u81679 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 10px 2px 10px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u81679_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. }
  2322. #u81680_img {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:134px;
  2328. height:34px;
  2329. }
  2330. #u81680 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:204px;
  2334. top:0px;
  2335. width:134px;
  2336. height:34px;
  2337. display:flex;
  2338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:14px;
  2342. color:#FFFFFF;
  2343. text-align:left;
  2344. line-height:30px;
  2345. }
  2346. #u81680 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:2px 10px 2px 10px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u81680_text {
  2354. border-width:0px;
  2355. word-wrap:break-word;
  2356. text-transform:none;
  2357. }
  2358. #u81681_img {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:134px;
  2364. height:34px;
  2365. }
  2366. #u81681 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:338px;
  2370. top:0px;
  2371. width:134px;
  2372. height:34px;
  2373. display:flex;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:14px;
  2378. color:#FFFFFF;
  2379. text-align:left;
  2380. line-height:30px;
  2381. }
  2382. #u81681 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 10px 2px 10px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u81681_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. }
  2394. #u81682_img {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:139px;
  2400. height:34px;
  2401. }
  2402. #u81682 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:472px;
  2406. top:0px;
  2407. width:139px;
  2408. height:34px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:14px;
  2414. color:#FFFFFF;
  2415. text-align:left;
  2416. line-height:30px;
  2417. }
  2418. #u81682 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 10px 2px 10px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u81682_text {
  2426. border-width:0px;
  2427. word-wrap:break-word;
  2428. text-transform:none;
  2429. }
  2430. #u81683_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:134px;
  2436. height:34px;
  2437. }
  2438. #u81683 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:611px;
  2442. top:0px;
  2443. width:134px;
  2444. height:34px;
  2445. display:flex;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:14px;
  2450. color:#FFFFFF;
  2451. text-align:left;
  2452. line-height:30px;
  2453. }
  2454. #u81683 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 10px 2px 10px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u81683_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. }
  2466. #u81684_img {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:134px;
  2472. height:34px;
  2473. }
  2474. #u81684 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:745px;
  2478. top:0px;
  2479. width:134px;
  2480. height:34px;
  2481. display:flex;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:14px;
  2486. color:#FFFFFF;
  2487. text-align:left;
  2488. line-height:30px;
  2489. }
  2490. #u81684 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 10px 2px 10px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u81684_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. }
  2502. #u81685_img {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:139px;
  2508. height:34px;
  2509. }
  2510. #u81685 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:879px;
  2514. top:0px;
  2515. width:139px;
  2516. height:34px;
  2517. display:flex;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:14px;
  2522. color:#FFFFFF;
  2523. text-align:left;
  2524. line-height:30px;
  2525. }
  2526. #u81685 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 10px 2px 10px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u81685_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. }
  2538. #u81686_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:204px;
  2544. height:34px;
  2545. }
  2546. #u81686 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:1018px;
  2550. top:0px;
  2551. width:204px;
  2552. height:34px;
  2553. display:flex;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:14px;
  2558. color:#FFFFFF;
  2559. text-align:left;
  2560. line-height:30px;
  2561. }
  2562. #u81686 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 10px 2px 10px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u81686_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. }
  2574. #u81687_img {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:102px;
  2580. height:37px;
  2581. }
  2582. #u81687 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:34px;
  2587. width:102px;
  2588. height:37px;
  2589. display:flex;
  2590. font-size:14px;
  2591. text-align:left;
  2592. }
  2593. #u81687 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 10px 2px 10px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u81687_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u81688_img {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:102px;
  2612. height:37px;
  2613. }
  2614. #u81688 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:102px;
  2618. top:34px;
  2619. width:102px;
  2620. height:37px;
  2621. display:flex;
  2622. font-size:14px;
  2623. text-align:left;
  2624. }
  2625. #u81688 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 10px 2px 10px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u81688_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u81689_img {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:134px;
  2644. height:37px;
  2645. }
  2646. #u81689 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:204px;
  2650. top:34px;
  2651. width:134px;
  2652. height:37px;
  2653. display:flex;
  2654. font-size:14px;
  2655. text-align:left;
  2656. }
  2657. #u81689 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 10px 2px 10px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u81689_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. }
  2669. #u81690_img {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:134px;
  2675. height:37px;
  2676. }
  2677. #u81690 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:338px;
  2681. top:34px;
  2682. width:134px;
  2683. height:37px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:14px;
  2689. text-align:left;
  2690. }
  2691. #u81690 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:2px 10px 2px 10px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u81690_text {
  2699. border-width:0px;
  2700. word-wrap:break-word;
  2701. text-transform:none;
  2702. }
  2703. #u81691_img {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:139px;
  2709. height:37px;
  2710. }
  2711. #u81691 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:472px;
  2715. top:34px;
  2716. width:139px;
  2717. height:37px;
  2718. display:flex;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:14px;
  2723. text-align:left;
  2724. }
  2725. #u81691 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 10px 2px 10px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u81691_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. visibility:hidden;
  2737. }
  2738. #u81692_img {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:134px;
  2744. height:37px;
  2745. }
  2746. #u81692 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:611px;
  2750. top:34px;
  2751. width:134px;
  2752. height:37px;
  2753. display:flex;
  2754. font-size:14px;
  2755. text-align:left;
  2756. }
  2757. #u81692 .text {
  2758. position:absolute;
  2759. align-self:center;
  2760. padding:2px 10px 2px 10px;
  2761. box-sizing:border-box;
  2762. width:100%;
  2763. }
  2764. #u81692_text {
  2765. border-width:0px;
  2766. word-wrap:break-word;
  2767. text-transform:none;
  2768. visibility:hidden;
  2769. }
  2770. #u81693_img {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:134px;
  2776. height:37px;
  2777. }
  2778. #u81693 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:745px;
  2782. top:34px;
  2783. width:134px;
  2784. height:37px;
  2785. display:flex;
  2786. font-size:14px;
  2787. text-align:left;
  2788. }
  2789. #u81693 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 10px 2px 10px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u81693_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u81694_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:139px;
  2808. height:37px;
  2809. }
  2810. #u81694 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:879px;
  2814. top:34px;
  2815. width:139px;
  2816. height:37px;
  2817. display:flex;
  2818. font-size:14px;
  2819. text-align:left;
  2820. }
  2821. #u81694 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 10px 2px 10px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u81694_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u81695_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:204px;
  2840. height:37px;
  2841. }
  2842. #u81695 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:1018px;
  2846. top:34px;
  2847. width:204px;
  2848. height:37px;
  2849. display:flex;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:14px;
  2854. text-align:left;
  2855. }
  2856. #u81695 .text {
  2857. position:absolute;
  2858. align-self:center;
  2859. padding:2px 10px 2px 10px;
  2860. box-sizing:border-box;
  2861. width:100%;
  2862. }
  2863. #u81695_text {
  2864. border-width:0px;
  2865. word-wrap:break-word;
  2866. text-transform:none;
  2867. }
  2868. #u81696_img {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:102px;
  2874. height:37px;
  2875. }
  2876. #u81696 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:71px;
  2881. width:102px;
  2882. height:37px;
  2883. display:flex;
  2884. font-size:14px;
  2885. text-align:left;
  2886. }
  2887. #u81696 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 10px 2px 10px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u81696_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. visibility:hidden;
  2899. }
  2900. #u81697_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:102px;
  2906. height:37px;
  2907. }
  2908. #u81697 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:102px;
  2912. top:71px;
  2913. width:102px;
  2914. height:37px;
  2915. display:flex;
  2916. font-size:14px;
  2917. text-align:left;
  2918. }
  2919. #u81697 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 10px 2px 10px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u81697_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. visibility:hidden;
  2931. }
  2932. #u81698_img {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:134px;
  2938. height:37px;
  2939. }
  2940. #u81698 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:204px;
  2944. top:71px;
  2945. width:134px;
  2946. height:37px;
  2947. display:flex;
  2948. font-size:14px;
  2949. text-align:left;
  2950. }
  2951. #u81698 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 10px 2px 10px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u81698_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. }
  2963. #u81699_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:134px;
  2969. height:37px;
  2970. }
  2971. #u81699 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:338px;
  2975. top:71px;
  2976. width:134px;
  2977. height:37px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:14px;
  2983. text-align:left;
  2984. }
  2985. #u81699 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 10px 2px 10px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u81699_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. }
  2997. #u81700_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:139px;
  3003. height:37px;
  3004. }
  3005. #u81700 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:472px;
  3009. top:71px;
  3010. width:139px;
  3011. height:37px;
  3012. display:flex;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:14px;
  3017. text-align:left;
  3018. }
  3019. #u81700 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 10px 2px 10px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u81700_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. visibility:hidden;
  3031. }
  3032. #u81701_img {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:134px;
  3038. height:37px;
  3039. }
  3040. #u81701 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:611px;
  3044. top:71px;
  3045. width:134px;
  3046. height:37px;
  3047. display:flex;
  3048. font-size:14px;
  3049. text-align:left;
  3050. }
  3051. #u81701 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 10px 2px 10px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u81701_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u81702_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:134px;
  3070. height:37px;
  3071. }
  3072. #u81702 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:745px;
  3076. top:71px;
  3077. width:134px;
  3078. height:37px;
  3079. display:flex;
  3080. font-size:14px;
  3081. text-align:left;
  3082. }
  3083. #u81702 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 10px 2px 10px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u81702_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u81703_img {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:139px;
  3102. height:37px;
  3103. }
  3104. #u81703 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:879px;
  3108. top:71px;
  3109. width:139px;
  3110. height:37px;
  3111. display:flex;
  3112. font-size:14px;
  3113. text-align:left;
  3114. }
  3115. #u81703 .text {
  3116. position:absolute;
  3117. align-self:center;
  3118. padding:2px 10px 2px 10px;
  3119. box-sizing:border-box;
  3120. width:100%;
  3121. }
  3122. #u81703_text {
  3123. border-width:0px;
  3124. word-wrap:break-word;
  3125. text-transform:none;
  3126. visibility:hidden;
  3127. }
  3128. #u81704_img {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:204px;
  3134. height:37px;
  3135. }
  3136. #u81704 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:1018px;
  3140. top:71px;
  3141. width:204px;
  3142. height:37px;
  3143. display:flex;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:14px;
  3148. color:#1890FF;
  3149. text-align:left;
  3150. }
  3151. #u81704 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 10px 2px 10px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u81704_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. }
  3163. #u81705_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:102px;
  3169. height:37px;
  3170. }
  3171. #u81705 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:108px;
  3176. width:102px;
  3177. height:37px;
  3178. display:flex;
  3179. font-size:14px;
  3180. text-align:left;
  3181. }
  3182. #u81705 .text {
  3183. position:absolute;
  3184. align-self:center;
  3185. padding:2px 10px 2px 10px;
  3186. box-sizing:border-box;
  3187. width:100%;
  3188. }
  3189. #u81705_text {
  3190. border-width:0px;
  3191. word-wrap:break-word;
  3192. text-transform:none;
  3193. visibility:hidden;
  3194. }
  3195. #u81706_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:102px;
  3201. height:37px;
  3202. }
  3203. #u81706 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:102px;
  3207. top:108px;
  3208. width:102px;
  3209. height:37px;
  3210. display:flex;
  3211. font-size:14px;
  3212. text-align:left;
  3213. }
  3214. #u81706 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 10px 2px 10px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u81706_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u81707_img {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:134px;
  3233. height:37px;
  3234. }
  3235. #u81707 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:204px;
  3239. top:108px;
  3240. width:134px;
  3241. height:37px;
  3242. display:flex;
  3243. font-size:14px;
  3244. text-align:left;
  3245. }
  3246. #u81707 .text {
  3247. position:absolute;
  3248. align-self:center;
  3249. padding:2px 10px 2px 10px;
  3250. box-sizing:border-box;
  3251. width:100%;
  3252. }
  3253. #u81707_text {
  3254. border-width:0px;
  3255. word-wrap:break-word;
  3256. text-transform:none;
  3257. }
  3258. #u81708_img {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:134px;
  3264. height:37px;
  3265. }
  3266. #u81708 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:338px;
  3270. top:108px;
  3271. width:134px;
  3272. height:37px;
  3273. display:flex;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:14px;
  3278. text-align:left;
  3279. }
  3280. #u81708 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 10px 2px 10px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u81708_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. }
  3292. #u81709_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:139px;
  3298. height:37px;
  3299. }
  3300. #u81709 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:472px;
  3304. top:108px;
  3305. width:139px;
  3306. height:37px;
  3307. display:flex;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:14px;
  3312. text-align:left;
  3313. }
  3314. #u81709 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 10px 2px 10px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u81709_text {
  3322. border-width:0px;
  3323. word-wrap:break-word;
  3324. text-transform:none;
  3325. visibility:hidden;
  3326. }
  3327. #u81710_img {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:134px;
  3333. height:37px;
  3334. }
  3335. #u81710 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:611px;
  3339. top:108px;
  3340. width:134px;
  3341. height:37px;
  3342. display:flex;
  3343. font-size:14px;
  3344. text-align:left;
  3345. }
  3346. #u81710 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 10px 2px 10px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u81710_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u81711_img {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:134px;
  3365. height:37px;
  3366. }
  3367. #u81711 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:745px;
  3371. top:108px;
  3372. width:134px;
  3373. height:37px;
  3374. display:flex;
  3375. font-size:14px;
  3376. text-align:left;
  3377. }
  3378. #u81711 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:2px 10px 2px 10px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u81711_text {
  3386. border-width:0px;
  3387. word-wrap:break-word;
  3388. text-transform:none;
  3389. visibility:hidden;
  3390. }
  3391. #u81712_img {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:139px;
  3397. height:37px;
  3398. }
  3399. #u81712 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:879px;
  3403. top:108px;
  3404. width:139px;
  3405. height:37px;
  3406. display:flex;
  3407. font-size:14px;
  3408. text-align:left;
  3409. }
  3410. #u81712 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 10px 2px 10px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u81712_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u81713_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:204px;
  3429. height:37px;
  3430. }
  3431. #u81713 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:1018px;
  3435. top:108px;
  3436. width:204px;
  3437. height:37px;
  3438. display:flex;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:14px;
  3443. color:#1890FF;
  3444. text-align:left;
  3445. }
  3446. #u81713 .text {
  3447. position:absolute;
  3448. align-self:center;
  3449. padding:2px 10px 2px 10px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u81713_text {
  3454. border-width:0px;
  3455. word-wrap:break-word;
  3456. text-transform:none;
  3457. }
  3458. #u81714_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:102px;
  3464. height:37px;
  3465. }
  3466. #u81714 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:145px;
  3471. width:102px;
  3472. height:37px;
  3473. display:flex;
  3474. font-size:14px;
  3475. text-align:left;
  3476. }
  3477. #u81714 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 10px 2px 10px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u81714_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u81715_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:102px;
  3496. height:37px;
  3497. }
  3498. #u81715 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:102px;
  3502. top:145px;
  3503. width:102px;
  3504. height:37px;
  3505. display:flex;
  3506. font-size:14px;
  3507. text-align:left;
  3508. }
  3509. #u81715 .text {
  3510. position:absolute;
  3511. align-self:center;
  3512. padding:2px 10px 2px 10px;
  3513. box-sizing:border-box;
  3514. width:100%;
  3515. }
  3516. #u81715_text {
  3517. border-width:0px;
  3518. word-wrap:break-word;
  3519. text-transform:none;
  3520. visibility:hidden;
  3521. }
  3522. #u81716_img {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:134px;
  3528. height:37px;
  3529. }
  3530. #u81716 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:204px;
  3534. top:145px;
  3535. width:134px;
  3536. height:37px;
  3537. display:flex;
  3538. font-size:14px;
  3539. text-align:left;
  3540. }
  3541. #u81716 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 10px 2px 10px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u81716_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u81717_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:134px;
  3560. height:37px;
  3561. }
  3562. #u81717 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:338px;
  3566. top:145px;
  3567. width:134px;
  3568. height:37px;
  3569. display:flex;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:14px;
  3574. text-align:left;
  3575. }
  3576. #u81717 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 10px 2px 10px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u81717_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u81718_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:139px;
  3595. height:37px;
  3596. }
  3597. #u81718 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:472px;
  3601. top:145px;
  3602. width:139px;
  3603. height:37px;
  3604. display:flex;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:14px;
  3609. text-align:left;
  3610. }
  3611. #u81718 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 10px 2px 10px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u81718_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u81719_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:134px;
  3630. height:37px;
  3631. }
  3632. #u81719 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:611px;
  3636. top:145px;
  3637. width:134px;
  3638. height:37px;
  3639. display:flex;
  3640. font-size:14px;
  3641. text-align:left;
  3642. }
  3643. #u81719 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 10px 2px 10px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u81719_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u81720_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:134px;
  3662. height:37px;
  3663. }
  3664. #u81720 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:745px;
  3668. top:145px;
  3669. width:134px;
  3670. height:37px;
  3671. display:flex;
  3672. font-size:14px;
  3673. text-align:left;
  3674. }
  3675. #u81720 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 10px 2px 10px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u81720_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u81721_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:139px;
  3694. height:37px;
  3695. }
  3696. #u81721 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:879px;
  3700. top:145px;
  3701. width:139px;
  3702. height:37px;
  3703. display:flex;
  3704. font-size:14px;
  3705. text-align:left;
  3706. }
  3707. #u81721 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 10px 2px 10px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u81721_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u81722_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:204px;
  3726. height:37px;
  3727. }
  3728. #u81722 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:1018px;
  3732. top:145px;
  3733. width:204px;
  3734. height:37px;
  3735. display:flex;
  3736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. font-size:14px;
  3740. color:#1890FF;
  3741. text-align:left;
  3742. }
  3743. #u81722 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 10px 2px 10px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u81722_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u81723_img {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:102px;
  3762. height:37px;
  3763. }
  3764. #u81723 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:182px;
  3769. width:102px;
  3770. height:37px;
  3771. display:flex;
  3772. font-size:14px;
  3773. text-align:left;
  3774. }
  3775. #u81723 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 10px 2px 10px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u81723_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u81724_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:102px;
  3794. height:37px;
  3795. }
  3796. #u81724 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:102px;
  3800. top:182px;
  3801. width:102px;
  3802. height:37px;
  3803. display:flex;
  3804. font-size:14px;
  3805. text-align:left;
  3806. }
  3807. #u81724 .text {
  3808. position:absolute;
  3809. align-self:center;
  3810. padding:2px 10px 2px 10px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u81724_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. visibility:hidden;
  3819. }
  3820. #u81725_img {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:134px;
  3826. height:37px;
  3827. }
  3828. #u81725 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:204px;
  3832. top:182px;
  3833. width:134px;
  3834. height:37px;
  3835. display:flex;
  3836. font-size:14px;
  3837. text-align:left;
  3838. }
  3839. #u81725 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 10px 2px 10px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u81725_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u81726_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:134px;
  3858. height:37px;
  3859. }
  3860. #u81726 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:338px;
  3864. top:182px;
  3865. width:134px;
  3866. height:37px;
  3867. display:flex;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:14px;
  3872. text-align:left;
  3873. }
  3874. #u81726 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 10px 2px 10px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u81726_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u81727_img {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:139px;
  3893. height:37px;
  3894. }
  3895. #u81727 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:472px;
  3899. top:182px;
  3900. width:139px;
  3901. height:37px;
  3902. display:flex;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:14px;
  3907. text-align:left;
  3908. }
  3909. #u81727 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:2px 10px 2px 10px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u81727_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. visibility:hidden;
  3921. }
  3922. #u81728_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:134px;
  3928. height:37px;
  3929. }
  3930. #u81728 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:611px;
  3934. top:182px;
  3935. width:134px;
  3936. height:37px;
  3937. display:flex;
  3938. font-size:14px;
  3939. text-align:left;
  3940. }
  3941. #u81728 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 10px 2px 10px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u81728_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. visibility:hidden;
  3953. }
  3954. #u81729_img {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:134px;
  3960. height:37px;
  3961. }
  3962. #u81729 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:745px;
  3966. top:182px;
  3967. width:134px;
  3968. height:37px;
  3969. display:flex;
  3970. font-size:14px;
  3971. text-align:left;
  3972. }
  3973. #u81729 .text {
  3974. position:absolute;
  3975. align-self:center;
  3976. padding:2px 10px 2px 10px;
  3977. box-sizing:border-box;
  3978. width:100%;
  3979. }
  3980. #u81729_text {
  3981. border-width:0px;
  3982. word-wrap:break-word;
  3983. text-transform:none;
  3984. visibility:hidden;
  3985. }
  3986. #u81730_img {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:139px;
  3992. height:37px;
  3993. }
  3994. #u81730 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:879px;
  3998. top:182px;
  3999. width:139px;
  4000. height:37px;
  4001. display:flex;
  4002. font-size:14px;
  4003. text-align:left;
  4004. }
  4005. #u81730 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 10px 2px 10px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u81730_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u81731_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:204px;
  4024. height:37px;
  4025. }
  4026. #u81731 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:1018px;
  4030. top:182px;
  4031. width:204px;
  4032. height:37px;
  4033. display:flex;
  4034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4035. font-weight:400;
  4036. font-style:normal;
  4037. font-size:14px;
  4038. color:#1890FF;
  4039. text-align:left;
  4040. }
  4041. #u81731 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 10px 2px 10px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u81731_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u81732_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:102px;
  4060. height:37px;
  4061. }
  4062. #u81732 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:219px;
  4067. width:102px;
  4068. height:37px;
  4069. display:flex;
  4070. font-size:14px;
  4071. text-align:left;
  4072. }
  4073. #u81732 .text {
  4074. position:absolute;
  4075. align-self:center;
  4076. padding:2px 10px 2px 10px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u81732_text {
  4081. border-width:0px;
  4082. word-wrap:break-word;
  4083. text-transform:none;
  4084. visibility:hidden;
  4085. }
  4086. #u81733_img {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:102px;
  4092. height:37px;
  4093. }
  4094. #u81733 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:102px;
  4098. top:219px;
  4099. width:102px;
  4100. height:37px;
  4101. display:flex;
  4102. font-size:14px;
  4103. text-align:left;
  4104. }
  4105. #u81733 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 10px 2px 10px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u81733_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. visibility:hidden;
  4117. }
  4118. #u81734_img {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:134px;
  4124. height:37px;
  4125. }
  4126. #u81734 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:204px;
  4130. top:219px;
  4131. width:134px;
  4132. height:37px;
  4133. display:flex;
  4134. font-size:14px;
  4135. text-align:left;
  4136. }
  4137. #u81734 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 10px 2px 10px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u81734_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. visibility:hidden;
  4149. }
  4150. #u81735_img {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:134px;
  4156. height:37px;
  4157. }
  4158. #u81735 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:338px;
  4162. top:219px;
  4163. width:134px;
  4164. height:37px;
  4165. display:flex;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:14px;
  4170. text-align:left;
  4171. }
  4172. #u81735 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 10px 2px 10px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u81735_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. visibility:hidden;
  4184. }
  4185. #u81736_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:139px;
  4191. height:37px;
  4192. }
  4193. #u81736 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:472px;
  4197. top:219px;
  4198. width:139px;
  4199. height:37px;
  4200. display:flex;
  4201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:14px;
  4205. text-align:left;
  4206. }
  4207. #u81736 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 10px 2px 10px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u81736_text {
  4215. border-width:0px;
  4216. word-wrap:break-word;
  4217. text-transform:none;
  4218. visibility:hidden;
  4219. }
  4220. #u81737_img {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:134px;
  4226. height:37px;
  4227. }
  4228. #u81737 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:611px;
  4232. top:219px;
  4233. width:134px;
  4234. height:37px;
  4235. display:flex;
  4236. font-size:14px;
  4237. text-align:left;
  4238. }
  4239. #u81737 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 10px 2px 10px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u81737_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u81738_img {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:134px;
  4258. height:37px;
  4259. }
  4260. #u81738 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:745px;
  4264. top:219px;
  4265. width:134px;
  4266. height:37px;
  4267. display:flex;
  4268. font-size:14px;
  4269. text-align:left;
  4270. }
  4271. #u81738 .text {
  4272. position:absolute;
  4273. align-self:center;
  4274. padding:2px 10px 2px 10px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u81738_text {
  4279. border-width:0px;
  4280. word-wrap:break-word;
  4281. text-transform:none;
  4282. visibility:hidden;
  4283. }
  4284. #u81739_img {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:139px;
  4290. height:37px;
  4291. }
  4292. #u81739 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:879px;
  4296. top:219px;
  4297. width:139px;
  4298. height:37px;
  4299. display:flex;
  4300. font-size:14px;
  4301. text-align:left;
  4302. }
  4303. #u81739 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 10px 2px 10px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u81739_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u81740_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:204px;
  4322. height:37px;
  4323. }
  4324. #u81740 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:1018px;
  4328. top:219px;
  4329. width:204px;
  4330. height:37px;
  4331. display:flex;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:14px;
  4336. color:#1890FF;
  4337. text-align:left;
  4338. }
  4339. #u81740 .text {
  4340. position:absolute;
  4341. align-self:center;
  4342. padding:2px 10px 2px 10px;
  4343. box-sizing:border-box;
  4344. width:100%;
  4345. }
  4346. #u81740_text {
  4347. border-width:0px;
  4348. word-wrap:break-word;
  4349. text-transform:none;
  4350. visibility:hidden;
  4351. }
  4352. #u81741_img {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:102px;
  4358. height:37px;
  4359. }
  4360. #u81741 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:256px;
  4365. width:102px;
  4366. height:37px;
  4367. display:flex;
  4368. font-size:14px;
  4369. text-align:left;
  4370. }
  4371. #u81741 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 10px 2px 10px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u81741_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u81742_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:102px;
  4390. height:37px;
  4391. }
  4392. #u81742 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:102px;
  4396. top:256px;
  4397. width:102px;
  4398. height:37px;
  4399. display:flex;
  4400. font-size:14px;
  4401. text-align:left;
  4402. }
  4403. #u81742 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 10px 2px 10px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u81742_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u81743_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:134px;
  4422. height:37px;
  4423. }
  4424. #u81743 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:204px;
  4428. top:256px;
  4429. width:134px;
  4430. height:37px;
  4431. display:flex;
  4432. font-size:14px;
  4433. text-align:left;
  4434. }
  4435. #u81743 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 10px 2px 10px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u81743_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u81744_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:134px;
  4454. height:37px;
  4455. }
  4456. #u81744 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:338px;
  4460. top:256px;
  4461. width:134px;
  4462. height:37px;
  4463. display:flex;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:14px;
  4468. text-align:left;
  4469. }
  4470. #u81744 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 10px 2px 10px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u81744_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u81745_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:139px;
  4489. height:37px;
  4490. }
  4491. #u81745 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:472px;
  4495. top:256px;
  4496. width:139px;
  4497. height:37px;
  4498. display:flex;
  4499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:14px;
  4503. text-align:left;
  4504. }
  4505. #u81745 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 10px 2px 10px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u81745_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u81746_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:134px;
  4524. height:37px;
  4525. }
  4526. #u81746 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:611px;
  4530. top:256px;
  4531. width:134px;
  4532. height:37px;
  4533. display:flex;
  4534. font-size:14px;
  4535. text-align:left;
  4536. }
  4537. #u81746 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 10px 2px 10px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u81746_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u81747_img {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:134px;
  4556. height:37px;
  4557. }
  4558. #u81747 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:745px;
  4562. top:256px;
  4563. width:134px;
  4564. height:37px;
  4565. display:flex;
  4566. font-size:14px;
  4567. text-align:left;
  4568. }
  4569. #u81747 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:2px 10px 2px 10px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u81747_text {
  4577. border-width:0px;
  4578. word-wrap:break-word;
  4579. text-transform:none;
  4580. visibility:hidden;
  4581. }
  4582. #u81748_img {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:139px;
  4588. height:37px;
  4589. }
  4590. #u81748 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:879px;
  4594. top:256px;
  4595. width:139px;
  4596. height:37px;
  4597. display:flex;
  4598. font-size:14px;
  4599. text-align:left;
  4600. }
  4601. #u81748 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 10px 2px 10px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u81748_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u81749_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:204px;
  4620. height:37px;
  4621. }
  4622. #u81749 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:1018px;
  4626. top:256px;
  4627. width:204px;
  4628. height:37px;
  4629. display:flex;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:14px;
  4634. color:#1890FF;
  4635. text-align:left;
  4636. }
  4637. #u81749 .text {
  4638. position:absolute;
  4639. align-self:center;
  4640. padding:2px 10px 2px 10px;
  4641. box-sizing:border-box;
  4642. width:100%;
  4643. }
  4644. #u81749_text {
  4645. border-width:0px;
  4646. word-wrap:break-word;
  4647. text-transform:none;
  4648. visibility:hidden;
  4649. }
  4650. #u81751 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:0px;
  4656. height:0px;
  4657. }
  4658. #u81752_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:200px;
  4664. height:1191px;
  4665. }
  4666. #u81752 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:120px;
  4670. top:50px;
  4671. width:200px;
  4672. height:1191px;
  4673. display:flex;
  4674. }
  4675. #u81752 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 2px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u81752_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. visibility:hidden;
  4687. }
  4688. #u81753_div {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:200px;
  4694. height:60px;
  4695. background:inherit;
  4696. background-color:rgba(224, 231, 247, 1);
  4697. border:none;
  4698. border-radius:0px;
  4699. -moz-box-shadow:none;
  4700. -webkit-box-shadow:none;
  4701. box-shadow:none;
  4702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4703. font-weight:500;
  4704. font-style:normal;
  4705. font-size:18px;
  4706. }
  4707. #u81753 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:120px;
  4711. top:50px;
  4712. width:200px;
  4713. height:60px;
  4714. display:flex;
  4715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4716. font-weight:500;
  4717. font-style:normal;
  4718. font-size:18px;
  4719. }
  4720. #u81753 .text {
  4721. position:absolute;
  4722. align-self:center;
  4723. padding:0px 0px 0px 20px;
  4724. box-sizing:border-box;
  4725. width:100%;
  4726. }
  4727. #u81753_text {
  4728. border-width:0px;
  4729. word-wrap:break-word;
  4730. text-transform:none;
  4731. }
  4732. #u81754 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:120px;
  4736. top:130px;
  4737. width:200px;
  4738. height:1078px;
  4739. }
  4740. #u81754_state0 {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:200px;
  4746. height:1078px;
  4747. overflow:auto;
  4748. -webkit-overflow-scrolling:touch;
  4749. -ms-overflow-x:hidden;
  4750. overflow-x:hidden;
  4751. background-image:none;
  4752. border:none;
  4753. border-radius:0px;
  4754. -moz-box-shadow:none;
  4755. -webkit-box-shadow:none;
  4756. box-shadow:none;
  4757. }
  4758. #u81754_state0_content {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:1px;
  4764. height:1px;
  4765. }
  4766. #u81755_div {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:97px;
  4772. height:22px;
  4773. background:inherit;
  4774. background-color:rgba(255, 255, 255, 0);
  4775. border:none;
  4776. border-radius:0px;
  4777. -moz-box-shadow:none;
  4778. -webkit-box-shadow:none;
  4779. box-shadow:none;
  4780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4781. font-weight:400;
  4782. font-style:normal;
  4783. font-size:16px;
  4784. }
  4785. #u81755 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:30px;
  4789. top:0px;
  4790. width:97px;
  4791. height:22px;
  4792. display:flex;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:16px;
  4797. }
  4798. #u81755 .text {
  4799. position:absolute;
  4800. align-self:flex-start;
  4801. padding:0px 0px 0px 0px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u81755_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. }
  4810. #u81756_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:65px;
  4816. height:22px;
  4817. background:inherit;
  4818. background-color:rgba(255, 255, 255, 0);
  4819. border:none;
  4820. border-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:16px;
  4828. }
  4829. #u81756 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:30px;
  4833. top:42px;
  4834. width:65px;
  4835. height:22px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:16px;
  4841. }
  4842. #u81756 .text {
  4843. position:absolute;
  4844. align-self:flex-start;
  4845. padding:0px 0px 0px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u81756_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u81757_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:49px;
  4860. height:22px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border:none;
  4864. border-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:16px;
  4872. }
  4873. #u81757 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:30px;
  4877. top:145px;
  4878. width:49px;
  4879. height:22px;
  4880. display:flex;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:16px;
  4885. }
  4886. #u81757 .text {
  4887. position:absolute;
  4888. align-self:flex-start;
  4889. padding:0px 0px 0px 0px;
  4890. box-sizing:border-box;
  4891. width:100%;
  4892. }
  4893. #u81757_text {
  4894. border-width:0px;
  4895. white-space:nowrap;
  4896. text-transform:none;
  4897. }
  4898. #u81758_div {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:97px;
  4904. height:22px;
  4905. background:inherit;
  4906. background-color:rgba(255, 255, 255, 0);
  4907. border:none;
  4908. border-radius:0px;
  4909. -moz-box-shadow:none;
  4910. -webkit-box-shadow:none;
  4911. box-shadow:none;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:16px;
  4916. }
  4917. #u81758 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:30px;
  4921. top:187px;
  4922. width:97px;
  4923. height:22px;
  4924. display:flex;
  4925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:16px;
  4929. }
  4930. #u81758 .text {
  4931. position:absolute;
  4932. align-self:flex-start;
  4933. padding:0px 0px 0px 0px;
  4934. box-sizing:border-box;
  4935. width:100%;
  4936. }
  4937. #u81758_text {
  4938. border-width:0px;
  4939. word-wrap:break-word;
  4940. text-transform:none;
  4941. }
  4942. #u81759_img {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:201px;
  4948. height:2px;
  4949. }
  4950. #u81759 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:84px;
  4955. width:200px;
  4956. height:1px;
  4957. display:flex;
  4958. }
  4959. #u81759 .text {
  4960. position:absolute;
  4961. align-self:center;
  4962. padding:2px 2px 2px 2px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u81759_text {
  4967. border-width:0px;
  4968. word-wrap:break-word;
  4969. text-transform:none;
  4970. visibility:hidden;
  4971. }
  4972. #u81760_div {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:49px;
  4978. height:17px;
  4979. background:inherit;
  4980. background-color:rgba(255, 255, 255, 0);
  4981. border:none;
  4982. border-radius:0px;
  4983. -moz-box-shadow:none;
  4984. -webkit-box-shadow:none;
  4985. box-shadow:none;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#AAAAAA;
  4991. }
  4992. #u81760 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:30px;
  4996. top:105px;
  4997. width:49px;
  4998. height:17px;
  4999. display:flex;
  5000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:12px;
  5004. color:#AAAAAA;
  5005. }
  5006. #u81760 .text {
  5007. position:absolute;
  5008. align-self:flex-start;
  5009. padding:0px 0px 0px 0px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u81760_text {
  5014. border-width:0px;
  5015. white-space:nowrap;
  5016. text-transform:none;
  5017. }
  5018. #u81761_div {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:97px;
  5024. height:22px;
  5025. background:inherit;
  5026. background-color:rgba(255, 255, 255, 0);
  5027. border:none;
  5028. border-radius:0px;
  5029. -moz-box-shadow:none;
  5030. -webkit-box-shadow:none;
  5031. box-shadow:none;
  5032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5033. font-weight:400;
  5034. font-style:normal;
  5035. font-size:16px;
  5036. }
  5037. #u81761 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:30px;
  5041. top:229px;
  5042. width:97px;
  5043. height:22px;
  5044. display:flex;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:16px;
  5049. }
  5050. #u81761 .text {
  5051. position:absolute;
  5052. align-self:flex-start;
  5053. padding:0px 0px 0px 0px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u81761_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. }
  5062. #u81762_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:65px;
  5068. height:22px;
  5069. background:inherit;
  5070. background-color:rgba(255, 255, 255, 0);
  5071. border:none;
  5072. border-radius:0px;
  5073. -moz-box-shadow:none;
  5074. -webkit-box-shadow:none;
  5075. box-shadow:none;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:16px;
  5080. }
  5081. #u81762 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:30px;
  5085. top:271px;
  5086. width:65px;
  5087. height:22px;
  5088. display:flex;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:16px;
  5093. }
  5094. #u81762 .text {
  5095. position:absolute;
  5096. align-self:flex-start;
  5097. padding:0px 0px 0px 0px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u81762_text {
  5102. border-width:0px;
  5103. white-space:nowrap;
  5104. text-transform:none;
  5105. }
  5106. #u81763_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:201px;
  5112. height:2px;
  5113. }
  5114. #u81763 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:313px;
  5119. width:200px;
  5120. height:1px;
  5121. display:flex;
  5122. }
  5123. #u81763 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 2px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u81763_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u81764_div {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:65px;
  5142. height:22px;
  5143. background:inherit;
  5144. background-color:rgba(255, 255, 255, 0);
  5145. border:none;
  5146. border-radius:0px;
  5147. -moz-box-shadow:none;
  5148. -webkit-box-shadow:none;
  5149. box-shadow:none;
  5150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5151. font-weight:400;
  5152. font-style:normal;
  5153. font-size:16px;
  5154. }
  5155. #u81764 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:30px;
  5159. top:370px;
  5160. width:65px;
  5161. height:22px;
  5162. display:flex;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:16px;
  5167. }
  5168. #u81764 .text {
  5169. position:absolute;
  5170. align-self:flex-start;
  5171. padding:0px 0px 0px 0px;
  5172. box-sizing:border-box;
  5173. width:100%;
  5174. }
  5175. #u81764_text {
  5176. border-width:0px;
  5177. white-space:nowrap;
  5178. text-transform:none;
  5179. }
  5180. #u81765_div {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:49px;
  5186. height:17px;
  5187. background:inherit;
  5188. background-color:rgba(255, 255, 255, 0);
  5189. border:none;
  5190. border-radius:0px;
  5191. -moz-box-shadow:none;
  5192. -webkit-box-shadow:none;
  5193. box-shadow:none;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. color:#AAAAAA;
  5199. }
  5200. #u81765 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:30px;
  5204. top:334px;
  5205. width:49px;
  5206. height:17px;
  5207. display:flex;
  5208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5209. font-weight:400;
  5210. font-style:normal;
  5211. font-size:12px;
  5212. color:#AAAAAA;
  5213. }
  5214. #u81765 .text {
  5215. position:absolute;
  5216. align-self:flex-start;
  5217. padding:0px 0px 0px 0px;
  5218. box-sizing:border-box;
  5219. width:100%;
  5220. }
  5221. #u81765_text {
  5222. border-width:0px;
  5223. white-space:nowrap;
  5224. text-transform:none;
  5225. }
  5226. #u81766_div {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:65px;
  5232. height:22px;
  5233. background:inherit;
  5234. background-color:rgba(255, 255, 255, 0);
  5235. border:none;
  5236. border-radius:0px;
  5237. -moz-box-shadow:none;
  5238. -webkit-box-shadow:none;
  5239. box-shadow:none;
  5240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5241. font-weight:400;
  5242. font-style:normal;
  5243. font-size:16px;
  5244. }
  5245. #u81766 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:30px;
  5249. top:412px;
  5250. width:65px;
  5251. height:22px;
  5252. display:flex;
  5253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5254. font-weight:400;
  5255. font-style:normal;
  5256. font-size:16px;
  5257. }
  5258. #u81766 .text {
  5259. position:absolute;
  5260. align-self:flex-start;
  5261. padding:0px 0px 0px 0px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u81766_text {
  5266. border-width:0px;
  5267. white-space:nowrap;
  5268. text-transform:none;
  5269. }
  5270. #u81767_div {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:65px;
  5276. height:22px;
  5277. background:inherit;
  5278. background-color:rgba(255, 255, 255, 0);
  5279. border:none;
  5280. border-radius:0px;
  5281. -moz-box-shadow:none;
  5282. -webkit-box-shadow:none;
  5283. box-shadow:none;
  5284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:16px;
  5288. }
  5289. #u81767 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:30px;
  5293. top:454px;
  5294. width:65px;
  5295. height:22px;
  5296. display:flex;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:16px;
  5301. }
  5302. #u81767 .text {
  5303. position:absolute;
  5304. align-self:flex-start;
  5305. padding:0px 0px 0px 0px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u81767_text {
  5310. border-width:0px;
  5311. white-space:nowrap;
  5312. text-transform:none;
  5313. }
  5314. #u81768_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:65px;
  5320. height:22px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 0);
  5323. border:none;
  5324. border-radius:0px;
  5325. -moz-box-shadow:none;
  5326. -webkit-box-shadow:none;
  5327. box-shadow:none;
  5328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:16px;
  5332. }
  5333. #u81768 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:30px;
  5337. top:496px;
  5338. width:65px;
  5339. height:22px;
  5340. display:flex;
  5341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:16px;
  5345. }
  5346. #u81768 .text {
  5347. position:absolute;
  5348. align-self:flex-start;
  5349. padding:0px 0px 0px 0px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u81768_text {
  5354. border-width:0px;
  5355. white-space:nowrap;
  5356. text-transform:none;
  5357. }
  5358. #u81769_div {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:65px;
  5364. height:22px;
  5365. background:inherit;
  5366. background-color:rgba(255, 255, 255, 0);
  5367. border:none;
  5368. border-radius:0px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:16px;
  5376. }
  5377. #u81769 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:30px;
  5381. top:538px;
  5382. width:65px;
  5383. height:22px;
  5384. display:flex;
  5385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:16px;
  5389. }
  5390. #u81769 .text {
  5391. position:absolute;
  5392. align-self:flex-start;
  5393. padding:0px 0px 0px 0px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u81769_text {
  5398. border-width:0px;
  5399. white-space:nowrap;
  5400. text-transform:none;
  5401. }
  5402. #u81770_div {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:65px;
  5408. height:22px;
  5409. background:inherit;
  5410. background-color:rgba(255, 255, 255, 0);
  5411. border:none;
  5412. border-radius:0px;
  5413. -moz-box-shadow:none;
  5414. -webkit-box-shadow:none;
  5415. box-shadow:none;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:16px;
  5420. }
  5421. #u81770 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:30px;
  5425. top:580px;
  5426. width:65px;
  5427. height:22px;
  5428. display:flex;
  5429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5430. font-weight:400;
  5431. font-style:normal;
  5432. font-size:16px;
  5433. }
  5434. #u81770 .text {
  5435. position:absolute;
  5436. align-self:flex-start;
  5437. padding:0px 0px 0px 0px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u81770_text {
  5442. border-width:0px;
  5443. white-space:nowrap;
  5444. text-transform:none;
  5445. }
  5446. #u81771_img {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:201px;
  5452. height:2px;
  5453. }
  5454. #u81771 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:1289px;
  5459. width:200px;
  5460. height:1px;
  5461. display:flex;
  5462. }
  5463. #u81771 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:2px 2px 2px 2px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u81771_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u81772_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:65px;
  5482. height:22px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 0);
  5485. border:none;
  5486. border-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:16px;
  5494. }
  5495. #u81772 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:30px;
  5499. top:1346px;
  5500. width:65px;
  5501. height:22px;
  5502. display:flex;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:16px;
  5507. }
  5508. #u81772 .text {
  5509. position:absolute;
  5510. align-self:flex-start;
  5511. padding:0px 0px 0px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u81772_text {
  5516. border-width:0px;
  5517. white-space:nowrap;
  5518. text-transform:none;
  5519. }
  5520. #u81773_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:49px;
  5526. height:17px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 0);
  5529. border:none;
  5530. border-radius:0px;
  5531. -moz-box-shadow:none;
  5532. -webkit-box-shadow:none;
  5533. box-shadow:none;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:12px;
  5538. color:#AAAAAA;
  5539. }
  5540. #u81773 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:30px;
  5544. top:1310px;
  5545. width:49px;
  5546. height:17px;
  5547. display:flex;
  5548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:12px;
  5552. color:#AAAAAA;
  5553. }
  5554. #u81773 .text {
  5555. position:absolute;
  5556. align-self:flex-start;
  5557. padding:0px 0px 0px 0px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u81773_text {
  5562. border-width:0px;
  5563. white-space:nowrap;
  5564. text-transform:none;
  5565. }
  5566. #u81774_div {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:0px;
  5570. top:0px;
  5571. width:65px;
  5572. height:22px;
  5573. background:inherit;
  5574. background-color:rgba(255, 255, 255, 0);
  5575. border:none;
  5576. border-radius:0px;
  5577. -moz-box-shadow:none;
  5578. -webkit-box-shadow:none;
  5579. box-shadow:none;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:16px;
  5584. }
  5585. #u81774 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:30px;
  5589. top:1388px;
  5590. width:65px;
  5591. height:22px;
  5592. display:flex;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:16px;
  5597. }
  5598. #u81774 .text {
  5599. position:absolute;
  5600. align-self:flex-start;
  5601. padding:0px 0px 0px 0px;
  5602. box-sizing:border-box;
  5603. width:100%;
  5604. }
  5605. #u81774_text {
  5606. border-width:0px;
  5607. white-space:nowrap;
  5608. text-transform:none;
  5609. }
  5610. #u81775_div {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:65px;
  5616. height:22px;
  5617. background:inherit;
  5618. background-color:rgba(255, 255, 255, 0);
  5619. border:none;
  5620. border-radius:0px;
  5621. -moz-box-shadow:none;
  5622. -webkit-box-shadow:none;
  5623. box-shadow:none;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:16px;
  5628. }
  5629. #u81775 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:30px;
  5633. top:1472px;
  5634. width:65px;
  5635. height:22px;
  5636. display:flex;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:16px;
  5641. }
  5642. #u81775 .text {
  5643. position:absolute;
  5644. align-self:flex-start;
  5645. padding:0px 0px 0px 0px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u81775_text {
  5650. border-width:0px;
  5651. white-space:nowrap;
  5652. text-transform:none;
  5653. }
  5654. #u81776_img {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:201px;
  5660. height:2px;
  5661. }
  5662. #u81776 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:1514px;
  5667. width:200px;
  5668. height:1px;
  5669. display:flex;
  5670. }
  5671. #u81776 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 2px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u81776_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. visibility:hidden;
  5683. }
  5684. #u81777_div {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:49px;
  5690. height:22px;
  5691. background:inherit;
  5692. background-color:rgba(255, 255, 255, 0);
  5693. border:none;
  5694. border-radius:0px;
  5695. -moz-box-shadow:none;
  5696. -webkit-box-shadow:none;
  5697. box-shadow:none;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:16px;
  5702. }
  5703. #u81777 {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:30px;
  5707. top:1571px;
  5708. width:49px;
  5709. height:22px;
  5710. display:flex;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:16px;
  5715. }
  5716. #u81777 .text {
  5717. position:absolute;
  5718. align-self:flex-start;
  5719. padding:0px 0px 0px 0px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u81777_text {
  5724. border-width:0px;
  5725. white-space:nowrap;
  5726. text-transform:none;
  5727. }
  5728. #u81778_div {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:49px;
  5734. height:17px;
  5735. background:inherit;
  5736. background-color:rgba(255, 255, 255, 0);
  5737. border:none;
  5738. border-radius:0px;
  5739. -moz-box-shadow:none;
  5740. -webkit-box-shadow:none;
  5741. box-shadow:none;
  5742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5743. font-weight:400;
  5744. font-style:normal;
  5745. font-size:12px;
  5746. color:#AAAAAA;
  5747. }
  5748. #u81778 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:30px;
  5752. top:1535px;
  5753. width:49px;
  5754. height:17px;
  5755. display:flex;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:12px;
  5760. color:#AAAAAA;
  5761. }
  5762. #u81778 .text {
  5763. position:absolute;
  5764. align-self:flex-start;
  5765. padding:0px 0px 0px 0px;
  5766. box-sizing:border-box;
  5767. width:100%;
  5768. }
  5769. #u81778_text {
  5770. border-width:0px;
  5771. white-space:nowrap;
  5772. text-transform:none;
  5773. }
  5774. #u81779_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:49px;
  5780. height:22px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 255, 0);
  5783. border:none;
  5784. border-radius:0px;
  5785. -moz-box-shadow:none;
  5786. -webkit-box-shadow:none;
  5787. box-shadow:none;
  5788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:16px;
  5792. }
  5793. #u81779 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:30px;
  5797. top:1613px;
  5798. width:49px;
  5799. height:22px;
  5800. display:flex;
  5801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:16px;
  5805. }
  5806. #u81779 .text {
  5807. position:absolute;
  5808. align-self:flex-start;
  5809. padding:0px 0px 0px 0px;
  5810. box-sizing:border-box;
  5811. width:100%;
  5812. }
  5813. #u81779_text {
  5814. border-width:0px;
  5815. white-space:nowrap;
  5816. text-transform:none;
  5817. }
  5818. #u81780_div {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:65px;
  5824. height:22px;
  5825. background:inherit;
  5826. background-color:rgba(255, 255, 255, 0);
  5827. border:none;
  5828. border-radius:0px;
  5829. -moz-box-shadow:none;
  5830. -webkit-box-shadow:none;
  5831. box-shadow:none;
  5832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. font-size:16px;
  5836. }
  5837. #u81780 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:30px;
  5841. top:1655px;
  5842. width:65px;
  5843. height:22px;
  5844. display:flex;
  5845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. font-size:16px;
  5849. }
  5850. #u81780 .text {
  5851. position:absolute;
  5852. align-self:flex-start;
  5853. padding:0px 0px 0px 0px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u81780_text {
  5858. border-width:0px;
  5859. white-space:nowrap;
  5860. text-transform:none;
  5861. }
  5862. #u81781_img {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:201px;
  5868. height:2px;
  5869. }
  5870. #u81781 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:1697px;
  5875. width:200px;
  5876. height:1px;
  5877. display:flex;
  5878. }
  5879. #u81781 .text {
  5880. position:absolute;
  5881. align-self:center;
  5882. padding:2px 2px 2px 2px;
  5883. box-sizing:border-box;
  5884. width:100%;
  5885. }
  5886. #u81781_text {
  5887. border-width:0px;
  5888. word-wrap:break-word;
  5889. text-transform:none;
  5890. visibility:hidden;
  5891. }
  5892. #u81782_div {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:0px;
  5896. top:0px;
  5897. width:81px;
  5898. height:22px;
  5899. background:inherit;
  5900. background-color:rgba(255, 255, 255, 0);
  5901. border:none;
  5902. border-radius:0px;
  5903. -moz-box-shadow:none;
  5904. -webkit-box-shadow:none;
  5905. box-shadow:none;
  5906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:16px;
  5910. }
  5911. #u81782 {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:30px;
  5915. top:1754px;
  5916. width:81px;
  5917. height:22px;
  5918. display:flex;
  5919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:16px;
  5923. }
  5924. #u81782 .text {
  5925. position:absolute;
  5926. align-self:flex-start;
  5927. padding:0px 0px 0px 0px;
  5928. box-sizing:border-box;
  5929. width:100%;
  5930. }
  5931. #u81782_text {
  5932. border-width:0px;
  5933. white-space:nowrap;
  5934. text-transform:none;
  5935. }
  5936. #u81783_div {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:49px;
  5942. height:17px;
  5943. background:inherit;
  5944. background-color:rgba(255, 255, 255, 0);
  5945. border:none;
  5946. border-radius:0px;
  5947. -moz-box-shadow:none;
  5948. -webkit-box-shadow:none;
  5949. box-shadow:none;
  5950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:12px;
  5954. color:#AAAAAA;
  5955. }
  5956. #u81783 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:30px;
  5960. top:1718px;
  5961. width:49px;
  5962. height:17px;
  5963. display:flex;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:12px;
  5968. color:#AAAAAA;
  5969. }
  5970. #u81783 .text {
  5971. position:absolute;
  5972. align-self:flex-start;
  5973. padding:0px 0px 0px 0px;
  5974. box-sizing:border-box;
  5975. width:100%;
  5976. }
  5977. #u81783_text {
  5978. border-width:0px;
  5979. white-space:nowrap;
  5980. text-transform:none;
  5981. }
  5982. #u81784_div {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:81px;
  5988. height:22px;
  5989. background:inherit;
  5990. background-color:rgba(255, 255, 255, 0);
  5991. border:none;
  5992. border-radius:0px;
  5993. -moz-box-shadow:none;
  5994. -webkit-box-shadow:none;
  5995. box-shadow:none;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:16px;
  6000. }
  6001. #u81784 {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:30px;
  6005. top:1796px;
  6006. width:81px;
  6007. height:22px;
  6008. display:flex;
  6009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6010. font-weight:400;
  6011. font-style:normal;
  6012. font-size:16px;
  6013. }
  6014. #u81784 .text {
  6015. position:absolute;
  6016. align-self:flex-start;
  6017. padding:0px 0px 0px 0px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u81784_text {
  6022. border-width:0px;
  6023. white-space:nowrap;
  6024. text-transform:none;
  6025. }
  6026. #u81785_div {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:81px;
  6032. height:22px;
  6033. background:inherit;
  6034. background-color:rgba(255, 255, 255, 0);
  6035. border:none;
  6036. border-radius:0px;
  6037. -moz-box-shadow:none;
  6038. -webkit-box-shadow:none;
  6039. box-shadow:none;
  6040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6041. font-weight:400;
  6042. font-style:normal;
  6043. font-size:16px;
  6044. }
  6045. #u81785 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:30px;
  6049. top:1838px;
  6050. width:81px;
  6051. height:22px;
  6052. display:flex;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:16px;
  6057. }
  6058. #u81785 .text {
  6059. position:absolute;
  6060. align-self:flex-start;
  6061. padding:0px 0px 0px 0px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u81785_text {
  6066. border-width:0px;
  6067. white-space:nowrap;
  6068. text-transform:none;
  6069. }
  6070. #u81786_div {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:65px;
  6076. height:22px;
  6077. background:inherit;
  6078. background-color:rgba(255, 255, 255, 0);
  6079. border:none;
  6080. border-radius:0px;
  6081. -moz-box-shadow:none;
  6082. -webkit-box-shadow:none;
  6083. box-shadow:none;
  6084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:16px;
  6088. }
  6089. #u81786 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:30px;
  6093. top:1430px;
  6094. width:65px;
  6095. height:22px;
  6096. display:flex;
  6097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:16px;
  6101. }
  6102. #u81786 .text {
  6103. position:absolute;
  6104. align-self:flex-start;
  6105. padding:0px 0px 0px 0px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u81786_text {
  6110. border-width:0px;
  6111. white-space:nowrap;
  6112. text-transform:none;
  6113. }
  6114. #u81787_img {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:201px;
  6120. height:2px;
  6121. }
  6122. #u81787 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:669px;
  6127. width:200px;
  6128. height:1px;
  6129. display:flex;
  6130. }
  6131. #u81787 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:2px 2px 2px 2px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u81787_text {
  6139. border-width:0px;
  6140. word-wrap:break-word;
  6141. text-transform:none;
  6142. visibility:hidden;
  6143. }
  6144. #u81788_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:65px;
  6150. height:22px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 0);
  6153. border:none;
  6154. border-radius:0px;
  6155. -moz-box-shadow:none;
  6156. -webkit-box-shadow:none;
  6157. box-shadow:none;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. font-size:16px;
  6162. }
  6163. #u81788 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:30px;
  6167. top:726px;
  6168. width:65px;
  6169. height:22px;
  6170. display:flex;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:16px;
  6175. }
  6176. #u81788 .text {
  6177. position:absolute;
  6178. align-self:flex-start;
  6179. padding:0px 0px 0px 0px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u81788_text {
  6184. border-width:0px;
  6185. white-space:nowrap;
  6186. text-transform:none;
  6187. }
  6188. #u81789_div {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:49px;
  6194. height:17px;
  6195. background:inherit;
  6196. background-color:rgba(255, 255, 255, 0);
  6197. border:none;
  6198. border-radius:0px;
  6199. -moz-box-shadow:none;
  6200. -webkit-box-shadow:none;
  6201. box-shadow:none;
  6202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:12px;
  6206. color:#AAAAAA;
  6207. }
  6208. #u81789 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:30px;
  6212. top:690px;
  6213. width:49px;
  6214. height:17px;
  6215. display:flex;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:12px;
  6220. color:#AAAAAA;
  6221. }
  6222. #u81789 .text {
  6223. position:absolute;
  6224. align-self:flex-start;
  6225. padding:0px 0px 0px 0px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u81789_text {
  6230. border-width:0px;
  6231. white-space:nowrap;
  6232. text-transform:none;
  6233. }
  6234. #u81790_div {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:65px;
  6240. height:22px;
  6241. background:inherit;
  6242. background-color:rgba(255, 255, 255, 0);
  6243. border:none;
  6244. border-radius:0px;
  6245. -moz-box-shadow:none;
  6246. -webkit-box-shadow:none;
  6247. box-shadow:none;
  6248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:16px;
  6252. }
  6253. #u81790 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:30px;
  6257. top:768px;
  6258. width:65px;
  6259. height:22px;
  6260. display:flex;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:16px;
  6265. }
  6266. #u81790 .text {
  6267. position:absolute;
  6268. align-self:flex-start;
  6269. padding:0px 0px 0px 0px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u81790_text {
  6274. border-width:0px;
  6275. white-space:nowrap;
  6276. text-transform:none;
  6277. }
  6278. #u81791_div {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:65px;
  6284. height:22px;
  6285. background:inherit;
  6286. background-color:rgba(255, 255, 255, 0);
  6287. border:none;
  6288. border-radius:0px;
  6289. -moz-box-shadow:none;
  6290. -webkit-box-shadow:none;
  6291. box-shadow:none;
  6292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:16px;
  6296. }
  6297. #u81791 {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:30px;
  6301. top:852px;
  6302. width:65px;
  6303. height:22px;
  6304. display:flex;
  6305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6306. font-weight:400;
  6307. font-style:normal;
  6308. font-size:16px;
  6309. }
  6310. #u81791 .text {
  6311. position:absolute;
  6312. align-self:flex-start;
  6313. padding:0px 0px 0px 0px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u81791_text {
  6318. border-width:0px;
  6319. white-space:nowrap;
  6320. text-transform:none;
  6321. }
  6322. #u81792_div {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:65px;
  6328. height:22px;
  6329. background:inherit;
  6330. background-color:rgba(255, 255, 255, 0);
  6331. border:none;
  6332. border-radius:0px;
  6333. -moz-box-shadow:none;
  6334. -webkit-box-shadow:none;
  6335. box-shadow:none;
  6336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. font-size:16px;
  6340. }
  6341. #u81792 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:30px;
  6345. top:810px;
  6346. width:65px;
  6347. height:22px;
  6348. display:flex;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:16px;
  6353. }
  6354. #u81792 .text {
  6355. position:absolute;
  6356. align-self:flex-start;
  6357. padding:0px 0px 0px 0px;
  6358. box-sizing:border-box;
  6359. width:100%;
  6360. }
  6361. #u81792_text {
  6362. border-width:0px;
  6363. white-space:nowrap;
  6364. text-transform:none;
  6365. }
  6366. #u81793_div {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:65px;
  6372. height:22px;
  6373. background:inherit;
  6374. background-color:rgba(255, 255, 255, 0);
  6375. border:none;
  6376. border-radius:0px;
  6377. -moz-box-shadow:none;
  6378. -webkit-box-shadow:none;
  6379. box-shadow:none;
  6380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:16px;
  6384. }
  6385. #u81793 {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:30px;
  6389. top:894px;
  6390. width:65px;
  6391. height:22px;
  6392. display:flex;
  6393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. font-size:16px;
  6397. }
  6398. #u81793 .text {
  6399. position:absolute;
  6400. align-self:flex-start;
  6401. padding:0px 0px 0px 0px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u81793_text {
  6406. border-width:0px;
  6407. white-space:nowrap;
  6408. text-transform:none;
  6409. }
  6410. #u81794_div {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:65px;
  6416. height:22px;
  6417. background:inherit;
  6418. background-color:rgba(255, 255, 255, 0);
  6419. border:none;
  6420. border-radius:0px;
  6421. -moz-box-shadow:none;
  6422. -webkit-box-shadow:none;
  6423. box-shadow:none;
  6424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:16px;
  6428. }
  6429. #u81794 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:30px;
  6433. top:936px;
  6434. width:65px;
  6435. height:22px;
  6436. display:flex;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:16px;
  6441. }
  6442. #u81794 .text {
  6443. position:absolute;
  6444. align-self:flex-start;
  6445. padding:0px 0px 0px 0px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u81794_text {
  6450. border-width:0px;
  6451. white-space:nowrap;
  6452. text-transform:none;
  6453. }
  6454. #u81795_img {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:201px;
  6460. height:2px;
  6461. }
  6462. #u81795 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:1018px;
  6467. width:200px;
  6468. height:1px;
  6469. display:flex;
  6470. }
  6471. #u81795 .text {
  6472. position:absolute;
  6473. align-self:center;
  6474. padding:2px 2px 2px 2px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u81795_text {
  6479. border-width:0px;
  6480. word-wrap:break-word;
  6481. text-transform:none;
  6482. visibility:hidden;
  6483. }
  6484. #u81796_div {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:65px;
  6490. height:22px;
  6491. background:inherit;
  6492. background-color:rgba(255, 255, 255, 0);
  6493. border:none;
  6494. border-radius:0px;
  6495. -moz-box-shadow:none;
  6496. -webkit-box-shadow:none;
  6497. box-shadow:none;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:16px;
  6502. }
  6503. #u81796 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:30px;
  6507. top:1075px;
  6508. width:65px;
  6509. height:22px;
  6510. display:flex;
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:16px;
  6515. }
  6516. #u81796 .text {
  6517. position:absolute;
  6518. align-self:flex-start;
  6519. padding:0px 0px 0px 0px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u81796_text {
  6524. border-width:0px;
  6525. white-space:nowrap;
  6526. text-transform:none;
  6527. }
  6528. #u81797_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:49px;
  6534. height:17px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 0);
  6537. border:none;
  6538. border-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:12px;
  6546. color:#AAAAAA;
  6547. }
  6548. #u81797 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:30px;
  6552. top:1039px;
  6553. width:49px;
  6554. height:17px;
  6555. display:flex;
  6556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6557. font-weight:400;
  6558. font-style:normal;
  6559. font-size:12px;
  6560. color:#AAAAAA;
  6561. }
  6562. #u81797 .text {
  6563. position:absolute;
  6564. align-self:flex-start;
  6565. padding:0px 0px 0px 0px;
  6566. box-sizing:border-box;
  6567. width:100%;
  6568. }
  6569. #u81797_text {
  6570. border-width:0px;
  6571. white-space:nowrap;
  6572. text-transform:none;
  6573. }
  6574. #u81798_div {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:65px;
  6580. height:22px;
  6581. background:inherit;
  6582. background-color:rgba(255, 255, 255, 0);
  6583. border:none;
  6584. border-radius:0px;
  6585. -moz-box-shadow:none;
  6586. -webkit-box-shadow:none;
  6587. box-shadow:none;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:16px;
  6592. }
  6593. #u81798 {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:30px;
  6597. top:1117px;
  6598. width:65px;
  6599. height:22px;
  6600. display:flex;
  6601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:16px;
  6605. }
  6606. #u81798 .text {
  6607. position:absolute;
  6608. align-self:flex-start;
  6609. padding:0px 0px 0px 0px;
  6610. box-sizing:border-box;
  6611. width:100%;
  6612. }
  6613. #u81798_text {
  6614. border-width:0px;
  6615. white-space:nowrap;
  6616. text-transform:none;
  6617. }
  6618. #u81799_div {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:65px;
  6624. height:22px;
  6625. background:inherit;
  6626. background-color:rgba(255, 255, 255, 0);
  6627. border:none;
  6628. border-radius:0px;
  6629. -moz-box-shadow:none;
  6630. -webkit-box-shadow:none;
  6631. box-shadow:none;
  6632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:16px;
  6636. }
  6637. #u81799 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:30px;
  6641. top:1201px;
  6642. width:65px;
  6643. height:22px;
  6644. display:flex;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:16px;
  6649. }
  6650. #u81799 .text {
  6651. position:absolute;
  6652. align-self:flex-start;
  6653. padding:0px 0px 0px 0px;
  6654. box-sizing:border-box;
  6655. width:100%;
  6656. }
  6657. #u81799_text {
  6658. border-width:0px;
  6659. white-space:nowrap;
  6660. text-transform:none;
  6661. }
  6662. #u81800_div {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:65px;
  6668. height:22px;
  6669. background:inherit;
  6670. background-color:rgba(255, 255, 255, 0);
  6671. border:none;
  6672. border-radius:0px;
  6673. -moz-box-shadow:none;
  6674. -webkit-box-shadow:none;
  6675. box-shadow:none;
  6676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6677. font-weight:400;
  6678. font-style:normal;
  6679. font-size:16px;
  6680. }
  6681. #u81800 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:30px;
  6685. top:1159px;
  6686. width:65px;
  6687. height:22px;
  6688. display:flex;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:16px;
  6693. }
  6694. #u81800 .text {
  6695. position:absolute;
  6696. align-self:flex-start;
  6697. padding:0px 0px 0px 0px;
  6698. box-sizing:border-box;
  6699. width:100%;
  6700. }
  6701. #u81800_text {
  6702. border-width:0px;
  6703. white-space:nowrap;
  6704. text-transform:none;
  6705. }
  6706. #u81801_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:65px;
  6712. height:22px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 0);
  6715. border:none;
  6716. border-radius:0px;
  6717. -moz-box-shadow:none;
  6718. -webkit-box-shadow:none;
  6719. box-shadow:none;
  6720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6721. font-weight:400;
  6722. font-style:normal;
  6723. font-size:16px;
  6724. }
  6725. #u81801 {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:30px;
  6729. top:1243px;
  6730. width:65px;
  6731. height:22px;
  6732. display:flex;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:16px;
  6737. }
  6738. #u81801 .text {
  6739. position:absolute;
  6740. align-self:flex-start;
  6741. padding:0px 0px 0px 0px;
  6742. box-sizing:border-box;
  6743. width:100%;
  6744. }
  6745. #u81801_text {
  6746. border-width:0px;
  6747. white-space:nowrap;
  6748. text-transform:none;
  6749. }
  6750. #u81802_div {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:0px;
  6754. top:0px;
  6755. width:65px;
  6756. height:22px;
  6757. background:inherit;
  6758. background-color:rgba(255, 255, 255, 0);
  6759. border:none;
  6760. border-radius:0px;
  6761. -moz-box-shadow:none;
  6762. -webkit-box-shadow:none;
  6763. box-shadow:none;
  6764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6765. font-weight:400;
  6766. font-style:normal;
  6767. font-size:16px;
  6768. }
  6769. #u81802 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:30px;
  6773. top:978px;
  6774. width:65px;
  6775. height:22px;
  6776. display:flex;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:16px;
  6781. }
  6782. #u81802 .text {
  6783. position:absolute;
  6784. align-self:flex-start;
  6785. padding:0px 0px 0px 0px;
  6786. box-sizing:border-box;
  6787. width:100%;
  6788. }
  6789. #u81802_text {
  6790. border-width:0px;
  6791. white-space:nowrap;
  6792. text-transform:none;
  6793. }
  6794. #u81803_div {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:65px;
  6800. height:22px;
  6801. background:inherit;
  6802. background-color:rgba(255, 255, 255, 0);
  6803. border:none;
  6804. border-radius:0px;
  6805. -moz-box-shadow:none;
  6806. -webkit-box-shadow:none;
  6807. box-shadow:none;
  6808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. font-size:16px;
  6812. }
  6813. #u81803 {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:30px;
  6817. top:622px;
  6818. width:65px;
  6819. height:22px;
  6820. display:flex;
  6821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:16px;
  6825. }
  6826. #u81803 .text {
  6827. position:absolute;
  6828. align-self:flex-start;
  6829. padding:0px 0px 0px 0px;
  6830. box-sizing:border-box;
  6831. width:100%;
  6832. }
  6833. #u81803_text {
  6834. border-width:0px;
  6835. white-space:nowrap;
  6836. text-transform:none;
  6837. }
  6838. #u81804 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:0px;
  6842. top:0px;
  6843. width:0px;
  6844. height:0px;
  6845. }
  6846. #u81805_div {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:0px;
  6850. top:0px;
  6851. width:700px;
  6852. height:1191px;
  6853. background:inherit;
  6854. background-color:rgba(255, 255, 255, 1);
  6855. box-sizing:border-box;
  6856. border-width:1px;
  6857. border-style:solid;
  6858. border-color:rgba(215, 215, 215, 1);
  6859. border-radius:0px;
  6860. -moz-box-shadow:none;
  6861. -webkit-box-shadow:none;
  6862. box-shadow:none;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:14px;
  6867. color:#AAAAAA;
  6868. text-align:center;
  6869. line-height:30px;
  6870. }
  6871. #u81805 {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:1637px;
  6875. top:50px;
  6876. width:700px;
  6877. height:1191px;
  6878. display:flex;
  6879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:14px;
  6883. color:#AAAAAA;
  6884. text-align:center;
  6885. line-height:30px;
  6886. }
  6887. #u81805 .text {
  6888. position:absolute;
  6889. align-self:center;
  6890. padding:5px 10px 5px 10px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u81805_text {
  6895. border-width:0px;
  6896. word-wrap:break-word;
  6897. text-transform:none;
  6898. visibility:hidden;
  6899. }
  6900. #u81806_div {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:119px;
  6906. height:35px;
  6907. background:inherit;
  6908. background-color:rgba(255, 255, 255, 0);
  6909. border:none;
  6910. border-top:0px;
  6911. border-right:0px;
  6912. border-bottom:0px;
  6913. border-radius:0px;
  6914. border-top-left-radius:0px;
  6915. border-bottom-left-radius:0px;
  6916. -moz-box-shadow:none;
  6917. -webkit-box-shadow:none;
  6918. box-shadow:none;
  6919. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6920. font-weight:500;
  6921. font-style:normal;
  6922. font-size:18px;
  6923. }
  6924. #u81806 {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:1658px;
  6928. top:71px;
  6929. width:119px;
  6930. height:35px;
  6931. display:flex;
  6932. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6933. font-weight:500;
  6934. font-style:normal;
  6935. font-size:18px;
  6936. }
  6937. #u81806 .text {
  6938. position:absolute;
  6939. align-self:center;
  6940. padding:5px 10px 5px 0px;
  6941. box-sizing:border-box;
  6942. width:100%;
  6943. }
  6944. #u81806_text {
  6945. border-width:0px;
  6946. white-space:nowrap;
  6947. text-transform:none;
  6948. }
  6949. #u81807 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:0px;
  6955. height:0px;
  6956. }
  6957. #u81808_div {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:40px;
  6963. height:40px;
  6964. background:inherit;
  6965. background-color:rgba(255, 255, 255, 0);
  6966. border:none;
  6967. border-top:0px;
  6968. border-right:0px;
  6969. border-bottom:0px;
  6970. border-radius:0px;
  6971. border-top-left-radius:0px;
  6972. border-bottom-left-radius:0px;
  6973. -moz-box-shadow:none;
  6974. -webkit-box-shadow:none;
  6975. box-shadow:none;
  6976. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6977. font-weight:500;
  6978. font-style:normal;
  6979. font-size:18px;
  6980. text-align:center;
  6981. }
  6982. #u81808 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:2297px;
  6986. top:50px;
  6987. width:40px;
  6988. height:40px;
  6989. display:flex;
  6990. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6991. font-weight:500;
  6992. font-style:normal;
  6993. font-size:18px;
  6994. text-align:center;
  6995. }
  6996. #u81808 .text {
  6997. position:absolute;
  6998. align-self:center;
  6999. padding:5px 10px 5px 0px;
  7000. box-sizing:border-box;
  7001. width:100%;
  7002. }
  7003. #u81808_text {
  7004. border-width:0px;
  7005. word-wrap:break-word;
  7006. text-transform:none;
  7007. }
  7008. #u81809_img {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:13px;
  7014. height:13px;
  7015. }
  7016. #u81809 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:2285px;
  7020. top:66px;
  7021. width:13px;
  7022. height:13px;
  7023. display:flex;
  7024. }
  7025. #u81809 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 2px 2px 2px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u81809_text {
  7033. border-width:0px;
  7034. word-wrap:break-word;
  7035. text-transform:none;
  7036. visibility:hidden;
  7037. }
  7038. #u81810_div {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:81px;
  7044. height:30px;
  7045. background:inherit;
  7046. background-color:rgba(242, 242, 242, 0);
  7047. border:none;
  7048. border-top:0px;
  7049. border-right:0px;
  7050. border-bottom:0px;
  7051. border-radius:0px;
  7052. border-top-left-radius:0px;
  7053. border-bottom-left-radius:0px;
  7054. -moz-box-shadow:none;
  7055. -webkit-box-shadow:none;
  7056. box-shadow:none;
  7057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:14px;
  7061. text-align:right;
  7062. }
  7063. #u81810 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:1680px;
  7067. top:387px;
  7068. width:81px;
  7069. height:30px;
  7070. display:flex;
  7071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:14px;
  7075. text-align:right;
  7076. }
  7077. #u81810 .text {
  7078. position:absolute;
  7079. align-self:center;
  7080. padding:5px 10px 5px 0px;
  7081. box-sizing:border-box;
  7082. width:100%;
  7083. }
  7084. #u81810_text {
  7085. border-width:0px;
  7086. white-space:nowrap;
  7087. text-transform:none;
  7088. }
  7089. #u81811_div {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:81px;
  7095. height:30px;
  7096. background:inherit;
  7097. background-color:rgba(242, 242, 242, 0);
  7098. border:none;
  7099. border-top:0px;
  7100. border-right:0px;
  7101. border-bottom:0px;
  7102. border-radius:0px;
  7103. border-top-left-radius:0px;
  7104. border-bottom-left-radius:0px;
  7105. -moz-box-shadow:none;
  7106. -webkit-box-shadow:none;
  7107. box-shadow:none;
  7108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:14px;
  7112. text-align:right;
  7113. }
  7114. #u81811 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:1680px;
  7118. top:337px;
  7119. width:81px;
  7120. height:30px;
  7121. display:flex;
  7122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:14px;
  7126. text-align:right;
  7127. }
  7128. #u81811 .text {
  7129. position:absolute;
  7130. align-self:center;
  7131. padding:5px 10px 5px 0px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u81811_text {
  7136. border-width:0px;
  7137. white-space:nowrap;
  7138. text-transform:none;
  7139. }
  7140. #u81812 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:0px;
  7144. top:0px;
  7145. width:0px;
  7146. height:0px;
  7147. }
  7148. #u81813_div {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:300px;
  7154. height:40px;
  7155. background:inherit;
  7156. background-color:rgba(255, 255, 255, 1);
  7157. box-sizing:border-box;
  7158. border-width:1px;
  7159. border-style:solid;
  7160. border-color:rgba(201, 201, 201, 1);
  7161. border-radius:4px;
  7162. -moz-box-shadow:none;
  7163. -webkit-box-shadow:none;
  7164. box-shadow:none;
  7165. font-family:'Microsoft YaHei', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:14px;
  7169. color:#CCCCCC;
  7170. text-align:left;
  7171. }
  7172. #u81813 {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:1768px;
  7176. top:332px;
  7177. width:300px;
  7178. height:40px;
  7179. display:flex;
  7180. font-family:'Microsoft YaHei', sans-serif;
  7181. font-weight:400;
  7182. font-style:normal;
  7183. font-size:14px;
  7184. color:#CCCCCC;
  7185. text-align:left;
  7186. }
  7187. #u81813 .text {
  7188. position:absolute;
  7189. align-self:center;
  7190. padding:2px 8px 2px 8px;
  7191. box-sizing:border-box;
  7192. width:100%;
  7193. }
  7194. #u81813_text {
  7195. border-width:0px;
  7196. word-wrap:break-word;
  7197. text-transform:none;
  7198. visibility:hidden;
  7199. }
  7200. #u81814_input {
  7201. position:absolute;
  7202. left:0px;
  7203. top:0px;
  7204. width:263px;
  7205. height:38px;
  7206. padding:2px 2px 2px 2px;
  7207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:14px;
  7211. letter-spacing:normal;
  7212. color:#000000;
  7213. vertical-align:none;
  7214. text-align:left;
  7215. text-transform:none;
  7216. background-color:transparent;
  7217. border-color:transparent;
  7218. }
  7219. #u81814_input.disabled {
  7220. position:absolute;
  7221. left:0px;
  7222. top:0px;
  7223. width:263px;
  7224. height:38px;
  7225. padding:2px 2px 2px 2px;
  7226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7227. font-weight:400;
  7228. font-style:normal;
  7229. font-size:14px;
  7230. letter-spacing:normal;
  7231. color:#000000;
  7232. vertical-align:none;
  7233. text-align:left;
  7234. text-transform:none;
  7235. background-color:transparent;
  7236. border-color:transparent;
  7237. }
  7238. #u81814_div {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:0px;
  7242. top:0px;
  7243. width:263px;
  7244. height:38px;
  7245. background:inherit;
  7246. background-color:rgba(255, 255, 255, 1);
  7247. border:none;
  7248. border-radius:0px;
  7249. -moz-box-shadow:none;
  7250. -webkit-box-shadow:none;
  7251. box-shadow:none;
  7252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:14px;
  7256. }
  7257. #u81814 {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:1776px;
  7261. top:333px;
  7262. width:263px;
  7263. height:38px;
  7264. display:flex;
  7265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7266. font-weight:400;
  7267. font-style:normal;
  7268. font-size:14px;
  7269. }
  7270. #u81814 .text {
  7271. position:absolute;
  7272. align-self:center;
  7273. padding:2px 2px 2px 2px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u81814_div.disabled {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:263px;
  7283. height:38px;
  7284. background:inherit;
  7285. background-color:rgba(240, 240, 240, 1);
  7286. border:none;
  7287. border-radius:0px;
  7288. -moz-box-shadow:none;
  7289. -webkit-box-shadow:none;
  7290. box-shadow:none;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. }
  7296. #u81814.disabled {
  7297. }
  7298. #u81815_div {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:0px;
  7302. top:0px;
  7303. width:88px;
  7304. height:30px;
  7305. background:inherit;
  7306. background-color:rgba(242, 242, 242, 0);
  7307. border:none;
  7308. border-top:0px;
  7309. border-right:0px;
  7310. border-bottom:0px;
  7311. border-radius:0px;
  7312. border-top-left-radius:0px;
  7313. border-bottom-left-radius:0px;
  7314. -moz-box-shadow:none;
  7315. -webkit-box-shadow:none;
  7316. box-shadow:none;
  7317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7318. font-weight:400;
  7319. font-style:normal;
  7320. font-size:14px;
  7321. text-align:right;
  7322. }
  7323. #u81815 {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:1673px;
  7327. top:237px;
  7328. width:88px;
  7329. height:30px;
  7330. display:flex;
  7331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7332. font-weight:400;
  7333. font-style:normal;
  7334. font-size:14px;
  7335. text-align:right;
  7336. }
  7337. #u81815 .text {
  7338. position:absolute;
  7339. align-self:center;
  7340. padding:5px 10px 5px 0px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u81815_text {
  7345. border-width:0px;
  7346. white-space:nowrap;
  7347. text-transform:none;
  7348. }
  7349. #u81816 {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:0px;
  7355. height:0px;
  7356. }
  7357. #u81817_div {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:700px;
  7363. height:60px;
  7364. background:inherit;
  7365. background-color:rgba(255, 255, 255, 1);
  7366. box-sizing:border-box;
  7367. border-width:1px;
  7368. border-style:solid;
  7369. border-color:rgba(215, 215, 215, 1);
  7370. border-radius:0px;
  7371. -moz-box-shadow:none;
  7372. -webkit-box-shadow:none;
  7373. box-shadow:none;
  7374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:14px;
  7378. color:#AAAAAA;
  7379. text-align:center;
  7380. line-height:30px;
  7381. }
  7382. #u81817 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:1637px;
  7386. top:1181px;
  7387. width:700px;
  7388. height:60px;
  7389. display:flex;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:14px;
  7394. color:#AAAAAA;
  7395. text-align:center;
  7396. line-height:30px;
  7397. }
  7398. #u81817 .text {
  7399. position:absolute;
  7400. align-self:center;
  7401. padding:5px 10px 5px 10px;
  7402. box-sizing:border-box;
  7403. width:100%;
  7404. }
  7405. #u81817_text {
  7406. border-width:0px;
  7407. word-wrap:break-word;
  7408. text-transform:none;
  7409. visibility:hidden;
  7410. }
  7411. #u81818_div {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:80px;
  7417. height:30px;
  7418. background:inherit;
  7419. background-color:rgba(24, 144, 255, 1);
  7420. border:none;
  7421. border-radius:4px;
  7422. -moz-box-shadow:none;
  7423. -webkit-box-shadow:none;
  7424. box-shadow:none;
  7425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7426. font-weight:400;
  7427. font-style:normal;
  7428. font-size:14px;
  7429. color:#FFFFFF;
  7430. }
  7431. #u81818 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:2212px;
  7435. top:1196px;
  7436. width:80px;
  7437. height:30px;
  7438. display:flex;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:14px;
  7443. color:#FFFFFF;
  7444. }
  7445. #u81818 .text {
  7446. position:absolute;
  7447. align-self:center;
  7448. padding:2px 2px 2px 2px;
  7449. box-sizing:border-box;
  7450. width:100%;
  7451. }
  7452. #u81818_text {
  7453. border-width:0px;
  7454. word-wrap:break-word;
  7455. text-transform:none;
  7456. }
  7457. #u81819_div {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:0px;
  7461. top:0px;
  7462. width:80px;
  7463. height:30px;
  7464. background:inherit;
  7465. background-color:rgba(255, 255, 255, 1);
  7466. box-sizing:border-box;
  7467. border-width:1px;
  7468. border-style:solid;
  7469. border-color:rgba(170, 170, 170, 1);
  7470. border-radius:4px;
  7471. -moz-box-shadow:none;
  7472. -webkit-box-shadow:none;
  7473. box-shadow:none;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:14px;
  7478. }
  7479. #u81819 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:2112px;
  7483. top:1196px;
  7484. width:80px;
  7485. height:30px;
  7486. display:flex;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:14px;
  7491. }
  7492. #u81819 .text {
  7493. position:absolute;
  7494. align-self:center;
  7495. padding:2px 2px 2px 2px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u81819_text {
  7500. border-width:0px;
  7501. word-wrap:break-word;
  7502. text-transform:none;
  7503. }
  7504. #u81820 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:0px;
  7510. height:0px;
  7511. }
  7512. #u81821_div {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:300px;
  7518. height:40px;
  7519. background:inherit;
  7520. background-color:rgba(255, 255, 255, 1);
  7521. box-sizing:border-box;
  7522. border-width:1px;
  7523. border-style:solid;
  7524. border-color:rgba(201, 201, 201, 1);
  7525. border-radius:4px;
  7526. -moz-box-shadow:none;
  7527. -webkit-box-shadow:none;
  7528. box-shadow:none;
  7529. font-family:'Microsoft YaHei', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:14px;
  7533. color:#CCCCCC;
  7534. text-align:left;
  7535. }
  7536. #u81821 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:1768px;
  7540. top:232px;
  7541. width:300px;
  7542. height:40px;
  7543. display:flex;
  7544. font-family:'Microsoft YaHei', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. font-size:14px;
  7548. color:#CCCCCC;
  7549. text-align:left;
  7550. }
  7551. #u81821 .text {
  7552. position:absolute;
  7553. align-self:center;
  7554. padding:2px 8px 2px 8px;
  7555. box-sizing:border-box;
  7556. width:100%;
  7557. }
  7558. #u81821_text {
  7559. border-width:0px;
  7560. word-wrap:break-word;
  7561. text-transform:none;
  7562. visibility:hidden;
  7563. }
  7564. #u81822_input {
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:263px;
  7569. height:38px;
  7570. padding:2px 2px 2px 2px;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:14px;
  7575. letter-spacing:normal;
  7576. color:#000000;
  7577. vertical-align:none;
  7578. text-align:left;
  7579. text-transform:none;
  7580. background-color:transparent;
  7581. border-color:transparent;
  7582. }
  7583. #u81822_input.disabled {
  7584. position:absolute;
  7585. left:0px;
  7586. top:0px;
  7587. width:263px;
  7588. height:38px;
  7589. padding:2px 2px 2px 2px;
  7590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:14px;
  7594. letter-spacing:normal;
  7595. color:#000000;
  7596. vertical-align:none;
  7597. text-align:left;
  7598. text-transform:none;
  7599. background-color:transparent;
  7600. border-color:transparent;
  7601. }
  7602. #u81822_div {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:0px;
  7606. top:0px;
  7607. width:263px;
  7608. height:38px;
  7609. background:inherit;
  7610. background-color:rgba(255, 255, 255, 1);
  7611. border:none;
  7612. border-radius:0px;
  7613. -moz-box-shadow:none;
  7614. -webkit-box-shadow:none;
  7615. box-shadow:none;
  7616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7617. font-weight:400;
  7618. font-style:normal;
  7619. font-size:14px;
  7620. }
  7621. #u81822 {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:1776px;
  7625. top:233px;
  7626. width:263px;
  7627. height:38px;
  7628. display:flex;
  7629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:14px;
  7633. }
  7634. #u81822 .text {
  7635. position:absolute;
  7636. align-self:center;
  7637. padding:2px 2px 2px 2px;
  7638. box-sizing:border-box;
  7639. width:100%;
  7640. }
  7641. #u81822_div.disabled {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:263px;
  7647. height:38px;
  7648. background:inherit;
  7649. background-color:rgba(240, 240, 240, 1);
  7650. border:none;
  7651. border-radius:0px;
  7652. -moz-box-shadow:none;
  7653. -webkit-box-shadow:none;
  7654. box-shadow:none;
  7655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7656. font-weight:400;
  7657. font-style:normal;
  7658. font-size:14px;
  7659. }
  7660. #u81822.disabled {
  7661. }
  7662. #u81823 {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:0px;
  7668. height:0px;
  7669. }
  7670. #u81824_div {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:300px;
  7676. height:40px;
  7677. background:inherit;
  7678. background-color:rgba(255, 255, 255, 1);
  7679. box-sizing:border-box;
  7680. border-width:1px;
  7681. border-style:solid;
  7682. border-color:rgba(201, 201, 201, 1);
  7683. border-radius:4px;
  7684. -moz-box-shadow:none;
  7685. -webkit-box-shadow:none;
  7686. box-shadow:none;
  7687. font-family:'Microsoft YaHei', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:14px;
  7691. color:#CCCCCC;
  7692. text-align:left;
  7693. }
  7694. #u81824 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:1768px;
  7698. top:382px;
  7699. width:300px;
  7700. height:40px;
  7701. display:flex;
  7702. font-family:'Microsoft YaHei', sans-serif;
  7703. font-weight:400;
  7704. font-style:normal;
  7705. font-size:14px;
  7706. color:#CCCCCC;
  7707. text-align:left;
  7708. }
  7709. #u81824 .text {
  7710. position:absolute;
  7711. align-self:center;
  7712. padding:2px 8px 2px 8px;
  7713. box-sizing:border-box;
  7714. width:100%;
  7715. }
  7716. #u81824_text {
  7717. border-width:0px;
  7718. word-wrap:break-word;
  7719. text-transform:none;
  7720. visibility:hidden;
  7721. }
  7722. #u81825_input {
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:263px;
  7727. height:38px;
  7728. padding:2px 2px 2px 2px;
  7729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. font-size:14px;
  7733. letter-spacing:normal;
  7734. color:#000000;
  7735. vertical-align:none;
  7736. text-align:left;
  7737. text-transform:none;
  7738. background-color:transparent;
  7739. border-color:transparent;
  7740. }
  7741. #u81825_input.disabled {
  7742. position:absolute;
  7743. left:0px;
  7744. top:0px;
  7745. width:263px;
  7746. height:38px;
  7747. padding:2px 2px 2px 2px;
  7748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:14px;
  7752. letter-spacing:normal;
  7753. color:#000000;
  7754. vertical-align:none;
  7755. text-align:left;
  7756. text-transform:none;
  7757. background-color:transparent;
  7758. border-color:transparent;
  7759. }
  7760. #u81825_div {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:0px;
  7764. top:0px;
  7765. width:263px;
  7766. height:38px;
  7767. background:inherit;
  7768. background-color:rgba(255, 255, 255, 1);
  7769. border:none;
  7770. border-radius:0px;
  7771. -moz-box-shadow:none;
  7772. -webkit-box-shadow:none;
  7773. box-shadow:none;
  7774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7775. font-weight:400;
  7776. font-style:normal;
  7777. font-size:14px;
  7778. }
  7779. #u81825 {
  7780. border-width:0px;
  7781. position:absolute;
  7782. left:1776px;
  7783. top:383px;
  7784. width:263px;
  7785. height:38px;
  7786. display:flex;
  7787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7788. font-weight:400;
  7789. font-style:normal;
  7790. font-size:14px;
  7791. }
  7792. #u81825 .text {
  7793. position:absolute;
  7794. align-self:center;
  7795. padding:2px 2px 2px 2px;
  7796. box-sizing:border-box;
  7797. width:100%;
  7798. }
  7799. #u81825_div.disabled {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:0px;
  7803. top:0px;
  7804. width:263px;
  7805. height:38px;
  7806. background:inherit;
  7807. background-color:rgba(240, 240, 240, 1);
  7808. border:none;
  7809. border-radius:0px;
  7810. -moz-box-shadow:none;
  7811. -webkit-box-shadow:none;
  7812. box-shadow:none;
  7813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7814. font-weight:400;
  7815. font-style:normal;
  7816. font-size:14px;
  7817. }
  7818. #u81825.disabled {
  7819. }
  7820. #u81826 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:0px;
  7824. top:0px;
  7825. width:0px;
  7826. height:0px;
  7827. }
  7828. #u81827_div {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:0px;
  7832. top:0px;
  7833. width:300px;
  7834. height:60px;
  7835. background:inherit;
  7836. background-color:rgba(255, 255, 255, 1);
  7837. box-sizing:border-box;
  7838. border-width:1px;
  7839. border-style:solid;
  7840. border-color:rgba(201, 201, 201, 1);
  7841. border-radius:4px;
  7842. -moz-box-shadow:none;
  7843. -webkit-box-shadow:none;
  7844. box-shadow:none;
  7845. font-family:'Microsoft YaHei', sans-serif;
  7846. font-weight:400;
  7847. font-style:normal;
  7848. font-size:14px;
  7849. color:#CCCCCC;
  7850. text-align:left;
  7851. }
  7852. #u81827 {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:1768px;
  7856. top:663px;
  7857. width:300px;
  7858. height:60px;
  7859. display:flex;
  7860. font-family:'Microsoft YaHei', sans-serif;
  7861. font-weight:400;
  7862. font-style:normal;
  7863. font-size:14px;
  7864. color:#CCCCCC;
  7865. text-align:left;
  7866. }
  7867. #u81827 .text {
  7868. position:absolute;
  7869. align-self:center;
  7870. padding:2px 8px 2px 8px;
  7871. box-sizing:border-box;
  7872. width:100%;
  7873. }
  7874. #u81827_text {
  7875. border-width:0px;
  7876. word-wrap:break-word;
  7877. text-transform:none;
  7878. visibility:hidden;
  7879. }
  7880. #u81828_input {
  7881. position:absolute;
  7882. left:0px;
  7883. top:0px;
  7884. width:285px;
  7885. height:57px;
  7886. padding:2px 2px 2px 2px;
  7887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7888. font-weight:400;
  7889. font-style:normal;
  7890. font-size:14px;
  7891. letter-spacing:normal;
  7892. color:#000000;
  7893. vertical-align:none;
  7894. text-align:left;
  7895. text-transform:none;
  7896. background-color:transparent;
  7897. border-color:transparent;
  7898. }
  7899. #u81828_input.disabled {
  7900. position:absolute;
  7901. left:0px;
  7902. top:0px;
  7903. width:285px;
  7904. height:57px;
  7905. padding:2px 2px 2px 2px;
  7906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:14px;
  7910. letter-spacing:normal;
  7911. color:#000000;
  7912. vertical-align:none;
  7913. text-align:left;
  7914. text-transform:none;
  7915. background-color:transparent;
  7916. border-color:transparent;
  7917. }
  7918. #u81828_div {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:285px;
  7924. height:57px;
  7925. background:inherit;
  7926. background-color:rgba(255, 255, 255, 1);
  7927. border:none;
  7928. border-radius:0px;
  7929. -moz-box-shadow:none;
  7930. -webkit-box-shadow:none;
  7931. box-shadow:none;
  7932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:14px;
  7936. }
  7937. #u81828 {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:1776px;
  7941. top:665px;
  7942. width:285px;
  7943. height:57px;
  7944. display:flex;
  7945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7946. font-weight:400;
  7947. font-style:normal;
  7948. font-size:14px;
  7949. }
  7950. #u81828 .text {
  7951. position:absolute;
  7952. align-self:center;
  7953. padding:2px 2px 2px 2px;
  7954. box-sizing:border-box;
  7955. width:100%;
  7956. }
  7957. #u81828_div.disabled {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:0px;
  7961. top:0px;
  7962. width:285px;
  7963. height:57px;
  7964. background:inherit;
  7965. background-color:rgba(240, 240, 240, 1);
  7966. border:none;
  7967. border-radius:0px;
  7968. -moz-box-shadow:none;
  7969. -webkit-box-shadow:none;
  7970. box-shadow:none;
  7971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:14px;
  7975. }
  7976. #u81828.disabled {
  7977. }
  7978. #u81829_div {
  7979. border-width:0px;
  7980. position:absolute;
  7981. left:0px;
  7982. top:0px;
  7983. width:136px;
  7984. height:90px;
  7985. background:inherit;
  7986. background-color:rgba(242, 242, 242, 1);
  7987. border:none;
  7988. border-radius:0px;
  7989. -moz-box-shadow:none;
  7990. -webkit-box-shadow:none;
  7991. box-shadow:none;
  7992. font-size:38px;
  7993. color:#AAAAAA;
  7994. }
  7995. #u81829 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:1768px;
  7999. top:522px;
  8000. width:136px;
  8001. height:90px;
  8002. display:flex;
  8003. font-size:38px;
  8004. color:#AAAAAA;
  8005. }
  8006. #u81829 .text {
  8007. position:absolute;
  8008. align-self:center;
  8009. padding:2px 2px 2px 2px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u81829_text {
  8014. border-width:0px;
  8015. word-wrap:break-word;
  8016. text-transform:none;
  8017. }
  8018. #u81830_div {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:0px;
  8022. top:0px;
  8023. width:81px;
  8024. height:30px;
  8025. background:inherit;
  8026. background-color:rgba(242, 242, 242, 0);
  8027. border:none;
  8028. border-top:0px;
  8029. border-right:0px;
  8030. border-bottom:0px;
  8031. border-radius:0px;
  8032. border-top-left-radius:0px;
  8033. border-bottom-left-radius:0px;
  8034. -moz-box-shadow:none;
  8035. -webkit-box-shadow:none;
  8036. box-shadow:none;
  8037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8038. font-weight:400;
  8039. font-style:normal;
  8040. font-size:14px;
  8041. text-align:right;
  8042. }
  8043. #u81830 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:1681px;
  8047. top:665px;
  8048. width:81px;
  8049. height:30px;
  8050. display:flex;
  8051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8052. font-weight:400;
  8053. font-style:normal;
  8054. font-size:14px;
  8055. text-align:right;
  8056. }
  8057. #u81830 .text {
  8058. position:absolute;
  8059. align-self:center;
  8060. padding:5px 10px 5px 0px;
  8061. box-sizing:border-box;
  8062. width:100%;
  8063. }
  8064. #u81830_text {
  8065. border-width:0px;
  8066. white-space:nowrap;
  8067. text-transform:none;
  8068. }
  8069. #u81831_div {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:0px;
  8073. top:0px;
  8074. width:81px;
  8075. height:30px;
  8076. background:inherit;
  8077. background-color:rgba(242, 242, 242, 0);
  8078. border:none;
  8079. border-top:0px;
  8080. border-right:0px;
  8081. border-bottom:0px;
  8082. border-radius:0px;
  8083. border-top-left-radius:0px;
  8084. border-bottom-left-radius:0px;
  8085. -moz-box-shadow:none;
  8086. -webkit-box-shadow:none;
  8087. box-shadow:none;
  8088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8089. font-weight:400;
  8090. font-style:normal;
  8091. font-size:14px;
  8092. text-align:right;
  8093. }
  8094. #u81831 {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:1681px;
  8098. top:522px;
  8099. width:81px;
  8100. height:30px;
  8101. display:flex;
  8102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8103. font-weight:400;
  8104. font-style:normal;
  8105. font-size:14px;
  8106. text-align:right;
  8107. }
  8108. #u81831 .text {
  8109. position:absolute;
  8110. align-self:center;
  8111. padding:5px 10px 5px 0px;
  8112. box-sizing:border-box;
  8113. width:100%;
  8114. }
  8115. #u81831_text {
  8116. border-width:0px;
  8117. white-space:nowrap;
  8118. text-transform:none;
  8119. }
  8120. #u81832_div {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:0px;
  8124. top:0px;
  8125. width:88px;
  8126. height:30px;
  8127. background:inherit;
  8128. background-color:rgba(242, 242, 242, 0);
  8129. border:none;
  8130. border-top:0px;
  8131. border-right:0px;
  8132. border-bottom:0px;
  8133. border-radius:0px;
  8134. border-top-left-radius:0px;
  8135. border-bottom-left-radius:0px;
  8136. -moz-box-shadow:none;
  8137. -webkit-box-shadow:none;
  8138. box-shadow:none;
  8139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8140. font-weight:400;
  8141. font-style:normal;
  8142. font-size:14px;
  8143. text-align:right;
  8144. }
  8145. #u81832 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:1674px;
  8149. top:136px;
  8150. width:88px;
  8151. height:30px;
  8152. display:flex;
  8153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:14px;
  8157. text-align:right;
  8158. }
  8159. #u81832 .text {
  8160. position:absolute;
  8161. align-self:center;
  8162. padding:5px 10px 5px 0px;
  8163. box-sizing:border-box;
  8164. width:100%;
  8165. }
  8166. #u81832_text {
  8167. border-width:0px;
  8168. white-space:nowrap;
  8169. text-transform:none;
  8170. }
  8171. #u81833 {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:0px;
  8177. height:0px;
  8178. }
  8179. #u81834_div {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:0px;
  8183. top:0px;
  8184. width:300px;
  8185. height:40px;
  8186. background:inherit;
  8187. background-color:rgba(255, 255, 255, 1);
  8188. box-sizing:border-box;
  8189. border-width:1px;
  8190. border-style:solid;
  8191. border-color:rgba(215, 215, 215, 1);
  8192. border-radius:4px;
  8193. -moz-box-shadow:none;
  8194. -webkit-box-shadow:none;
  8195. box-shadow:none;
  8196. font-size:11px;
  8197. }
  8198. #u81834 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:1768px;
  8202. top:132px;
  8203. width:300px;
  8204. height:40px;
  8205. display:flex;
  8206. font-size:11px;
  8207. }
  8208. #u81834 .text {
  8209. position:absolute;
  8210. align-self:center;
  8211. padding:2px 2px 2px 2px;
  8212. box-sizing:border-box;
  8213. width:100%;
  8214. }
  8215. #u81834_text {
  8216. border-width:0px;
  8217. word-wrap:break-word;
  8218. text-transform:none;
  8219. visibility:hidden;
  8220. }
  8221. #u81835_input {
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:286px;
  8226. height:31px;
  8227. padding:2px 2px 2px 2px;
  8228. font-family:'ArialMT', 'Arial', sans-serif;
  8229. font-weight:400;
  8230. font-style:normal;
  8231. font-size:11px;
  8232. letter-spacing:normal;
  8233. color:#AAAAAA;
  8234. vertical-align:none;
  8235. text-align:left;
  8236. text-transform:none;
  8237. background-color:transparent;
  8238. border-color:transparent;
  8239. }
  8240. #u81835_input.disabled {
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:286px;
  8245. height:31px;
  8246. padding:2px 2px 2px 2px;
  8247. font-family:'ArialMT', 'Arial', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:11px;
  8251. letter-spacing:normal;
  8252. color:#AAAAAA;
  8253. vertical-align:none;
  8254. text-align:left;
  8255. text-transform:none;
  8256. background-color:transparent;
  8257. border-color:transparent;
  8258. }
  8259. #u81835_div {
  8260. border-width:0px;
  8261. position:absolute;
  8262. left:0px;
  8263. top:0px;
  8264. width:286px;
  8265. height:31px;
  8266. background:inherit;
  8267. background-color:rgba(255, 255, 255, 1);
  8268. border:none;
  8269. border-radius:0px;
  8270. -moz-box-shadow:none;
  8271. -webkit-box-shadow:none;
  8272. box-shadow:none;
  8273. font-size:11px;
  8274. color:#AAAAAA;
  8275. }
  8276. #u81835 {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:1775px;
  8280. top:135px;
  8281. width:286px;
  8282. height:31px;
  8283. display:flex;
  8284. font-size:11px;
  8285. color:#AAAAAA;
  8286. }
  8287. #u81835 .text {
  8288. position:absolute;
  8289. align-self:flex-start;
  8290. padding:2px 2px 2px 2px;
  8291. box-sizing:border-box;
  8292. width:100%;
  8293. }
  8294. #u81835_div.disabled {
  8295. border-width:0px;
  8296. position:absolute;
  8297. left:0px;
  8298. top:0px;
  8299. width:286px;
  8300. height:31px;
  8301. background:inherit;
  8302. background-color:rgba(240, 240, 240, 1);
  8303. border:none;
  8304. border-radius:0px;
  8305. -moz-box-shadow:none;
  8306. -webkit-box-shadow:none;
  8307. box-shadow:none;
  8308. font-size:11px;
  8309. color:#AAAAAA;
  8310. }
  8311. #u81835.disabled {
  8312. }
  8313. .u81835_input_option {
  8314. font-size:11px;
  8315. }
  8316. #u81836_div {
  8317. border-width:0px;
  8318. position:absolute;
  8319. left:0px;
  8320. top:0px;
  8321. width:88px;
  8322. height:30px;
  8323. background:inherit;
  8324. background-color:rgba(242, 242, 242, 0);
  8325. border:none;
  8326. border-top:0px;
  8327. border-right:0px;
  8328. border-bottom:0px;
  8329. border-radius:0px;
  8330. border-top-left-radius:0px;
  8331. border-bottom-left-radius:0px;
  8332. -moz-box-shadow:none;
  8333. -webkit-box-shadow:none;
  8334. box-shadow:none;
  8335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8336. font-weight:400;
  8337. font-style:normal;
  8338. font-size:14px;
  8339. text-align:right;
  8340. }
  8341. #u81836 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:1674px;
  8345. top:186px;
  8346. width:88px;
  8347. height:30px;
  8348. display:flex;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:14px;
  8353. text-align:right;
  8354. }
  8355. #u81836 .text {
  8356. position:absolute;
  8357. align-self:center;
  8358. padding:5px 10px 5px 0px;
  8359. box-sizing:border-box;
  8360. width:100%;
  8361. }
  8362. #u81836_text {
  8363. border-width:0px;
  8364. white-space:nowrap;
  8365. text-transform:none;
  8366. }
  8367. #u81837 {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:0px;
  8371. top:0px;
  8372. width:0px;
  8373. height:0px;
  8374. }
  8375. #u81838_div {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:0px;
  8379. top:0px;
  8380. width:300px;
  8381. height:40px;
  8382. background:inherit;
  8383. background-color:rgba(255, 255, 255, 1);
  8384. box-sizing:border-box;
  8385. border-width:1px;
  8386. border-style:solid;
  8387. border-color:rgba(215, 215, 215, 1);
  8388. border-radius:4px;
  8389. -moz-box-shadow:none;
  8390. -webkit-box-shadow:none;
  8391. box-shadow:none;
  8392. font-size:11px;
  8393. }
  8394. #u81838 {
  8395. border-width:0px;
  8396. position:absolute;
  8397. left:1768px;
  8398. top:182px;
  8399. width:300px;
  8400. height:40px;
  8401. display:flex;
  8402. font-size:11px;
  8403. }
  8404. #u81838 .text {
  8405. position:absolute;
  8406. align-self:center;
  8407. padding:2px 2px 2px 2px;
  8408. box-sizing:border-box;
  8409. width:100%;
  8410. }
  8411. #u81838_text {
  8412. border-width:0px;
  8413. word-wrap:break-word;
  8414. text-transform:none;
  8415. visibility:hidden;
  8416. }
  8417. #u81839_input {
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:286px;
  8422. height:31px;
  8423. padding:2px 2px 2px 2px;
  8424. font-family:'ArialMT', 'Arial', sans-serif;
  8425. font-weight:400;
  8426. font-style:normal;
  8427. font-size:11px;
  8428. letter-spacing:normal;
  8429. color:#AAAAAA;
  8430. vertical-align:none;
  8431. text-align:left;
  8432. text-transform:none;
  8433. background-color:transparent;
  8434. border-color:transparent;
  8435. }
  8436. #u81839_input.disabled {
  8437. position:absolute;
  8438. left:0px;
  8439. top:0px;
  8440. width:286px;
  8441. height:31px;
  8442. padding:2px 2px 2px 2px;
  8443. font-family:'ArialMT', 'Arial', sans-serif;
  8444. font-weight:400;
  8445. font-style:normal;
  8446. font-size:11px;
  8447. letter-spacing:normal;
  8448. color:#AAAAAA;
  8449. vertical-align:none;
  8450. text-align:left;
  8451. text-transform:none;
  8452. background-color:transparent;
  8453. border-color:transparent;
  8454. }
  8455. #u81839_div {
  8456. border-width:0px;
  8457. position:absolute;
  8458. left:0px;
  8459. top:0px;
  8460. width:286px;
  8461. height:31px;
  8462. background:inherit;
  8463. background-color:rgba(255, 255, 255, 1);
  8464. border:none;
  8465. border-radius:0px;
  8466. -moz-box-shadow:none;
  8467. -webkit-box-shadow:none;
  8468. box-shadow:none;
  8469. font-size:11px;
  8470. color:#AAAAAA;
  8471. }
  8472. #u81839 {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:1775px;
  8476. top:185px;
  8477. width:286px;
  8478. height:31px;
  8479. display:flex;
  8480. font-size:11px;
  8481. color:#AAAAAA;
  8482. }
  8483. #u81839 .text {
  8484. position:absolute;
  8485. align-self:flex-start;
  8486. padding:2px 2px 2px 2px;
  8487. box-sizing:border-box;
  8488. width:100%;
  8489. }
  8490. #u81839_div.disabled {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:286px;
  8496. height:31px;
  8497. background:inherit;
  8498. background-color:rgba(240, 240, 240, 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:11px;
  8505. color:#AAAAAA;
  8506. }
  8507. #u81839.disabled {
  8508. }
  8509. .u81839_input_option {
  8510. font-size:11px;
  8511. }
  8512. #u81840_div {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:88px;
  8518. height:30px;
  8519. background:inherit;
  8520. background-color:rgba(242, 242, 242, 0);
  8521. border:none;
  8522. border-top:0px;
  8523. border-right:0px;
  8524. border-bottom:0px;
  8525. border-radius:0px;
  8526. border-top-left-radius:0px;
  8527. border-bottom-left-radius:0px;
  8528. -moz-box-shadow:none;
  8529. -webkit-box-shadow:none;
  8530. box-shadow:none;
  8531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8532. font-weight:400;
  8533. font-style:normal;
  8534. font-size:14px;
  8535. text-align:right;
  8536. }
  8537. #u81840 {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:1673px;
  8541. top:482px;
  8542. width:88px;
  8543. height:30px;
  8544. display:flex;
  8545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8546. font-weight:400;
  8547. font-style:normal;
  8548. font-size:14px;
  8549. text-align:right;
  8550. }
  8551. #u81840 .text {
  8552. position:absolute;
  8553. align-self:center;
  8554. padding:5px 10px 5px 0px;
  8555. box-sizing:border-box;
  8556. width:100%;
  8557. }
  8558. #u81840_text {
  8559. border-width:0px;
  8560. white-space:nowrap;
  8561. text-transform:none;
  8562. }
  8563. #u81841 label {
  8564. left:0px;
  8565. width:100%;
  8566. }
  8567. #u81841_img {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:0px;
  8571. top:3px;
  8572. width:12px;
  8573. height:12px;
  8574. }
  8575. #u81841 {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:1768px;
  8579. top:488px;
  8580. width:100px;
  8581. height:18px;
  8582. display:flex;
  8583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8584. font-weight:400;
  8585. font-style:normal;
  8586. }
  8587. #u81841 .text {
  8588. position:absolute;
  8589. align-self:center;
  8590. padding:0px 2px 0px 2px;
  8591. box-sizing:border-box;
  8592. }
  8593. #u81841_img.selected {
  8594. }
  8595. #u81841.selected {
  8596. }
  8597. #u81841_img.disabled {
  8598. }
  8599. #u81841.disabled {
  8600. }
  8601. #u81841_img.selectedDisabled {
  8602. }
  8603. #u81841.selectedDisabled {
  8604. }
  8605. #u81841_text {
  8606. border-width:0px;
  8607. position:absolute;
  8608. left:14px;
  8609. top:0px;
  8610. width:84px;
  8611. word-wrap:break-word;
  8612. text-transform:none;
  8613. }
  8614. #u81841_input {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:0px;
  8618. top:0px;
  8619. width:0px;
  8620. height:0px;
  8621. opacity:0;
  8622. }
  8623. #u81842 label {
  8624. left:0px;
  8625. width:100%;
  8626. }
  8627. #u81842_img {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:0px;
  8631. top:3px;
  8632. width:12px;
  8633. height:12px;
  8634. }
  8635. #u81842 {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:1868px;
  8639. top:488px;
  8640. width:100px;
  8641. height:18px;
  8642. display:flex;
  8643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8644. font-weight:400;
  8645. font-style:normal;
  8646. }
  8647. #u81842 .text {
  8648. position:absolute;
  8649. align-self:center;
  8650. padding:0px 2px 0px 2px;
  8651. box-sizing:border-box;
  8652. }
  8653. #u81842_img.selected {
  8654. }
  8655. #u81842.selected {
  8656. }
  8657. #u81842_img.disabled {
  8658. }
  8659. #u81842.disabled {
  8660. }
  8661. #u81842_img.selectedDisabled {
  8662. }
  8663. #u81842.selectedDisabled {
  8664. }
  8665. #u81842_text {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:14px;
  8669. top:0px;
  8670. width:84px;
  8671. word-wrap:break-word;
  8672. text-transform:none;
  8673. }
  8674. #u81842_input {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:0px;
  8678. top:0px;
  8679. width:0px;
  8680. height:0px;
  8681. opacity:0;
  8682. }
  8683. #u81843 label {
  8684. left:0px;
  8685. width:100%;
  8686. }
  8687. #u81843_img {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:0px;
  8691. top:3px;
  8692. width:12px;
  8693. height:12px;
  8694. }
  8695. #u81843 {
  8696. border-width:0px;
  8697. position:absolute;
  8698. left:1968px;
  8699. top:488px;
  8700. width:100px;
  8701. height:18px;
  8702. display:flex;
  8703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8704. font-weight:400;
  8705. font-style:normal;
  8706. }
  8707. #u81843 .text {
  8708. position:absolute;
  8709. align-self:center;
  8710. padding:0px 2px 0px 2px;
  8711. box-sizing:border-box;
  8712. }
  8713. #u81843_img.selected {
  8714. }
  8715. #u81843.selected {
  8716. }
  8717. #u81843_img.disabled {
  8718. }
  8719. #u81843.disabled {
  8720. }
  8721. #u81843_img.selectedDisabled {
  8722. }
  8723. #u81843.selectedDisabled {
  8724. }
  8725. #u81843_text {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:14px;
  8729. top:0px;
  8730. width:84px;
  8731. word-wrap:break-word;
  8732. text-transform:none;
  8733. }
  8734. #u81843_input {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:0px;
  8738. top:0px;
  8739. width:0px;
  8740. height:0px;
  8741. opacity:0;
  8742. }
  8743. #u81844_div {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:88px;
  8749. height:30px;
  8750. background:inherit;
  8751. background-color:rgba(242, 242, 242, 0);
  8752. border:none;
  8753. border-top:0px;
  8754. border-right:0px;
  8755. border-bottom:0px;
  8756. border-radius:0px;
  8757. border-top-left-radius:0px;
  8758. border-bottom-left-radius:0px;
  8759. -moz-box-shadow:none;
  8760. -webkit-box-shadow:none;
  8761. box-shadow:none;
  8762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8763. font-weight:400;
  8764. font-style:normal;
  8765. font-size:14px;
  8766. text-align:right;
  8767. }
  8768. #u81844 {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:1674px;
  8772. top:286px;
  8773. width:88px;
  8774. height:30px;
  8775. display:flex;
  8776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8777. font-weight:400;
  8778. font-style:normal;
  8779. font-size:14px;
  8780. text-align:right;
  8781. }
  8782. #u81844 .text {
  8783. position:absolute;
  8784. align-self:center;
  8785. padding:5px 10px 5px 0px;
  8786. box-sizing:border-box;
  8787. width:100%;
  8788. }
  8789. #u81844_text {
  8790. border-width:0px;
  8791. white-space:nowrap;
  8792. text-transform:none;
  8793. }
  8794. #u81845 {
  8795. border-width:0px;
  8796. position:absolute;
  8797. left:0px;
  8798. top:0px;
  8799. width:0px;
  8800. height:0px;
  8801. }
  8802. #u81846_div {
  8803. border-width:0px;
  8804. position:absolute;
  8805. left:0px;
  8806. top:0px;
  8807. width:300px;
  8808. height:40px;
  8809. background:inherit;
  8810. background-color:rgba(255, 255, 255, 1);
  8811. box-sizing:border-box;
  8812. border-width:1px;
  8813. border-style:solid;
  8814. border-color:rgba(215, 215, 215, 1);
  8815. border-radius:4px;
  8816. -moz-box-shadow:none;
  8817. -webkit-box-shadow:none;
  8818. box-shadow:none;
  8819. font-size:11px;
  8820. }
  8821. #u81846 {
  8822. border-width:0px;
  8823. position:absolute;
  8824. left:1768px;
  8825. top:282px;
  8826. width:300px;
  8827. height:40px;
  8828. display:flex;
  8829. font-size:11px;
  8830. }
  8831. #u81846 .text {
  8832. position:absolute;
  8833. align-self:center;
  8834. padding:2px 2px 2px 2px;
  8835. box-sizing:border-box;
  8836. width:100%;
  8837. }
  8838. #u81846_text {
  8839. border-width:0px;
  8840. word-wrap:break-word;
  8841. text-transform:none;
  8842. visibility:hidden;
  8843. }
  8844. #u81847_input {
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:286px;
  8849. height:31px;
  8850. padding:2px 2px 2px 2px;
  8851. font-family:'ArialMT', 'Arial', sans-serif;
  8852. font-weight:400;
  8853. font-style:normal;
  8854. font-size:11px;
  8855. letter-spacing:normal;
  8856. color:#AAAAAA;
  8857. vertical-align:none;
  8858. text-align:left;
  8859. text-transform:none;
  8860. background-color:transparent;
  8861. border-color:transparent;
  8862. }
  8863. #u81847_input.disabled {
  8864. position:absolute;
  8865. left:0px;
  8866. top:0px;
  8867. width:286px;
  8868. height:31px;
  8869. padding:2px 2px 2px 2px;
  8870. font-family:'ArialMT', 'Arial', sans-serif;
  8871. font-weight:400;
  8872. font-style:normal;
  8873. font-size:11px;
  8874. letter-spacing:normal;
  8875. color:#AAAAAA;
  8876. vertical-align:none;
  8877. text-align:left;
  8878. text-transform:none;
  8879. background-color:transparent;
  8880. border-color:transparent;
  8881. }
  8882. #u81847_div {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:0px;
  8886. top:0px;
  8887. width:286px;
  8888. height:31px;
  8889. background:inherit;
  8890. background-color:rgba(255, 255, 255, 1);
  8891. border:none;
  8892. border-radius:0px;
  8893. -moz-box-shadow:none;
  8894. -webkit-box-shadow:none;
  8895. box-shadow:none;
  8896. font-size:11px;
  8897. color:#AAAAAA;
  8898. }
  8899. #u81847 {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:1775px;
  8903. top:285px;
  8904. width:286px;
  8905. height:31px;
  8906. display:flex;
  8907. font-size:11px;
  8908. color:#AAAAAA;
  8909. }
  8910. #u81847 .text {
  8911. position:absolute;
  8912. align-self:flex-start;
  8913. padding:2px 2px 2px 2px;
  8914. box-sizing:border-box;
  8915. width:100%;
  8916. }
  8917. #u81847_div.disabled {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:0px;
  8921. top:0px;
  8922. width:286px;
  8923. height:31px;
  8924. background:inherit;
  8925. background-color:rgba(240, 240, 240, 1);
  8926. border:none;
  8927. border-radius:0px;
  8928. -moz-box-shadow:none;
  8929. -webkit-box-shadow:none;
  8930. box-shadow:none;
  8931. font-size:11px;
  8932. color:#AAAAAA;
  8933. }
  8934. #u81847.disabled {
  8935. }
  8936. .u81847_input_option {
  8937. font-size:11px;
  8938. }
  8939. #u81848_div {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:0px;
  8943. top:0px;
  8944. width:88px;
  8945. height:30px;
  8946. background:inherit;
  8947. background-color:rgba(242, 242, 242, 0);
  8948. border:none;
  8949. border-top:0px;
  8950. border-right:0px;
  8951. border-bottom:0px;
  8952. border-radius:0px;
  8953. border-top-left-radius:0px;
  8954. border-bottom-left-radius:0px;
  8955. -moz-box-shadow:none;
  8956. -webkit-box-shadow:none;
  8957. box-shadow:none;
  8958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8959. font-weight:400;
  8960. font-style:normal;
  8961. font-size:14px;
  8962. text-align:right;
  8963. }
  8964. #u81848 {
  8965. border-width:0px;
  8966. position:absolute;
  8967. left:1674px;
  8968. top:436px;
  8969. width:88px;
  8970. height:30px;
  8971. display:flex;
  8972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8973. font-weight:400;
  8974. font-style:normal;
  8975. font-size:14px;
  8976. text-align:right;
  8977. }
  8978. #u81848 .text {
  8979. position:absolute;
  8980. align-self:center;
  8981. padding:5px 10px 5px 0px;
  8982. box-sizing:border-box;
  8983. width:100%;
  8984. }
  8985. #u81848_text {
  8986. border-width:0px;
  8987. white-space:nowrap;
  8988. text-transform:none;
  8989. }
  8990. #u81849 {
  8991. border-width:0px;
  8992. position:absolute;
  8993. left:0px;
  8994. top:0px;
  8995. width:0px;
  8996. height:0px;
  8997. }
  8998. #u81850_div {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:300px;
  9004. height:40px;
  9005. background:inherit;
  9006. background-color:rgba(255, 255, 255, 1);
  9007. box-sizing:border-box;
  9008. border-width:1px;
  9009. border-style:solid;
  9010. border-color:rgba(215, 215, 215, 1);
  9011. border-radius:4px;
  9012. -moz-box-shadow:none;
  9013. -webkit-box-shadow:none;
  9014. box-shadow:none;
  9015. font-size:11px;
  9016. }
  9017. #u81850 {
  9018. border-width:0px;
  9019. position:absolute;
  9020. left:1768px;
  9021. top:432px;
  9022. width:300px;
  9023. height:40px;
  9024. display:flex;
  9025. font-size:11px;
  9026. }
  9027. #u81850 .text {
  9028. position:absolute;
  9029. align-self:center;
  9030. padding:2px 2px 2px 2px;
  9031. box-sizing:border-box;
  9032. width:100%;
  9033. }
  9034. #u81850_text {
  9035. border-width:0px;
  9036. word-wrap:break-word;
  9037. text-transform:none;
  9038. visibility:hidden;
  9039. }
  9040. #u81851_input {
  9041. position:absolute;
  9042. left:0px;
  9043. top:0px;
  9044. width:286px;
  9045. height:31px;
  9046. padding:2px 2px 2px 2px;
  9047. font-family:'ArialMT', 'Arial', sans-serif;
  9048. font-weight:400;
  9049. font-style:normal;
  9050. font-size:11px;
  9051. letter-spacing:normal;
  9052. color:#AAAAAA;
  9053. vertical-align:none;
  9054. text-align:left;
  9055. text-transform:none;
  9056. background-color:transparent;
  9057. border-color:transparent;
  9058. }
  9059. #u81851_input.disabled {
  9060. position:absolute;
  9061. left:0px;
  9062. top:0px;
  9063. width:286px;
  9064. height:31px;
  9065. padding:2px 2px 2px 2px;
  9066. font-family:'ArialMT', 'Arial', sans-serif;
  9067. font-weight:400;
  9068. font-style:normal;
  9069. font-size:11px;
  9070. letter-spacing:normal;
  9071. color:#AAAAAA;
  9072. vertical-align:none;
  9073. text-align:left;
  9074. text-transform:none;
  9075. background-color:transparent;
  9076. border-color:transparent;
  9077. }
  9078. #u81851_div {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:0px;
  9082. top:0px;
  9083. width:286px;
  9084. height:31px;
  9085. background:inherit;
  9086. background-color:rgba(255, 255, 255, 1);
  9087. border:none;
  9088. border-radius:0px;
  9089. -moz-box-shadow:none;
  9090. -webkit-box-shadow:none;
  9091. box-shadow:none;
  9092. font-size:11px;
  9093. color:#AAAAAA;
  9094. }
  9095. #u81851 {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:1775px;
  9099. top:435px;
  9100. width:286px;
  9101. height:31px;
  9102. display:flex;
  9103. font-size:11px;
  9104. color:#AAAAAA;
  9105. }
  9106. #u81851 .text {
  9107. position:absolute;
  9108. align-self:flex-start;
  9109. padding:2px 2px 2px 2px;
  9110. box-sizing:border-box;
  9111. width:100%;
  9112. }
  9113. #u81851_div.disabled {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:0px;
  9117. top:0px;
  9118. width:286px;
  9119. height:31px;
  9120. background:inherit;
  9121. background-color:rgba(240, 240, 240, 1);
  9122. border:none;
  9123. border-radius:0px;
  9124. -moz-box-shadow:none;
  9125. -webkit-box-shadow:none;
  9126. box-shadow:none;
  9127. font-size:11px;
  9128. color:#AAAAAA;
  9129. }
  9130. #u81851.disabled {
  9131. }
  9132. .u81851_input_option {
  9133. font-size:11px;
  9134. }
  9135. #u81852 {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:0px;
  9139. top:0px;
  9140. width:0px;
  9141. height:0px;
  9142. }
  9143. #u81853_img {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:0px;
  9147. top:0px;
  9148. width:50px;
  9149. height:31px;
  9150. }
  9151. #u81853 {
  9152. border-width:0px;
  9153. position:absolute;
  9154. left:1768px;
  9155. top:622px;
  9156. width:50px;
  9157. height:31px;
  9158. display:flex;
  9159. }
  9160. #u81853 .text {
  9161. position:absolute;
  9162. align-self:center;
  9163. padding:2px 2px 2px 2px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u81853_text {
  9168. border-width:0px;
  9169. word-wrap:break-word;
  9170. text-transform:none;
  9171. visibility:hidden;
  9172. }
  9173. #u81854_div {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:137px;
  9179. height:30px;
  9180. background:inherit;
  9181. background-color:rgba(255, 255, 255, 0);
  9182. border:none;
  9183. border-top:0px;
  9184. border-right:0px;
  9185. border-bottom:0px;
  9186. border-radius:0px;
  9187. border-top-left-radius:0px;
  9188. border-bottom-left-radius:0px;
  9189. -moz-box-shadow:none;
  9190. -webkit-box-shadow:none;
  9191. box-shadow:none;
  9192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:14px;
  9196. }
  9197. #u81854 {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:1681px;
  9201. top:622px;
  9202. width:137px;
  9203. height:30px;
  9204. display:flex;
  9205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9206. font-weight:400;
  9207. font-style:normal;
  9208. font-size:14px;
  9209. }
  9210. #u81854 .text {
  9211. position:absolute;
  9212. align-self:center;
  9213. padding:5px 10px 5px 0px;
  9214. box-sizing:border-box;
  9215. width:100%;
  9216. }
  9217. #u81854_text {
  9218. border-width:0px;
  9219. word-wrap:break-word;
  9220. text-transform:none;
  9221. }
  9222. #u81855_div {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:0px;
  9226. top:0px;
  9227. width:38px;
  9228. height:24px;
  9229. background:inherit;
  9230. background-color:rgba(255, 255, 255, 1);
  9231. box-sizing:border-box;
  9232. border-width:1px;
  9233. border-style:solid;
  9234. border-color:rgba(170, 170, 170, 1);
  9235. border-radius:4px;
  9236. -moz-box-shadow:none;
  9237. -webkit-box-shadow:none;
  9238. box-shadow:none;
  9239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9240. font-weight:400;
  9241. font-style:normal;
  9242. font-size:10px;
  9243. color:#555555;
  9244. }
  9245. #u81855 {
  9246. border-width:0px;
  9247. position:absolute;
  9248. left:1238px;
  9249. top:252px;
  9250. width:38px;
  9251. height:24px;
  9252. display:flex;
  9253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9254. font-weight:400;
  9255. font-style:normal;
  9256. font-size:10px;
  9257. color:#555555;
  9258. }
  9259. #u81855 .text {
  9260. position:absolute;
  9261. align-self:center;
  9262. padding:5px 0px 5px 0px;
  9263. box-sizing:border-box;
  9264. width:100%;
  9265. }
  9266. #u81855_text {
  9267. border-width:0px;
  9268. word-wrap:break-word;
  9269. text-transform:none;
  9270. }
  9271. #u81856_div {
  9272. border-width:0px;
  9273. position:absolute;
  9274. left:0px;
  9275. top:0px;
  9276. width:38px;
  9277. height:24px;
  9278. background:inherit;
  9279. background-color:rgba(255, 255, 255, 1);
  9280. box-sizing:border-box;
  9281. border-width:1px;
  9282. border-style:solid;
  9283. border-color:rgba(217, 0, 27, 1);
  9284. border-radius:4px;
  9285. -moz-box-shadow:none;
  9286. -webkit-box-shadow:none;
  9287. box-shadow:none;
  9288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9289. font-weight:400;
  9290. font-style:normal;
  9291. font-size:10px;
  9292. color:#D9001B;
  9293. }
  9294. #u81856 {
  9295. border-width:0px;
  9296. position:absolute;
  9297. left:1238px;
  9298. top:288px;
  9299. width:38px;
  9300. height:24px;
  9301. display:flex;
  9302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9303. font-weight:400;
  9304. font-style:normal;
  9305. font-size:10px;
  9306. color:#D9001B;
  9307. }
  9308. #u81856 .text {
  9309. position:absolute;
  9310. align-self:center;
  9311. padding:5px 0px 5px 0px;
  9312. box-sizing:border-box;
  9313. width:100%;
  9314. }
  9315. #u81856_text {
  9316. border-width:0px;
  9317. word-wrap:break-word;
  9318. text-transform:none;
  9319. }
  9320. #u81857_div {
  9321. border-width:0px;
  9322. position:absolute;
  9323. left:0px;
  9324. top:0px;
  9325. width:38px;
  9326. height:24px;
  9327. background:inherit;
  9328. background-color:rgba(255, 255, 255, 1);
  9329. box-sizing:border-box;
  9330. border-width:1px;
  9331. border-style:solid;
  9332. border-color:rgba(217, 0, 27, 1);
  9333. border-radius:4px;
  9334. -moz-box-shadow:none;
  9335. -webkit-box-shadow:none;
  9336. box-shadow:none;
  9337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9338. font-weight:400;
  9339. font-style:normal;
  9340. font-size:10px;
  9341. color:#D9001B;
  9342. }
  9343. #u81857 {
  9344. border-width:0px;
  9345. position:absolute;
  9346. left:1238px;
  9347. top:324px;
  9348. width:38px;
  9349. height:24px;
  9350. display:flex;
  9351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9352. font-weight:400;
  9353. font-style:normal;
  9354. font-size:10px;
  9355. color:#D9001B;
  9356. }
  9357. #u81857 .text {
  9358. position:absolute;
  9359. align-self:center;
  9360. padding:5px 0px 5px 0px;
  9361. box-sizing:border-box;
  9362. width:100%;
  9363. }
  9364. #u81857_text {
  9365. border-width:0px;
  9366. word-wrap:break-word;
  9367. text-transform:none;
  9368. }
  9369. #u81858_div {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:0px;
  9373. top:0px;
  9374. width:79px;
  9375. height:30px;
  9376. background:inherit;
  9377. background-color:rgba(255, 255, 255, 1);
  9378. box-sizing:border-box;
  9379. border-width:1px;
  9380. border-style:solid;
  9381. border-color:rgba(170, 170, 170, 1);
  9382. border-radius:4px;
  9383. -moz-box-shadow:none;
  9384. -webkit-box-shadow:none;
  9385. box-shadow:none;
  9386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9387. font-weight:400;
  9388. font-style:normal;
  9389. font-size:12px;
  9390. color:#555555;
  9391. }
  9392. #u81858 {
  9393. border-width:0px;
  9394. position:absolute;
  9395. left:419px;
  9396. top:160px;
  9397. width:79px;
  9398. height:30px;
  9399. display:flex;
  9400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9401. font-weight:400;
  9402. font-style:normal;
  9403. font-size:12px;
  9404. color:#555555;
  9405. }
  9406. #u81858 .text {
  9407. position:absolute;
  9408. align-self:center;
  9409. padding:5px 15px 5px 15px;
  9410. box-sizing:border-box;
  9411. width:100%;
  9412. }
  9413. #u81858_text {
  9414. border-width:0px;
  9415. white-space:nowrap;
  9416. text-transform:none;
  9417. }
  9418. #u81859_div {
  9419. border-width:0px;
  9420. position:absolute;
  9421. left:0px;
  9422. top:0px;
  9423. width:59px;
  9424. height:30px;
  9425. background:inherit;
  9426. background-color:rgba(0, 153, 255, 1);
  9427. box-sizing:border-box;
  9428. border-width:1px;
  9429. border-style:solid;
  9430. border-color:rgba(0, 153, 255, 1);
  9431. border-radius:4px;
  9432. -moz-box-shadow:none;
  9433. -webkit-box-shadow:none;
  9434. box-shadow:none;
  9435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9436. font-weight:400;
  9437. font-style:normal;
  9438. font-size:14px;
  9439. color:#FFFFFF;
  9440. }
  9441. #u81859 {
  9442. border-width:0px;
  9443. position:absolute;
  9444. left:350px;
  9445. top:160px;
  9446. width:59px;
  9447. height:30px;
  9448. display:flex;
  9449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9450. font-weight:400;
  9451. font-style:normal;
  9452. font-size:14px;
  9453. color:#FFFFFF;
  9454. }
  9455. #u81859 .text {
  9456. position:absolute;
  9457. align-self:center;
  9458. padding:5px 15px 5px 15px;
  9459. box-sizing:border-box;
  9460. width:100%;
  9461. }
  9462. #u81859_text {
  9463. border-width:0px;
  9464. white-space:nowrap;
  9465. text-transform:none;
  9466. }