styles.css 141 KB

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