styles.css 110 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u92276_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. #u92276 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u92276 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u92276_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u92277_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. #u92277 {
  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. #u92277 .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. #u92277_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u92278_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. #u92278 {
  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. #u92278 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u92278_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u92279 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u92280_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u92280 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u92280 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u92280_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u92281_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. #u92281 {
  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. #u92281 .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. #u92281_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u92282_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. #u92282 {
  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. #u92282 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u92282_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u92283 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u92284_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. #u92284_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. #u92284_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. #u92284 {
  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. #u92284 .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. #u92284_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. #u92284.disabled {
  356. }
  357. .u92284_input_option {
  358. font-size:14px;
  359. }
  360. #u92285_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u92285 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u92285 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u92285_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u92286_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. #u92286 {
  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. #u92286 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u92286_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u92287_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. #u92287 {
  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. #u92287 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u92287_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u92288 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u92289_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. #u92289 {
  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. #u92289 .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. #u92289_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u92290_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u92290 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u92290 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u92290_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u92291 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u92292_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. #u92292 {
  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. #u92292 .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. #u92292_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u92293_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u92293 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u92293 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u92293_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u92294 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u92295_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. #u92295 {
  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. #u92295 .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. #u92295_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u92296_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u92296 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u92296 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u92296_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u92297 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u92298_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. #u92298 {
  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. #u92298 .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. #u92298_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u92299_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u92299 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u92299 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u92299_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u92300 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u92301_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. #u92301 {
  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. #u92301 .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. #u92301_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u92302_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u92302 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u92302 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u92302_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u92303 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u92304_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. #u92304 {
  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. #u92304 .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. #u92304_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u92305_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u92305 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u92305 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u92305_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u92306 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u92307_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. #u92307 {
  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. #u92307 .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. #u92307_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u92308_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u92308 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u92308 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u92308_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u92309 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u92310_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. #u92310 {
  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. #u92310 .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. #u92310_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u92311_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u92311 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u92311 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u92311_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u92312 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u92313_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. #u92313 {
  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. #u92313 .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. #u92313_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u92314_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u92314 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u92314 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u92314_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u92315 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u92316_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. #u92316 {
  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. #u92316 .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. #u92316_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u92317_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u92317 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u92317 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u92317_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u92318_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. #u92318 {
  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. #u92318 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u92318_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u92319_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u92319 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u92319 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u92319_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u92320_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. #u92320 {
  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. #u92320 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u92320_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u92321_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u92321 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u92321 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u92321_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u92322 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u92323_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. #u92323 {
  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. #u92323 .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. #u92323_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u92324_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u92324 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u92324 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u92324_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u92325 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u92326_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. #u92326 {
  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. #u92326 .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. #u92326_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u92327_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u92327 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u92327 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u92327_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u92328_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1262px;
  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:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. }
  1653. #u92328 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:329px;
  1657. top:50px;
  1658. width:1262px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u92328 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u92328_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u92329 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:349px;
  1679. top:231px;
  1680. width:1222px;
  1681. height:278px;
  1682. }
  1683. #u92330_img {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:111px;
  1689. height:38px;
  1690. }
  1691. #u92330 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:111px;
  1697. height:38px;
  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. #u92330 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u92330_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u92331_img {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:110px;
  1723. height:38px;
  1724. }
  1725. #u92331 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:111px;
  1729. top:0px;
  1730. width:110px;
  1731. height:38px;
  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. #u92331 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u92331_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u92332_img {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:110px;
  1757. height:38px;
  1758. }
  1759. #u92332 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:221px;
  1763. top:0px;
  1764. width:110px;
  1765. height:38px;
  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. #u92332 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u92332_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. }
  1785. #u92333_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:110px;
  1791. height:38px;
  1792. }
  1793. #u92333 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:331px;
  1797. top:0px;
  1798. width:110px;
  1799. height:38px;
  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. #u92333 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u92333_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u92334_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:110px;
  1825. height:38px;
  1826. }
  1827. #u92334 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:441px;
  1831. top:0px;
  1832. width:110px;
  1833. height:38px;
  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. #u92334 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u92334_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u92335_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:110px;
  1859. height:38px;
  1860. }
  1861. #u92335 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:551px;
  1865. top:0px;
  1866. width:110px;
  1867. height:38px;
  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. #u92335 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u92335_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u92336_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:110px;
  1893. height:38px;
  1894. }
  1895. #u92336 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:661px;
  1899. top:0px;
  1900. width:110px;
  1901. height:38px;
  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. #u92336 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:2px 2px 2px 0px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u92336_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. }
  1921. #u92337_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:110px;
  1927. height:38px;
  1928. }
  1929. #u92337 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:771px;
  1933. top:0px;
  1934. width:110px;
  1935. height:38px;
  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. #u92337 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 2px 2px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u92337_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. }
  1955. #u92338_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:111px;
  1961. height:38px;
  1962. }
  1963. #u92338 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:881px;
  1967. top:0px;
  1968. width:111px;
  1969. height:38px;
  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. #u92338 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u92338_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u92339_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:111px;
  1995. height:38px;
  1996. }
  1997. #u92339 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:992px;
  2001. top:0px;
  2002. width:111px;
  2003. height:38px;
  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:#FFFFFF;
  2010. }
  2011. #u92339 .text {
  2012. position:absolute;
  2013. align-self:center;
  2014. padding:2px 2px 2px 0px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u92339_text {
  2019. border-width:0px;
  2020. word-wrap:break-word;
  2021. text-transform:none;
  2022. }
  2023. #u92340_img {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:119px;
  2029. height:38px;
  2030. }
  2031. #u92340 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:1103px;
  2035. top:0px;
  2036. width:119px;
  2037. height:38px;
  2038. display:flex;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:12px;
  2043. color:#FFFFFF;
  2044. }
  2045. #u92340 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 2px 2px 0px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u92340_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u92341_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:111px;
  2063. height:40px;
  2064. }
  2065. #u92341 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:38px;
  2070. width:111px;
  2071. height:40px;
  2072. display:flex;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:12px;
  2077. color:#333333;
  2078. }
  2079. #u92341 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:2px 2px 2px 0px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u92341_text {
  2087. border-width:0px;
  2088. word-wrap:break-word;
  2089. text-transform:none;
  2090. visibility:hidden;
  2091. }
  2092. #u92342_img {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:110px;
  2098. height:40px;
  2099. }
  2100. #u92342 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:111px;
  2104. top:38px;
  2105. width:110px;
  2106. height:40px;
  2107. display:flex;
  2108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2109. font-weight:400;
  2110. font-style:normal;
  2111. font-size:12px;
  2112. color:#333333;
  2113. }
  2114. #u92342 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:2px 2px 2px 0px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u92342_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. visibility:hidden;
  2126. }
  2127. #u92343_img {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:110px;
  2133. height:40px;
  2134. }
  2135. #u92343 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:221px;
  2139. top:38px;
  2140. width:110px;
  2141. height:40px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:12px;
  2147. color:#333333;
  2148. }
  2149. #u92343 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 0px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u92343_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u92344_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:110px;
  2168. height:40px;
  2169. }
  2170. #u92344 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:331px;
  2174. top:38px;
  2175. width:110px;
  2176. height:40px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. text-decoration:underline ;
  2183. color:#333333;
  2184. }
  2185. #u92344 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u92344_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. visibility:hidden;
  2197. }
  2198. #u92345_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:110px;
  2204. height:40px;
  2205. }
  2206. #u92345 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:441px;
  2210. top:38px;
  2211. width:110px;
  2212. height:40px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. text-decoration:underline ;
  2219. color:#333333;
  2220. }
  2221. #u92345 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 0px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u92345_text {
  2229. border-width:0px;
  2230. word-wrap:break-word;
  2231. text-transform:none;
  2232. visibility:hidden;
  2233. }
  2234. #u92346_img {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:110px;
  2240. height:40px;
  2241. }
  2242. #u92346 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:551px;
  2246. top:38px;
  2247. width:110px;
  2248. height:40px;
  2249. display:flex;
  2250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2251. font-weight:400;
  2252. font-style:normal;
  2253. font-size:12px;
  2254. text-decoration:underline ;
  2255. color:#333333;
  2256. }
  2257. #u92346 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u92346_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. visibility:hidden;
  2269. }
  2270. #u92347_img {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:110px;
  2276. height:40px;
  2277. }
  2278. #u92347 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:661px;
  2282. top:38px;
  2283. width:110px;
  2284. height:40px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. text-decoration:underline ;
  2291. color:#333333;
  2292. }
  2293. #u92347 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u92347_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u92348_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:110px;
  2312. height:40px;
  2313. }
  2314. #u92348 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:771px;
  2318. top:38px;
  2319. width:110px;
  2320. height:40px;
  2321. display:flex;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. color:#333333;
  2327. }
  2328. #u92348 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u92348_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. }
  2340. #u92349_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:111px;
  2346. height:40px;
  2347. }
  2348. #u92349 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:881px;
  2352. top:38px;
  2353. width:111px;
  2354. height:40px;
  2355. display:flex;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:12px;
  2360. color:#333333;
  2361. }
  2362. #u92349 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 0px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u92349_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u92350_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:111px;
  2381. height:40px;
  2382. }
  2383. #u92350 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:992px;
  2387. top:38px;
  2388. width:111px;
  2389. height:40px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. color:#333333;
  2396. }
  2397. #u92350 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u92350_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u92351_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:119px;
  2416. height:40px;
  2417. }
  2418. #u92351 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:1103px;
  2422. top:38px;
  2423. width:119px;
  2424. height:40px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. color:#1890FF;
  2431. }
  2432. #u92351 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u92351_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. }
  2444. #u92352_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:111px;
  2450. height:40px;
  2451. }
  2452. #u92352 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:78px;
  2457. width:111px;
  2458. height:40px;
  2459. display:flex;
  2460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:12px;
  2464. color:#333333;
  2465. }
  2466. #u92352 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 2px 2px 0px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u92352_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u92353_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:110px;
  2485. height:40px;
  2486. }
  2487. #u92353 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:111px;
  2491. top:78px;
  2492. width:110px;
  2493. height:40px;
  2494. display:flex;
  2495. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:12px;
  2499. color:#333333;
  2500. }
  2501. #u92353 .text {
  2502. position:absolute;
  2503. align-self:center;
  2504. padding:2px 2px 2px 0px;
  2505. box-sizing:border-box;
  2506. width:100%;
  2507. }
  2508. #u92353_text {
  2509. border-width:0px;
  2510. word-wrap:break-word;
  2511. text-transform:none;
  2512. visibility:hidden;
  2513. }
  2514. #u92354_img {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:110px;
  2520. height:40px;
  2521. }
  2522. #u92354 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:221px;
  2526. top:78px;
  2527. width:110px;
  2528. height:40px;
  2529. display:flex;
  2530. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. color:#333333;
  2535. }
  2536. #u92354 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u92354_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. visibility:hidden;
  2548. }
  2549. #u92355_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:110px;
  2555. height:40px;
  2556. }
  2557. #u92355 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:331px;
  2561. top:78px;
  2562. width:110px;
  2563. height:40px;
  2564. display:flex;
  2565. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:12px;
  2569. color:#333333;
  2570. }
  2571. #u92355 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u92355_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. visibility:hidden;
  2583. }
  2584. #u92356_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:110px;
  2590. height:40px;
  2591. }
  2592. #u92356 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:441px;
  2596. top:78px;
  2597. width:110px;
  2598. height:40px;
  2599. display:flex;
  2600. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:12px;
  2604. color:#333333;
  2605. }
  2606. #u92356 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 2px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u92356_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. visibility:hidden;
  2618. }
  2619. #u92357_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:110px;
  2625. height:40px;
  2626. }
  2627. #u92357 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:551px;
  2631. top:78px;
  2632. width:110px;
  2633. height:40px;
  2634. display:flex;
  2635. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:12px;
  2639. color:#333333;
  2640. }
  2641. #u92357 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u92357_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. visibility:hidden;
  2653. }
  2654. #u92358_img {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:110px;
  2660. height:40px;
  2661. }
  2662. #u92358 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:661px;
  2666. top:78px;
  2667. width:110px;
  2668. height:40px;
  2669. display:flex;
  2670. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:12px;
  2674. color:#333333;
  2675. }
  2676. #u92358 .text {
  2677. position:absolute;
  2678. align-self:center;
  2679. padding:2px 2px 2px 0px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u92358_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. visibility:hidden;
  2688. }
  2689. #u92359_img {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:110px;
  2695. height:40px;
  2696. }
  2697. #u92359 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:771px;
  2701. top:78px;
  2702. width:110px;
  2703. height:40px;
  2704. display:flex;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:12px;
  2709. color:#333333;
  2710. }
  2711. #u92359 .text {
  2712. position:absolute;
  2713. align-self:center;
  2714. padding:2px 2px 2px 0px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u92359_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u92360_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:111px;
  2730. height:40px;
  2731. }
  2732. #u92360 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:881px;
  2736. top:78px;
  2737. width:111px;
  2738. height:40px;
  2739. display:flex;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:12px;
  2744. color:#333333;
  2745. }
  2746. #u92360 .text {
  2747. position:absolute;
  2748. align-self:center;
  2749. padding:2px 2px 2px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u92360_text {
  2754. border-width:0px;
  2755. word-wrap:break-word;
  2756. text-transform:none;
  2757. visibility:hidden;
  2758. }
  2759. #u92361_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:111px;
  2765. height:40px;
  2766. }
  2767. #u92361 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:992px;
  2771. top:78px;
  2772. width:111px;
  2773. height:40px;
  2774. display:flex;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:12px;
  2779. color:#333333;
  2780. }
  2781. #u92361 .text {
  2782. position:absolute;
  2783. align-self:center;
  2784. padding:2px 2px 2px 0px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u92361_text {
  2789. border-width:0px;
  2790. word-wrap:break-word;
  2791. text-transform:none;
  2792. visibility:hidden;
  2793. }
  2794. #u92362_img {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:119px;
  2800. height:40px;
  2801. }
  2802. #u92362 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:1103px;
  2806. top:78px;
  2807. width:119px;
  2808. height:40px;
  2809. display:flex;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. color:#1890FF;
  2815. }
  2816. #u92362 .text {
  2817. position:absolute;
  2818. align-self:center;
  2819. padding:2px 2px 2px 0px;
  2820. box-sizing:border-box;
  2821. width:100%;
  2822. }
  2823. #u92362_text {
  2824. border-width:0px;
  2825. word-wrap:break-word;
  2826. text-transform:none;
  2827. visibility:hidden;
  2828. }
  2829. #u92363_img {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:111px;
  2835. height:40px;
  2836. }
  2837. #u92363 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:118px;
  2842. width:111px;
  2843. height:40px;
  2844. display:flex;
  2845. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:12px;
  2849. color:#333333;
  2850. }
  2851. #u92363 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u92363_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. visibility:hidden;
  2863. }
  2864. #u92364_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:110px;
  2870. height:40px;
  2871. }
  2872. #u92364 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:111px;
  2876. top:118px;
  2877. width:110px;
  2878. height:40px;
  2879. display:flex;
  2880. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:12px;
  2884. color:#333333;
  2885. }
  2886. #u92364 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 0px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u92364_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u92365_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:110px;
  2905. height:40px;
  2906. }
  2907. #u92365 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:221px;
  2911. top:118px;
  2912. width:110px;
  2913. height:40px;
  2914. display:flex;
  2915. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#333333;
  2920. }
  2921. #u92365 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u92365_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u92366_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:110px;
  2940. height:40px;
  2941. }
  2942. #u92366 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:331px;
  2946. top:118px;
  2947. width:110px;
  2948. height:40px;
  2949. display:flex;
  2950. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. color:#333333;
  2955. }
  2956. #u92366 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 0px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u92366_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u92367_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:110px;
  2975. height:40px;
  2976. }
  2977. #u92367 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:441px;
  2981. top:118px;
  2982. width:110px;
  2983. height:40px;
  2984. display:flex;
  2985. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:12px;
  2989. color:#333333;
  2990. }
  2991. #u92367 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 0px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u92367_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u92368_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:110px;
  3010. height:40px;
  3011. }
  3012. #u92368 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:551px;
  3016. top:118px;
  3017. width:110px;
  3018. height:40px;
  3019. display:flex;
  3020. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:12px;
  3024. color:#333333;
  3025. }
  3026. #u92368 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u92368_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u92369_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:110px;
  3045. height:40px;
  3046. }
  3047. #u92369 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:661px;
  3051. top:118px;
  3052. width:110px;
  3053. height:40px;
  3054. display:flex;
  3055. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:12px;
  3059. color:#333333;
  3060. }
  3061. #u92369 .text {
  3062. position:absolute;
  3063. align-self:center;
  3064. padding:2px 2px 2px 0px;
  3065. box-sizing:border-box;
  3066. width:100%;
  3067. }
  3068. #u92369_text {
  3069. border-width:0px;
  3070. word-wrap:break-word;
  3071. text-transform:none;
  3072. visibility:hidden;
  3073. }
  3074. #u92370_img {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:110px;
  3080. height:40px;
  3081. }
  3082. #u92370 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:771px;
  3086. top:118px;
  3087. width:110px;
  3088. height:40px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:12px;
  3094. color:#333333;
  3095. }
  3096. #u92370 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u92370_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. visibility:hidden;
  3108. }
  3109. #u92371_img {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:111px;
  3115. height:40px;
  3116. }
  3117. #u92371 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:881px;
  3121. top:118px;
  3122. width:111px;
  3123. height:40px;
  3124. display:flex;
  3125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3126. font-weight:400;
  3127. font-style:normal;
  3128. font-size:12px;
  3129. color:#333333;
  3130. }
  3131. #u92371 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 0px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u92371_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u92372_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:111px;
  3150. height:40px;
  3151. }
  3152. #u92372 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:992px;
  3156. top:118px;
  3157. width:111px;
  3158. height:40px;
  3159. display:flex;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. color:#333333;
  3165. }
  3166. #u92372 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 0px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u92372_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. visibility:hidden;
  3178. }
  3179. #u92373_img {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:119px;
  3185. height:40px;
  3186. }
  3187. #u92373 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:1103px;
  3191. top:118px;
  3192. width:119px;
  3193. height:40px;
  3194. display:flex;
  3195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:12px;
  3199. color:#AAAAAA;
  3200. }
  3201. #u92373 .text {
  3202. position:absolute;
  3203. align-self:center;
  3204. padding:2px 2px 2px 0px;
  3205. box-sizing:border-box;
  3206. width:100%;
  3207. }
  3208. #u92373_text {
  3209. border-width:0px;
  3210. word-wrap:break-word;
  3211. text-transform:none;
  3212. visibility:hidden;
  3213. }
  3214. #u92374_img {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:111px;
  3220. height:40px;
  3221. }
  3222. #u92374 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:158px;
  3227. width:111px;
  3228. height:40px;
  3229. display:flex;
  3230. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:12px;
  3234. color:#333333;
  3235. }
  3236. #u92374 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 2px 2px 0px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u92374_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u92375_img {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:110px;
  3255. height:40px;
  3256. }
  3257. #u92375 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:111px;
  3261. top:158px;
  3262. width:110px;
  3263. height:40px;
  3264. display:flex;
  3265. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:12px;
  3269. color:#333333;
  3270. }
  3271. #u92375 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 0px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u92375_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. visibility:hidden;
  3283. }
  3284. #u92376_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:110px;
  3290. height:40px;
  3291. }
  3292. #u92376 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:221px;
  3296. top:158px;
  3297. width:110px;
  3298. height:40px;
  3299. display:flex;
  3300. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3301. font-weight:400;
  3302. font-style:normal;
  3303. font-size:12px;
  3304. color:#333333;
  3305. }
  3306. #u92376 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 0px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u92376_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. visibility:hidden;
  3318. }
  3319. #u92377_img {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:110px;
  3325. height:40px;
  3326. }
  3327. #u92377 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:331px;
  3331. top:158px;
  3332. width:110px;
  3333. height:40px;
  3334. display:flex;
  3335. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3336. font-weight:400;
  3337. font-style:normal;
  3338. font-size:12px;
  3339. color:#333333;
  3340. }
  3341. #u92377 .text {
  3342. position:absolute;
  3343. align-self:center;
  3344. padding:2px 2px 2px 0px;
  3345. box-sizing:border-box;
  3346. width:100%;
  3347. }
  3348. #u92377_text {
  3349. border-width:0px;
  3350. word-wrap:break-word;
  3351. text-transform:none;
  3352. visibility:hidden;
  3353. }
  3354. #u92378_img {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:0px;
  3358. top:0px;
  3359. width:110px;
  3360. height:40px;
  3361. }
  3362. #u92378 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:441px;
  3366. top:158px;
  3367. width:110px;
  3368. height:40px;
  3369. display:flex;
  3370. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:12px;
  3374. color:#333333;
  3375. }
  3376. #u92378 .text {
  3377. position:absolute;
  3378. align-self:center;
  3379. padding:2px 2px 2px 0px;
  3380. box-sizing:border-box;
  3381. width:100%;
  3382. }
  3383. #u92378_text {
  3384. border-width:0px;
  3385. word-wrap:break-word;
  3386. text-transform:none;
  3387. visibility:hidden;
  3388. }
  3389. #u92379_img {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:110px;
  3395. height:40px;
  3396. }
  3397. #u92379 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:551px;
  3401. top:158px;
  3402. width:110px;
  3403. height:40px;
  3404. display:flex;
  3405. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:12px;
  3409. color:#333333;
  3410. }
  3411. #u92379 .text {
  3412. position:absolute;
  3413. align-self:center;
  3414. padding:2px 2px 2px 0px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u92379_text {
  3419. border-width:0px;
  3420. word-wrap:break-word;
  3421. text-transform:none;
  3422. visibility:hidden;
  3423. }
  3424. #u92380_img {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:110px;
  3430. height:40px;
  3431. }
  3432. #u92380 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:661px;
  3436. top:158px;
  3437. width:110px;
  3438. height:40px;
  3439. display:flex;
  3440. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3441. font-weight:400;
  3442. font-style:normal;
  3443. font-size:12px;
  3444. color:#333333;
  3445. }
  3446. #u92380 .text {
  3447. position:absolute;
  3448. align-self:center;
  3449. padding:2px 2px 2px 0px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u92380_text {
  3454. border-width:0px;
  3455. word-wrap:break-word;
  3456. text-transform:none;
  3457. visibility:hidden;
  3458. }
  3459. #u92381_img {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:110px;
  3465. height:40px;
  3466. }
  3467. #u92381 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:771px;
  3471. top:158px;
  3472. width:110px;
  3473. height:40px;
  3474. display:flex;
  3475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3476. font-weight:400;
  3477. font-style:normal;
  3478. font-size:12px;
  3479. color:#333333;
  3480. }
  3481. #u92381 .text {
  3482. position:absolute;
  3483. align-self:center;
  3484. padding:2px 2px 2px 0px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u92381_text {
  3489. border-width:0px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. visibility:hidden;
  3493. }
  3494. #u92382_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:111px;
  3500. height:40px;
  3501. }
  3502. #u92382 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:881px;
  3506. top:158px;
  3507. width:111px;
  3508. height:40px;
  3509. display:flex;
  3510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:12px;
  3514. color:#333333;
  3515. }
  3516. #u92382 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 0px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u92382_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u92383_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:111px;
  3535. height:40px;
  3536. }
  3537. #u92383 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:992px;
  3541. top:158px;
  3542. width:111px;
  3543. height:40px;
  3544. display:flex;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:12px;
  3549. color:#333333;
  3550. }
  3551. #u92383 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:2px 2px 2px 0px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u92383_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. visibility:hidden;
  3563. }
  3564. #u92384_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:119px;
  3570. height:40px;
  3571. }
  3572. #u92384 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:1103px;
  3576. top:158px;
  3577. width:119px;
  3578. height:40px;
  3579. display:flex;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:12px;
  3584. color:#606266;
  3585. }
  3586. #u92384 .text {
  3587. position:absolute;
  3588. align-self:center;
  3589. padding:2px 2px 2px 0px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u92384_text {
  3594. border-width:0px;
  3595. word-wrap:break-word;
  3596. text-transform:none;
  3597. visibility:hidden;
  3598. }
  3599. #u92385_img {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:111px;
  3605. height:40px;
  3606. }
  3607. #u92385 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:198px;
  3612. width:111px;
  3613. height:40px;
  3614. display:flex;
  3615. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3616. font-weight:400;
  3617. font-style:normal;
  3618. font-size:12px;
  3619. color:#333333;
  3620. }
  3621. #u92385 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:2px 2px 2px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u92385_text {
  3629. border-width:0px;
  3630. word-wrap:break-word;
  3631. text-transform:none;
  3632. visibility:hidden;
  3633. }
  3634. #u92386_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:110px;
  3640. height:40px;
  3641. }
  3642. #u92386 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:111px;
  3646. top:198px;
  3647. width:110px;
  3648. height:40px;
  3649. display:flex;
  3650. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:12px;
  3654. color:#333333;
  3655. }
  3656. #u92386 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 0px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u92386_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u92387_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:110px;
  3675. height:40px;
  3676. }
  3677. #u92387 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:221px;
  3681. top:198px;
  3682. width:110px;
  3683. height:40px;
  3684. display:flex;
  3685. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. color:#333333;
  3690. }
  3691. #u92387 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:2px 2px 2px 0px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u92387_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. visibility:hidden;
  3703. }
  3704. #u92388_img {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:110px;
  3710. height:40px;
  3711. }
  3712. #u92388 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:331px;
  3716. top:198px;
  3717. width:110px;
  3718. height:40px;
  3719. display:flex;
  3720. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3721. font-weight:400;
  3722. font-style:normal;
  3723. font-size:12px;
  3724. color:#333333;
  3725. }
  3726. #u92388 .text {
  3727. position:absolute;
  3728. align-self:center;
  3729. padding:2px 2px 2px 0px;
  3730. box-sizing:border-box;
  3731. width:100%;
  3732. }
  3733. #u92388_text {
  3734. border-width:0px;
  3735. word-wrap:break-word;
  3736. text-transform:none;
  3737. visibility:hidden;
  3738. }
  3739. #u92389_img {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:0px;
  3743. top:0px;
  3744. width:110px;
  3745. height:40px;
  3746. }
  3747. #u92389 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:441px;
  3751. top:198px;
  3752. width:110px;
  3753. height:40px;
  3754. display:flex;
  3755. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:12px;
  3759. color:#333333;
  3760. }
  3761. #u92389 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 2px 2px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u92389_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. visibility:hidden;
  3773. }
  3774. #u92390_img {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:110px;
  3780. height:40px;
  3781. }
  3782. #u92390 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:551px;
  3786. top:198px;
  3787. width:110px;
  3788. height:40px;
  3789. display:flex;
  3790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:12px;
  3794. color:#333333;
  3795. }
  3796. #u92390 .text {
  3797. position:absolute;
  3798. align-self:center;
  3799. padding:2px 2px 2px 0px;
  3800. box-sizing:border-box;
  3801. width:100%;
  3802. }
  3803. #u92390_text {
  3804. border-width:0px;
  3805. word-wrap:break-word;
  3806. text-transform:none;
  3807. visibility:hidden;
  3808. }
  3809. #u92391_img {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:110px;
  3815. height:40px;
  3816. }
  3817. #u92391 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:661px;
  3821. top:198px;
  3822. width:110px;
  3823. height:40px;
  3824. display:flex;
  3825. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:12px;
  3829. color:#333333;
  3830. }
  3831. #u92391 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:2px 2px 2px 0px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u92391_text {
  3839. border-width:0px;
  3840. word-wrap:break-word;
  3841. text-transform:none;
  3842. visibility:hidden;
  3843. }
  3844. #u92392_img {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:110px;
  3850. height:40px;
  3851. }
  3852. #u92392 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:771px;
  3856. top:198px;
  3857. width:110px;
  3858. height:40px;
  3859. display:flex;
  3860. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3861. font-weight:400;
  3862. font-style:normal;
  3863. font-size:12px;
  3864. color:#333333;
  3865. }
  3866. #u92392 .text {
  3867. position:absolute;
  3868. align-self:center;
  3869. padding:2px 2px 2px 0px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u92392_text {
  3874. border-width:0px;
  3875. word-wrap:break-word;
  3876. text-transform:none;
  3877. visibility:hidden;
  3878. }
  3879. #u92393_img {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:111px;
  3885. height:40px;
  3886. }
  3887. #u92393 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:881px;
  3891. top:198px;
  3892. width:111px;
  3893. height:40px;
  3894. display:flex;
  3895. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3896. font-weight:400;
  3897. font-style:normal;
  3898. font-size:12px;
  3899. color:#333333;
  3900. }
  3901. #u92393 .text {
  3902. position:absolute;
  3903. align-self:center;
  3904. padding:2px 2px 2px 0px;
  3905. box-sizing:border-box;
  3906. width:100%;
  3907. }
  3908. #u92393_text {
  3909. border-width:0px;
  3910. word-wrap:break-word;
  3911. text-transform:none;
  3912. visibility:hidden;
  3913. }
  3914. #u92394_img {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:111px;
  3920. height:40px;
  3921. }
  3922. #u92394 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:992px;
  3926. top:198px;
  3927. width:111px;
  3928. height:40px;
  3929. display:flex;
  3930. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:12px;
  3934. color:#333333;
  3935. }
  3936. #u92394 .text {
  3937. position:absolute;
  3938. align-self:center;
  3939. padding:2px 2px 2px 0px;
  3940. box-sizing:border-box;
  3941. width:100%;
  3942. }
  3943. #u92394_text {
  3944. border-width:0px;
  3945. word-wrap:break-word;
  3946. text-transform:none;
  3947. visibility:hidden;
  3948. }
  3949. #u92395_img {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:0px;
  3953. top:0px;
  3954. width:119px;
  3955. height:40px;
  3956. }
  3957. #u92395 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:1103px;
  3961. top:198px;
  3962. width:119px;
  3963. height:40px;
  3964. display:flex;
  3965. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:12px;
  3969. color:#606266;
  3970. }
  3971. #u92395 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 2px 2px 0px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u92395_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. visibility:hidden;
  3983. }
  3984. #u92396_img {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:111px;
  3990. height:40px;
  3991. }
  3992. #u92396 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:238px;
  3997. width:111px;
  3998. height:40px;
  3999. display:flex;
  4000. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:12px;
  4004. color:#333333;
  4005. }
  4006. #u92396 .text {
  4007. position:absolute;
  4008. align-self:center;
  4009. padding:2px 2px 2px 0px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u92396_text {
  4014. border-width:0px;
  4015. word-wrap:break-word;
  4016. text-transform:none;
  4017. visibility:hidden;
  4018. }
  4019. #u92397_img {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:110px;
  4025. height:40px;
  4026. }
  4027. #u92397 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:111px;
  4031. top:238px;
  4032. width:110px;
  4033. height:40px;
  4034. display:flex;
  4035. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:12px;
  4039. color:#333333;
  4040. }
  4041. #u92397 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 0px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u92397_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u92398_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:110px;
  4060. height:40px;
  4061. }
  4062. #u92398 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:221px;
  4066. top:238px;
  4067. width:110px;
  4068. height:40px;
  4069. display:flex;
  4070. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4071. font-weight:400;
  4072. font-style:normal;
  4073. font-size:12px;
  4074. color:#333333;
  4075. }
  4076. #u92398 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 0px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u92398_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. visibility:hidden;
  4088. }
  4089. #u92399_img {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:110px;
  4095. height:40px;
  4096. }
  4097. #u92399 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:331px;
  4101. top:238px;
  4102. width:110px;
  4103. height:40px;
  4104. display:flex;
  4105. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:12px;
  4109. color:#333333;
  4110. }
  4111. #u92399 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 0px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u92399_text {
  4119. border-width:0px;
  4120. word-wrap:break-word;
  4121. text-transform:none;
  4122. visibility:hidden;
  4123. }
  4124. #u92400_img {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:110px;
  4130. height:40px;
  4131. }
  4132. #u92400 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:441px;
  4136. top:238px;
  4137. width:110px;
  4138. height:40px;
  4139. display:flex;
  4140. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. color:#333333;
  4145. }
  4146. #u92400 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u92400_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u92401_img {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:110px;
  4165. height:40px;
  4166. }
  4167. #u92401 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:551px;
  4171. top:238px;
  4172. width:110px;
  4173. height:40px;
  4174. display:flex;
  4175. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:12px;
  4179. color:#333333;
  4180. }
  4181. #u92401 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 2px 2px 0px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u92401_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. visibility:hidden;
  4193. }
  4194. #u92402_img {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:110px;
  4200. height:40px;
  4201. }
  4202. #u92402 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:661px;
  4206. top:238px;
  4207. width:110px;
  4208. height:40px;
  4209. display:flex;
  4210. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:12px;
  4214. color:#333333;
  4215. }
  4216. #u92402 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 0px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u92402_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u92403_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:110px;
  4235. height:40px;
  4236. }
  4237. #u92403 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:771px;
  4241. top:238px;
  4242. width:110px;
  4243. height:40px;
  4244. display:flex;
  4245. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. font-size:12px;
  4249. color:#333333;
  4250. }
  4251. #u92403 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 0px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u92403_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u92404_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:111px;
  4270. height:40px;
  4271. }
  4272. #u92404 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:881px;
  4276. top:238px;
  4277. width:111px;
  4278. height:40px;
  4279. display:flex;
  4280. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:12px;
  4284. color:#333333;
  4285. }
  4286. #u92404 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:2px 2px 2px 0px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u92404_text {
  4294. border-width:0px;
  4295. word-wrap:break-word;
  4296. text-transform:none;
  4297. visibility:hidden;
  4298. }
  4299. #u92405_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:111px;
  4305. height:40px;
  4306. }
  4307. #u92405 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:992px;
  4311. top:238px;
  4312. width:111px;
  4313. height:40px;
  4314. display:flex;
  4315. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:12px;
  4319. color:#333333;
  4320. }
  4321. #u92405 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u92405_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u92406_img {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:119px;
  4340. height:40px;
  4341. }
  4342. #u92406 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:1103px;
  4346. top:238px;
  4347. width:119px;
  4348. height:40px;
  4349. display:flex;
  4350. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:12px;
  4354. color:#606266;
  4355. }
  4356. #u92406 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 2px 2px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u92406_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. visibility:hidden;
  4368. }
  4369. #u92407 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:0px;
  4375. height:0px;
  4376. }
  4377. #u92408_div {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:140px;
  4383. height:30px;
  4384. background:inherit;
  4385. background-color:rgba(255, 255, 255, 1);
  4386. box-sizing:border-box;
  4387. border-width:1px;
  4388. border-style:solid;
  4389. border-color:rgba(201, 201, 201, 1);
  4390. border-radius:4px;
  4391. -moz-box-shadow:none;
  4392. -webkit-box-shadow:none;
  4393. box-shadow:none;
  4394. font-family:'Microsoft YaHei', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:14px;
  4398. color:#CCCCCC;
  4399. text-align:left;
  4400. }
  4401. #u92408 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:799px;
  4405. top:101px;
  4406. width:140px;
  4407. height:30px;
  4408. display:flex;
  4409. font-family:'Microsoft YaHei', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:14px;
  4413. color:#CCCCCC;
  4414. text-align:left;
  4415. }
  4416. #u92408 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 8px 2px 8px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u92408_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u92409_input {
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:127px;
  4434. height:25px;
  4435. padding:2px 2px 2px 2px;
  4436. font-family:'Microsoft YaHei', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:10px;
  4440. letter-spacing:normal;
  4441. color:#000000;
  4442. vertical-align:none;
  4443. text-align:left;
  4444. text-transform:none;
  4445. background-color:transparent;
  4446. border-color:transparent;
  4447. }
  4448. #u92409_input.disabled {
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:127px;
  4453. height:25px;
  4454. padding:2px 2px 2px 2px;
  4455. font-family:'Microsoft YaHei', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:10px;
  4459. letter-spacing:normal;
  4460. color:#000000;
  4461. vertical-align:none;
  4462. text-align:left;
  4463. text-transform:none;
  4464. background-color:transparent;
  4465. border-color:transparent;
  4466. }
  4467. #u92409_div {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:0px;
  4471. top:0px;
  4472. width:127px;
  4473. height:25px;
  4474. background:inherit;
  4475. background-color:rgba(255, 255, 255, 1);
  4476. border:none;
  4477. border-radius:0px;
  4478. -moz-box-shadow:none;
  4479. -webkit-box-shadow:none;
  4480. box-shadow:none;
  4481. font-family:'Microsoft YaHei', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:10px;
  4485. }
  4486. #u92409 {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:807px;
  4490. top:102px;
  4491. width:127px;
  4492. height:25px;
  4493. display:flex;
  4494. font-family:'Microsoft YaHei', sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. font-size:10px;
  4498. }
  4499. #u92409 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:2px 2px 2px 2px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u92409_div.disabled {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:127px;
  4512. height:25px;
  4513. background:inherit;
  4514. background-color:rgba(240, 240, 240, 1);
  4515. border:none;
  4516. border-radius:0px;
  4517. -moz-box-shadow:none;
  4518. -webkit-box-shadow:none;
  4519. box-shadow:none;
  4520. font-family:'Microsoft YaHei', sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:10px;
  4524. }
  4525. #u92409.disabled {
  4526. }
  4527. #u92410 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:0px;
  4533. height:0px;
  4534. }
  4535. #u92411_div {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:140px;
  4541. height:30px;
  4542. background:inherit;
  4543. background-color:rgba(255, 255, 255, 1);
  4544. box-sizing:border-box;
  4545. border-width:1px;
  4546. border-style:solid;
  4547. border-color:rgba(215, 215, 215, 1);
  4548. border-radius:4px;
  4549. -moz-box-shadow:none;
  4550. -webkit-box-shadow:none;
  4551. box-shadow:none;
  4552. font-size:11px;
  4553. }
  4554. #u92411 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:499px;
  4558. top:101px;
  4559. width:140px;
  4560. height:30px;
  4561. display:flex;
  4562. font-size:11px;
  4563. }
  4564. #u92411 .text {
  4565. position:absolute;
  4566. align-self:center;
  4567. padding:2px 2px 2px 2px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u92411_text {
  4572. border-width:0px;
  4573. word-wrap:break-word;
  4574. text-transform:none;
  4575. visibility:hidden;
  4576. }
  4577. #u92412_input {
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:120px;
  4582. height:23px;
  4583. padding:2px 2px 2px 2px;
  4584. font-family:'ArialMT', 'Arial', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:11px;
  4588. letter-spacing:normal;
  4589. color:#AAAAAA;
  4590. vertical-align:none;
  4591. text-align:left;
  4592. text-transform:none;
  4593. background-color:transparent;
  4594. border-color:transparent;
  4595. }
  4596. #u92412_input.disabled {
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:120px;
  4601. height:23px;
  4602. padding:2px 2px 2px 2px;
  4603. font-family:'ArialMT', 'Arial', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:11px;
  4607. letter-spacing:normal;
  4608. color:#AAAAAA;
  4609. vertical-align:none;
  4610. text-align:left;
  4611. text-transform:none;
  4612. background-color:transparent;
  4613. border-color:transparent;
  4614. }
  4615. #u92412_div {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:120px;
  4621. height:23px;
  4622. background:inherit;
  4623. background-color:rgba(255, 255, 255, 1);
  4624. border:none;
  4625. border-radius:0px;
  4626. -moz-box-shadow:none;
  4627. -webkit-box-shadow:none;
  4628. box-shadow:none;
  4629. font-size:11px;
  4630. color:#AAAAAA;
  4631. }
  4632. #u92412 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:506px;
  4636. top:103px;
  4637. width:120px;
  4638. height:23px;
  4639. display:flex;
  4640. font-size:11px;
  4641. color:#AAAAAA;
  4642. }
  4643. #u92412 .text {
  4644. position:absolute;
  4645. align-self:flex-start;
  4646. padding:2px 2px 2px 2px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u92412_div.disabled {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:120px;
  4656. height:23px;
  4657. background:inherit;
  4658. background-color:rgba(240, 240, 240, 1);
  4659. border:none;
  4660. border-radius:0px;
  4661. -moz-box-shadow:none;
  4662. -webkit-box-shadow:none;
  4663. box-shadow:none;
  4664. font-size:11px;
  4665. color:#AAAAAA;
  4666. }
  4667. #u92412.disabled {
  4668. }
  4669. .u92412_input_option {
  4670. font-size:11px;
  4671. }
  4672. #u92413 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:0px;
  4678. height:0px;
  4679. }
  4680. #u92414_div {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:140px;
  4686. height:30px;
  4687. background:inherit;
  4688. background-color:rgba(255, 255, 255, 1);
  4689. box-sizing:border-box;
  4690. border-width:1px;
  4691. border-style:solid;
  4692. border-color:rgba(215, 215, 215, 1);
  4693. border-radius:4px;
  4694. -moz-box-shadow:none;
  4695. -webkit-box-shadow:none;
  4696. box-shadow:none;
  4697. font-size:11px;
  4698. }
  4699. #u92414 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:649px;
  4703. top:101px;
  4704. width:140px;
  4705. height:30px;
  4706. display:flex;
  4707. font-size:11px;
  4708. }
  4709. #u92414 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u92414_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u92415_input {
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:120px;
  4727. height:23px;
  4728. padding:2px 2px 2px 2px;
  4729. font-family:'ArialMT', 'Arial', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:11px;
  4733. letter-spacing:normal;
  4734. color:#AAAAAA;
  4735. vertical-align:none;
  4736. text-align:left;
  4737. text-transform:none;
  4738. background-color:transparent;
  4739. border-color:transparent;
  4740. }
  4741. #u92415_input.disabled {
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:120px;
  4746. height:23px;
  4747. padding:2px 2px 2px 2px;
  4748. font-family:'ArialMT', 'Arial', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:11px;
  4752. letter-spacing:normal;
  4753. color:#AAAAAA;
  4754. vertical-align:none;
  4755. text-align:left;
  4756. text-transform:none;
  4757. background-color:transparent;
  4758. border-color:transparent;
  4759. }
  4760. #u92415_div {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:120px;
  4766. height:23px;
  4767. background:inherit;
  4768. background-color:rgba(255, 255, 255, 1);
  4769. border:none;
  4770. border-radius:0px;
  4771. -moz-box-shadow:none;
  4772. -webkit-box-shadow:none;
  4773. box-shadow:none;
  4774. font-size:11px;
  4775. color:#AAAAAA;
  4776. }
  4777. #u92415 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:656px;
  4781. top:103px;
  4782. width:120px;
  4783. height:23px;
  4784. display:flex;
  4785. font-size:11px;
  4786. color:#AAAAAA;
  4787. }
  4788. #u92415 .text {
  4789. position:absolute;
  4790. align-self:flex-start;
  4791. padding:2px 2px 2px 2px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u92415_div.disabled {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:120px;
  4801. height:23px;
  4802. background:inherit;
  4803. background-color:rgba(240, 240, 240, 1);
  4804. border:none;
  4805. border-radius:0px;
  4806. -moz-box-shadow:none;
  4807. -webkit-box-shadow:none;
  4808. box-shadow:none;
  4809. font-size:11px;
  4810. color:#AAAAAA;
  4811. }
  4812. #u92415.disabled {
  4813. }
  4814. .u92415_input_option {
  4815. font-size:11px;
  4816. }
  4817. #u92416 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:0px;
  4823. height:0px;
  4824. }
  4825. #u92417_div {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:140px;
  4831. height:30px;
  4832. background:inherit;
  4833. background-color:rgba(255, 255, 255, 1);
  4834. box-sizing:border-box;
  4835. border-width:1px;
  4836. border-style:solid;
  4837. border-color:rgba(201, 201, 201, 1);
  4838. border-radius:4px;
  4839. -moz-box-shadow:none;
  4840. -webkit-box-shadow:none;
  4841. box-shadow:none;
  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. #u92417 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:949px;
  4853. top:101px;
  4854. width:140px;
  4855. height:30px;
  4856. display:flex;
  4857. font-family:'Microsoft YaHei', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:14px;
  4861. color:#CCCCCC;
  4862. text-align:left;
  4863. }
  4864. #u92417 .text {
  4865. position:absolute;
  4866. align-self:center;
  4867. padding:2px 8px 2px 8px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u92417_text {
  4872. border-width:0px;
  4873. word-wrap:break-word;
  4874. text-transform:none;
  4875. visibility:hidden;
  4876. }
  4877. #u92418_input {
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:127px;
  4882. height:25px;
  4883. padding:2px 2px 2px 2px;
  4884. font-family:'Microsoft YaHei', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:10px;
  4888. letter-spacing:normal;
  4889. color:#000000;
  4890. vertical-align:none;
  4891. text-align:left;
  4892. text-transform:none;
  4893. background-color:transparent;
  4894. border-color:transparent;
  4895. }
  4896. #u92418_input.disabled {
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:127px;
  4901. height:25px;
  4902. padding:2px 2px 2px 2px;
  4903. font-family:'Microsoft YaHei', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:10px;
  4907. letter-spacing:normal;
  4908. color:#000000;
  4909. vertical-align:none;
  4910. text-align:left;
  4911. text-transform:none;
  4912. background-color:transparent;
  4913. border-color:transparent;
  4914. }
  4915. #u92418_div {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:127px;
  4921. height:25px;
  4922. background:inherit;
  4923. background-color:rgba(255, 255, 255, 1);
  4924. border:none;
  4925. border-radius:0px;
  4926. -moz-box-shadow:none;
  4927. -webkit-box-shadow:none;
  4928. box-shadow:none;
  4929. font-family:'Microsoft YaHei', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:10px;
  4933. }
  4934. #u92418 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:957px;
  4938. top:102px;
  4939. width:127px;
  4940. height:25px;
  4941. display:flex;
  4942. font-family:'Microsoft YaHei', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:10px;
  4946. }
  4947. #u92418 .text {
  4948. position:absolute;
  4949. align-self:center;
  4950. padding:2px 2px 2px 2px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u92418_div.disabled {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:127px;
  4960. height:25px;
  4961. background:inherit;
  4962. background-color:rgba(240, 240, 240, 1);
  4963. border:none;
  4964. border-radius:0px;
  4965. -moz-box-shadow:none;
  4966. -webkit-box-shadow:none;
  4967. box-shadow:none;
  4968. font-family:'Microsoft YaHei', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:10px;
  4972. }
  4973. #u92418.disabled {
  4974. }
  4975. #u92419_div {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:59px;
  4981. height:30px;
  4982. background:inherit;
  4983. background-color:rgba(41, 143, 255, 1);
  4984. border:none;
  4985. border-radius:4px;
  4986. -moz-box-shadow:none;
  4987. -webkit-box-shadow:none;
  4988. box-shadow:none;
  4989. font-family:'Microsoft YaHei', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:14px;
  4993. color:#FFFFFF;
  4994. }
  4995. #u92419 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:499px;
  4999. top:141px;
  5000. width:59px;
  5001. height:30px;
  5002. display:flex;
  5003. font-family:'Microsoft YaHei', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:14px;
  5007. color:#FFFFFF;
  5008. }
  5009. #u92419 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:5px 15px 5px 15px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u92419_text {
  5017. border-width:0px;
  5018. white-space:nowrap;
  5019. text-transform:none;
  5020. }
  5021. #u92420_div {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:55px;
  5027. height:30px;
  5028. background:inherit;
  5029. background-color:rgba(255, 255, 255, 1);
  5030. box-sizing:border-box;
  5031. border-width:1px;
  5032. border-style:solid;
  5033. border-color:rgba(170, 170, 170, 1);
  5034. border-radius:4px;
  5035. -moz-box-shadow:none;
  5036. -webkit-box-shadow:none;
  5037. box-shadow:none;
  5038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:12px;
  5042. color:#555555;
  5043. }
  5044. #u92420 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:568px;
  5048. top:141px;
  5049. width:55px;
  5050. height:30px;
  5051. display:flex;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:12px;
  5056. color:#555555;
  5057. }
  5058. #u92420 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:5px 15px 5px 15px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u92420_text {
  5066. border-width:0px;
  5067. white-space:nowrap;
  5068. text-transform:none;
  5069. }
  5070. #u92421_div {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:109px;
  5076. height:50px;
  5077. background:inherit;
  5078. background-color:rgba(255, 255, 255, 0);
  5079. border:none;
  5080. border-left:0px;
  5081. border-top:0px;
  5082. border-right:0px;
  5083. border-radius:0px;
  5084. border-bottom-right-radius:0px;
  5085. border-bottom-left-radius:0px;
  5086. -moz-box-shadow:none;
  5087. -webkit-box-shadow:none;
  5088. box-shadow:none;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:18px;
  5093. }
  5094. #u92421 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:348px;
  5098. top:50px;
  5099. width:109px;
  5100. height:50px;
  5101. display:flex;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:18px;
  5106. }
  5107. #u92421 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:0px 0px 0px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u92421_text {
  5115. border-width:0px;
  5116. white-space:nowrap;
  5117. text-transform:none;
  5118. }
  5119. #u92422 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:0px;
  5125. height:0px;
  5126. }
  5127. #u92423_div {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:0px;
  5131. top:0px;
  5132. width:140px;
  5133. height:30px;
  5134. background:inherit;
  5135. background-color:rgba(255, 255, 255, 1);
  5136. box-sizing:border-box;
  5137. border-width:1px;
  5138. border-style:solid;
  5139. border-color:rgba(215, 215, 215, 1);
  5140. border-radius:4px;
  5141. -moz-box-shadow:none;
  5142. -webkit-box-shadow:none;
  5143. box-shadow:none;
  5144. font-size:11px;
  5145. }
  5146. #u92423 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:349px;
  5150. top:101px;
  5151. width:140px;
  5152. height:30px;
  5153. display:flex;
  5154. font-size:11px;
  5155. }
  5156. #u92423 .text {
  5157. position:absolute;
  5158. align-self:center;
  5159. padding:2px 2px 2px 2px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u92423_text {
  5164. border-width:0px;
  5165. word-wrap:break-word;
  5166. text-transform:none;
  5167. visibility:hidden;
  5168. }
  5169. #u92424_input {
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:120px;
  5174. height:23px;
  5175. padding:2px 2px 2px 2px;
  5176. font-family:'ArialMT', 'Arial', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:11px;
  5180. letter-spacing:normal;
  5181. color:#AAAAAA;
  5182. vertical-align:none;
  5183. text-align:left;
  5184. text-transform:none;
  5185. background-color:transparent;
  5186. border-color:transparent;
  5187. }
  5188. #u92424_input.disabled {
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:120px;
  5193. height:23px;
  5194. padding:2px 2px 2px 2px;
  5195. font-family:'ArialMT', 'Arial', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:11px;
  5199. letter-spacing:normal;
  5200. color:#AAAAAA;
  5201. vertical-align:none;
  5202. text-align:left;
  5203. text-transform:none;
  5204. background-color:transparent;
  5205. border-color:transparent;
  5206. }
  5207. #u92424_div {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:120px;
  5213. height:23px;
  5214. background:inherit;
  5215. background-color:rgba(255, 255, 255, 1);
  5216. border:none;
  5217. border-radius:0px;
  5218. -moz-box-shadow:none;
  5219. -webkit-box-shadow:none;
  5220. box-shadow:none;
  5221. font-size:11px;
  5222. color:#AAAAAA;
  5223. }
  5224. #u92424 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:356px;
  5228. top:103px;
  5229. width:120px;
  5230. height:23px;
  5231. display:flex;
  5232. font-size:11px;
  5233. color:#AAAAAA;
  5234. }
  5235. #u92424 .text {
  5236. position:absolute;
  5237. align-self:flex-start;
  5238. padding:2px 2px 2px 2px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u92424_div.disabled {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:120px;
  5248. height:23px;
  5249. background:inherit;
  5250. background-color:rgba(240, 240, 240, 1);
  5251. border:none;
  5252. border-radius:0px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-size:11px;
  5257. color:#AAAAAA;
  5258. }
  5259. #u92424.disabled {
  5260. }
  5261. .u92424_input_option {
  5262. font-size:11px;
  5263. }
  5264. #u92425 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:0px;
  5270. height:0px;
  5271. }
  5272. #u92426_div {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:140px;
  5278. height:30px;
  5279. background:inherit;
  5280. background-color:rgba(255, 255, 255, 1);
  5281. box-sizing:border-box;
  5282. border-width:1px;
  5283. border-style:solid;
  5284. border-color:rgba(215, 215, 215, 1);
  5285. border-radius:4px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. font-size:11px;
  5290. }
  5291. #u92426 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:349px;
  5295. top:141px;
  5296. width:140px;
  5297. height:30px;
  5298. display:flex;
  5299. font-size:11px;
  5300. }
  5301. #u92426 .text {
  5302. position:absolute;
  5303. align-self:center;
  5304. padding:2px 2px 2px 2px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u92426_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. visibility:hidden;
  5313. }
  5314. #u92427_input {
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:120px;
  5319. height:23px;
  5320. padding:2px 2px 2px 2px;
  5321. font-family:'ArialMT', 'Arial', sans-serif;
  5322. font-weight:400;
  5323. font-style:normal;
  5324. font-size:11px;
  5325. letter-spacing:normal;
  5326. color:#AAAAAA;
  5327. vertical-align:none;
  5328. text-align:left;
  5329. text-transform:none;
  5330. background-color:transparent;
  5331. border-color:transparent;
  5332. }
  5333. #u92427_input.disabled {
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:120px;
  5338. height:23px;
  5339. padding:2px 2px 2px 2px;
  5340. font-family:'ArialMT', 'Arial', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:11px;
  5344. letter-spacing:normal;
  5345. color:#AAAAAA;
  5346. vertical-align:none;
  5347. text-align:left;
  5348. text-transform:none;
  5349. background-color:transparent;
  5350. border-color:transparent;
  5351. }
  5352. #u92427_div {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:120px;
  5358. height:23px;
  5359. background:inherit;
  5360. background-color:rgba(255, 255, 255, 1);
  5361. border:none;
  5362. border-radius:0px;
  5363. -moz-box-shadow:none;
  5364. -webkit-box-shadow:none;
  5365. box-shadow:none;
  5366. font-size:11px;
  5367. color:#AAAAAA;
  5368. }
  5369. #u92427 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:356px;
  5373. top:143px;
  5374. width:120px;
  5375. height:23px;
  5376. display:flex;
  5377. font-size:11px;
  5378. color:#AAAAAA;
  5379. }
  5380. #u92427 .text {
  5381. position:absolute;
  5382. align-self:flex-start;
  5383. padding:2px 2px 2px 2px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u92427_div.disabled {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:120px;
  5393. height:23px;
  5394. background:inherit;
  5395. background-color:rgba(240, 240, 240, 1);
  5396. border:none;
  5397. border-radius:0px;
  5398. -moz-box-shadow:none;
  5399. -webkit-box-shadow:none;
  5400. box-shadow:none;
  5401. font-size:11px;
  5402. color:#AAAAAA;
  5403. }
  5404. #u92427.disabled {
  5405. }
  5406. .u92427_input_option {
  5407. font-size:11px;
  5408. }
  5409. #u92428 {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:0px;
  5415. height:0px;
  5416. }
  5417. #u92429_div {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:140px;
  5423. height:30px;
  5424. background:inherit;
  5425. background-color:rgba(255, 255, 255, 1);
  5426. box-sizing:border-box;
  5427. border-width:1px;
  5428. border-style:solid;
  5429. border-color:rgba(215, 215, 215, 1);
  5430. border-radius:4px;
  5431. -moz-box-shadow:none;
  5432. -webkit-box-shadow:none;
  5433. box-shadow:none;
  5434. font-size:11px;
  5435. }
  5436. #u92429 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:1249px;
  5440. top:100px;
  5441. width:140px;
  5442. height:30px;
  5443. display:flex;
  5444. font-size:11px;
  5445. }
  5446. #u92429 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:2px 2px 2px 2px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u92429_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. visibility:hidden;
  5458. }
  5459. #u92430_input {
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:120px;
  5464. height:23px;
  5465. padding:2px 2px 2px 2px;
  5466. font-family:'ArialMT', 'Arial', sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. font-size:11px;
  5470. letter-spacing:normal;
  5471. color:#AAAAAA;
  5472. vertical-align:none;
  5473. text-align:left;
  5474. text-transform:none;
  5475. background-color:transparent;
  5476. border-color:transparent;
  5477. }
  5478. #u92430_input.disabled {
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:120px;
  5483. height:23px;
  5484. padding:2px 2px 2px 2px;
  5485. font-family:'ArialMT', 'Arial', sans-serif;
  5486. font-weight:400;
  5487. font-style:normal;
  5488. font-size:11px;
  5489. letter-spacing:normal;
  5490. color:#AAAAAA;
  5491. vertical-align:none;
  5492. text-align:left;
  5493. text-transform:none;
  5494. background-color:transparent;
  5495. border-color:transparent;
  5496. }
  5497. #u92430_div {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:120px;
  5503. height:23px;
  5504. background:inherit;
  5505. background-color:rgba(255, 255, 255, 1);
  5506. border:none;
  5507. border-radius:0px;
  5508. -moz-box-shadow:none;
  5509. -webkit-box-shadow:none;
  5510. box-shadow:none;
  5511. font-size:11px;
  5512. color:#AAAAAA;
  5513. }
  5514. #u92430 {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:1256px;
  5518. top:102px;
  5519. width:120px;
  5520. height:23px;
  5521. display:flex;
  5522. font-size:11px;
  5523. color:#AAAAAA;
  5524. }
  5525. #u92430 .text {
  5526. position:absolute;
  5527. align-self:flex-start;
  5528. padding:2px 2px 2px 2px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u92430_div.disabled {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:120px;
  5538. height:23px;
  5539. background:inherit;
  5540. background-color:rgba(240, 240, 240, 1);
  5541. border:none;
  5542. border-radius:0px;
  5543. -moz-box-shadow:none;
  5544. -webkit-box-shadow:none;
  5545. box-shadow:none;
  5546. font-size:11px;
  5547. color:#AAAAAA;
  5548. }
  5549. #u92430.disabled {
  5550. }
  5551. .u92430_input_option {
  5552. font-size:11px;
  5553. }
  5554. #u92431 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:0px;
  5560. height:0px;
  5561. }
  5562. #u92432_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:140px;
  5568. height:30px;
  5569. background:inherit;
  5570. background-color:rgba(255, 255, 255, 1);
  5571. box-sizing:border-box;
  5572. border-width:1px;
  5573. border-style:solid;
  5574. border-color:rgba(215, 215, 215, 1);
  5575. border-radius:4px;
  5576. -moz-box-shadow:none;
  5577. -webkit-box-shadow:none;
  5578. box-shadow:none;
  5579. font-size:11px;
  5580. }
  5581. #u92432 {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:1399px;
  5585. top:100px;
  5586. width:140px;
  5587. height:30px;
  5588. display:flex;
  5589. font-size:11px;
  5590. }
  5591. #u92432 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:2px 2px 2px 2px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u92432_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. visibility:hidden;
  5603. }
  5604. #u92433_input {
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:120px;
  5609. height:23px;
  5610. padding:2px 2px 2px 2px;
  5611. font-family:'ArialMT', 'Arial', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. font-size:11px;
  5615. letter-spacing:normal;
  5616. color:#AAAAAA;
  5617. vertical-align:none;
  5618. text-align:left;
  5619. text-transform:none;
  5620. background-color:transparent;
  5621. border-color:transparent;
  5622. }
  5623. #u92433_input.disabled {
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:120px;
  5628. height:23px;
  5629. padding:2px 2px 2px 2px;
  5630. font-family:'ArialMT', 'Arial', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:11px;
  5634. letter-spacing:normal;
  5635. color:#AAAAAA;
  5636. vertical-align:none;
  5637. text-align:left;
  5638. text-transform:none;
  5639. background-color:transparent;
  5640. border-color:transparent;
  5641. }
  5642. #u92433_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:120px;
  5648. height:23px;
  5649. background:inherit;
  5650. background-color:rgba(255, 255, 255, 1);
  5651. border:none;
  5652. border-radius:0px;
  5653. -moz-box-shadow:none;
  5654. -webkit-box-shadow:none;
  5655. box-shadow:none;
  5656. font-size:11px;
  5657. color:#AAAAAA;
  5658. }
  5659. #u92433 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:1406px;
  5663. top:102px;
  5664. width:120px;
  5665. height:23px;
  5666. display:flex;
  5667. font-size:11px;
  5668. color:#AAAAAA;
  5669. }
  5670. #u92433 .text {
  5671. position:absolute;
  5672. align-self:flex-start;
  5673. padding:2px 2px 2px 2px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u92433_div.disabled {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:120px;
  5683. height:23px;
  5684. background:inherit;
  5685. background-color:rgba(240, 240, 240, 1);
  5686. border:none;
  5687. border-radius:0px;
  5688. -moz-box-shadow:none;
  5689. -webkit-box-shadow:none;
  5690. box-shadow:none;
  5691. font-size:11px;
  5692. color:#AAAAAA;
  5693. }
  5694. #u92433.disabled {
  5695. }
  5696. .u92433_input_option {
  5697. font-size:11px;
  5698. }
  5699. #u92434_div {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:55px;
  5705. height:30px;
  5706. background:inherit;
  5707. background-color:rgba(255, 255, 255, 1);
  5708. box-sizing:border-box;
  5709. border-width:1px;
  5710. border-style:solid;
  5711. border-color:rgba(170, 170, 170, 1);
  5712. border-radius:4px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5717. font-weight:400;
  5718. font-style:normal;
  5719. font-size:12px;
  5720. color:#555555;
  5721. }
  5722. #u92434 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:349px;
  5726. top:191px;
  5727. width:55px;
  5728. height:30px;
  5729. display:flex;
  5730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:12px;
  5734. color:#555555;
  5735. }
  5736. #u92434 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:5px 15px 5px 15px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u92434_text {
  5744. border-width:0px;
  5745. white-space:nowrap;
  5746. text-transform:none;
  5747. }
  5748. #u92435 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:0px;
  5754. height:0px;
  5755. }
  5756. #u92436_div {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:140px;
  5762. height:30px;
  5763. background:inherit;
  5764. background-color:rgba(255, 255, 255, 1);
  5765. box-sizing:border-box;
  5766. border-width:1px;
  5767. border-style:solid;
  5768. border-color:rgba(201, 201, 201, 1);
  5769. border-radius:4px;
  5770. -moz-box-shadow:none;
  5771. -webkit-box-shadow:none;
  5772. box-shadow:none;
  5773. font-family:'Microsoft YaHei', sans-serif;
  5774. font-weight:400;
  5775. font-style:normal;
  5776. font-size:14px;
  5777. color:#CCCCCC;
  5778. text-align:left;
  5779. }
  5780. #u92436 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:1099px;
  5784. top:101px;
  5785. width:140px;
  5786. height:30px;
  5787. display:flex;
  5788. font-family:'Microsoft YaHei', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:14px;
  5792. color:#CCCCCC;
  5793. text-align:left;
  5794. }
  5795. #u92436 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 8px 2px 8px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u92436_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. visibility:hidden;
  5807. }
  5808. #u92437_input {
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:127px;
  5813. height:25px;
  5814. padding:2px 2px 2px 2px;
  5815. font-family:'Microsoft YaHei', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:10px;
  5819. letter-spacing:normal;
  5820. color:#000000;
  5821. vertical-align:none;
  5822. text-align:left;
  5823. text-transform:none;
  5824. background-color:transparent;
  5825. border-color:transparent;
  5826. }
  5827. #u92437_input.disabled {
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:127px;
  5832. height:25px;
  5833. padding:2px 2px 2px 2px;
  5834. font-family:'Microsoft YaHei', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:10px;
  5838. letter-spacing:normal;
  5839. color:#000000;
  5840. vertical-align:none;
  5841. text-align:left;
  5842. text-transform:none;
  5843. background-color:transparent;
  5844. border-color:transparent;
  5845. }
  5846. #u92437_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:127px;
  5852. height:25px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 1);
  5855. border:none;
  5856. border-radius:0px;
  5857. -moz-box-shadow:none;
  5858. -webkit-box-shadow:none;
  5859. box-shadow:none;
  5860. font-family:'Microsoft YaHei', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. font-size:10px;
  5864. }
  5865. #u92437 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:1107px;
  5869. top:102px;
  5870. width:127px;
  5871. height:25px;
  5872. display:flex;
  5873. font-family:'Microsoft YaHei', sans-serif;
  5874. font-weight:400;
  5875. font-style:normal;
  5876. font-size:10px;
  5877. }
  5878. #u92437 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:2px 2px 2px 2px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u92437_div.disabled {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:127px;
  5891. height:25px;
  5892. background:inherit;
  5893. background-color:rgba(240, 240, 240, 1);
  5894. border:none;
  5895. border-radius:0px;
  5896. -moz-box-shadow:none;
  5897. -webkit-box-shadow:none;
  5898. box-shadow:none;
  5899. font-family:'Microsoft YaHei', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:10px;
  5903. }
  5904. #u92437.disabled {
  5905. }
  5906. #u92438_div {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:200px;
  5912. height:1180px;
  5913. background:inherit;
  5914. background-color:rgba(255, 255, 255, 1);
  5915. border:none;
  5916. border-radius:0px;
  5917. -moz-box-shadow:none;
  5918. -webkit-box-shadow:none;
  5919. box-shadow:none;
  5920. }
  5921. #u92438 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:120px;
  5925. top:50px;
  5926. width:200px;
  5927. height:1180px;
  5928. display:flex;
  5929. }
  5930. #u92438 .text {
  5931. position:absolute;
  5932. align-self:center;
  5933. padding:2px 2px 2px 2px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u92438_text {
  5938. border-width:0px;
  5939. word-wrap:break-word;
  5940. text-transform:none;
  5941. visibility:hidden;
  5942. }
  5943. #u92439_div {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:200px;
  5949. height:60px;
  5950. background:inherit;
  5951. background-color:rgba(224, 231, 247, 1);
  5952. border:none;
  5953. border-radius:0px;
  5954. -moz-box-shadow:none;
  5955. -webkit-box-shadow:none;
  5956. box-shadow:none;
  5957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5958. font-weight:500;
  5959. font-style:normal;
  5960. font-size:18px;
  5961. }
  5962. #u92439 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:120px;
  5966. top:50px;
  5967. width:200px;
  5968. height:60px;
  5969. display:flex;
  5970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5971. font-weight:500;
  5972. font-style:normal;
  5973. font-size:18px;
  5974. }
  5975. #u92439 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:0px 0px 0px 20px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u92439_text {
  5983. border-width:0px;
  5984. word-wrap:break-word;
  5985. text-transform:none;
  5986. }
  5987. #u92440 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:0px;
  5993. height:0px;
  5994. }
  5995. #u92441_img {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:201px;
  6001. height:2px;
  6002. }
  6003. #u92441 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:120px;
  6007. top:210px;
  6008. width:200px;
  6009. height:1px;
  6010. display:flex;
  6011. }
  6012. #u92441 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 2px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u92441_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u92442_div {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:81px;
  6031. height:19px;
  6032. background:inherit;
  6033. background-color:rgba(255, 255, 255, 0);
  6034. border:none;
  6035. border-radius:0px;
  6036. -moz-box-shadow:none;
  6037. -webkit-box-shadow:none;
  6038. box-shadow:none;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:16px;
  6043. }
  6044. #u92442 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:147px;
  6048. top:352px;
  6049. width:81px;
  6050. height:19px;
  6051. display:flex;
  6052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:16px;
  6056. }
  6057. #u92442 .text {
  6058. position:absolute;
  6059. align-self:flex-start;
  6060. padding:0px 0px 0px 0px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u92442_text {
  6065. border-width:0px;
  6066. white-space:nowrap;
  6067. text-transform:none;
  6068. }
  6069. #u92443_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:73px;
  6075. height:17px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 0);
  6078. border:none;
  6079. border-radius:0px;
  6080. -moz-box-shadow:none;
  6081. -webkit-box-shadow:none;
  6082. box-shadow:none;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:12px;
  6087. color:#AAAAAA;
  6088. }
  6089. #u92443 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:147px;
  6093. top:231px;
  6094. width:73px;
  6095. height:17px;
  6096. display:flex;
  6097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:12px;
  6101. color:#AAAAAA;
  6102. }
  6103. #u92443 .text {
  6104. position:absolute;
  6105. align-self:flex-start;
  6106. padding:0px 0px 0px 0px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u92443_text {
  6111. border-width:0px;
  6112. white-space:nowrap;
  6113. text-transform:none;
  6114. }
  6115. #u92444_div {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:81px;
  6121. height:22px;
  6122. background:inherit;
  6123. background-color:rgba(255, 255, 255, 0);
  6124. border:none;
  6125. border-radius:0px;
  6126. -moz-box-shadow:none;
  6127. -webkit-box-shadow:none;
  6128. box-shadow:none;
  6129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:16px;
  6133. }
  6134. #u92444 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:147px;
  6138. top:268px;
  6139. width:81px;
  6140. height:22px;
  6141. display:flex;
  6142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:16px;
  6146. }
  6147. #u92444 .text {
  6148. position:absolute;
  6149. align-self:flex-start;
  6150. padding:0px 0px 0px 0px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u92444_text {
  6155. border-width:0px;
  6156. white-space:nowrap;
  6157. text-transform:none;
  6158. }
  6159. #u92445_div {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:81px;
  6165. height:22px;
  6166. background:inherit;
  6167. background-color:rgba(255, 255, 255, 0);
  6168. border:none;
  6169. border-radius:0px;
  6170. -moz-box-shadow:none;
  6171. -webkit-box-shadow:none;
  6172. box-shadow:none;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:16px;
  6177. }
  6178. #u92445 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:147px;
  6182. top:310px;
  6183. width:81px;
  6184. height:22px;
  6185. display:flex;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:16px;
  6190. }
  6191. #u92445 .text {
  6192. position:absolute;
  6193. align-self:flex-start;
  6194. padding:0px 0px 0px 0px;
  6195. box-sizing:border-box;
  6196. width:100%;
  6197. }
  6198. #u92445_text {
  6199. border-width:0px;
  6200. white-space:nowrap;
  6201. text-transform:none;
  6202. }
  6203. #u92446_div {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:97px;
  6209. height:22px;
  6210. background:inherit;
  6211. background-color:rgba(255, 255, 255, 0);
  6212. border:none;
  6213. border-radius:0px;
  6214. -moz-box-shadow:none;
  6215. -webkit-box-shadow:none;
  6216. box-shadow:none;
  6217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6218. font-weight:400;
  6219. font-style:normal;
  6220. font-size:16px;
  6221. }
  6222. #u92446 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:147px;
  6226. top:166px;
  6227. width:97px;
  6228. height:22px;
  6229. display:flex;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:16px;
  6234. }
  6235. #u92446 .text {
  6236. position:absolute;
  6237. align-self:flex-start;
  6238. padding:0px 0px 0px 0px;
  6239. box-sizing:border-box;
  6240. width:100%;
  6241. }
  6242. #u92446_text {
  6243. border-width:0px;
  6244. white-space:nowrap;
  6245. text-transform:none;
  6246. }
  6247. #u92447_div {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:0px;
  6251. top:0px;
  6252. width:49px;
  6253. height:17px;
  6254. background:inherit;
  6255. background-color:rgba(255, 255, 255, 0);
  6256. border:none;
  6257. border-radius:0px;
  6258. -moz-box-shadow:none;
  6259. -webkit-box-shadow:none;
  6260. box-shadow:none;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:12px;
  6265. color:#AAAAAA;
  6266. }
  6267. #u92447 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:147px;
  6271. top:130px;
  6272. width:49px;
  6273. height:17px;
  6274. display:flex;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:12px;
  6279. color:#AAAAAA;
  6280. }
  6281. #u92447 .text {
  6282. position:absolute;
  6283. align-self:flex-start;
  6284. padding:0px 0px 0px 0px;
  6285. box-sizing:border-box;
  6286. width:100%;
  6287. }
  6288. #u92447_text {
  6289. border-width:0px;
  6290. white-space:nowrap;
  6291. text-transform:none;
  6292. }