styles.css 144 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2444px;
  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. #u95878_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. #u95878 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u95878 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u95878_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u95879_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. #u95879 {
  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. #u95879 .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. #u95879_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u95880_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. #u95880 {
  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. #u95880 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u95880_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u95881 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u95882_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u95882 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u95882 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u95882_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u95883_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. #u95883 {
  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. #u95883 .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. #u95883_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u95884_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. #u95884 {
  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. #u95884 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u95884_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u95885 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u95886_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u95886 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u95886 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u95886_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u95887_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u95887 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u95887 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u95887_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u95888 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u95889_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u95889 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u95889 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u95889_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u95890_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u95890 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u95890 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u95890_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u95891 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u95892_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u95892 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u95892 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u95892_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u95893_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u95893 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u95893 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u95893_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u95894 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u95895_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u95895 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u95895 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u95895_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u95896_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u95896 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u95896 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u95896_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u95897 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u95898_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u95898 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u95898 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u95898_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u95899_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u95899 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u95899 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u95899_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u95900 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u95901_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u95901 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u95901 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u95901_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u95902_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u95902 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u95902 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u95902_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u95903 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u95904_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u95904 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u95904 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u95904_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u95905_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u95905 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u95905 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u95905_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u95906 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u95907_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u95907 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u95907 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u95907_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u95908_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u95908 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u95908 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u95908_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u95909 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u95910_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u95910 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u95910 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u95910_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u95911_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u95911 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u95911 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u95911_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u95912_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u95912 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u95912 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u95912_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u95913_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u95913 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u95913 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u95913_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u95914_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u95914 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u95914 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u95914_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u95915_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u95915 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u95915 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u95915_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u95916 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u95917_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u95917 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u95917 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u95917_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u95918_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u95918 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u95918 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u95918_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u95919 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u95920_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u95920 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u95920 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u95920_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u95921_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u95921 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u95921 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u95921_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u95922 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u95923_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u95923_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u95923_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u95923 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u95923 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u95923_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u95923.disabled {
  1428. }
  1429. .u95923_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u95924_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u95924 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u95924 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u95924_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u95925_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u95925 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u95925 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u95925_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u95926_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u95926 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u95926 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u95926_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u95927_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1259px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u95927 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1259px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u95927 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u95927_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u95928 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:350px;
  1579. top:193px;
  1580. width:1219px;
  1581. height:313px;
  1582. }
  1583. #u95929_img {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:210px;
  1589. height:35px;
  1590. }
  1591. #u95929 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:210px;
  1597. height:35px;
  1598. display:flex;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:12px;
  1603. color:#FFFFFF;
  1604. }
  1605. #u95929 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u95929_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. }
  1617. #u95930_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:134px;
  1623. height:35px;
  1624. }
  1625. #u95930 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:210px;
  1629. top:0px;
  1630. width:134px;
  1631. height:35px;
  1632. display:flex;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:12px;
  1637. color:#FFFFFF;
  1638. }
  1639. #u95930 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 2px 2px 0px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u95930_text {
  1647. border-width:0px;
  1648. word-wrap:break-word;
  1649. text-transform:none;
  1650. }
  1651. #u95931_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:124px;
  1657. height:35px;
  1658. }
  1659. #u95931 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:344px;
  1663. top:0px;
  1664. width:124px;
  1665. height:35px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. }
  1673. #u95931 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 0px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u95931_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. }
  1685. #u95932_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:124px;
  1691. height:35px;
  1692. }
  1693. #u95932 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:468px;
  1697. top:0px;
  1698. width:124px;
  1699. height:35px;
  1700. display:flex;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:12px;
  1705. color:#FFFFFF;
  1706. }
  1707. #u95932 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u95932_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u95933_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:135px;
  1725. height:35px;
  1726. }
  1727. #u95933 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:592px;
  1731. top:0px;
  1732. width:135px;
  1733. height:35px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:12px;
  1739. color:#FFFFFF;
  1740. }
  1741. #u95933 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 0px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u95933_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. }
  1753. #u95934_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:135px;
  1759. height:35px;
  1760. }
  1761. #u95934 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:727px;
  1765. top:0px;
  1766. width:135px;
  1767. height:35px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:12px;
  1773. color:#FFFFFF;
  1774. }
  1775. #u95934 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:2px 2px 2px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u95934_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. }
  1787. #u95935_img {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:124px;
  1793. height:35px;
  1794. }
  1795. #u95935 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:862px;
  1799. top:0px;
  1800. width:124px;
  1801. height:35px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:12px;
  1807. color:#FFFFFF;
  1808. }
  1809. #u95935 .text {
  1810. position:absolute;
  1811. align-self:center;
  1812. padding:2px 2px 2px 0px;
  1813. box-sizing:border-box;
  1814. width:100%;
  1815. }
  1816. #u95935_text {
  1817. border-width:0px;
  1818. word-wrap:break-word;
  1819. text-transform:none;
  1820. }
  1821. #u95936_img {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:128px;
  1827. height:35px;
  1828. }
  1829. #u95936 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:986px;
  1833. top:0px;
  1834. width:128px;
  1835. height:35px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:12px;
  1841. color:#FFFFFF;
  1842. }
  1843. #u95936 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u95936_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u95937_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:105px;
  1861. height:35px;
  1862. }
  1863. #u95937 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:1114px;
  1867. top:0px;
  1868. width:105px;
  1869. height:35px;
  1870. display:flex;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:12px;
  1875. color:#FFFFFF;
  1876. }
  1877. #u95937 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:2px 2px 2px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u95937_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. }
  1889. #u95938_img {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:210px;
  1895. height:44px;
  1896. }
  1897. #u95938 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:35px;
  1902. width:210px;
  1903. height:44px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:12px;
  1909. color:#333333;
  1910. line-height:40px;
  1911. }
  1912. #u95938 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 0px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u95938_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u95939_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:134px;
  1930. height:44px;
  1931. }
  1932. #u95939 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:210px;
  1936. top:35px;
  1937. width:134px;
  1938. height:44px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:12px;
  1944. color:#333333;
  1945. line-height:40px;
  1946. }
  1947. #u95939 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u95939_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. visibility:hidden;
  1959. }
  1960. #u95940_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:124px;
  1966. height:44px;
  1967. }
  1968. #u95940 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:344px;
  1972. top:35px;
  1973. width:124px;
  1974. height:44px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:12px;
  1980. color:#333333;
  1981. line-height:40px;
  1982. }
  1983. #u95940 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 2px 2px 0px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u95940_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. visibility:hidden;
  1995. }
  1996. #u95941_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:124px;
  2002. height:44px;
  2003. }
  2004. #u95941 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:468px;
  2008. top:35px;
  2009. width:124px;
  2010. height:44px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:12px;
  2016. color:#333333;
  2017. line-height:40px;
  2018. }
  2019. #u95941 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 2px 2px 0px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u95941_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. visibility:hidden;
  2031. }
  2032. #u95942_img {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:135px;
  2038. height:44px;
  2039. }
  2040. #u95942 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:592px;
  2044. top:35px;
  2045. width:135px;
  2046. height:44px;
  2047. display:flex;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:12px;
  2052. color:#333333;
  2053. line-height:40px;
  2054. }
  2055. #u95942 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u95942_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u95943_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:135px;
  2074. height:44px;
  2075. }
  2076. #u95943 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:727px;
  2080. top:35px;
  2081. width:135px;
  2082. height:44px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:12px;
  2088. color:#333333;
  2089. line-height:40px;
  2090. }
  2091. #u95943 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u95943_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u95944_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:124px;
  2110. height:44px;
  2111. }
  2112. #u95944 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:862px;
  2116. top:35px;
  2117. width:124px;
  2118. height:44px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. color:#333333;
  2125. line-height:40px;
  2126. }
  2127. #u95944 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u95944_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u95945_img {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:128px;
  2146. height:44px;
  2147. }
  2148. #u95945 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:986px;
  2152. top:35px;
  2153. width:128px;
  2154. height:44px;
  2155. display:flex;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:12px;
  2160. color:#333333;
  2161. line-height:40px;
  2162. }
  2163. #u95945 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u95945_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u95946_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:105px;
  2182. height:44px;
  2183. }
  2184. #u95946 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:1114px;
  2188. top:35px;
  2189. width:105px;
  2190. height:44px;
  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:#298FFF;
  2197. line-height:35px;
  2198. }
  2199. #u95946 .text {
  2200. position:absolute;
  2201. align-self:center;
  2202. padding:2px 2px 2px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u95946_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. }
  2211. #u95947_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:210px;
  2217. height:44px;
  2218. }
  2219. #u95947 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:79px;
  2224. width:210px;
  2225. height:44px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. color:#333333;
  2232. line-height:40px;
  2233. }
  2234. #u95947 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:2px 2px 2px 0px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u95947_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. }
  2246. #u95948_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:134px;
  2252. height:44px;
  2253. }
  2254. #u95948 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:210px;
  2258. top:79px;
  2259. width:134px;
  2260. height:44px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:12px;
  2266. color:#333333;
  2267. line-height:40px;
  2268. }
  2269. #u95948 .text {
  2270. position:absolute;
  2271. align-self:center;
  2272. padding:2px 2px 2px 0px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u95948_text {
  2277. border-width:0px;
  2278. word-wrap:break-word;
  2279. text-transform:none;
  2280. visibility:hidden;
  2281. }
  2282. #u95949_img {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:124px;
  2288. height:44px;
  2289. }
  2290. #u95949 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:344px;
  2294. top:79px;
  2295. width:124px;
  2296. height:44px;
  2297. display:flex;
  2298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:12px;
  2302. color:#333333;
  2303. line-height:40px;
  2304. }
  2305. #u95949 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u95949_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u95950_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:124px;
  2324. height:44px;
  2325. }
  2326. #u95950 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:468px;
  2330. top:79px;
  2331. width:124px;
  2332. height:44px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. color:#333333;
  2339. line-height:40px;
  2340. }
  2341. #u95950 .text {
  2342. position:absolute;
  2343. align-self:center;
  2344. padding:2px 2px 2px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u95950_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. visibility:hidden;
  2353. }
  2354. #u95951_img {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:135px;
  2360. height:44px;
  2361. }
  2362. #u95951 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:592px;
  2366. top:79px;
  2367. width:135px;
  2368. height:44px;
  2369. display:flex;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. font-size:12px;
  2374. color:#333333;
  2375. line-height:40px;
  2376. }
  2377. #u95951 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:2px 2px 2px 0px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u95951_text {
  2385. border-width:0px;
  2386. word-wrap:break-word;
  2387. text-transform:none;
  2388. visibility:hidden;
  2389. }
  2390. #u95952_img {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:135px;
  2396. height:44px;
  2397. }
  2398. #u95952 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:727px;
  2402. top:79px;
  2403. width:135px;
  2404. height:44px;
  2405. display:flex;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:12px;
  2410. color:#333333;
  2411. line-height:40px;
  2412. }
  2413. #u95952 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u95952_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. visibility:hidden;
  2425. }
  2426. #u95953_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:124px;
  2432. height:44px;
  2433. }
  2434. #u95953 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:862px;
  2438. top:79px;
  2439. width:124px;
  2440. height:44px;
  2441. display:flex;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:12px;
  2446. color:#333333;
  2447. line-height:40px;
  2448. }
  2449. #u95953 .text {
  2450. position:absolute;
  2451. align-self:center;
  2452. padding:2px 2px 2px 0px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u95953_text {
  2457. border-width:0px;
  2458. word-wrap:break-word;
  2459. text-transform:none;
  2460. visibility:hidden;
  2461. }
  2462. #u95954_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:128px;
  2468. height:44px;
  2469. }
  2470. #u95954 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:986px;
  2474. top:79px;
  2475. width:128px;
  2476. height:44px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. color:#333333;
  2483. line-height:40px;
  2484. }
  2485. #u95954 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 0px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u95954_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. visibility:hidden;
  2497. }
  2498. #u95955_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:105px;
  2504. height:44px;
  2505. }
  2506. #u95955 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:1114px;
  2510. top:79px;
  2511. width:105px;
  2512. height:44px;
  2513. display:flex;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. color:#1890FF;
  2519. }
  2520. #u95955 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u95955_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. visibility:hidden;
  2532. }
  2533. #u95956_img {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:210px;
  2539. height:38px;
  2540. }
  2541. #u95956 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:123px;
  2546. width:210px;
  2547. height:38px;
  2548. display:flex;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:12px;
  2553. color:#333333;
  2554. line-height:40px;
  2555. }
  2556. #u95956 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 0px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u95956_text {
  2564. border-width:0px;
  2565. word-wrap:break-word;
  2566. text-transform:none;
  2567. visibility:hidden;
  2568. }
  2569. #u95957_img {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:134px;
  2575. height:38px;
  2576. }
  2577. #u95957 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:210px;
  2581. top:123px;
  2582. width:134px;
  2583. height:38px;
  2584. display:flex;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:12px;
  2589. color:#333333;
  2590. line-height:40px;
  2591. }
  2592. #u95957 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:2px 2px 2px 0px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u95957_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. visibility:hidden;
  2604. }
  2605. #u95958_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:124px;
  2611. height:38px;
  2612. }
  2613. #u95958 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:344px;
  2617. top:123px;
  2618. width:124px;
  2619. height:38px;
  2620. display:flex;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:12px;
  2625. color:#333333;
  2626. line-height:40px;
  2627. }
  2628. #u95958 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:2px 2px 2px 0px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u95958_text {
  2636. border-width:0px;
  2637. word-wrap:break-word;
  2638. text-transform:none;
  2639. visibility:hidden;
  2640. }
  2641. #u95959_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:124px;
  2647. height:38px;
  2648. }
  2649. #u95959 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:468px;
  2653. top:123px;
  2654. width:124px;
  2655. height:38px;
  2656. display:flex;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:12px;
  2661. color:#333333;
  2662. line-height:40px;
  2663. }
  2664. #u95959 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u95959_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u95960_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:135px;
  2683. height:38px;
  2684. }
  2685. #u95960 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:592px;
  2689. top:123px;
  2690. width:135px;
  2691. height:38px;
  2692. display:flex;
  2693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:12px;
  2697. color:#333333;
  2698. line-height:40px;
  2699. }
  2700. #u95960 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u95960_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. visibility:hidden;
  2712. }
  2713. #u95961_img {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:135px;
  2719. height:38px;
  2720. }
  2721. #u95961 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:727px;
  2725. top:123px;
  2726. width:135px;
  2727. height:38px;
  2728. display:flex;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:12px;
  2733. color:#333333;
  2734. line-height:40px;
  2735. }
  2736. #u95961 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u95961_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. visibility:hidden;
  2748. }
  2749. #u95962_img {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:124px;
  2755. height:38px;
  2756. }
  2757. #u95962 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:862px;
  2761. top:123px;
  2762. width:124px;
  2763. height:38px;
  2764. display:flex;
  2765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:12px;
  2769. color:#333333;
  2770. line-height:40px;
  2771. }
  2772. #u95962 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 0px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u95962_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u95963_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:128px;
  2791. height:38px;
  2792. }
  2793. #u95963 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:986px;
  2797. top:123px;
  2798. width:128px;
  2799. height:38px;
  2800. display:flex;
  2801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:12px;
  2805. color:#333333;
  2806. line-height:40px;
  2807. }
  2808. #u95963 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 2px 2px 0px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u95963_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u95964_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:105px;
  2827. height:38px;
  2828. }
  2829. #u95964 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:1114px;
  2833. top:123px;
  2834. width:105px;
  2835. height:38px;
  2836. display:flex;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:12px;
  2841. color:#1890FF;
  2842. }
  2843. #u95964 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 2px 2px 0px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u95964_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u95965_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:210px;
  2862. height:38px;
  2863. }
  2864. #u95965 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:161px;
  2869. width:210px;
  2870. height:38px;
  2871. display:flex;
  2872. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:12px;
  2876. color:#606266;
  2877. }
  2878. #u95965 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 0px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u95965_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. visibility:hidden;
  2890. }
  2891. #u95966_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:134px;
  2897. height:38px;
  2898. }
  2899. #u95966 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:210px;
  2903. top:161px;
  2904. width:134px;
  2905. height:38px;
  2906. display:flex;
  2907. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:12px;
  2911. color:#606266;
  2912. }
  2913. #u95966 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u95966_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. visibility:hidden;
  2925. }
  2926. #u95967_img {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:124px;
  2932. height:38px;
  2933. }
  2934. #u95967 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:344px;
  2938. top:161px;
  2939. width:124px;
  2940. height:38px;
  2941. display:flex;
  2942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:12px;
  2946. color:#606266;
  2947. }
  2948. #u95967 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u95967_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u95968_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:124px;
  2967. height:38px;
  2968. }
  2969. #u95968 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:468px;
  2973. top:161px;
  2974. width:124px;
  2975. height:38px;
  2976. display:flex;
  2977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. color:#606266;
  2982. }
  2983. #u95968 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u95968_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u95969_img {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:135px;
  3002. height:38px;
  3003. }
  3004. #u95969 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:592px;
  3008. top:161px;
  3009. width:135px;
  3010. height:38px;
  3011. display:flex;
  3012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. font-size:12px;
  3016. color:#606266;
  3017. }
  3018. #u95969 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 0px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u95969_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u95970_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:135px;
  3037. height:38px;
  3038. }
  3039. #u95970 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:727px;
  3043. top:161px;
  3044. width:135px;
  3045. height:38px;
  3046. display:flex;
  3047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. color:#606266;
  3052. }
  3053. #u95970 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u95970_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u95971_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:124px;
  3072. height:38px;
  3073. }
  3074. #u95971 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:862px;
  3078. top:161px;
  3079. width:124px;
  3080. height:38px;
  3081. display:flex;
  3082. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. color:#606266;
  3087. }
  3088. #u95971 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u95971_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. visibility:hidden;
  3100. }
  3101. #u95972_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:128px;
  3107. height:38px;
  3108. }
  3109. #u95972 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:986px;
  3113. top:161px;
  3114. width:128px;
  3115. height:38px;
  3116. display:flex;
  3117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:12px;
  3121. color:#606266;
  3122. }
  3123. #u95972 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u95972_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u95973_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:105px;
  3142. height:38px;
  3143. }
  3144. #u95973 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:1114px;
  3148. top:161px;
  3149. width:105px;
  3150. height:38px;
  3151. display:flex;
  3152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:12px;
  3156. color:#606266;
  3157. }
  3158. #u95973 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 0px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u95973_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. visibility:hidden;
  3170. }
  3171. #u95974_img {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:210px;
  3177. height:38px;
  3178. }
  3179. #u95974 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:199px;
  3184. width:210px;
  3185. height:38px;
  3186. display:flex;
  3187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:12px;
  3191. color:#606266;
  3192. }
  3193. #u95974 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u95974_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u95975_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:134px;
  3212. height:38px;
  3213. }
  3214. #u95975 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:210px;
  3218. top:199px;
  3219. width:134px;
  3220. height:38px;
  3221. display:flex;
  3222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. color:#606266;
  3227. }
  3228. #u95975 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u95975_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u95976_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:124px;
  3247. height:38px;
  3248. }
  3249. #u95976 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:344px;
  3253. top:199px;
  3254. width:124px;
  3255. height:38px;
  3256. display:flex;
  3257. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:12px;
  3261. color:#606266;
  3262. }
  3263. #u95976 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 0px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u95976_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u95977_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:124px;
  3282. height:38px;
  3283. }
  3284. #u95977 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:468px;
  3288. top:199px;
  3289. width:124px;
  3290. height:38px;
  3291. display:flex;
  3292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. font-size:12px;
  3296. color:#606266;
  3297. }
  3298. #u95977 .text {
  3299. position:absolute;
  3300. align-self:center;
  3301. padding:2px 2px 2px 0px;
  3302. box-sizing:border-box;
  3303. width:100%;
  3304. }
  3305. #u95977_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u95978_img {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:135px;
  3317. height:38px;
  3318. }
  3319. #u95978 {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:592px;
  3323. top:199px;
  3324. width:135px;
  3325. height:38px;
  3326. display:flex;
  3327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. font-size:12px;
  3331. color:#606266;
  3332. }
  3333. #u95978 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 0px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u95978_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. visibility:hidden;
  3345. }
  3346. #u95979_img {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:135px;
  3352. height:38px;
  3353. }
  3354. #u95979 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:727px;
  3358. top:199px;
  3359. width:135px;
  3360. height:38px;
  3361. display:flex;
  3362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. font-size:12px;
  3366. color:#606266;
  3367. }
  3368. #u95979 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 2px 2px 0px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u95979_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. visibility:hidden;
  3380. }
  3381. #u95980_img {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:124px;
  3387. height:38px;
  3388. }
  3389. #u95980 {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:862px;
  3393. top:199px;
  3394. width:124px;
  3395. height:38px;
  3396. display:flex;
  3397. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:12px;
  3401. color:#606266;
  3402. }
  3403. #u95980 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 0px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u95980_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u95981_img {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:128px;
  3422. height:38px;
  3423. }
  3424. #u95981 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:986px;
  3428. top:199px;
  3429. width:128px;
  3430. height:38px;
  3431. display:flex;
  3432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:12px;
  3436. color:#606266;
  3437. }
  3438. #u95981 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:2px 2px 2px 0px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u95981_text {
  3446. border-width:0px;
  3447. word-wrap:break-word;
  3448. text-transform:none;
  3449. visibility:hidden;
  3450. }
  3451. #u95982_img {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:105px;
  3457. height:38px;
  3458. }
  3459. #u95982 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:1114px;
  3463. top:199px;
  3464. width:105px;
  3465. height:38px;
  3466. display:flex;
  3467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:12px;
  3471. color:#606266;
  3472. }
  3473. #u95982 .text {
  3474. position:absolute;
  3475. align-self:center;
  3476. padding:2px 2px 2px 0px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u95982_text {
  3481. border-width:0px;
  3482. word-wrap:break-word;
  3483. text-transform:none;
  3484. visibility:hidden;
  3485. }
  3486. #u95983_img {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:210px;
  3492. height:38px;
  3493. }
  3494. #u95983 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:237px;
  3499. width:210px;
  3500. height:38px;
  3501. display:flex;
  3502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:12px;
  3506. color:#606266;
  3507. }
  3508. #u95983 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:2px 2px 2px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u95983_text {
  3516. border-width:0px;
  3517. word-wrap:break-word;
  3518. text-transform:none;
  3519. visibility:hidden;
  3520. }
  3521. #u95984_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:134px;
  3527. height:38px;
  3528. }
  3529. #u95984 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:210px;
  3533. top:237px;
  3534. width:134px;
  3535. height:38px;
  3536. display:flex;
  3537. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:12px;
  3541. color:#606266;
  3542. }
  3543. #u95984 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 0px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u95984_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u95985_img {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:124px;
  3562. height:38px;
  3563. }
  3564. #u95985 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:344px;
  3568. top:237px;
  3569. width:124px;
  3570. height:38px;
  3571. display:flex;
  3572. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:12px;
  3576. color:#606266;
  3577. }
  3578. #u95985 .text {
  3579. position:absolute;
  3580. align-self:center;
  3581. padding:2px 2px 2px 0px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u95985_text {
  3586. border-width:0px;
  3587. word-wrap:break-word;
  3588. text-transform:none;
  3589. visibility:hidden;
  3590. }
  3591. #u95986_img {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:124px;
  3597. height:38px;
  3598. }
  3599. #u95986 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:468px;
  3603. top:237px;
  3604. width:124px;
  3605. height:38px;
  3606. display:flex;
  3607. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:12px;
  3611. color:#606266;
  3612. }
  3613. #u95986 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:2px 2px 2px 0px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. #u95986_text {
  3621. border-width:0px;
  3622. word-wrap:break-word;
  3623. text-transform:none;
  3624. visibility:hidden;
  3625. }
  3626. #u95987_img {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:135px;
  3632. height:38px;
  3633. }
  3634. #u95987 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:592px;
  3638. top:237px;
  3639. width:135px;
  3640. height:38px;
  3641. display:flex;
  3642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3643. font-weight:400;
  3644. font-style:normal;
  3645. font-size:12px;
  3646. color:#606266;
  3647. }
  3648. #u95987 .text {
  3649. position:absolute;
  3650. align-self:center;
  3651. padding:2px 2px 2px 0px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u95987_text {
  3656. border-width:0px;
  3657. word-wrap:break-word;
  3658. text-transform:none;
  3659. visibility:hidden;
  3660. }
  3661. #u95988_img {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:0px;
  3666. width:135px;
  3667. height:38px;
  3668. }
  3669. #u95988 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:727px;
  3673. top:237px;
  3674. width:135px;
  3675. height:38px;
  3676. display:flex;
  3677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3678. font-weight:400;
  3679. font-style:normal;
  3680. font-size:12px;
  3681. color:#606266;
  3682. }
  3683. #u95988 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 2px 2px 0px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u95988_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. visibility:hidden;
  3695. }
  3696. #u95989_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:124px;
  3702. height:38px;
  3703. }
  3704. #u95989 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:862px;
  3708. top:237px;
  3709. width:124px;
  3710. height:38px;
  3711. display:flex;
  3712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:12px;
  3716. color:#606266;
  3717. }
  3718. #u95989 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:2px 2px 2px 0px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u95989_text {
  3726. border-width:0px;
  3727. word-wrap:break-word;
  3728. text-transform:none;
  3729. visibility:hidden;
  3730. }
  3731. #u95990_img {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:128px;
  3737. height:38px;
  3738. }
  3739. #u95990 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:986px;
  3743. top:237px;
  3744. width:128px;
  3745. height:38px;
  3746. display:flex;
  3747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. font-size:12px;
  3751. color:#606266;
  3752. }
  3753. #u95990 .text {
  3754. position:absolute;
  3755. align-self:center;
  3756. padding:2px 2px 2px 0px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u95990_text {
  3761. border-width:0px;
  3762. word-wrap:break-word;
  3763. text-transform:none;
  3764. visibility:hidden;
  3765. }
  3766. #u95991_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:105px;
  3772. height:38px;
  3773. }
  3774. #u95991 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:1114px;
  3778. top:237px;
  3779. width:105px;
  3780. height:38px;
  3781. display:flex;
  3782. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3783. font-weight:400;
  3784. font-style:normal;
  3785. font-size:12px;
  3786. color:#606266;
  3787. }
  3788. #u95991 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:2px 2px 2px 0px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u95991_text {
  3796. border-width:0px;
  3797. word-wrap:break-word;
  3798. text-transform:none;
  3799. visibility:hidden;
  3800. }
  3801. #u95992_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:210px;
  3807. height:38px;
  3808. }
  3809. #u95992 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:275px;
  3814. width:210px;
  3815. height:38px;
  3816. display:flex;
  3817. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:12px;
  3821. color:#606266;
  3822. }
  3823. #u95992 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 0px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u95992_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u95993_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:134px;
  3842. height:38px;
  3843. }
  3844. #u95993 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:210px;
  3848. top:275px;
  3849. width:134px;
  3850. height:38px;
  3851. display:flex;
  3852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:12px;
  3856. color:#606266;
  3857. }
  3858. #u95993 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:2px 2px 2px 0px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u95993_text {
  3866. border-width:0px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. visibility:hidden;
  3870. }
  3871. #u95994_img {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:124px;
  3877. height:38px;
  3878. }
  3879. #u95994 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:344px;
  3883. top:275px;
  3884. width:124px;
  3885. height:38px;
  3886. display:flex;
  3887. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. color:#606266;
  3892. }
  3893. #u95994 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 0px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u95994_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u95995_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:124px;
  3912. height:38px;
  3913. }
  3914. #u95995 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:468px;
  3918. top:275px;
  3919. width:124px;
  3920. height:38px;
  3921. display:flex;
  3922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:12px;
  3926. color:#606266;
  3927. }
  3928. #u95995 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u95995_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u95996_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:135px;
  3947. height:38px;
  3948. }
  3949. #u95996 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:592px;
  3953. top:275px;
  3954. width:135px;
  3955. height:38px;
  3956. display:flex;
  3957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:12px;
  3961. color:#606266;
  3962. }
  3963. #u95996 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 0px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u95996_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. visibility:hidden;
  3975. }
  3976. #u95997_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:135px;
  3982. height:38px;
  3983. }
  3984. #u95997 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:727px;
  3988. top:275px;
  3989. width:135px;
  3990. height:38px;
  3991. display:flex;
  3992. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:12px;
  3996. color:#606266;
  3997. }
  3998. #u95997 .text {
  3999. position:absolute;
  4000. align-self:center;
  4001. padding:2px 2px 2px 0px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u95997_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. visibility:hidden;
  4010. }
  4011. #u95998_img {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:124px;
  4017. height:38px;
  4018. }
  4019. #u95998 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:862px;
  4023. top:275px;
  4024. width:124px;
  4025. height:38px;
  4026. display:flex;
  4027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:12px;
  4031. color:#606266;
  4032. }
  4033. #u95998 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 2px 2px 0px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u95998_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u95999_img {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:128px;
  4052. height:38px;
  4053. }
  4054. #u95999 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:986px;
  4058. top:275px;
  4059. width:128px;
  4060. height:38px;
  4061. display:flex;
  4062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:12px;
  4066. color:#606266;
  4067. }
  4068. #u95999 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 0px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u95999_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u96000_img {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:105px;
  4087. height:38px;
  4088. }
  4089. #u96000 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:1114px;
  4093. top:275px;
  4094. width:105px;
  4095. height:38px;
  4096. display:flex;
  4097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:12px;
  4101. color:#606266;
  4102. }
  4103. #u96000 .text {
  4104. position:absolute;
  4105. align-self:center;
  4106. padding:2px 2px 2px 0px;
  4107. box-sizing:border-box;
  4108. width:100%;
  4109. }
  4110. #u96000_text {
  4111. border-width:0px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u96001_div {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:60px;
  4122. height:30px;
  4123. background:inherit;
  4124. background-color:rgba(255, 255, 255, 1);
  4125. box-sizing:border-box;
  4126. border-width:1px;
  4127. border-style:solid;
  4128. border-color:rgba(170, 170, 170, 1);
  4129. border-radius:4px;
  4130. -moz-box-shadow:none;
  4131. -webkit-box-shadow:none;
  4132. box-shadow:none;
  4133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:14px;
  4137. }
  4138. #u96001 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:490px;
  4142. top:153px;
  4143. width:60px;
  4144. height:30px;
  4145. display:flex;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. }
  4151. #u96001 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u96001_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. }
  4163. #u96002_div {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:60px;
  4169. height:30px;
  4170. background:inherit;
  4171. background-color:rgba(255, 255, 255, 1);
  4172. box-sizing:border-box;
  4173. border-width:1px;
  4174. border-style:solid;
  4175. border-color:rgba(170, 170, 170, 1);
  4176. border-radius:4px;
  4177. -moz-box-shadow:none;
  4178. -webkit-box-shadow:none;
  4179. box-shadow:none;
  4180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:14px;
  4184. }
  4185. #u96002 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:420px;
  4189. top:153px;
  4190. width:60px;
  4191. height:30px;
  4192. display:flex;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. }
  4198. #u96002 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 2px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u96002_text {
  4206. border-width:0px;
  4207. word-wrap:break-word;
  4208. text-transform:none;
  4209. }
  4210. #u96003_div {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:60px;
  4216. height:30px;
  4217. background:inherit;
  4218. background-color:rgba(24, 144, 255, 1);
  4219. border:none;
  4220. border-radius:4px;
  4221. -moz-box-shadow:none;
  4222. -webkit-box-shadow:none;
  4223. box-shadow:none;
  4224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4225. font-weight:400;
  4226. font-style:normal;
  4227. font-size:14px;
  4228. color:#FFFFFF;
  4229. }
  4230. #u96003 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:350px;
  4234. top:153px;
  4235. width:60px;
  4236. height:30px;
  4237. display:flex;
  4238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4239. font-weight:400;
  4240. font-style:normal;
  4241. font-size:14px;
  4242. color:#FFFFFF;
  4243. }
  4244. #u96003 .text {
  4245. position:absolute;
  4246. align-self:center;
  4247. padding:2px 2px 2px 2px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u96003_text {
  4252. border-width:0px;
  4253. word-wrap:break-word;
  4254. text-transform:none;
  4255. }
  4256. #u96004_div {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:91px;
  4262. height:50px;
  4263. background:inherit;
  4264. background-color:rgba(255, 255, 255, 0);
  4265. border:none;
  4266. border-left:0px;
  4267. border-top:0px;
  4268. border-right:0px;
  4269. border-radius:0px;
  4270. border-bottom-right-radius:0px;
  4271. border-bottom-left-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:18px;
  4279. }
  4280. #u96004 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:349px;
  4284. top:52px;
  4285. width:91px;
  4286. height:50px;
  4287. display:flex;
  4288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:18px;
  4292. }
  4293. #u96004 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:0px 0px 0px 0px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u96004_text {
  4301. border-width:0px;
  4302. white-space:nowrap;
  4303. text-transform:none;
  4304. }
  4305. #u96005 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:0px;
  4311. height:0px;
  4312. }
  4313. #u96006_div {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:100px;
  4319. height:100px;
  4320. background:inherit;
  4321. background-color:rgba(255, 255, 255, 1);
  4322. box-sizing:border-box;
  4323. border-width:1px;
  4324. border-style:solid;
  4325. border-color:rgba(242, 242, 242, 1);
  4326. border-radius:4px;
  4327. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4328. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4329. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:14px;
  4334. text-align:left;
  4335. }
  4336. #u96006 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:1437px;
  4340. top:259px;
  4341. width:100px;
  4342. height:100px;
  4343. display:flex;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:14px;
  4348. text-align:left;
  4349. }
  4350. #u96006 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 2px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u96006_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. visibility:hidden;
  4362. }
  4363. #u96007_div {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:83px;
  4369. height:40px;
  4370. background:inherit;
  4371. background-color:rgba(255, 255, 255, 1);
  4372. box-sizing:border-box;
  4373. border-width:1px;
  4374. border-style:solid;
  4375. border-color:rgba(215, 215, 215, 1);
  4376. border-left:0px;
  4377. border-top:0px;
  4378. border-right:0px;
  4379. border-radius:0px;
  4380. border-bottom-right-radius:0px;
  4381. border-bottom-left-radius:0px;
  4382. -moz-box-shadow:none;
  4383. -webkit-box-shadow:none;
  4384. box-shadow:none;
  4385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. font-size:14px;
  4389. }
  4390. #u96007 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:1445px;
  4394. top:269px;
  4395. width:83px;
  4396. height:40px;
  4397. display:flex;
  4398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:14px;
  4402. }
  4403. #u96007 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 2px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u96007_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. }
  4415. #u96008_div {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:83px;
  4421. height:40px;
  4422. background:inherit;
  4423. background-color:rgba(255, 255, 255, 1);
  4424. border:none;
  4425. border-left:0px;
  4426. border-top:0px;
  4427. border-right:0px;
  4428. border-radius:0px;
  4429. border-bottom-right-radius:0px;
  4430. border-bottom-left-radius:0px;
  4431. -moz-box-shadow:none;
  4432. -webkit-box-shadow:none;
  4433. box-shadow:none;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. }
  4439. #u96008 {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:1445px;
  4443. top:309px;
  4444. width:83px;
  4445. height:40px;
  4446. display:flex;
  4447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4448. font-weight:400;
  4449. font-style:normal;
  4450. font-size:14px;
  4451. }
  4452. #u96008 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u96008_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. }
  4464. #u96009_div {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:60px;
  4470. height:30px;
  4471. background:inherit;
  4472. background-color:rgba(24, 144, 255, 1);
  4473. border:none;
  4474. border-radius:4px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:14px;
  4482. color:#FFFFFF;
  4483. }
  4484. #u96009 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:952px;
  4488. top:102px;
  4489. width:60px;
  4490. height:30px;
  4491. display:flex;
  4492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4493. font-weight:400;
  4494. font-style:normal;
  4495. font-size:14px;
  4496. color:#FFFFFF;
  4497. }
  4498. #u96009 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u96009_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. }
  4510. #u96010_div {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:60px;
  4516. height:30px;
  4517. background:inherit;
  4518. background-color:rgba(255, 255, 255, 1);
  4519. box-sizing:border-box;
  4520. border-width:1px;
  4521. border-style:solid;
  4522. border-color:rgba(170, 170, 170, 1);
  4523. border-radius:4px;
  4524. -moz-box-shadow:none;
  4525. -webkit-box-shadow:none;
  4526. box-shadow:none;
  4527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4528. font-weight:400;
  4529. font-style:normal;
  4530. font-size:14px;
  4531. }
  4532. #u96010 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:1022px;
  4536. top:102px;
  4537. width:60px;
  4538. height:30px;
  4539. display:flex;
  4540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:14px;
  4544. }
  4545. #u96010 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 2px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u96010_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. }
  4557. #u96011 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:0px;
  4563. height:0px;
  4564. }
  4565. #u96012_div {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:140px;
  4571. height:30px;
  4572. background:inherit;
  4573. background-color:rgba(255, 255, 255, 1);
  4574. box-sizing:border-box;
  4575. border-width:1px;
  4576. border-style:solid;
  4577. border-color:rgba(215, 215, 215, 1);
  4578. border-radius:4px;
  4579. -moz-box-shadow:none;
  4580. -webkit-box-shadow:none;
  4581. box-shadow:none;
  4582. font-size:14px;
  4583. }
  4584. #u96012 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:350px;
  4588. top:103px;
  4589. width:140px;
  4590. height:30px;
  4591. display:flex;
  4592. font-size:14px;
  4593. }
  4594. #u96012 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 2px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u96012_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u96013_input {
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:134px;
  4612. height:23px;
  4613. padding:2px 2px 2px 2px;
  4614. font-family:'ArialMT', 'Arial', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:14px;
  4618. letter-spacing:normal;
  4619. color:#AAAAAA;
  4620. vertical-align:none;
  4621. text-align:left;
  4622. text-transform:none;
  4623. background-color:transparent;
  4624. border-color:transparent;
  4625. }
  4626. #u96013_input.disabled {
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:134px;
  4631. height:23px;
  4632. padding:2px 2px 2px 2px;
  4633. font-family:'ArialMT', 'Arial', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:14px;
  4637. letter-spacing:normal;
  4638. color:#AAAAAA;
  4639. vertical-align:none;
  4640. text-align:left;
  4641. text-transform:none;
  4642. background-color:transparent;
  4643. border-color:transparent;
  4644. }
  4645. #u96013_div {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:134px;
  4651. height:23px;
  4652. background:inherit;
  4653. background-color:rgba(255, 255, 255, 1);
  4654. border:none;
  4655. border-radius:0px;
  4656. -moz-box-shadow:none;
  4657. -webkit-box-shadow:none;
  4658. box-shadow:none;
  4659. font-size:14px;
  4660. color:#AAAAAA;
  4661. }
  4662. #u96013 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:354px;
  4666. top:105px;
  4667. width:134px;
  4668. height:23px;
  4669. display:flex;
  4670. font-size:14px;
  4671. color:#AAAAAA;
  4672. }
  4673. #u96013 .text {
  4674. position:absolute;
  4675. align-self:flex-start;
  4676. padding:2px 2px 2px 2px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u96013_div.disabled {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:134px;
  4686. height:23px;
  4687. background:inherit;
  4688. background-color:rgba(240, 240, 240, 1);
  4689. border:none;
  4690. border-radius:0px;
  4691. -moz-box-shadow:none;
  4692. -webkit-box-shadow:none;
  4693. box-shadow:none;
  4694. font-size:14px;
  4695. color:#AAAAAA;
  4696. }
  4697. #u96013.disabled {
  4698. }
  4699. .u96013_input_option {
  4700. font-size:14px;
  4701. }
  4702. #u96014 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:0px;
  4708. height:0px;
  4709. }
  4710. #u96015_div {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:140px;
  4716. height:30px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 255, 1);
  4719. box-sizing:border-box;
  4720. border-width:1px;
  4721. border-style:solid;
  4722. border-color:rgba(201, 201, 201, 1);
  4723. border-radius:4px;
  4724. -moz-box-shadow:none;
  4725. -webkit-box-shadow:none;
  4726. box-shadow:none;
  4727. font-family:'Microsoft YaHei', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:14px;
  4731. color:#CCCCCC;
  4732. text-align:left;
  4733. }
  4734. #u96015 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:502px;
  4738. top:103px;
  4739. width:140px;
  4740. height:30px;
  4741. display:flex;
  4742. font-family:'Microsoft YaHei', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:14px;
  4746. color:#CCCCCC;
  4747. text-align:left;
  4748. }
  4749. #u96015 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 8px 2px 8px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u96015_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u96016_input {
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:127px;
  4767. height:25px;
  4768. padding:2px 2px 2px 2px;
  4769. font-family:'Microsoft YaHei', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:10px;
  4773. letter-spacing:normal;
  4774. color:#000000;
  4775. vertical-align:none;
  4776. text-align:left;
  4777. text-transform:none;
  4778. background-color:transparent;
  4779. border-color:transparent;
  4780. }
  4781. #u96016_input.disabled {
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:127px;
  4786. height:25px;
  4787. padding:2px 2px 2px 2px;
  4788. font-family:'Microsoft YaHei', sans-serif;
  4789. font-weight:400;
  4790. font-style:normal;
  4791. font-size:10px;
  4792. letter-spacing:normal;
  4793. color:#000000;
  4794. vertical-align:none;
  4795. text-align:left;
  4796. text-transform:none;
  4797. background-color:transparent;
  4798. border-color:transparent;
  4799. }
  4800. #u96016_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:127px;
  4806. height:25px;
  4807. background:inherit;
  4808. background-color:rgba(255, 255, 255, 1);
  4809. border:none;
  4810. border-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-family:'Microsoft YaHei', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:10px;
  4818. }
  4819. #u96016 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:510px;
  4823. top:104px;
  4824. width:127px;
  4825. height:25px;
  4826. display:flex;
  4827. font-family:'Microsoft YaHei', sans-serif;
  4828. font-weight:400;
  4829. font-style:normal;
  4830. font-size:10px;
  4831. }
  4832. #u96016 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 2px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u96016_div.disabled {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:127px;
  4845. height:25px;
  4846. background:inherit;
  4847. background-color:rgba(240, 240, 240, 1);
  4848. border:none;
  4849. border-radius:0px;
  4850. -moz-box-shadow:none;
  4851. -webkit-box-shadow:none;
  4852. box-shadow:none;
  4853. font-family:'Microsoft YaHei', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:10px;
  4857. }
  4858. #u96016.disabled {
  4859. }
  4860. #u96017 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:0px;
  4866. height:0px;
  4867. }
  4868. #u96018_div {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:140px;
  4874. height:30px;
  4875. background:inherit;
  4876. background-color:rgba(255, 255, 255, 1);
  4877. box-sizing:border-box;
  4878. border-width:1px;
  4879. border-style:solid;
  4880. border-color:rgba(201, 201, 201, 1);
  4881. border-radius:4px;
  4882. -moz-box-shadow:none;
  4883. -webkit-box-shadow:none;
  4884. box-shadow:none;
  4885. font-family:'Microsoft YaHei', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:14px;
  4889. color:#CCCCCC;
  4890. text-align:left;
  4891. }
  4892. #u96018 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:652px;
  4896. top:103px;
  4897. width:140px;
  4898. height:30px;
  4899. display:flex;
  4900. font-family:'Microsoft YaHei', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:14px;
  4904. color:#CCCCCC;
  4905. text-align:left;
  4906. }
  4907. #u96018 .text {
  4908. position:absolute;
  4909. align-self:center;
  4910. padding:2px 8px 2px 8px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u96018_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. visibility:hidden;
  4919. }
  4920. #u96019_input {
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:127px;
  4925. height:25px;
  4926. padding:2px 2px 2px 2px;
  4927. font-family:'Microsoft YaHei', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:10px;
  4931. letter-spacing:normal;
  4932. color:#000000;
  4933. vertical-align:none;
  4934. text-align:left;
  4935. text-transform:none;
  4936. background-color:transparent;
  4937. border-color:transparent;
  4938. }
  4939. #u96019_input.disabled {
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:127px;
  4944. height:25px;
  4945. padding:2px 2px 2px 2px;
  4946. font-family:'Microsoft YaHei', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:10px;
  4950. letter-spacing:normal;
  4951. color:#000000;
  4952. vertical-align:none;
  4953. text-align:left;
  4954. text-transform:none;
  4955. background-color:transparent;
  4956. border-color:transparent;
  4957. }
  4958. #u96019_div {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:127px;
  4964. height:25px;
  4965. background:inherit;
  4966. background-color:rgba(255, 255, 255, 1);
  4967. border:none;
  4968. border-radius:0px;
  4969. -moz-box-shadow:none;
  4970. -webkit-box-shadow:none;
  4971. box-shadow:none;
  4972. font-family:'Microsoft YaHei', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:10px;
  4976. }
  4977. #u96019 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:660px;
  4981. top:104px;
  4982. width:127px;
  4983. height:25px;
  4984. display:flex;
  4985. font-family:'Microsoft YaHei', sans-serif;
  4986. font-weight:400;
  4987. font-style:normal;
  4988. font-size:10px;
  4989. }
  4990. #u96019 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:2px 2px 2px 2px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u96019_div.disabled {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:127px;
  5003. height:25px;
  5004. background:inherit;
  5005. background-color:rgba(240, 240, 240, 1);
  5006. border:none;
  5007. border-radius:0px;
  5008. -moz-box-shadow:none;
  5009. -webkit-box-shadow:none;
  5010. box-shadow:none;
  5011. font-family:'Microsoft YaHei', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. font-size:10px;
  5015. }
  5016. #u96019.disabled {
  5017. }
  5018. #u96020 {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:0px;
  5024. height:0px;
  5025. }
  5026. #u96021_div {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:140px;
  5032. height:30px;
  5033. background:inherit;
  5034. background-color:rgba(255, 255, 255, 1);
  5035. box-sizing:border-box;
  5036. border-width:1px;
  5037. border-style:solid;
  5038. border-color:rgba(201, 201, 201, 1);
  5039. border-radius:4px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. font-family:'Microsoft YaHei', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:14px;
  5047. color:#CCCCCC;
  5048. text-align:left;
  5049. }
  5050. #u96021 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:802px;
  5054. top:103px;
  5055. width:140px;
  5056. height:30px;
  5057. display:flex;
  5058. font-family:'Microsoft YaHei', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:14px;
  5062. color:#CCCCCC;
  5063. text-align:left;
  5064. }
  5065. #u96021 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 8px 2px 8px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u96021_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. visibility:hidden;
  5077. }
  5078. #u96022_input {
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:127px;
  5083. height:25px;
  5084. padding:2px 2px 2px 2px;
  5085. font-family:'Microsoft YaHei', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:10px;
  5089. letter-spacing:normal;
  5090. color:#000000;
  5091. vertical-align:none;
  5092. text-align:left;
  5093. text-transform:none;
  5094. background-color:transparent;
  5095. border-color:transparent;
  5096. }
  5097. #u96022_input.disabled {
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:127px;
  5102. height:25px;
  5103. padding:2px 2px 2px 2px;
  5104. font-family:'Microsoft YaHei', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:10px;
  5108. letter-spacing:normal;
  5109. color:#000000;
  5110. vertical-align:none;
  5111. text-align:left;
  5112. text-transform:none;
  5113. background-color:transparent;
  5114. border-color:transparent;
  5115. }
  5116. #u96022_div {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:0px;
  5120. top:0px;
  5121. width:127px;
  5122. height:25px;
  5123. background:inherit;
  5124. background-color:rgba(255, 255, 255, 1);
  5125. border:none;
  5126. border-radius:0px;
  5127. -moz-box-shadow:none;
  5128. -webkit-box-shadow:none;
  5129. box-shadow:none;
  5130. font-family:'Microsoft YaHei', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:10px;
  5134. }
  5135. #u96022 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:810px;
  5139. top:104px;
  5140. width:127px;
  5141. height:25px;
  5142. display:flex;
  5143. font-family:'Microsoft YaHei', sans-serif;
  5144. font-weight:400;
  5145. font-style:normal;
  5146. font-size:10px;
  5147. }
  5148. #u96022 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u96022_div.disabled {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:127px;
  5161. height:25px;
  5162. background:inherit;
  5163. background-color:rgba(240, 240, 240, 1);
  5164. border:none;
  5165. border-radius:0px;
  5166. -moz-box-shadow:none;
  5167. -webkit-box-shadow:none;
  5168. box-shadow:none;
  5169. font-family:'Microsoft YaHei', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:10px;
  5173. }
  5174. #u96022.disabled {
  5175. }
  5176. #u96023 {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:0px;
  5182. height:0px;
  5183. }
  5184. #u96024_div {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:800px;
  5190. height:1142px;
  5191. background:inherit;
  5192. background-color:rgba(255, 255, 255, 1);
  5193. box-sizing:border-box;
  5194. border-width:1px;
  5195. border-style:solid;
  5196. border-color:rgba(242, 242, 242, 1);
  5197. border-radius:0px;
  5198. -moz-box-shadow:none;
  5199. -webkit-box-shadow:none;
  5200. box-shadow:none;
  5201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:14px;
  5205. color:#AAAAAA;
  5206. text-align:center;
  5207. line-height:30px;
  5208. }
  5209. #u96024 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:1644px;
  5213. top:84px;
  5214. width:800px;
  5215. height:1142px;
  5216. display:flex;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. color:#AAAAAA;
  5222. text-align:center;
  5223. line-height:30px;
  5224. }
  5225. #u96024 .text {
  5226. position:absolute;
  5227. align-self:center;
  5228. padding:5px 10px 5px 10px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u96024_text {
  5233. border-width:0px;
  5234. word-wrap:break-word;
  5235. text-transform:none;
  5236. visibility:hidden;
  5237. }
  5238. #u96025_div {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:800px;
  5244. height:60px;
  5245. background:inherit;
  5246. background-color:rgba(255, 255, 255, 1);
  5247. box-sizing:border-box;
  5248. border-width:1px;
  5249. border-style:solid;
  5250. border-color:rgba(242, 242, 242, 1);
  5251. border-radius:0px;
  5252. -moz-box-shadow:none;
  5253. -webkit-box-shadow:none;
  5254. box-shadow:none;
  5255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:14px;
  5259. color:#AAAAAA;
  5260. text-align:center;
  5261. line-height:30px;
  5262. }
  5263. #u96025 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:1644px;
  5267. top:25px;
  5268. width:800px;
  5269. height:60px;
  5270. display:flex;
  5271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:14px;
  5275. color:#AAAAAA;
  5276. text-align:center;
  5277. line-height:30px;
  5278. }
  5279. #u96025 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:5px 10px 5px 10px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u96025_text {
  5287. border-width:0px;
  5288. word-wrap:break-word;
  5289. text-transform:none;
  5290. visibility:hidden;
  5291. }
  5292. #u96026_div {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:92px;
  5298. height:35px;
  5299. background:inherit;
  5300. background-color:rgba(255, 255, 255, 0);
  5301. border:none;
  5302. border-top:0px;
  5303. border-right:0px;
  5304. border-bottom:0px;
  5305. border-radius:0px;
  5306. border-top-left-radius:0px;
  5307. border-bottom-left-radius:0px;
  5308. -moz-box-shadow:none;
  5309. -webkit-box-shadow:none;
  5310. box-shadow:none;
  5311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5312. font-weight:500;
  5313. font-style:normal;
  5314. font-size:18px;
  5315. }
  5316. #u96026 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:1675px;
  5320. top:38px;
  5321. width:92px;
  5322. height:35px;
  5323. display:flex;
  5324. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5325. font-weight:500;
  5326. font-style:normal;
  5327. font-size:18px;
  5328. }
  5329. #u96026 .text {
  5330. position:absolute;
  5331. align-self:center;
  5332. padding:5px 10px 5px 0px;
  5333. box-sizing:border-box;
  5334. width:100%;
  5335. }
  5336. #u96026_text {
  5337. border-width:0px;
  5338. white-space:nowrap;
  5339. text-transform:none;
  5340. }
  5341. #u96027 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:0px;
  5347. height:0px;
  5348. }
  5349. #u96028_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:800px;
  5355. height:60px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 1);
  5358. box-sizing:border-box;
  5359. border-width:1px;
  5360. border-style:solid;
  5361. border-color:rgba(215, 215, 215, 1);
  5362. border-radius:0px;
  5363. -moz-box-shadow:none;
  5364. -webkit-box-shadow:none;
  5365. box-shadow:none;
  5366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5367. font-weight:400;
  5368. font-style:normal;
  5369. font-size:14px;
  5370. color:#AAAAAA;
  5371. text-align:center;
  5372. line-height:30px;
  5373. }
  5374. #u96028 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:1644px;
  5378. top:1166px;
  5379. width:800px;
  5380. height:60px;
  5381. display:flex;
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:14px;
  5386. color:#AAAAAA;
  5387. text-align:center;
  5388. line-height:30px;
  5389. }
  5390. #u96028 .text {
  5391. position:absolute;
  5392. align-self:center;
  5393. padding:5px 10px 5px 10px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u96028_text {
  5398. border-width:0px;
  5399. word-wrap:break-word;
  5400. text-transform:none;
  5401. visibility:hidden;
  5402. }
  5403. #u96029_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:80px;
  5409. height:30px;
  5410. }
  5411. #u96029 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:2324px;
  5415. top:1181px;
  5416. width:80px;
  5417. height:30px;
  5418. display:flex;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:14px;
  5423. color:#FFFFFF;
  5424. }
  5425. #u96029 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:2px 2px 2px 2px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u96029_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. }
  5437. #u96030_div {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:80px;
  5443. height:30px;
  5444. background:inherit;
  5445. background-color:rgba(255, 255, 255, 1);
  5446. box-sizing:border-box;
  5447. border-width:1px;
  5448. border-style:solid;
  5449. border-color:rgba(170, 170, 170, 1);
  5450. border-radius:4px;
  5451. -moz-box-shadow:none;
  5452. -webkit-box-shadow:none;
  5453. box-shadow:none;
  5454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. font-size:14px;
  5458. }
  5459. #u96030 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:2234px;
  5463. top:1181px;
  5464. width:80px;
  5465. height:30px;
  5466. display:flex;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:14px;
  5471. }
  5472. #u96030 .text {
  5473. position:absolute;
  5474. align-self:center;
  5475. padding:2px 2px 2px 2px;
  5476. box-sizing:border-box;
  5477. width:100%;
  5478. }
  5479. #u96030_text {
  5480. border-width:0px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. }
  5484. #u96031 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:0px;
  5490. height:0px;
  5491. }
  5492. #u96032_div {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:300px;
  5498. height:40px;
  5499. background:inherit;
  5500. background-color:rgba(255, 255, 255, 1);
  5501. box-sizing:border-box;
  5502. border-width:1px;
  5503. border-style:solid;
  5504. border-color:rgba(201, 201, 201, 1);
  5505. border-radius:4px;
  5506. -moz-box-shadow:none;
  5507. -webkit-box-shadow:none;
  5508. box-shadow:none;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:14px;
  5513. text-align:right;
  5514. }
  5515. #u96032 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:1690px;
  5519. top:155px;
  5520. width:300px;
  5521. height:40px;
  5522. display:flex;
  5523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5524. font-weight:400;
  5525. font-style:normal;
  5526. font-size:14px;
  5527. text-align:right;
  5528. }
  5529. #u96032 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:2px 8px 2px 8px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u96032_text {
  5537. border-width:0px;
  5538. word-wrap:break-word;
  5539. text-transform:none;
  5540. visibility:hidden;
  5541. }
  5542. #u96033_input {
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:242px;
  5547. height:33px;
  5548. padding:2px 2px 2px 2px;
  5549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:14px;
  5553. letter-spacing:normal;
  5554. color:#D7D7D7;
  5555. vertical-align:none;
  5556. text-align:left;
  5557. text-transform:none;
  5558. background-color:transparent;
  5559. border-color:transparent;
  5560. }
  5561. #u96033_input.disabled {
  5562. position:absolute;
  5563. left:0px;
  5564. top:0px;
  5565. width:242px;
  5566. height:33px;
  5567. padding:2px 2px 2px 2px;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:14px;
  5572. letter-spacing:normal;
  5573. color:#D7D7D7;
  5574. vertical-align:none;
  5575. text-align:left;
  5576. text-transform:none;
  5577. background-color:transparent;
  5578. border-color:transparent;
  5579. }
  5580. #u96033_div {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:242px;
  5586. height:33px;
  5587. background:inherit;
  5588. background-color:rgba(255, 255, 255, 0);
  5589. border:none;
  5590. border-radius:0px;
  5591. -moz-box-shadow:none;
  5592. -webkit-box-shadow:none;
  5593. box-shadow:none;
  5594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:14px;
  5598. color:#D7D7D7;
  5599. }
  5600. #u96033 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:1702px;
  5604. top:158px;
  5605. width:242px;
  5606. height:33px;
  5607. display:flex;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:14px;
  5612. color:#D7D7D7;
  5613. }
  5614. #u96033 .text {
  5615. position:absolute;
  5616. align-self:center;
  5617. padding:2px 2px 2px 2px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u96033_div.disabled {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:242px;
  5627. height:33px;
  5628. background:inherit;
  5629. background-color:rgba(240, 240, 240, 1);
  5630. border:none;
  5631. border-radius:0px;
  5632. -moz-box-shadow:none;
  5633. -webkit-box-shadow:none;
  5634. box-shadow:none;
  5635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:14px;
  5639. color:#D7D7D7;
  5640. }
  5641. #u96033.disabled {
  5642. }
  5643. #u96034_div {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:40px;
  5649. height:40px;
  5650. background:inherit;
  5651. background-color:rgba(255, 255, 255, 0);
  5652. border:none;
  5653. border-top:0px;
  5654. border-right:0px;
  5655. border-bottom:0px;
  5656. border-radius:0px;
  5657. border-top-left-radius:0px;
  5658. border-bottom-left-radius:0px;
  5659. -moz-box-shadow:none;
  5660. -webkit-box-shadow:none;
  5661. box-shadow:none;
  5662. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5663. font-weight:500;
  5664. font-style:normal;
  5665. font-size:24px;
  5666. text-align:center;
  5667. }
  5668. #u96034 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:2404px;
  5672. top:25px;
  5673. width:40px;
  5674. height:40px;
  5675. display:flex;
  5676. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5677. font-weight:500;
  5678. font-style:normal;
  5679. font-size:24px;
  5680. text-align:center;
  5681. }
  5682. #u96034 .text {
  5683. position:absolute;
  5684. align-self:center;
  5685. padding:5px 10px 5px 0px;
  5686. box-sizing:border-box;
  5687. width:100%;
  5688. }
  5689. #u96034_text {
  5690. border-width:0px;
  5691. word-wrap:break-word;
  5692. text-transform:none;
  5693. }
  5694. #u96035 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:0px;
  5700. height:0px;
  5701. }
  5702. #u96036_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:640px;
  5708. height:80px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 1);
  5711. box-sizing:border-box;
  5712. border-width:1px;
  5713. border-style:solid;
  5714. border-color:rgba(201, 201, 201, 1);
  5715. border-radius:4px;
  5716. -moz-box-shadow:none;
  5717. -webkit-box-shadow:none;
  5718. box-shadow:none;
  5719. font-family:'Microsoft YaHei', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. color:#CCCCCC;
  5724. text-align:left;
  5725. }
  5726. #u96036 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:1690px;
  5730. top:395px;
  5731. width:640px;
  5732. height:80px;
  5733. display:flex;
  5734. font-family:'Microsoft YaHei', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:14px;
  5738. color:#CCCCCC;
  5739. text-align:left;
  5740. }
  5741. #u96036 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:2px 8px 2px 8px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u96036_text {
  5749. border-width:0px;
  5750. word-wrap:break-word;
  5751. text-transform:none;
  5752. visibility:hidden;
  5753. }
  5754. #u96037_input {
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:582px;
  5759. height:33px;
  5760. padding:2px 2px 2px 2px;
  5761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:14px;
  5765. letter-spacing:normal;
  5766. color:#D7D7D7;
  5767. vertical-align:none;
  5768. text-align:left;
  5769. text-transform:none;
  5770. background-color:transparent;
  5771. border-color:transparent;
  5772. }
  5773. #u96037_input.disabled {
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:582px;
  5778. height:33px;
  5779. padding:2px 2px 2px 2px;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. letter-spacing:normal;
  5785. color:#D7D7D7;
  5786. vertical-align:none;
  5787. text-align:left;
  5788. text-transform:none;
  5789. background-color:transparent;
  5790. border-color:transparent;
  5791. }
  5792. #u96037_div {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:0px;
  5796. top:0px;
  5797. width:582px;
  5798. height:33px;
  5799. background:inherit;
  5800. background-color:rgba(255, 255, 255, 0);
  5801. border:none;
  5802. border-radius:0px;
  5803. -moz-box-shadow:none;
  5804. -webkit-box-shadow:none;
  5805. box-shadow:none;
  5806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:14px;
  5810. color:#D7D7D7;
  5811. }
  5812. #u96037 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:1716px;
  5816. top:398px;
  5817. width:582px;
  5818. height:33px;
  5819. display:flex;
  5820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:14px;
  5824. color:#D7D7D7;
  5825. }
  5826. #u96037 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 2px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u96037_div.disabled {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:0px;
  5837. top:0px;
  5838. width:582px;
  5839. height:33px;
  5840. background:inherit;
  5841. background-color:rgba(240, 240, 240, 1);
  5842. border:none;
  5843. border-radius:0px;
  5844. -moz-box-shadow:none;
  5845. -webkit-box-shadow:none;
  5846. box-shadow:none;
  5847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5848. font-weight:400;
  5849. font-style:normal;
  5850. font-size:14px;
  5851. color:#D7D7D7;
  5852. }
  5853. #u96037.disabled {
  5854. }
  5855. #u96038_div {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:57px;
  5861. height:40px;
  5862. background:inherit;
  5863. background-color:rgba(255, 255, 255, 0);
  5864. border:none;
  5865. border-left:0px;
  5866. border-top:0px;
  5867. border-right:0px;
  5868. border-radius:0px;
  5869. border-bottom-right-radius:0px;
  5870. border-bottom-left-radius:0px;
  5871. -moz-box-shadow:none;
  5872. -webkit-box-shadow:none;
  5873. box-shadow:none;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:14px;
  5878. }
  5879. #u96038 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:1690px;
  5883. top:355px;
  5884. width:57px;
  5885. height:40px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:14px;
  5891. }
  5892. #u96038 .text {
  5893. position:absolute;
  5894. align-self:center;
  5895. padding:0px 0px 0px 0px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u96038_text {
  5900. border-width:0px;
  5901. white-space:nowrap;
  5902. text-transform:none;
  5903. }
  5904. #u96039_div {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:36px;
  5910. height:40px;
  5911. background:inherit;
  5912. background-color:rgba(255, 255, 255, 0);
  5913. border:none;
  5914. border-left:0px;
  5915. border-top:0px;
  5916. border-right:0px;
  5917. border-radius:0px;
  5918. border-bottom-right-radius:0px;
  5919. border-bottom-left-radius:0px;
  5920. -moz-box-shadow:none;
  5921. -webkit-box-shadow:none;
  5922. box-shadow:none;
  5923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:14px;
  5927. }
  5928. #u96039 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:1690px;
  5932. top:116px;
  5933. width:36px;
  5934. height:40px;
  5935. display:flex;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:14px;
  5940. }
  5941. #u96039 .text {
  5942. position:absolute;
  5943. align-self:center;
  5944. padding:0px 0px 0px 0px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u96039_text {
  5949. border-width:0px;
  5950. white-space:nowrap;
  5951. text-transform:none;
  5952. }
  5953. #u96040 {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:0px;
  5959. height:0px;
  5960. }
  5961. #u96041_div {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:300px;
  5967. height:40px;
  5968. background:inherit;
  5969. background-color:rgba(255, 255, 255, 1);
  5970. box-sizing:border-box;
  5971. border-width:1px;
  5972. border-style:solid;
  5973. border-color:rgba(201, 201, 201, 1);
  5974. border-radius:4px;
  5975. -moz-box-shadow:none;
  5976. -webkit-box-shadow:none;
  5977. box-shadow:none;
  5978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5979. font-weight:400;
  5980. font-style:normal;
  5981. font-size:14px;
  5982. text-align:right;
  5983. }
  5984. #u96041 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:2030px;
  5988. top:155px;
  5989. width:300px;
  5990. height:40px;
  5991. display:flex;
  5992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:14px;
  5996. text-align:right;
  5997. }
  5998. #u96041 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 8px 2px 8px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u96041_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u96042_input {
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:242px;
  6016. height:33px;
  6017. padding:2px 2px 2px 2px;
  6018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:14px;
  6022. letter-spacing:normal;
  6023. color:#D7D7D7;
  6024. vertical-align:none;
  6025. text-align:left;
  6026. text-transform:none;
  6027. background-color:transparent;
  6028. border-color:transparent;
  6029. }
  6030. #u96042_input.disabled {
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:242px;
  6035. height:33px;
  6036. padding:2px 2px 2px 2px;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:14px;
  6041. letter-spacing:normal;
  6042. color:#D7D7D7;
  6043. vertical-align:none;
  6044. text-align:left;
  6045. text-transform:none;
  6046. background-color:transparent;
  6047. border-color:transparent;
  6048. }
  6049. #u96042_div {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:242px;
  6055. height:33px;
  6056. background:inherit;
  6057. background-color:rgba(255, 255, 255, 0);
  6058. border:none;
  6059. border-radius:0px;
  6060. -moz-box-shadow:none;
  6061. -webkit-box-shadow:none;
  6062. box-shadow:none;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:14px;
  6067. color:#D7D7D7;
  6068. }
  6069. #u96042 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:2042px;
  6073. top:158px;
  6074. width:242px;
  6075. height:33px;
  6076. display:flex;
  6077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. font-size:14px;
  6081. color:#D7D7D7;
  6082. }
  6083. #u96042 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:2px 2px 2px 2px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u96042_div.disabled {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:242px;
  6096. height:33px;
  6097. background:inherit;
  6098. background-color:rgba(240, 240, 240, 1);
  6099. border:none;
  6100. border-radius:0px;
  6101. -moz-box-shadow:none;
  6102. -webkit-box-shadow:none;
  6103. box-shadow:none;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:14px;
  6108. color:#D7D7D7;
  6109. }
  6110. #u96042.disabled {
  6111. }
  6112. #u96043_div {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:36px;
  6118. height:40px;
  6119. background:inherit;
  6120. background-color:rgba(255, 255, 255, 0);
  6121. border:none;
  6122. border-left:0px;
  6123. border-top:0px;
  6124. border-right:0px;
  6125. border-radius:0px;
  6126. border-bottom-right-radius:0px;
  6127. border-bottom-left-radius:0px;
  6128. -moz-box-shadow:none;
  6129. -webkit-box-shadow:none;
  6130. box-shadow:none;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:14px;
  6135. }
  6136. #u96043 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:1690px;
  6140. top:195px;
  6141. width:36px;
  6142. height:40px;
  6143. display:flex;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:14px;
  6148. }
  6149. #u96043 .text {
  6150. position:absolute;
  6151. align-self:center;
  6152. padding:0px 0px 0px 0px;
  6153. box-sizing:border-box;
  6154. width:100%;
  6155. }
  6156. #u96043_text {
  6157. border-width:0px;
  6158. white-space:nowrap;
  6159. text-transform:none;
  6160. }
  6161. #u96044 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:0px;
  6167. height:0px;
  6168. }
  6169. #u96045_div {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:300px;
  6175. height:40px;
  6176. background:inherit;
  6177. background-color:rgba(255, 255, 255, 1);
  6178. box-sizing:border-box;
  6179. border-width:1px;
  6180. border-style:solid;
  6181. border-color:rgba(215, 215, 215, 1);
  6182. border-radius:4px;
  6183. -moz-box-shadow:none;
  6184. -webkit-box-shadow:none;
  6185. box-shadow:none;
  6186. font-size:14px;
  6187. }
  6188. #u96045 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:1690px;
  6192. top:235px;
  6193. width:300px;
  6194. height:40px;
  6195. display:flex;
  6196. font-size:14px;
  6197. }
  6198. #u96045 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:2px 2px 2px 2px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u96045_text {
  6206. border-width:0px;
  6207. word-wrap:break-word;
  6208. text-transform:none;
  6209. visibility:hidden;
  6210. }
  6211. #u96046_input {
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:286px;
  6216. height:31px;
  6217. padding:2px 2px 2px 2px;
  6218. font-family:'ArialMT', 'Arial', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:14px;
  6222. letter-spacing:normal;
  6223. color:#AAAAAA;
  6224. vertical-align:none;
  6225. text-align:left;
  6226. text-transform:none;
  6227. background-color:transparent;
  6228. border-color:transparent;
  6229. }
  6230. #u96046_input.disabled {
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:286px;
  6235. height:31px;
  6236. padding:2px 2px 2px 2px;
  6237. font-family:'ArialMT', 'Arial', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:14px;
  6241. letter-spacing:normal;
  6242. color:#AAAAAA;
  6243. vertical-align:none;
  6244. text-align:left;
  6245. text-transform:none;
  6246. background-color:transparent;
  6247. border-color:transparent;
  6248. }
  6249. #u96046_div {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:286px;
  6255. height:31px;
  6256. background:inherit;
  6257. background-color:rgba(255, 255, 255, 1);
  6258. border:none;
  6259. border-radius:0px;
  6260. -moz-box-shadow:none;
  6261. -webkit-box-shadow:none;
  6262. box-shadow:none;
  6263. font-size:14px;
  6264. color:#AAAAAA;
  6265. }
  6266. #u96046 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:1699px;
  6270. top:238px;
  6271. width:286px;
  6272. height:31px;
  6273. display:flex;
  6274. font-size:14px;
  6275. color:#AAAAAA;
  6276. }
  6277. #u96046 .text {
  6278. position:absolute;
  6279. align-self:flex-start;
  6280. padding:2px 2px 2px 2px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u96046_div.disabled {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:286px;
  6290. height:31px;
  6291. background:inherit;
  6292. background-color:rgba(240, 240, 240, 1);
  6293. border:none;
  6294. border-radius:0px;
  6295. -moz-box-shadow:none;
  6296. -webkit-box-shadow:none;
  6297. box-shadow:none;
  6298. font-size:14px;
  6299. color:#AAAAAA;
  6300. }
  6301. #u96046.disabled {
  6302. }
  6303. .u96046_input_option {
  6304. font-size:14px;
  6305. }
  6306. #u96047_div {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:50px;
  6312. height:40px;
  6313. background:inherit;
  6314. background-color:rgba(255, 255, 255, 0);
  6315. border:none;
  6316. border-left:0px;
  6317. border-top:0px;
  6318. border-right:0px;
  6319. border-radius:0px;
  6320. border-bottom-right-radius:0px;
  6321. border-bottom-left-radius:0px;
  6322. -moz-box-shadow:none;
  6323. -webkit-box-shadow:none;
  6324. box-shadow:none;
  6325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:14px;
  6329. }
  6330. #u96047 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:2030px;
  6334. top:116px;
  6335. width:50px;
  6336. height:40px;
  6337. display:flex;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:14px;
  6342. }
  6343. #u96047 .text {
  6344. position:absolute;
  6345. align-self:center;
  6346. padding:0px 0px 0px 0px;
  6347. box-sizing:border-box;
  6348. width:100%;
  6349. }
  6350. #u96047_text {
  6351. border-width:0px;
  6352. white-space:nowrap;
  6353. text-transform:none;
  6354. }
  6355. #u96048 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:0px;
  6359. top:0px;
  6360. width:0px;
  6361. height:0px;
  6362. }
  6363. #u96049_div {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:300px;
  6369. height:40px;
  6370. background:inherit;
  6371. background-color:rgba(255, 255, 255, 1);
  6372. box-sizing:border-box;
  6373. border-width:1px;
  6374. border-style:solid;
  6375. border-color:rgba(201, 201, 201, 1);
  6376. border-radius:4px;
  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:14px;
  6384. text-align:right;
  6385. }
  6386. #u96049 {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:2030px;
  6390. top:235px;
  6391. width:300px;
  6392. height:40px;
  6393. display:flex;
  6394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6395. font-weight:400;
  6396. font-style:normal;
  6397. font-size:14px;
  6398. text-align:right;
  6399. }
  6400. #u96049 .text {
  6401. position:absolute;
  6402. align-self:center;
  6403. padding:2px 8px 2px 8px;
  6404. box-sizing:border-box;
  6405. width:100%;
  6406. }
  6407. #u96049_text {
  6408. border-width:0px;
  6409. word-wrap:break-word;
  6410. text-transform:none;
  6411. visibility:hidden;
  6412. }
  6413. #u96050_input {
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:242px;
  6418. height:33px;
  6419. padding:2px 2px 2px 2px;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:14px;
  6424. letter-spacing:normal;
  6425. color:#D7D7D7;
  6426. vertical-align:none;
  6427. text-align:left;
  6428. text-transform:none;
  6429. background-color:transparent;
  6430. border-color:transparent;
  6431. }
  6432. #u96050_input.disabled {
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:242px;
  6437. height:33px;
  6438. padding:2px 2px 2px 2px;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. letter-spacing:normal;
  6444. color:#D7D7D7;
  6445. vertical-align:none;
  6446. text-align:left;
  6447. text-transform:none;
  6448. background-color:transparent;
  6449. border-color:transparent;
  6450. }
  6451. #u96050_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:242px;
  6457. height:33px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:14px;
  6469. color:#D7D7D7;
  6470. }
  6471. #u96050 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:2042px;
  6475. top:238px;
  6476. width:242px;
  6477. height:33px;
  6478. display:flex;
  6479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:14px;
  6483. color:#D7D7D7;
  6484. }
  6485. #u96050 .text {
  6486. position:absolute;
  6487. align-self:center;
  6488. padding:2px 2px 2px 2px;
  6489. box-sizing:border-box;
  6490. width:100%;
  6491. }
  6492. #u96050_div.disabled {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:242px;
  6498. height:33px;
  6499. background:inherit;
  6500. background-color:rgba(240, 240, 240, 1);
  6501. border:none;
  6502. border-radius:0px;
  6503. -moz-box-shadow:none;
  6504. -webkit-box-shadow:none;
  6505. box-shadow:none;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:14px;
  6510. color:#D7D7D7;
  6511. }
  6512. #u96050.disabled {
  6513. }
  6514. #u96051_div {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:57px;
  6520. height:40px;
  6521. background:inherit;
  6522. background-color:rgba(255, 255, 255, 0);
  6523. border:none;
  6524. border-left:0px;
  6525. border-top:0px;
  6526. border-right:0px;
  6527. border-radius:0px;
  6528. border-bottom-right-radius:0px;
  6529. border-bottom-left-radius:0px;
  6530. -moz-box-shadow:none;
  6531. -webkit-box-shadow:none;
  6532. box-shadow:none;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:14px;
  6537. }
  6538. #u96051 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:2030px;
  6542. top:196px;
  6543. width:57px;
  6544. height:40px;
  6545. display:flex;
  6546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6547. font-weight:400;
  6548. font-style:normal;
  6549. font-size:14px;
  6550. }
  6551. #u96051 .text {
  6552. position:absolute;
  6553. align-self:center;
  6554. padding:0px 0px 0px 0px;
  6555. box-sizing:border-box;
  6556. width:100%;
  6557. }
  6558. #u96051_text {
  6559. border-width:0px;
  6560. white-space:nowrap;
  6561. text-transform:none;
  6562. }
  6563. #u96052_div {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:36px;
  6569. height:40px;
  6570. background:inherit;
  6571. background-color:rgba(255, 255, 255, 0);
  6572. border:none;
  6573. border-left:0px;
  6574. border-top:0px;
  6575. border-right:0px;
  6576. border-radius:0px;
  6577. border-bottom-right-radius:0px;
  6578. border-bottom-left-radius:0px;
  6579. -moz-box-shadow:none;
  6580. -webkit-box-shadow:none;
  6581. box-shadow:none;
  6582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6583. font-weight:400;
  6584. font-style:normal;
  6585. font-size:14px;
  6586. }
  6587. #u96052 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:1690px;
  6591. top:275px;
  6592. width:36px;
  6593. height:40px;
  6594. display:flex;
  6595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. font-size:14px;
  6599. }
  6600. #u96052 .text {
  6601. position:absolute;
  6602. align-self:center;
  6603. padding:0px 0px 0px 0px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u96052_text {
  6608. border-width:0px;
  6609. white-space:nowrap;
  6610. text-transform:none;
  6611. }
  6612. #u96053 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:0px;
  6618. height:0px;
  6619. }
  6620. #u96054_div {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:300px;
  6626. height:40px;
  6627. background:inherit;
  6628. background-color:rgba(255, 255, 255, 1);
  6629. box-sizing:border-box;
  6630. border-width:1px;
  6631. border-style:solid;
  6632. border-color:rgba(215, 215, 215, 1);
  6633. border-radius:4px;
  6634. -moz-box-shadow:none;
  6635. -webkit-box-shadow:none;
  6636. box-shadow:none;
  6637. font-size:14px;
  6638. }
  6639. #u96054 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:1690px;
  6643. top:315px;
  6644. width:300px;
  6645. height:40px;
  6646. display:flex;
  6647. font-size:14px;
  6648. }
  6649. #u96054 .text {
  6650. position:absolute;
  6651. align-self:center;
  6652. padding:2px 2px 2px 2px;
  6653. box-sizing:border-box;
  6654. width:100%;
  6655. }
  6656. #u96054_text {
  6657. border-width:0px;
  6658. word-wrap:break-word;
  6659. text-transform:none;
  6660. visibility:hidden;
  6661. }
  6662. #u96055_input {
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:286px;
  6667. height:31px;
  6668. padding:2px 2px 2px 2px;
  6669. font-family:'ArialMT', 'Arial', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:14px;
  6673. letter-spacing:normal;
  6674. color:#AAAAAA;
  6675. vertical-align:none;
  6676. text-align:left;
  6677. text-transform:none;
  6678. background-color:transparent;
  6679. border-color:transparent;
  6680. }
  6681. #u96055_input.disabled {
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:286px;
  6686. height:31px;
  6687. padding:2px 2px 2px 2px;
  6688. font-family:'ArialMT', 'Arial', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:14px;
  6692. letter-spacing:normal;
  6693. color:#AAAAAA;
  6694. vertical-align:none;
  6695. text-align:left;
  6696. text-transform:none;
  6697. background-color:transparent;
  6698. border-color:transparent;
  6699. }
  6700. #u96055_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:286px;
  6706. height:31px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 1);
  6709. border:none;
  6710. border-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-size:14px;
  6715. color:#AAAAAA;
  6716. }
  6717. #u96055 {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:1699px;
  6721. top:318px;
  6722. width:286px;
  6723. height:31px;
  6724. display:flex;
  6725. font-size:14px;
  6726. color:#AAAAAA;
  6727. }
  6728. #u96055 .text {
  6729. position:absolute;
  6730. align-self:flex-start;
  6731. padding:2px 2px 2px 2px;
  6732. box-sizing:border-box;
  6733. width:100%;
  6734. }
  6735. #u96055_div.disabled {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:286px;
  6741. height:31px;
  6742. background:inherit;
  6743. background-color:rgba(240, 240, 240, 1);
  6744. border:none;
  6745. border-radius:0px;
  6746. -moz-box-shadow:none;
  6747. -webkit-box-shadow:none;
  6748. box-shadow:none;
  6749. font-size:14px;
  6750. color:#AAAAAA;
  6751. }
  6752. #u96055.disabled {
  6753. }
  6754. .u96055_input_option {
  6755. font-size:14px;
  6756. }
  6757. #u96056_div {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:36px;
  6763. height:40px;
  6764. background:inherit;
  6765. background-color:rgba(255, 255, 255, 0);
  6766. border:none;
  6767. border-left:0px;
  6768. border-top:0px;
  6769. border-right:0px;
  6770. border-radius:0px;
  6771. border-bottom-right-radius:0px;
  6772. border-bottom-left-radius:0px;
  6773. -moz-box-shadow:none;
  6774. -webkit-box-shadow:none;
  6775. box-shadow:none;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:14px;
  6780. }
  6781. #u96056 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:2030px;
  6785. top:275px;
  6786. width:36px;
  6787. height:40px;
  6788. display:flex;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:14px;
  6793. }
  6794. #u96056 .text {
  6795. position:absolute;
  6796. align-self:center;
  6797. padding:0px 0px 0px 0px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u96056_text {
  6802. border-width:0px;
  6803. white-space:nowrap;
  6804. text-transform:none;
  6805. }
  6806. #u96057 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:0px;
  6812. height:0px;
  6813. }
  6814. #u96058_div {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:300px;
  6820. height:40px;
  6821. background:inherit;
  6822. background-color:rgba(255, 255, 255, 1);
  6823. box-sizing:border-box;
  6824. border-width:1px;
  6825. border-style:solid;
  6826. border-color:rgba(215, 215, 215, 1);
  6827. border-radius:4px;
  6828. -moz-box-shadow:none;
  6829. -webkit-box-shadow:none;
  6830. box-shadow:none;
  6831. font-size:14px;
  6832. }
  6833. #u96058 {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:2030px;
  6837. top:315px;
  6838. width:300px;
  6839. height:40px;
  6840. display:flex;
  6841. font-size:14px;
  6842. }
  6843. #u96058 .text {
  6844. position:absolute;
  6845. align-self:center;
  6846. padding:2px 2px 2px 2px;
  6847. box-sizing:border-box;
  6848. width:100%;
  6849. }
  6850. #u96058_text {
  6851. border-width:0px;
  6852. word-wrap:break-word;
  6853. text-transform:none;
  6854. visibility:hidden;
  6855. }
  6856. #u96059_input {
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:286px;
  6861. height:31px;
  6862. padding:2px 2px 2px 2px;
  6863. font-family:'ArialMT', 'Arial', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:14px;
  6867. letter-spacing:normal;
  6868. color:#AAAAAA;
  6869. vertical-align:none;
  6870. text-align:left;
  6871. text-transform:none;
  6872. background-color:transparent;
  6873. border-color:transparent;
  6874. }
  6875. #u96059_input.disabled {
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:286px;
  6880. height:31px;
  6881. padding:2px 2px 2px 2px;
  6882. font-family:'ArialMT', 'Arial', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:14px;
  6886. letter-spacing:normal;
  6887. color:#AAAAAA;
  6888. vertical-align:none;
  6889. text-align:left;
  6890. text-transform:none;
  6891. background-color:transparent;
  6892. border-color:transparent;
  6893. }
  6894. #u96059_div {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:0px;
  6898. top:0px;
  6899. width:286px;
  6900. height:31px;
  6901. background:inherit;
  6902. background-color:rgba(255, 255, 255, 1);
  6903. border:none;
  6904. border-radius:0px;
  6905. -moz-box-shadow:none;
  6906. -webkit-box-shadow:none;
  6907. box-shadow:none;
  6908. font-size:14px;
  6909. color:#AAAAAA;
  6910. }
  6911. #u96059 {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:2039px;
  6915. top:318px;
  6916. width:286px;
  6917. height:31px;
  6918. display:flex;
  6919. font-size:14px;
  6920. color:#AAAAAA;
  6921. }
  6922. #u96059 .text {
  6923. position:absolute;
  6924. align-self:flex-start;
  6925. padding:2px 2px 2px 2px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u96059_div.disabled {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:286px;
  6935. height:31px;
  6936. background:inherit;
  6937. background-color:rgba(240, 240, 240, 1);
  6938. border:none;
  6939. border-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-size:14px;
  6944. color:#AAAAAA;
  6945. }
  6946. #u96059.disabled {
  6947. }
  6948. .u96059_input_option {
  6949. font-size:14px;
  6950. }
  6951. #u96060 {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:0px;
  6955. top:0px;
  6956. width:0px;
  6957. height:0px;
  6958. }
  6959. #u96061_div {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:200px;
  6965. height:1180px;
  6966. background:inherit;
  6967. background-color:rgba(255, 255, 255, 1);
  6968. border:none;
  6969. border-radius:0px;
  6970. -moz-box-shadow:none;
  6971. -webkit-box-shadow:none;
  6972. box-shadow:none;
  6973. }
  6974. #u96061 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:120px;
  6978. top:50px;
  6979. width:200px;
  6980. height:1180px;
  6981. display:flex;
  6982. }
  6983. #u96061 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:2px 2px 2px 2px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u96061_text {
  6991. border-width:0px;
  6992. word-wrap:break-word;
  6993. text-transform:none;
  6994. visibility:hidden;
  6995. }
  6996. #u96062_div {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:200px;
  7002. height:60px;
  7003. background:inherit;
  7004. background-color:rgba(224, 231, 247, 1);
  7005. border:none;
  7006. border-radius:0px;
  7007. -moz-box-shadow:none;
  7008. -webkit-box-shadow:none;
  7009. box-shadow:none;
  7010. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7011. font-weight:500;
  7012. font-style:normal;
  7013. font-size:18px;
  7014. }
  7015. #u96062 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:120px;
  7019. top:50px;
  7020. width:200px;
  7021. height:60px;
  7022. display:flex;
  7023. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7024. font-weight:500;
  7025. font-style:normal;
  7026. font-size:18px;
  7027. }
  7028. #u96062 .text {
  7029. position:absolute;
  7030. align-self:center;
  7031. padding:0px 0px 0px 20px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u96062_text {
  7036. border-width:0px;
  7037. word-wrap:break-word;
  7038. text-transform:none;
  7039. }
  7040. #u96063_div {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:65px;
  7046. height:22px;
  7047. background:inherit;
  7048. background-color:rgba(255, 255, 255, 0);
  7049. border:none;
  7050. border-radius:0px;
  7051. -moz-box-shadow:none;
  7052. -webkit-box-shadow:none;
  7053. box-shadow:none;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:16px;
  7058. }
  7059. #u96063 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:145px;
  7063. top:500px;
  7064. width:65px;
  7065. height:22px;
  7066. display:flex;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:16px;
  7071. }
  7072. #u96063 .text {
  7073. position:absolute;
  7074. align-self:flex-start;
  7075. padding:0px 0px 0px 0px;
  7076. box-sizing:border-box;
  7077. width:100%;
  7078. }
  7079. #u96063_text {
  7080. border-width:0px;
  7081. white-space:nowrap;
  7082. text-transform:none;
  7083. }
  7084. #u96064_div {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:0px;
  7088. top:0px;
  7089. width:79px;
  7090. height:17px;
  7091. background:inherit;
  7092. background-color:rgba(255, 255, 255, 0);
  7093. border:none;
  7094. border-radius:0px;
  7095. -moz-box-shadow:none;
  7096. -webkit-box-shadow:none;
  7097. box-shadow:none;
  7098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7099. font-weight:400;
  7100. font-style:normal;
  7101. font-size:12px;
  7102. color:#AAAAAA;
  7103. }
  7104. #u96064 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:143px;
  7108. top:463px;
  7109. width:79px;
  7110. height:17px;
  7111. display:flex;
  7112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7113. font-weight:400;
  7114. font-style:normal;
  7115. font-size:12px;
  7116. color:#AAAAAA;
  7117. }
  7118. #u96064 .text {
  7119. position:absolute;
  7120. align-self:flex-start;
  7121. padding:0px 0px 0px 0px;
  7122. box-sizing:border-box;
  7123. width:100%;
  7124. }
  7125. #u96064_text {
  7126. border-width:0px;
  7127. white-space:nowrap;
  7128. text-transform:none;
  7129. }
  7130. #u96065_div {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:49px;
  7136. height:17px;
  7137. background:inherit;
  7138. background-color:rgba(255, 255, 255, 0);
  7139. border:none;
  7140. border-radius:0px;
  7141. -moz-box-shadow:none;
  7142. -webkit-box-shadow:none;
  7143. box-shadow:none;
  7144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7145. font-weight:400;
  7146. font-style:normal;
  7147. font-size:12px;
  7148. color:#AAAAAA;
  7149. }
  7150. #u96065 {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:144px;
  7154. top:131px;
  7155. width:49px;
  7156. height:17px;
  7157. display:flex;
  7158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7159. font-weight:400;
  7160. font-style:normal;
  7161. font-size:12px;
  7162. color:#AAAAAA;
  7163. }
  7164. #u96065 .text {
  7165. position:absolute;
  7166. align-self:flex-start;
  7167. padding:0px 0px 0px 0px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u96065_text {
  7172. border-width:0px;
  7173. white-space:nowrap;
  7174. text-transform:none;
  7175. }
  7176. #u96066_div {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:65px;
  7182. height:22px;
  7183. background:inherit;
  7184. background-color:rgba(255, 255, 255, 0);
  7185. border:none;
  7186. border-radius:0px;
  7187. -moz-box-shadow:none;
  7188. -webkit-box-shadow:none;
  7189. box-shadow:none;
  7190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7191. font-weight:400;
  7192. font-style:normal;
  7193. font-size:16px;
  7194. }
  7195. #u96066 {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:146px;
  7199. top:168px;
  7200. width:65px;
  7201. height:22px;
  7202. display:flex;
  7203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7204. font-weight:400;
  7205. font-style:normal;
  7206. font-size:16px;
  7207. }
  7208. #u96066 .text {
  7209. position:absolute;
  7210. align-self:flex-start;
  7211. padding:0px 0px 0px 0px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u96066_text {
  7216. border-width:0px;
  7217. white-space:nowrap;
  7218. text-transform:none;
  7219. }
  7220. #u96067_img {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:201px;
  7226. height:2px;
  7227. }
  7228. #u96067 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:120px;
  7232. top:442px;
  7233. width:200px;
  7234. height:1px;
  7235. display:flex;
  7236. }
  7237. #u96067 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:2px 2px 2px 2px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u96067_text {
  7245. border-width:0px;
  7246. word-wrap:break-word;
  7247. text-transform:none;
  7248. visibility:hidden;
  7249. }
  7250. #u96068_div {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:65px;
  7256. height:22px;
  7257. background:inherit;
  7258. background-color:rgba(255, 255, 255, 0);
  7259. border:none;
  7260. border-radius:0px;
  7261. -moz-box-shadow:none;
  7262. -webkit-box-shadow:none;
  7263. box-shadow:none;
  7264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7265. font-weight:400;
  7266. font-style:normal;
  7267. font-size:16px;
  7268. }
  7269. #u96068 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:145px;
  7273. top:542px;
  7274. width:65px;
  7275. height:22px;
  7276. display:flex;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:16px;
  7281. }
  7282. #u96068 .text {
  7283. position:absolute;
  7284. align-self:flex-start;
  7285. padding:0px 0px 0px 0px;
  7286. box-sizing:border-box;
  7287. width:100%;
  7288. }
  7289. #u96068_text {
  7290. border-width:0px;
  7291. white-space:nowrap;
  7292. text-transform:none;
  7293. }
  7294. #u96069_div {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:65px;
  7300. height:22px;
  7301. background:inherit;
  7302. background-color:rgba(255, 255, 255, 0);
  7303. border:none;
  7304. border-radius:0px;
  7305. -moz-box-shadow:none;
  7306. -webkit-box-shadow:none;
  7307. box-shadow:none;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. font-size:16px;
  7312. }
  7313. #u96069 {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:146px;
  7317. top:272px;
  7318. width:65px;
  7319. height:22px;
  7320. display:flex;
  7321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. font-size:16px;
  7325. }
  7326. #u96069 .text {
  7327. position:absolute;
  7328. align-self:flex-start;
  7329. padding:0px 0px 0px 0px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u96069_text {
  7334. border-width:0px;
  7335. white-space:nowrap;
  7336. text-transform:none;
  7337. }
  7338. #u96070_div {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:49px;
  7344. height:17px;
  7345. background:inherit;
  7346. background-color:rgba(255, 255, 255, 0);
  7347. border:none;
  7348. border-radius:0px;
  7349. -moz-box-shadow:none;
  7350. -webkit-box-shadow:none;
  7351. box-shadow:none;
  7352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. font-size:12px;
  7356. color:#AAAAAA;
  7357. }
  7358. #u96070 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:144px;
  7362. top:235px;
  7363. width:49px;
  7364. height:17px;
  7365. display:flex;
  7366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:12px;
  7370. color:#AAAAAA;
  7371. }
  7372. #u96070 .text {
  7373. position:absolute;
  7374. align-self:flex-start;
  7375. padding:0px 0px 0px 0px;
  7376. box-sizing:border-box;
  7377. width:100%;
  7378. }
  7379. #u96070_text {
  7380. border-width:0px;
  7381. white-space:nowrap;
  7382. text-transform:none;
  7383. }
  7384. #u96071_img {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:201px;
  7390. height:2px;
  7391. }
  7392. #u96071 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:121px;
  7396. top:214px;
  7397. width:200px;
  7398. height:1px;
  7399. display:flex;
  7400. }
  7401. #u96071 .text {
  7402. position:absolute;
  7403. align-self:center;
  7404. padding:2px 2px 2px 2px;
  7405. box-sizing:border-box;
  7406. width:100%;
  7407. }
  7408. #u96071_text {
  7409. border-width:0px;
  7410. word-wrap:break-word;
  7411. text-transform:none;
  7412. visibility:hidden;
  7413. }
  7414. #u96072_div {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:65px;
  7420. height:22px;
  7421. background:inherit;
  7422. background-color:rgba(255, 255, 255, 0);
  7423. border:none;
  7424. border-radius:0px;
  7425. -moz-box-shadow:none;
  7426. -webkit-box-shadow:none;
  7427. box-shadow:none;
  7428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7429. font-weight:400;
  7430. font-style:normal;
  7431. font-size:16px;
  7432. }
  7433. #u96072 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:146px;
  7437. top:314px;
  7438. width:65px;
  7439. height:22px;
  7440. display:flex;
  7441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:16px;
  7445. }
  7446. #u96072 .text {
  7447. position:absolute;
  7448. align-self:flex-start;
  7449. padding:0px 0px 0px 0px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u96072_text {
  7454. border-width:0px;
  7455. white-space:nowrap;
  7456. text-transform:none;
  7457. }
  7458. #u96073_div {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:65px;
  7464. height:22px;
  7465. background:inherit;
  7466. background-color:rgba(255, 255, 255, 0);
  7467. border:none;
  7468. border-radius:0px;
  7469. -moz-box-shadow:none;
  7470. -webkit-box-shadow:none;
  7471. box-shadow:none;
  7472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7473. font-weight:400;
  7474. font-style:normal;
  7475. font-size:16px;
  7476. }
  7477. #u96073 {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:146px;
  7481. top:356px;
  7482. width:65px;
  7483. height:22px;
  7484. display:flex;
  7485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:16px;
  7489. }
  7490. #u96073 .text {
  7491. position:absolute;
  7492. align-self:flex-start;
  7493. padding:0px 0px 0px 0px;
  7494. box-sizing:border-box;
  7495. width:100%;
  7496. }
  7497. #u96073_text {
  7498. border-width:0px;
  7499. white-space:nowrap;
  7500. text-transform:none;
  7501. }
  7502. #u96074_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:81px;
  7508. height:22px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 0);
  7511. border:none;
  7512. border-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:16px;
  7520. }
  7521. #u96074 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:146px;
  7525. top:398px;
  7526. width:81px;
  7527. height:22px;
  7528. display:flex;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:16px;
  7533. }
  7534. #u96074 .text {
  7535. position:absolute;
  7536. align-self:flex-start;
  7537. padding:0px 0px 0px 0px;
  7538. box-sizing:border-box;
  7539. width:100%;
  7540. }
  7541. #u96074_text {
  7542. border-width:0px;
  7543. white-space:nowrap;
  7544. text-transform:none;
  7545. }
  7546. #u96075_div {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:65px;
  7552. height:22px;
  7553. background:inherit;
  7554. background-color:rgba(255, 255, 255, 0);
  7555. border:none;
  7556. border-radius:0px;
  7557. -moz-box-shadow:none;
  7558. -webkit-box-shadow:none;
  7559. box-shadow:none;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:16px;
  7564. }
  7565. #u96075 {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:145px;
  7569. top:810px;
  7570. width:65px;
  7571. height:22px;
  7572. display:flex;
  7573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7574. font-weight:400;
  7575. font-style:normal;
  7576. font-size:16px;
  7577. }
  7578. #u96075 .text {
  7579. position:absolute;
  7580. align-self:flex-start;
  7581. padding:0px 0px 0px 0px;
  7582. box-sizing:border-box;
  7583. width:100%;
  7584. }
  7585. #u96075_text {
  7586. border-width:0px;
  7587. white-space:nowrap;
  7588. text-transform:none;
  7589. }
  7590. #u96076_div {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:65px;
  7596. height:22px;
  7597. background:inherit;
  7598. background-color:rgba(255, 255, 255, 0);
  7599. border:none;
  7600. border-radius:0px;
  7601. -moz-box-shadow:none;
  7602. -webkit-box-shadow:none;
  7603. box-shadow:none;
  7604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:16px;
  7608. }
  7609. #u96076 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:145px;
  7613. top:642px;
  7614. width:65px;
  7615. height:22px;
  7616. display:flex;
  7617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:16px;
  7621. }
  7622. #u96076 .text {
  7623. position:absolute;
  7624. align-self:flex-start;
  7625. padding:0px 0px 0px 0px;
  7626. box-sizing:border-box;
  7627. width:100%;
  7628. }
  7629. #u96076_text {
  7630. border-width:0px;
  7631. white-space:nowrap;
  7632. text-transform:none;
  7633. }
  7634. #u96077_div {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:49px;
  7640. height:17px;
  7641. background:inherit;
  7642. background-color:rgba(255, 255, 255, 0);
  7643. border:none;
  7644. border-radius:0px;
  7645. -moz-box-shadow:none;
  7646. -webkit-box-shadow:none;
  7647. box-shadow:none;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:12px;
  7652. color:#AAAAAA;
  7653. }
  7654. #u96077 {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:143px;
  7658. top:605px;
  7659. width:49px;
  7660. height:17px;
  7661. display:flex;
  7662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. font-size:12px;
  7666. color:#AAAAAA;
  7667. }
  7668. #u96077 .text {
  7669. position:absolute;
  7670. align-self:flex-start;
  7671. padding:0px 0px 0px 0px;
  7672. box-sizing:border-box;
  7673. width:100%;
  7674. }
  7675. #u96077_text {
  7676. border-width:0px;
  7677. white-space:nowrap;
  7678. text-transform:none;
  7679. }
  7680. #u96078_img {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:0px;
  7684. top:0px;
  7685. width:201px;
  7686. height:2px;
  7687. }
  7688. #u96078 {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:120px;
  7692. top:584px;
  7693. width:200px;
  7694. height:1px;
  7695. display:flex;
  7696. }
  7697. #u96078 .text {
  7698. position:absolute;
  7699. align-self:center;
  7700. padding:2px 2px 2px 2px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u96078_text {
  7705. border-width:0px;
  7706. word-wrap:break-word;
  7707. text-transform:none;
  7708. visibility:hidden;
  7709. }
  7710. #u96079_div {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:65px;
  7716. height:22px;
  7717. background:inherit;
  7718. background-color:rgba(255, 255, 255, 0);
  7719. border:none;
  7720. border-radius:0px;
  7721. -moz-box-shadow:none;
  7722. -webkit-box-shadow:none;
  7723. box-shadow:none;
  7724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7725. font-weight:400;
  7726. font-style:normal;
  7727. font-size:16px;
  7728. }
  7729. #u96079 {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:145px;
  7733. top:684px;
  7734. width:65px;
  7735. height:22px;
  7736. display:flex;
  7737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7738. font-weight:400;
  7739. font-style:normal;
  7740. font-size:16px;
  7741. }
  7742. #u96079 .text {
  7743. position:absolute;
  7744. align-self:flex-start;
  7745. padding:0px 0px 0px 0px;
  7746. box-sizing:border-box;
  7747. width:100%;
  7748. }
  7749. #u96079_text {
  7750. border-width:0px;
  7751. white-space:nowrap;
  7752. text-transform:none;
  7753. }
  7754. #u96080_div {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:65px;
  7760. height:22px;
  7761. background:inherit;
  7762. background-color:rgba(255, 255, 255, 0);
  7763. border:none;
  7764. border-radius:0px;
  7765. -moz-box-shadow:none;
  7766. -webkit-box-shadow:none;
  7767. box-shadow:none;
  7768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:16px;
  7772. }
  7773. #u96080 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:145px;
  7777. top:726px;
  7778. width:65px;
  7779. height:22px;
  7780. display:flex;
  7781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7782. font-weight:400;
  7783. font-style:normal;
  7784. font-size:16px;
  7785. }
  7786. #u96080 .text {
  7787. position:absolute;
  7788. align-self:flex-start;
  7789. padding:0px 0px 0px 0px;
  7790. box-sizing:border-box;
  7791. width:100%;
  7792. }
  7793. #u96080_text {
  7794. border-width:0px;
  7795. white-space:nowrap;
  7796. text-transform:none;
  7797. }
  7798. #u96081_div {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:97px;
  7804. height:22px;
  7805. background:inherit;
  7806. background-color:rgba(255, 255, 255, 0);
  7807. border:none;
  7808. border-radius:0px;
  7809. -moz-box-shadow:none;
  7810. -webkit-box-shadow:none;
  7811. box-shadow:none;
  7812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7813. font-weight:400;
  7814. font-style:normal;
  7815. font-size:16px;
  7816. }
  7817. #u96081 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:145px;
  7821. top:768px;
  7822. width:97px;
  7823. height:22px;
  7824. display:flex;
  7825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7826. font-weight:400;
  7827. font-style:normal;
  7828. font-size:16px;
  7829. }
  7830. #u96081 .text {
  7831. position:absolute;
  7832. align-self:flex-start;
  7833. padding:0px 0px 0px 0px;
  7834. box-sizing:border-box;
  7835. width:100%;
  7836. }
  7837. #u96081_text {
  7838. border-width:0px;
  7839. white-space:nowrap;
  7840. text-transform:none;
  7841. }
  7842. #u96082_div {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:65px;
  7848. height:22px;
  7849. background:inherit;
  7850. background-color:rgba(255, 255, 255, 0);
  7851. border:none;
  7852. border-radius:0px;
  7853. -moz-box-shadow:none;
  7854. -webkit-box-shadow:none;
  7855. box-shadow:none;
  7856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7857. font-weight:400;
  7858. font-style:normal;
  7859. font-size:16px;
  7860. }
  7861. #u96082 {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:145px;
  7865. top:910px;
  7866. width:65px;
  7867. height:22px;
  7868. display:flex;
  7869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:16px;
  7873. }
  7874. #u96082 .text {
  7875. position:absolute;
  7876. align-self:flex-start;
  7877. padding:0px 0px 0px 0px;
  7878. box-sizing:border-box;
  7879. width:100%;
  7880. }
  7881. #u96082_text {
  7882. border-width:0px;
  7883. white-space:nowrap;
  7884. text-transform:none;
  7885. }
  7886. #u96083_div {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:0px;
  7890. top:0px;
  7891. width:49px;
  7892. height:17px;
  7893. background:inherit;
  7894. background-color:rgba(255, 255, 255, 0);
  7895. border:none;
  7896. border-radius:0px;
  7897. -moz-box-shadow:none;
  7898. -webkit-box-shadow:none;
  7899. box-shadow:none;
  7900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7901. font-weight:400;
  7902. font-style:normal;
  7903. font-size:12px;
  7904. color:#AAAAAA;
  7905. }
  7906. #u96083 {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:143px;
  7910. top:873px;
  7911. width:49px;
  7912. height:17px;
  7913. display:flex;
  7914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. font-size:12px;
  7918. color:#AAAAAA;
  7919. }
  7920. #u96083 .text {
  7921. position:absolute;
  7922. align-self:flex-start;
  7923. padding:0px 0px 0px 0px;
  7924. box-sizing:border-box;
  7925. width:100%;
  7926. }
  7927. #u96083_text {
  7928. border-width:0px;
  7929. white-space:nowrap;
  7930. text-transform:none;
  7931. }
  7932. #u96084_img {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:201px;
  7938. height:2px;
  7939. }
  7940. #u96084 {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:120px;
  7944. top:852px;
  7945. width:200px;
  7946. height:1px;
  7947. display:flex;
  7948. }
  7949. #u96084 .text {
  7950. position:absolute;
  7951. align-self:center;
  7952. padding:2px 2px 2px 2px;
  7953. box-sizing:border-box;
  7954. width:100%;
  7955. }
  7956. #u96084_text {
  7957. border-width:0px;
  7958. word-wrap:break-word;
  7959. text-transform:none;
  7960. visibility:hidden;
  7961. }
  7962. #u96085_div {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:0px;
  7966. top:0px;
  7967. width:65px;
  7968. height:22px;
  7969. background:inherit;
  7970. background-color:rgba(255, 255, 255, 0);
  7971. border:none;
  7972. border-radius:0px;
  7973. -moz-box-shadow:none;
  7974. -webkit-box-shadow:none;
  7975. box-shadow:none;
  7976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7977. font-weight:400;
  7978. font-style:normal;
  7979. font-size:16px;
  7980. }
  7981. #u96085 {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:145px;
  7985. top:952px;
  7986. width:65px;
  7987. height:22px;
  7988. display:flex;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:16px;
  7993. }
  7994. #u96085 .text {
  7995. position:absolute;
  7996. align-self:flex-start;
  7997. padding:0px 0px 0px 0px;
  7998. box-sizing:border-box;
  7999. width:100%;
  8000. }
  8001. #u96085_text {
  8002. border-width:0px;
  8003. white-space:nowrap;
  8004. text-transform:none;
  8005. }