styles.css 139 KB

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