styles.css 208 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2452px;
  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. #u9504_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u9504 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u9504 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u9504_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u9505_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u9505 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u9505 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u9505_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u9506 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u9507_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u9507 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u9507 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u9507_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u9508_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u9508 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u9508 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u9508_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u9509_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u9509 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u9509 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u9509_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u9510_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u9510 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u9510 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u9510_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u9511 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u9512_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u9512 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u9512 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u9512_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u9513_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u9513 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u9513 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u9513_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u9514 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u9515_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u9515 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u9515 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u9515_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u9516_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u9516 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u9516 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u9516_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u9517 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u9518_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u9518 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u9518 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u9518_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u9519_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u9519 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u9519 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u9519_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u9520 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u9521_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u9521 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u9521 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u9521_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u9522_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u9522 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u9522 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u9522_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u9523 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u9524_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u9524 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u9524 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u9524_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u9525_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u9525 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u9525 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u9525_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u9526 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u9527_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u9527 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u9527 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u9527_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u9528_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u9528 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u9528 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u9528_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u9529 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u9530_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u9530 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u9530 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u9530_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u9531_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u9531 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u9531 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u9531_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u9532 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u9533_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u9533 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u9533 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u9533_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u9534_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u9534 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u9534 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u9534_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u9535 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u9536_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u9536 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u9536 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u9536_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u9537_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u9537 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u9537 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u9537_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u9538 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u9539_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u9539 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u9539 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u9539_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u9540_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u9540 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u9540 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u9540_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u9541_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u9541_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u9541_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u9541 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u9541 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u9541_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u9541.disabled {
  1184. }
  1185. .u9541_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u9542_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u9542 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u9542 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u9542_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u9543_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u9543 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u9543 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u9543_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u9544_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u9544 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u9544 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u9544_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u9545 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u9546_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u9546 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u9546 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u9546_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u9547_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u9547 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u9547 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u9547_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u9548 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u9549_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u9549 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u9549 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u9549_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u9550_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u9550 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u9550 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u9550_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u9551 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u9552_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u9552 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u9552 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u9552_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u9553_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u9553 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u9553 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u9553_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u9554 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u9555_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u9555 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u9555 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u9555_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u9556_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u9556 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u9556 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u9556_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u9557 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u9558_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u9558 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u9558 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u9558_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u9559_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u9559 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u9559 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u9559_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u9560_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1259px;
  1720. height:1180px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1726. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1727. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1728. }
  1729. #u9560 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:330px;
  1733. top:50px;
  1734. width:1259px;
  1735. height:1180px;
  1736. display:flex;
  1737. }
  1738. #u9560 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u9560_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u9561_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:200px;
  1757. height:1180px;
  1758. background:inherit;
  1759. background-color:rgba(242, 242, 242, 1);
  1760. border:none;
  1761. border-radius:4px;
  1762. -moz-box-shadow:none;
  1763. -webkit-box-shadow:none;
  1764. box-shadow:none;
  1765. }
  1766. #u9561 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:330px;
  1770. top:50px;
  1771. width:200px;
  1772. height:1180px;
  1773. display:flex;
  1774. }
  1775. #u9561 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:2px 2px 2px 2px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u9561_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. visibility:hidden;
  1787. }
  1788. #u9562_div {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:73px;
  1794. height:30px;
  1795. background:inherit;
  1796. background-color:rgba(255, 255, 255, 0);
  1797. border:none;
  1798. border-radius:0px;
  1799. -moz-box-shadow:none;
  1800. -webkit-box-shadow:none;
  1801. box-shadow:none;
  1802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1803. font-weight:400;
  1804. font-style:normal;
  1805. font-size:18px;
  1806. color:#000000;
  1807. line-height:30px;
  1808. }
  1809. #u9562 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:350px;
  1813. top:70px;
  1814. width:73px;
  1815. height:30px;
  1816. display:flex;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:18px;
  1821. color:#000000;
  1822. line-height:30px;
  1823. }
  1824. #u9562 .text {
  1825. position:absolute;
  1826. align-self:flex-start;
  1827. padding:0px 0px 0px 0px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u9562_text {
  1832. border-width:0px;
  1833. white-space:nowrap;
  1834. text-transform:none;
  1835. }
  1836. #u9563 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:0px;
  1842. height:0px;
  1843. }
  1844. #u9564_div {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:200px;
  1850. height:60px;
  1851. background:inherit;
  1852. background-color:rgba(0, 153, 255, 0.0980392156862745);
  1853. border:none;
  1854. border-radius:4px;
  1855. -moz-box-shadow:none;
  1856. -webkit-box-shadow:none;
  1857. box-shadow:none;
  1858. font-family:'Microsoft YaHei', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. color:#CCCCCC;
  1863. text-align:left;
  1864. }
  1865. #u9564 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:330px;
  1869. top:120px;
  1870. width:200px;
  1871. height:60px;
  1872. display:flex;
  1873. font-family:'Microsoft YaHei', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. color:#CCCCCC;
  1878. text-align:left;
  1879. }
  1880. #u9564 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 8px 2px 8px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u9564_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. visibility:hidden;
  1892. }
  1893. #u9565_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:113px;
  1899. height:20px;
  1900. background:inherit;
  1901. background-color:rgba(51, 51, 51, 0);
  1902. border:none;
  1903. border-radius:4px;
  1904. -moz-box-shadow:none;
  1905. -webkit-box-shadow:none;
  1906. box-shadow:none;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:14px;
  1911. text-align:left;
  1912. }
  1913. #u9565 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:353px;
  1917. top:140px;
  1918. width:113px;
  1919. height:20px;
  1920. display:flex;
  1921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1922. font-weight:400;
  1923. font-style:normal;
  1924. font-size:14px;
  1925. text-align:left;
  1926. }
  1927. #u9565 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:0px 0px 0px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u9565_text {
  1935. border-width:0px;
  1936. white-space:nowrap;
  1937. text-transform:none;
  1938. }
  1939. #u9566 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:0px;
  1945. height:0px;
  1946. }
  1947. #u9567_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:200px;
  1953. height:60px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 0.0980392156862745);
  1956. border:none;
  1957. border-radius:4px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-family:'Microsoft YaHei', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:14px;
  1965. color:#CCCCCC;
  1966. text-align:left;
  1967. }
  1968. #u9567 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:330px;
  1972. top:180px;
  1973. width:200px;
  1974. height:60px;
  1975. display:flex;
  1976. font-family:'Microsoft YaHei', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:14px;
  1980. color:#CCCCCC;
  1981. text-align:left;
  1982. }
  1983. #u9567 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 8px 2px 8px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u9567_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. visibility:hidden;
  1995. }
  1996. #u9568_div {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:127px;
  2002. height:20px;
  2003. background:inherit;
  2004. background-color:rgba(51, 51, 51, 0);
  2005. border:none;
  2006. border-radius:4px;
  2007. -moz-box-shadow:none;
  2008. -webkit-box-shadow:none;
  2009. box-shadow:none;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:14px;
  2014. text-align:left;
  2015. }
  2016. #u9568 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:353px;
  2020. top:200px;
  2021. width:127px;
  2022. height:20px;
  2023. display:flex;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:14px;
  2028. text-align:left;
  2029. }
  2030. #u9568 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:0px 0px 0px 0px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u9568_text {
  2038. border-width:0px;
  2039. white-space:nowrap;
  2040. text-transform:none;
  2041. }
  2042. #u9569 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:0px;
  2048. height:0px;
  2049. }
  2050. #u9570_div {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:200px;
  2056. height:60px;
  2057. background:inherit;
  2058. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2059. border:none;
  2060. border-radius:4px;
  2061. -moz-box-shadow:none;
  2062. -webkit-box-shadow:none;
  2063. box-shadow:none;
  2064. font-family:'Microsoft YaHei', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:14px;
  2068. color:#CCCCCC;
  2069. text-align:left;
  2070. }
  2071. #u9570 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:330px;
  2075. top:240px;
  2076. width:200px;
  2077. height:60px;
  2078. display:flex;
  2079. font-family:'Microsoft YaHei', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. color:#CCCCCC;
  2084. text-align:left;
  2085. }
  2086. #u9570 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 8px 2px 8px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u9570_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u9571_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:57px;
  2105. height:20px;
  2106. background:inherit;
  2107. background-color:rgba(51, 51, 51, 0);
  2108. border:none;
  2109. border-radius:4px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:14px;
  2117. text-align:left;
  2118. }
  2119. #u9571 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:353px;
  2123. top:260px;
  2124. width:57px;
  2125. height:20px;
  2126. display:flex;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:14px;
  2131. text-align:left;
  2132. }
  2133. #u9571 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:0px 0px 0px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u9571_text {
  2141. border-width:0px;
  2142. white-space:nowrap;
  2143. text-transform:none;
  2144. }
  2145. #u9572_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:73px;
  2151. height:50px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 0);
  2154. border:none;
  2155. border-left:0px;
  2156. border-top:0px;
  2157. border-right:0px;
  2158. border-radius:0px;
  2159. border-bottom-right-radius:0px;
  2160. border-bottom-left-radius:0px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2165. font-weight:500;
  2166. font-style:normal;
  2167. font-size:18px;
  2168. }
  2169. #u9572 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:555px;
  2173. top:50px;
  2174. width:73px;
  2175. height:50px;
  2176. display:flex;
  2177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2178. font-weight:500;
  2179. font-style:normal;
  2180. font-size:18px;
  2181. }
  2182. #u9572 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:0px 0px 0px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u9572_text {
  2190. border-width:0px;
  2191. white-space:nowrap;
  2192. text-transform:none;
  2193. }
  2194. #u9573 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:0px;
  2200. height:0px;
  2201. }
  2202. #u9574_div {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:200px;
  2208. height:60px;
  2209. background:inherit;
  2210. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2211. border:none;
  2212. border-radius:4px;
  2213. -moz-box-shadow:none;
  2214. -webkit-box-shadow:none;
  2215. box-shadow:none;
  2216. font-family:'Microsoft YaHei', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:14px;
  2220. color:#CCCCCC;
  2221. text-align:left;
  2222. }
  2223. #u9574 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:330px;
  2227. top:300px;
  2228. width:200px;
  2229. height:60px;
  2230. display:flex;
  2231. font-family:'Microsoft YaHei', sans-serif;
  2232. font-weight:400;
  2233. font-style:normal;
  2234. font-size:14px;
  2235. color:#CCCCCC;
  2236. text-align:left;
  2237. }
  2238. #u9574 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 8px 2px 8px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u9574_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. visibility:hidden;
  2250. }
  2251. #u9575_div {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:43px;
  2257. height:20px;
  2258. background:inherit;
  2259. background-color:rgba(51, 51, 51, 0);
  2260. border:none;
  2261. border-radius:4px;
  2262. -moz-box-shadow:none;
  2263. -webkit-box-shadow:none;
  2264. box-shadow:none;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:14px;
  2269. text-align:left;
  2270. }
  2271. #u9575 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:353px;
  2275. top:320px;
  2276. width:43px;
  2277. height:20px;
  2278. display:flex;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. text-align:left;
  2284. }
  2285. #u9575 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:0px 0px 0px 0px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u9575_text {
  2293. border-width:0px;
  2294. white-space:nowrap;
  2295. text-transform:none;
  2296. }
  2297. #u9576 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:0px;
  2303. height:0px;
  2304. }
  2305. #u9577_div {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:1012px;
  2311. height:60px;
  2312. background:inherit;
  2313. background-color:rgba(242, 242, 242, 1);
  2314. border:none;
  2315. border-radius:6px;
  2316. -moz-box-shadow:none;
  2317. -webkit-box-shadow:none;
  2318. box-shadow:none;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:18px;
  2323. color:#555555;
  2324. text-align:left;
  2325. line-height:40px;
  2326. }
  2327. #u9577 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:555px;
  2331. top:110px;
  2332. width:1012px;
  2333. height:60px;
  2334. display:flex;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:18px;
  2339. color:#555555;
  2340. text-align:left;
  2341. line-height:40px;
  2342. }
  2343. #u9577 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:2px 2px 2px 30px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u9577_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. visibility:hidden;
  2355. }
  2356. #u9578_div {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:235px;
  2362. height:25px;
  2363. background:inherit;
  2364. background-color:rgba(255, 255, 255, 0);
  2365. border:none;
  2366. border-radius:0px;
  2367. -moz-box-shadow:none;
  2368. -webkit-box-shadow:none;
  2369. box-shadow:none;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-style:normal;
  2372. font-size:18px;
  2373. }
  2374. #u9578 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:585px;
  2378. top:130px;
  2379. width:235px;
  2380. height:25px;
  2381. display:flex;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-style:normal;
  2384. font-size:18px;
  2385. }
  2386. #u9578 .text {
  2387. position:absolute;
  2388. align-self:flex-start;
  2389. padding:0px 0px 0px 0px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u9578_text {
  2394. border-width:0px;
  2395. white-space:nowrap;
  2396. text-transform:none;
  2397. }
  2398. #u9579_div {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:289px;
  2404. height:25px;
  2405. background:inherit;
  2406. background-color:rgba(255, 255, 255, 0);
  2407. border:none;
  2408. border-radius:0px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-style:normal;
  2414. font-size:18px;
  2415. }
  2416. #u9579 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:1029px;
  2420. top:130px;
  2421. width:289px;
  2422. height:25px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-style:normal;
  2426. font-size:18px;
  2427. }
  2428. #u9579 .text {
  2429. position:absolute;
  2430. align-self:flex-start;
  2431. padding:0px 0px 0px 0px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u9579_text {
  2436. border-width:0px;
  2437. white-space:nowrap;
  2438. text-transform:none;
  2439. }
  2440. #u9580 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:0px;
  2446. height:0px;
  2447. }
  2448. #u9581_div {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:800px;
  2454. height:1200px;
  2455. background:inherit;
  2456. background-color:rgba(255, 255, 255, 1);
  2457. box-sizing:border-box;
  2458. border-width:1px;
  2459. border-style:solid;
  2460. border-color:rgba(215, 215, 215, 1);
  2461. border-radius:0px;
  2462. -moz-box-shadow:none;
  2463. -webkit-box-shadow:none;
  2464. box-shadow:none;
  2465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2466. font-weight:400;
  2467. font-style:normal;
  2468. font-size:14px;
  2469. color:#AAAAAA;
  2470. text-align:center;
  2471. line-height:30px;
  2472. }
  2473. #u9581 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:1012px;
  2477. top:1366px;
  2478. width:800px;
  2479. height:1200px;
  2480. display:flex;
  2481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2482. font-weight:400;
  2483. font-style:normal;
  2484. font-size:14px;
  2485. color:#AAAAAA;
  2486. text-align:center;
  2487. line-height:30px;
  2488. }
  2489. #u9581 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:5px 10px 5px 10px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u9581_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. visibility:hidden;
  2501. }
  2502. #u9582_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:736px;
  2508. height:60px;
  2509. background:inherit;
  2510. background-color:rgba(242, 242, 242, 1);
  2511. border:none;
  2512. border-radius:4px;
  2513. -moz-box-shadow:none;
  2514. -webkit-box-shadow:none;
  2515. box-shadow:none;
  2516. font-size:11px;
  2517. }
  2518. #u9582 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:1032px;
  2522. top:1429px;
  2523. width:736px;
  2524. height:60px;
  2525. display:flex;
  2526. font-size:11px;
  2527. }
  2528. #u9582 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 2px 2px 2px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u9582_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u9583_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:119px;
  2547. height:35px;
  2548. background:inherit;
  2549. background-color:rgba(255, 255, 255, 0);
  2550. border:none;
  2551. border-top:0px;
  2552. border-right:0px;
  2553. border-bottom:0px;
  2554. border-radius:0px;
  2555. border-top-left-radius:0px;
  2556. border-bottom-left-radius:0px;
  2557. -moz-box-shadow:none;
  2558. -webkit-box-shadow:none;
  2559. box-shadow:none;
  2560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2561. font-weight:500;
  2562. font-style:normal;
  2563. font-size:18px;
  2564. }
  2565. #u9583 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:1032px;
  2569. top:1384px;
  2570. width:119px;
  2571. height:35px;
  2572. display:flex;
  2573. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2574. font-weight:500;
  2575. font-style:normal;
  2576. font-size:18px;
  2577. }
  2578. #u9583 .text {
  2579. position:absolute;
  2580. align-self:center;
  2581. padding:5px 10px 5px 0px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u9583_text {
  2586. border-width:0px;
  2587. white-space:nowrap;
  2588. text-transform:none;
  2589. }
  2590. #u9584_div {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:740px;
  2596. height:40px;
  2597. background:inherit;
  2598. background-color:rgba(255, 255, 128, 0.0980392156862745);
  2599. border:none;
  2600. border-radius:6px;
  2601. -moz-box-shadow:none;
  2602. -webkit-box-shadow:none;
  2603. box-shadow:none;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. color:#F59A23;
  2609. text-align:left;
  2610. }
  2611. #u9584 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:1032px;
  2615. top:1509px;
  2616. width:740px;
  2617. height:40px;
  2618. display:flex;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:12px;
  2623. color:#F59A23;
  2624. text-align:left;
  2625. }
  2626. #u9584 .text {
  2627. position:absolute;
  2628. align-self:center;
  2629. padding:2px 2px 2px 10px;
  2630. box-sizing:border-box;
  2631. width:100%;
  2632. }
  2633. #u9584_text {
  2634. border-width:0px;
  2635. word-wrap:break-word;
  2636. text-transform:none;
  2637. }
  2638. #u9585_div {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:78px;
  2644. height:30px;
  2645. background:inherit;
  2646. background-color:rgba(255, 255, 255, 0);
  2647. border:none;
  2648. border-top:0px;
  2649. border-right:0px;
  2650. border-bottom:0px;
  2651. border-radius:0px;
  2652. border-top-left-radius:0px;
  2653. border-bottom-left-radius:0px;
  2654. -moz-box-shadow:none;
  2655. -webkit-box-shadow:none;
  2656. box-shadow:none;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:14px;
  2661. color:#7F7F7F;
  2662. }
  2663. #u9585 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:1065px;
  2667. top:1572px;
  2668. width:78px;
  2669. height:30px;
  2670. display:flex;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:14px;
  2675. color:#7F7F7F;
  2676. }
  2677. #u9585 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:5px 0px 5px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u9585_text {
  2685. border-width:0px;
  2686. white-space:nowrap;
  2687. text-transform:none;
  2688. }
  2689. #u9586 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:0px;
  2695. height:0px;
  2696. }
  2697. #u9587 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:0px;
  2703. height:0px;
  2704. }
  2705. #u9588_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:552px;
  2711. height:100px;
  2712. background:inherit;
  2713. background-color:rgba(255, 255, 255, 1);
  2714. box-sizing:border-box;
  2715. border-width:1px;
  2716. border-style:solid;
  2717. border-color:rgba(215, 215, 215, 1);
  2718. border-radius:4px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. font-size:11px;
  2723. }
  2724. #u9588 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:1154px;
  2728. top:1817px;
  2729. width:552px;
  2730. height:100px;
  2731. display:flex;
  2732. font-size:11px;
  2733. }
  2734. #u9588 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 2px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u9588_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u9589_input {
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:515px;
  2752. height:80px;
  2753. padding:2px 2px 2px 2px;
  2754. font-family:'ArialMT', 'Arial', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:13px;
  2758. letter-spacing:normal;
  2759. color:#000000;
  2760. vertical-align:none;
  2761. text-align:left;
  2762. text-transform:none;
  2763. background-color:transparent;
  2764. border-color:transparent;
  2765. resize:none;
  2766. }
  2767. #u9589_input.disabled {
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:515px;
  2772. height:80px;
  2773. padding:2px 2px 2px 2px;
  2774. font-family:'ArialMT', 'Arial', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:13px;
  2778. letter-spacing:normal;
  2779. color:#000000;
  2780. vertical-align:none;
  2781. text-align:left;
  2782. text-transform:none;
  2783. background-color:transparent;
  2784. border-color:transparent;
  2785. resize:none;
  2786. }
  2787. #u9589_div {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:515px;
  2793. height:80px;
  2794. background:inherit;
  2795. background-color:rgba(255, 255, 255, 1);
  2796. border:none;
  2797. border-radius:0px;
  2798. -moz-box-shadow:none;
  2799. -webkit-box-shadow:none;
  2800. box-shadow:none;
  2801. }
  2802. #u9589 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:1173px;
  2806. top:1827px;
  2807. width:515px;
  2808. height:80px;
  2809. display:flex;
  2810. }
  2811. #u9589 .text {
  2812. position:absolute;
  2813. align-self:flex-start;
  2814. padding:2px 2px 2px 2px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u9589_div.disabled {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:515px;
  2824. height:80px;
  2825. background:inherit;
  2826. background-color:rgba(240, 240, 240, 1);
  2827. border:none;
  2828. border-radius:0px;
  2829. -moz-box-shadow:none;
  2830. -webkit-box-shadow:none;
  2831. box-shadow:none;
  2832. }
  2833. #u9589.disabled {
  2834. }
  2835. #u9590_div {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:56px;
  2841. height:14px;
  2842. background:inherit;
  2843. background-color:rgba(242, 242, 242, 1);
  2844. border:none;
  2845. border-radius:19px;
  2846. -moz-box-shadow:none;
  2847. -webkit-box-shadow:none;
  2848. box-shadow:none;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:10px;
  2853. color:#7F7F7F;
  2854. }
  2855. #u9590 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:1643px;
  2859. top:1898px;
  2860. width:56px;
  2861. height:14px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:10px;
  2867. color:#7F7F7F;
  2868. }
  2869. #u9590 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:0px 0px 0px 0px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u9590_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. }
  2881. #u9591_div {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:64px;
  2887. height:30px;
  2888. background:inherit;
  2889. background-color:rgba(255, 255, 255, 0);
  2890. border:none;
  2891. border-top:0px;
  2892. border-right:0px;
  2893. border-bottom:0px;
  2894. border-radius:0px;
  2895. border-top-left-radius:0px;
  2896. border-bottom-left-radius:0px;
  2897. -moz-box-shadow:none;
  2898. -webkit-box-shadow:none;
  2899. box-shadow:none;
  2900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:14px;
  2904. color:#7F7F7F;
  2905. }
  2906. #u9591 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:1065px;
  2910. top:1622px;
  2911. width:64px;
  2912. height:30px;
  2913. display:flex;
  2914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:14px;
  2918. color:#7F7F7F;
  2919. }
  2920. #u9591 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:5px 0px 5px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u9591_text {
  2928. border-width:0px;
  2929. white-space:nowrap;
  2930. text-transform:none;
  2931. }
  2932. #u9592 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:0px;
  2938. height:0px;
  2939. }
  2940. #u9593_div {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:553px;
  2946. height:40px;
  2947. background:inherit;
  2948. background-color:rgba(255, 255, 255, 1);
  2949. box-sizing:border-box;
  2950. border-width:1px;
  2951. border-style:solid;
  2952. border-color:rgba(215, 215, 215, 1);
  2953. border-radius:4px;
  2954. -moz-box-shadow:none;
  2955. -webkit-box-shadow:none;
  2956. box-shadow:none;
  2957. font-size:11px;
  2958. }
  2959. #u9593 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:1153px;
  2963. top:1617px;
  2964. width:553px;
  2965. height:40px;
  2966. display:flex;
  2967. font-size:11px;
  2968. }
  2969. #u9593 .text {
  2970. position:absolute;
  2971. align-self:center;
  2972. padding:2px 2px 2px 2px;
  2973. box-sizing:border-box;
  2974. width:100%;
  2975. }
  2976. #u9593_text {
  2977. border-width:0px;
  2978. word-wrap:break-word;
  2979. text-transform:none;
  2980. visibility:hidden;
  2981. }
  2982. #u9594_input {
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:502px;
  2987. height:25px;
  2988. padding:2px 2px 2px 2px;
  2989. font-family:'ArialMT', 'Arial', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:13px;
  2993. letter-spacing:normal;
  2994. color:#000000;
  2995. vertical-align:none;
  2996. text-align:left;
  2997. text-transform:none;
  2998. background-color:transparent;
  2999. border-color:transparent;
  3000. }
  3001. #u9594_input.disabled {
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:502px;
  3006. height:25px;
  3007. padding:2px 2px 2px 2px;
  3008. font-family:'ArialMT', 'Arial', sans-serif;
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:13px;
  3012. letter-spacing:normal;
  3013. color:#000000;
  3014. vertical-align:none;
  3015. text-align:left;
  3016. text-transform:none;
  3017. background-color:transparent;
  3018. border-color:transparent;
  3019. }
  3020. #u9594_div {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:502px;
  3026. height:25px;
  3027. background:inherit;
  3028. background-color:rgba(255, 255, 255, 1);
  3029. border:none;
  3030. border-radius:0px;
  3031. -moz-box-shadow:none;
  3032. -webkit-box-shadow:none;
  3033. box-shadow:none;
  3034. }
  3035. #u9594 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:1178px;
  3039. top:1625px;
  3040. width:502px;
  3041. height:25px;
  3042. display:flex;
  3043. }
  3044. #u9594 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 2px 2px 2px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u9594_div.disabled {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:502px;
  3057. height:25px;
  3058. background:inherit;
  3059. background-color:rgba(240, 240, 240, 1);
  3060. border:none;
  3061. border-radius:0px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. }
  3066. #u9594.disabled {
  3067. }
  3068. #u9595 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:0px;
  3074. height:0px;
  3075. }
  3076. #u9596_div {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:800px;
  3082. height:50px;
  3083. background:inherit;
  3084. background-color:rgba(255, 255, 255, 1);
  3085. box-sizing:border-box;
  3086. border-width:1px;
  3087. border-style:solid;
  3088. border-color:rgba(215, 215, 215, 1);
  3089. border-radius:0px;
  3090. -moz-box-shadow:none;
  3091. -webkit-box-shadow:none;
  3092. box-shadow:none;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:14px;
  3097. color:#AAAAAA;
  3098. text-align:center;
  3099. line-height:30px;
  3100. }
  3101. #u9596 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:1012px;
  3105. top:2516px;
  3106. width:800px;
  3107. height:50px;
  3108. display:flex;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:14px;
  3113. color:#AAAAAA;
  3114. text-align:center;
  3115. line-height:30px;
  3116. }
  3117. #u9596 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:5px 10px 5px 10px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u9596_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u9597_div {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:80px;
  3136. height:30px;
  3137. background:inherit;
  3138. background-color:rgba(24, 144, 255, 1);
  3139. border:none;
  3140. border-radius:4px;
  3141. -moz-box-shadow:none;
  3142. -webkit-box-shadow:none;
  3143. box-shadow:none;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:14px;
  3148. color:#FFFFFF;
  3149. }
  3150. #u9597 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:1712px;
  3154. top:2526px;
  3155. width:80px;
  3156. height:30px;
  3157. display:flex;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:14px;
  3162. color:#FFFFFF;
  3163. }
  3164. #u9597 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 2px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u9597_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. }
  3176. #u9598_div {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:80px;
  3182. height:30px;
  3183. background:inherit;
  3184. background-color:rgba(255, 255, 255, 1);
  3185. box-sizing:border-box;
  3186. border-width:1px;
  3187. border-style:solid;
  3188. border-color:rgba(170, 170, 170, 1);
  3189. border-radius:4px;
  3190. -moz-box-shadow:none;
  3191. -webkit-box-shadow:none;
  3192. box-shadow:none;
  3193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:14px;
  3197. }
  3198. #u9598 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:1612px;
  3202. top:2526px;
  3203. width:80px;
  3204. height:30px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. }
  3211. #u9598 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u9598_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. }
  3223. #u9599_div {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:71px;
  3229. height:30px;
  3230. background:inherit;
  3231. background-color:rgba(255, 255, 255, 0);
  3232. border:none;
  3233. border-top:0px;
  3234. border-right:0px;
  3235. border-bottom:0px;
  3236. border-radius:0px;
  3237. border-top-left-radius:0px;
  3238. border-bottom-left-radius:0px;
  3239. -moz-box-shadow:none;
  3240. -webkit-box-shadow:none;
  3241. box-shadow:none;
  3242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:14px;
  3246. color:#7F7F7F;
  3247. }
  3248. #u9599 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:1053px;
  3252. top:1445px;
  3253. width:71px;
  3254. height:30px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:14px;
  3260. color:#7F7F7F;
  3261. }
  3262. #u9599 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:5px 0px 5px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u9599_text {
  3270. border-width:0px;
  3271. white-space:nowrap;
  3272. text-transform:none;
  3273. }
  3274. #u9600_div {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:155px;
  3280. height:30px;
  3281. background:inherit;
  3282. background-color:rgba(255, 255, 255, 0);
  3283. border:none;
  3284. border-top:0px;
  3285. border-right:0px;
  3286. border-bottom:0px;
  3287. border-radius:0px;
  3288. border-top-left-radius:0px;
  3289. border-bottom-left-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:14px;
  3297. }
  3298. #u9600 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:1132px;
  3302. top:1445px;
  3303. width:155px;
  3304. height:30px;
  3305. display:flex;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:14px;
  3310. }
  3311. #u9600 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:5px 0px 5px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u9600_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u9601_div {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:71px;
  3329. height:30px;
  3330. background:inherit;
  3331. background-color:rgba(255, 255, 255, 0);
  3332. border:none;
  3333. border-top:0px;
  3334. border-right:0px;
  3335. border-bottom:0px;
  3336. border-radius:0px;
  3337. border-top-left-radius:0px;
  3338. border-bottom-left-radius:0px;
  3339. -moz-box-shadow:none;
  3340. -webkit-box-shadow:none;
  3341. box-shadow:none;
  3342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:14px;
  3346. color:#7F7F7F;
  3347. }
  3348. #u9601 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:1456px;
  3352. top:1445px;
  3353. width:71px;
  3354. height:30px;
  3355. display:flex;
  3356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:14px;
  3360. color:#7F7F7F;
  3361. }
  3362. #u9601 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:5px 0px 5px 0px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u9601_text {
  3370. border-width:0px;
  3371. white-space:nowrap;
  3372. text-transform:none;
  3373. }
  3374. #u9602_div {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:57px;
  3380. height:30px;
  3381. background:inherit;
  3382. background-color:rgba(255, 255, 255, 0);
  3383. border:none;
  3384. border-top:0px;
  3385. border-right:0px;
  3386. border-bottom:0px;
  3387. border-radius:0px;
  3388. border-top-left-radius:0px;
  3389. border-bottom-left-radius:0px;
  3390. -moz-box-shadow:none;
  3391. -webkit-box-shadow:none;
  3392. box-shadow:none;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:14px;
  3397. }
  3398. #u9602 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:1535px;
  3402. top:1445px;
  3403. width:57px;
  3404. height:30px;
  3405. display:flex;
  3406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:14px;
  3410. }
  3411. #u9602 .text {
  3412. position:absolute;
  3413. align-self:center;
  3414. padding:5px 0px 5px 0px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u9602_text {
  3419. border-width:0px;
  3420. white-space:nowrap;
  3421. text-transform:none;
  3422. }
  3423. #u9603 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:0px;
  3429. height:0px;
  3430. }
  3431. #u9604_div {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:555px;
  3437. height:40px;
  3438. background:inherit;
  3439. background-color:rgba(255, 255, 255, 1);
  3440. box-sizing:border-box;
  3441. border-width:1px;
  3442. border-style:solid;
  3443. border-color:rgba(215, 215, 215, 1);
  3444. border-radius:4px;
  3445. -moz-box-shadow:none;
  3446. -webkit-box-shadow:none;
  3447. box-shadow:none;
  3448. font-size:11px;
  3449. }
  3450. #u9604 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:1152px;
  3454. top:1567px;
  3455. width:555px;
  3456. height:40px;
  3457. display:flex;
  3458. font-size:11px;
  3459. }
  3460. #u9604 .text {
  3461. position:absolute;
  3462. align-self:center;
  3463. padding:2px 2px 2px 2px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u9604_text {
  3468. border-width:0px;
  3469. word-wrap:break-word;
  3470. text-transform:none;
  3471. visibility:hidden;
  3472. }
  3473. #u9605_input {
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:533px;
  3478. height:31px;
  3479. padding:2px 2px 2px 2px;
  3480. font-family:'ArialMT', 'Arial', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:11px;
  3484. letter-spacing:normal;
  3485. color:#AAAAAA;
  3486. vertical-align:none;
  3487. text-align:left;
  3488. text-transform:none;
  3489. background-color:transparent;
  3490. border-color:transparent;
  3491. }
  3492. #u9605_input.disabled {
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:533px;
  3497. height:31px;
  3498. padding:2px 2px 2px 2px;
  3499. font-family:'ArialMT', 'Arial', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:11px;
  3503. letter-spacing:normal;
  3504. color:#AAAAAA;
  3505. vertical-align:none;
  3506. text-align:left;
  3507. text-transform:none;
  3508. background-color:transparent;
  3509. border-color:transparent;
  3510. }
  3511. #u9605_div {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:533px;
  3517. height:31px;
  3518. background:inherit;
  3519. background-color:rgba(255, 255, 255, 1);
  3520. border:none;
  3521. border-radius:0px;
  3522. -moz-box-shadow:none;
  3523. -webkit-box-shadow:none;
  3524. box-shadow:none;
  3525. font-size:11px;
  3526. color:#AAAAAA;
  3527. }
  3528. #u9605 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:1163px;
  3532. top:1570px;
  3533. width:533px;
  3534. height:31px;
  3535. display:flex;
  3536. font-size:11px;
  3537. color:#AAAAAA;
  3538. }
  3539. #u9605 .text {
  3540. position:absolute;
  3541. align-self:flex-start;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u9605_div.disabled {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:533px;
  3552. height:31px;
  3553. background:inherit;
  3554. background-color:rgba(240, 240, 240, 1);
  3555. border:none;
  3556. border-radius:0px;
  3557. -moz-box-shadow:none;
  3558. -webkit-box-shadow:none;
  3559. box-shadow:none;
  3560. font-size:11px;
  3561. color:#AAAAAA;
  3562. }
  3563. #u9605.disabled {
  3564. }
  3565. .u9605_input_option {
  3566. font-size:11px;
  3567. }
  3568. #u9606_div {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:49px;
  3574. height:27px;
  3575. background:inherit;
  3576. background-color:rgba(255, 255, 255, 0);
  3577. border:none;
  3578. border-top:0px;
  3579. border-right:0px;
  3580. border-bottom:0px;
  3581. border-radius:0px;
  3582. border-top-left-radius:0px;
  3583. border-bottom-left-radius:0px;
  3584. -moz-box-shadow:none;
  3585. -webkit-box-shadow:none;
  3586. box-shadow:none;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:12px;
  3591. color:#1890FF;
  3592. }
  3593. #u9606 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:1719px;
  3597. top:1574px;
  3598. width:49px;
  3599. height:27px;
  3600. display:flex;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:12px;
  3605. color:#1890FF;
  3606. }
  3607. #u9606 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:5px 0px 5px 0px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u9606_text {
  3615. border-width:0px;
  3616. white-space:nowrap;
  3617. text-transform:none;
  3618. }
  3619. #u9607_div {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:78px;
  3625. height:30px;
  3626. background:inherit;
  3627. background-color:rgba(255, 255, 255, 0);
  3628. border:none;
  3629. border-top:0px;
  3630. border-right:0px;
  3631. border-bottom:0px;
  3632. border-radius:0px;
  3633. border-top-left-radius:0px;
  3634. border-bottom-left-radius:0px;
  3635. -moz-box-shadow:none;
  3636. -webkit-box-shadow:none;
  3637. box-shadow:none;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:14px;
  3642. color:#7F7F7F;
  3643. }
  3644. #u9607 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:1065px;
  3648. top:1672px;
  3649. width:78px;
  3650. height:30px;
  3651. display:flex;
  3652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:14px;
  3656. color:#7F7F7F;
  3657. }
  3658. #u9607 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:5px 0px 5px 0px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u9607_text {
  3666. border-width:0px;
  3667. white-space:nowrap;
  3668. text-transform:none;
  3669. }
  3670. #u9608 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:0px;
  3676. height:0px;
  3677. }
  3678. #u9609_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:553px;
  3684. height:40px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 1);
  3687. box-sizing:border-box;
  3688. border-width:1px;
  3689. border-style:solid;
  3690. border-color:rgba(215, 215, 215, 1);
  3691. border-radius:4px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. font-size:11px;
  3696. }
  3697. #u9609 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:1153px;
  3701. top:1667px;
  3702. width:553px;
  3703. height:40px;
  3704. display:flex;
  3705. font-size:11px;
  3706. }
  3707. #u9609 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 2px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u9609_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u9610_input {
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:502px;
  3725. height:25px;
  3726. padding:2px 2px 2px 2px;
  3727. font-family:'ArialMT', 'Arial', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:13px;
  3731. letter-spacing:normal;
  3732. color:#000000;
  3733. vertical-align:none;
  3734. text-align:left;
  3735. text-transform:none;
  3736. background-color:transparent;
  3737. border-color:transparent;
  3738. }
  3739. #u9610_input.disabled {
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:502px;
  3744. height:25px;
  3745. padding:2px 2px 2px 2px;
  3746. font-family:'ArialMT', 'Arial', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. font-size:13px;
  3750. letter-spacing:normal;
  3751. color:#000000;
  3752. vertical-align:none;
  3753. text-align:left;
  3754. text-transform:none;
  3755. background-color:transparent;
  3756. border-color:transparent;
  3757. }
  3758. #u9610_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:502px;
  3764. height:25px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 1);
  3767. border:none;
  3768. border-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. }
  3773. #u9610 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:1178px;
  3777. top:1675px;
  3778. width:502px;
  3779. height:25px;
  3780. display:flex;
  3781. }
  3782. #u9610 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:2px 2px 2px 2px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u9610_div.disabled {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:502px;
  3795. height:25px;
  3796. background:inherit;
  3797. background-color:rgba(240, 240, 240, 1);
  3798. border:none;
  3799. border-radius:0px;
  3800. -moz-box-shadow:none;
  3801. -webkit-box-shadow:none;
  3802. box-shadow:none;
  3803. }
  3804. #u9610.disabled {
  3805. }
  3806. #u9611_div {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:71px;
  3812. height:30px;
  3813. background:inherit;
  3814. background-color:rgba(255, 255, 255, 0);
  3815. border:none;
  3816. border-top:0px;
  3817. border-right:0px;
  3818. border-bottom:0px;
  3819. border-radius:0px;
  3820. border-top-left-radius:0px;
  3821. border-bottom-left-radius:0px;
  3822. -moz-box-shadow:none;
  3823. -webkit-box-shadow:none;
  3824. box-shadow:none;
  3825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:14px;
  3829. color:#7F7F7F;
  3830. }
  3831. #u9611 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:1065px;
  3835. top:1722px;
  3836. width:71px;
  3837. height:30px;
  3838. display:flex;
  3839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:14px;
  3843. color:#7F7F7F;
  3844. }
  3845. #u9611 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:5px 0px 5px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u9611_text {
  3853. border-width:0px;
  3854. white-space:nowrap;
  3855. text-transform:none;
  3856. }
  3857. #u9612 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:0px;
  3863. height:0px;
  3864. }
  3865. #u9613_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:553px;
  3871. height:40px;
  3872. background:inherit;
  3873. background-color:rgba(255, 255, 255, 1);
  3874. box-sizing:border-box;
  3875. border-width:1px;
  3876. border-style:solid;
  3877. border-color:rgba(215, 215, 215, 1);
  3878. border-radius:4px;
  3879. -moz-box-shadow:none;
  3880. -webkit-box-shadow:none;
  3881. box-shadow:none;
  3882. font-size:11px;
  3883. }
  3884. #u9613 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:1153px;
  3888. top:1717px;
  3889. width:553px;
  3890. height:40px;
  3891. display:flex;
  3892. font-size:11px;
  3893. }
  3894. #u9613 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 2px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u9613_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u9614_input {
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:502px;
  3912. height:25px;
  3913. padding:2px 2px 2px 2px;
  3914. font-family:'ArialMT', 'Arial', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:13px;
  3918. letter-spacing:normal;
  3919. color:#000000;
  3920. vertical-align:none;
  3921. text-align:left;
  3922. text-transform:none;
  3923. background-color:transparent;
  3924. border-color:transparent;
  3925. }
  3926. #u9614_input.disabled {
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:502px;
  3931. height:25px;
  3932. padding:2px 2px 2px 2px;
  3933. font-family:'ArialMT', 'Arial', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:13px;
  3937. letter-spacing:normal;
  3938. color:#000000;
  3939. vertical-align:none;
  3940. text-align:left;
  3941. text-transform:none;
  3942. background-color:transparent;
  3943. border-color:transparent;
  3944. }
  3945. #u9614_div {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:502px;
  3951. height:25px;
  3952. background:inherit;
  3953. background-color:rgba(255, 255, 255, 1);
  3954. border:none;
  3955. border-radius:0px;
  3956. -moz-box-shadow:none;
  3957. -webkit-box-shadow:none;
  3958. box-shadow:none;
  3959. }
  3960. #u9614 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:1178px;
  3964. top:1725px;
  3965. width:502px;
  3966. height:25px;
  3967. display:flex;
  3968. }
  3969. #u9614 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:2px 2px 2px 2px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u9614_div.disabled {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:502px;
  3982. height:25px;
  3983. background:inherit;
  3984. background-color:rgba(240, 240, 240, 1);
  3985. border:none;
  3986. border-radius:0px;
  3987. -moz-box-shadow:none;
  3988. -webkit-box-shadow:none;
  3989. box-shadow:none;
  3990. }
  3991. #u9614.disabled {
  3992. }
  3993. #u9615_div {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:71px;
  3999. height:30px;
  4000. background:inherit;
  4001. background-color:rgba(255, 255, 255, 0);
  4002. border:none;
  4003. border-top:0px;
  4004. border-right:0px;
  4005. border-bottom:0px;
  4006. border-radius:0px;
  4007. border-top-left-radius:0px;
  4008. border-bottom-left-radius:0px;
  4009. -moz-box-shadow:none;
  4010. -webkit-box-shadow:none;
  4011. box-shadow:none;
  4012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:14px;
  4016. color:#7F7F7F;
  4017. }
  4018. #u9615 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:1065px;
  4022. top:1772px;
  4023. width:71px;
  4024. height:30px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:14px;
  4030. color:#7F7F7F;
  4031. }
  4032. #u9615 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:5px 0px 5px 0px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u9615_text {
  4040. border-width:0px;
  4041. white-space:nowrap;
  4042. text-transform:none;
  4043. }
  4044. #u9616 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:0px;
  4050. height:0px;
  4051. }
  4052. #u9617_div {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:553px;
  4058. height:40px;
  4059. background:inherit;
  4060. background-color:rgba(255, 255, 255, 1);
  4061. box-sizing:border-box;
  4062. border-width:1px;
  4063. border-style:solid;
  4064. border-color:rgba(215, 215, 215, 1);
  4065. border-radius:4px;
  4066. -moz-box-shadow:none;
  4067. -webkit-box-shadow:none;
  4068. box-shadow:none;
  4069. font-size:11px;
  4070. }
  4071. #u9617 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:1153px;
  4075. top:1767px;
  4076. width:553px;
  4077. height:40px;
  4078. display:flex;
  4079. font-size:11px;
  4080. }
  4081. #u9617 .text {
  4082. position:absolute;
  4083. align-self:center;
  4084. padding:2px 2px 2px 2px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u9617_text {
  4089. border-width:0px;
  4090. word-wrap:break-word;
  4091. text-transform:none;
  4092. visibility:hidden;
  4093. }
  4094. #u9618_input {
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:502px;
  4099. height:25px;
  4100. padding:2px 2px 2px 2px;
  4101. font-family:'ArialMT', 'Arial', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:13px;
  4105. letter-spacing:normal;
  4106. color:#000000;
  4107. vertical-align:none;
  4108. text-align:left;
  4109. text-transform:none;
  4110. background-color:transparent;
  4111. border-color:transparent;
  4112. }
  4113. #u9618_input.disabled {
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:502px;
  4118. height:25px;
  4119. padding:2px 2px 2px 2px;
  4120. font-family:'ArialMT', 'Arial', sans-serif;
  4121. font-weight:400;
  4122. font-style:normal;
  4123. font-size:13px;
  4124. letter-spacing:normal;
  4125. color:#000000;
  4126. vertical-align:none;
  4127. text-align:left;
  4128. text-transform:none;
  4129. background-color:transparent;
  4130. border-color:transparent;
  4131. }
  4132. #u9618_div {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:502px;
  4138. height:25px;
  4139. background:inherit;
  4140. background-color:rgba(255, 255, 255, 1);
  4141. border:none;
  4142. border-radius:0px;
  4143. -moz-box-shadow:none;
  4144. -webkit-box-shadow:none;
  4145. box-shadow:none;
  4146. }
  4147. #u9618 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:1178px;
  4151. top:1775px;
  4152. width:502px;
  4153. height:25px;
  4154. display:flex;
  4155. }
  4156. #u9618 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 2px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u9618_div.disabled {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:502px;
  4169. height:25px;
  4170. background:inherit;
  4171. background-color:rgba(240, 240, 240, 1);
  4172. border:none;
  4173. border-radius:0px;
  4174. -moz-box-shadow:none;
  4175. -webkit-box-shadow:none;
  4176. box-shadow:none;
  4177. }
  4178. #u9618.disabled {
  4179. }
  4180. #u9619_div {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:71px;
  4186. height:30px;
  4187. background:inherit;
  4188. background-color:rgba(255, 255, 255, 0);
  4189. border:none;
  4190. border-top:0px;
  4191. border-right:0px;
  4192. border-bottom:0px;
  4193. border-radius:0px;
  4194. border-top-left-radius:0px;
  4195. border-bottom-left-radius:0px;
  4196. -moz-box-shadow:none;
  4197. -webkit-box-shadow:none;
  4198. box-shadow:none;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:14px;
  4203. color:#7F7F7F;
  4204. }
  4205. #u9619 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:1065px;
  4209. top:1817px;
  4210. width:71px;
  4211. height:30px;
  4212. display:flex;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. color:#7F7F7F;
  4218. }
  4219. #u9619 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:5px 0px 5px 0px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u9619_text {
  4227. border-width:0px;
  4228. white-space:nowrap;
  4229. text-transform:none;
  4230. }
  4231. #u9620_div {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:40px;
  4237. height:40px;
  4238. background:inherit;
  4239. background-color:rgba(255, 255, 255, 0);
  4240. border:none;
  4241. border-top:0px;
  4242. border-right:0px;
  4243. border-bottom:0px;
  4244. border-radius:0px;
  4245. border-top-left-radius:0px;
  4246. border-bottom-left-radius:0px;
  4247. -moz-box-shadow:none;
  4248. -webkit-box-shadow:none;
  4249. box-shadow:none;
  4250. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4251. font-weight:500;
  4252. font-style:normal;
  4253. font-size:18px;
  4254. text-align:center;
  4255. }
  4256. #u9620 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:1772px;
  4260. top:1366px;
  4261. width:40px;
  4262. height:40px;
  4263. display:flex;
  4264. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4265. font-weight:500;
  4266. font-style:normal;
  4267. font-size:18px;
  4268. text-align:center;
  4269. }
  4270. #u9620 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:5px 10px 5px 0px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u9620_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. }
  4282. #u9621 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:555px;
  4286. top:269px;
  4287. width:1012px;
  4288. height:428px;
  4289. }
  4290. #u9622_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:42px;
  4296. height:38px;
  4297. }
  4298. #u9622 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:42px;
  4304. height:38px;
  4305. display:flex;
  4306. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:12px;
  4310. color:#FFFFFF;
  4311. }
  4312. #u9622 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 0px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u9622_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. }
  4324. #u9623_img {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:105px;
  4330. height:38px;
  4331. }
  4332. #u9623 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:42px;
  4336. top:0px;
  4337. width:105px;
  4338. height:38px;
  4339. display:flex;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:12px;
  4344. color:#FFFFFF;
  4345. }
  4346. #u9623 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 0px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u9623_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. }
  4358. #u9624_img {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:173px;
  4364. height:38px;
  4365. }
  4366. #u9624 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:147px;
  4370. top:0px;
  4371. width:173px;
  4372. height:38px;
  4373. display:flex;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:12px;
  4378. color:#FFFFFF;
  4379. }
  4380. #u9624 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:2px 2px 2px 0px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u9624_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. }
  4392. #u9625_img {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:105px;
  4398. height:38px;
  4399. }
  4400. #u9625 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:320px;
  4404. top:0px;
  4405. width:105px;
  4406. height:38px;
  4407. display:flex;
  4408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4409. font-weight:400;
  4410. font-style:normal;
  4411. font-size:12px;
  4412. color:#FFFFFF;
  4413. }
  4414. #u9625 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 0px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u9625_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. }
  4426. #u9626_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:129px;
  4432. height:38px;
  4433. }
  4434. #u9626 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:425px;
  4438. top:0px;
  4439. width:129px;
  4440. height:38px;
  4441. display:flex;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:12px;
  4446. color:#FFFFFF;
  4447. }
  4448. #u9626 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 0px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u9626_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. }
  4460. #u9627_img {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:129px;
  4466. height:38px;
  4467. }
  4468. #u9627 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:554px;
  4472. top:0px;
  4473. width:129px;
  4474. height:38px;
  4475. display:flex;
  4476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4477. font-weight:400;
  4478. font-style:normal;
  4479. font-size:12px;
  4480. color:#FFFFFF;
  4481. }
  4482. #u9627 .text {
  4483. position:absolute;
  4484. align-self:center;
  4485. padding:2px 2px 2px 0px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u9627_text {
  4490. border-width:0px;
  4491. word-wrap:break-word;
  4492. text-transform:none;
  4493. }
  4494. #u9628_img {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:117px;
  4500. height:38px;
  4501. }
  4502. #u9628 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:683px;
  4506. top:0px;
  4507. width:117px;
  4508. height:38px;
  4509. display:flex;
  4510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4511. font-weight:400;
  4512. font-style:normal;
  4513. font-size:12px;
  4514. color:#FFFFFF;
  4515. }
  4516. #u9628 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:2px 2px 2px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u9628_text {
  4524. border-width:0px;
  4525. word-wrap:break-word;
  4526. text-transform:none;
  4527. }
  4528. #u9629_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:115px;
  4534. height:38px;
  4535. }
  4536. #u9629 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:800px;
  4540. top:0px;
  4541. width:115px;
  4542. height:38px;
  4543. display:flex;
  4544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:12px;
  4548. color:#FFFFFF;
  4549. }
  4550. #u9629 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 0px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u9629_text {
  4558. border-width:0px;
  4559. word-wrap:break-word;
  4560. text-transform:none;
  4561. }
  4562. #u9630_img {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:97px;
  4568. height:38px;
  4569. }
  4570. #u9630 {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:915px;
  4574. top:0px;
  4575. width:97px;
  4576. height:38px;
  4577. display:flex;
  4578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4579. font-weight:400;
  4580. font-style:normal;
  4581. font-size:12px;
  4582. color:#FFFFFF;
  4583. }
  4584. #u9630 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 0px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u9630_text {
  4592. border-width:0px;
  4593. word-wrap:break-word;
  4594. text-transform:none;
  4595. }
  4596. #u9631_img {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:42px;
  4602. height:39px;
  4603. }
  4604. #u9631 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:38px;
  4609. width:42px;
  4610. height:39px;
  4611. display:flex;
  4612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:12px;
  4616. }
  4617. #u9631 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 0px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u9631_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. }
  4629. #u9632_img {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:105px;
  4635. height:39px;
  4636. }
  4637. #u9632 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:42px;
  4641. top:38px;
  4642. width:105px;
  4643. height:39px;
  4644. display:flex;
  4645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:12px;
  4649. color:#AAAAAA;
  4650. }
  4651. #u9632 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:2px 2px 2px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u9632_text {
  4659. border-width:0px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. }
  4663. #u9633_img {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:173px;
  4669. height:39px;
  4670. }
  4671. #u9633 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:147px;
  4675. top:38px;
  4676. width:173px;
  4677. height:39px;
  4678. display:flex;
  4679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4680. font-weight:400;
  4681. font-style:normal;
  4682. font-size:12px;
  4683. color:#333333;
  4684. }
  4685. #u9633 .text {
  4686. position:absolute;
  4687. align-self:center;
  4688. padding:2px 2px 2px 0px;
  4689. box-sizing:border-box;
  4690. width:100%;
  4691. }
  4692. #u9633_text {
  4693. border-width:0px;
  4694. word-wrap:break-word;
  4695. text-transform:none;
  4696. }
  4697. #u9634_img {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:105px;
  4703. height:39px;
  4704. }
  4705. #u9634 {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:320px;
  4709. top:38px;
  4710. width:105px;
  4711. height:39px;
  4712. display:flex;
  4713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4714. font-weight:400;
  4715. font-style:normal;
  4716. font-size:12px;
  4717. }
  4718. #u9634 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:2px 2px 2px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u9634_text {
  4726. border-width:0px;
  4727. word-wrap:break-word;
  4728. text-transform:none;
  4729. }
  4730. #u9635_img {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:129px;
  4736. height:39px;
  4737. }
  4738. #u9635 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:425px;
  4742. top:38px;
  4743. width:129px;
  4744. height:39px;
  4745. display:flex;
  4746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4747. font-weight:400;
  4748. font-style:normal;
  4749. font-size:12px;
  4750. color:#333333;
  4751. }
  4752. #u9635 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 0px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u9635_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. }
  4764. #u9636_img {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:129px;
  4770. height:39px;
  4771. }
  4772. #u9636 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:554px;
  4776. top:38px;
  4777. width:129px;
  4778. height:39px;
  4779. display:flex;
  4780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4781. font-weight:400;
  4782. font-style:normal;
  4783. font-size:12px;
  4784. color:#333333;
  4785. }
  4786. #u9636 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:2px 2px 2px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u9636_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. }
  4798. #u9637_img {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:117px;
  4804. height:39px;
  4805. }
  4806. #u9637 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:683px;
  4810. top:38px;
  4811. width:117px;
  4812. height:39px;
  4813. display:flex;
  4814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:12px;
  4818. color:#333333;
  4819. }
  4820. #u9637 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 0px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u9637_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u9638_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:115px;
  4839. height:39px;
  4840. }
  4841. #u9638 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:800px;
  4845. top:38px;
  4846. width:115px;
  4847. height:39px;
  4848. display:flex;
  4849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. color:#1890FF;
  4854. }
  4855. #u9638 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u9638_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. }
  4867. #u9639_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:97px;
  4873. height:39px;
  4874. }
  4875. #u9639 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:915px;
  4879. top:38px;
  4880. width:97px;
  4881. height:39px;
  4882. display:flex;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. color:#298FFF;
  4888. }
  4889. #u9639 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:2px 2px 2px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u9639_text {
  4897. border-width:0px;
  4898. word-wrap:break-word;
  4899. text-transform:none;
  4900. }
  4901. #u9640_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:42px;
  4907. height:38px;
  4908. }
  4909. #u9640 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:77px;
  4914. width:42px;
  4915. height:38px;
  4916. display:flex;
  4917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:12px;
  4921. color:#606266;
  4922. }
  4923. #u9640 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 0px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u9640_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. }
  4935. #u9641_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:105px;
  4941. height:38px;
  4942. }
  4943. #u9641 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:42px;
  4947. top:77px;
  4948. width:105px;
  4949. height:38px;
  4950. display:flex;
  4951. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. color:#606266;
  4956. }
  4957. #u9641 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u9641_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u9642_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:173px;
  4976. height:38px;
  4977. }
  4978. #u9642 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:147px;
  4982. top:77px;
  4983. width:173px;
  4984. height:38px;
  4985. display:flex;
  4986. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#606266;
  4991. }
  4992. #u9642 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 0px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u9642_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u9643_img {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:105px;
  5011. height:38px;
  5012. }
  5013. #u9643 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:320px;
  5017. top:77px;
  5018. width:105px;
  5019. height:38px;
  5020. display:flex;
  5021. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#606266;
  5026. }
  5027. #u9643 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u9643_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. visibility:hidden;
  5039. }
  5040. #u9644_img {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:129px;
  5046. height:38px;
  5047. }
  5048. #u9644 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:425px;
  5052. top:77px;
  5053. width:129px;
  5054. height:38px;
  5055. display:flex;
  5056. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:12px;
  5060. color:#606266;
  5061. }
  5062. #u9644 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 0px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u9644_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u9645_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:129px;
  5081. height:38px;
  5082. }
  5083. #u9645 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:554px;
  5087. top:77px;
  5088. width:129px;
  5089. height:38px;
  5090. display:flex;
  5091. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:12px;
  5095. color:#606266;
  5096. }
  5097. #u9645 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 0px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u9645_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u9646_img {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:117px;
  5116. height:38px;
  5117. }
  5118. #u9646 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:683px;
  5122. top:77px;
  5123. width:117px;
  5124. height:38px;
  5125. display:flex;
  5126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5127. font-weight:400;
  5128. font-style:normal;
  5129. font-size:12px;
  5130. color:#606266;
  5131. }
  5132. #u9646 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 0px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u9646_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. visibility:hidden;
  5144. }
  5145. #u9647_img {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:115px;
  5151. height:38px;
  5152. }
  5153. #u9647 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:800px;
  5157. top:77px;
  5158. width:115px;
  5159. height:38px;
  5160. display:flex;
  5161. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:12px;
  5165. color:#606266;
  5166. }
  5167. #u9647 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:2px 2px 2px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u9647_text {
  5175. border-width:0px;
  5176. word-wrap:break-word;
  5177. text-transform:none;
  5178. visibility:hidden;
  5179. }
  5180. #u9648_img {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:97px;
  5186. height:38px;
  5187. }
  5188. #u9648 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:915px;
  5192. top:77px;
  5193. width:97px;
  5194. height:38px;
  5195. display:flex;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:12px;
  5200. color:#298FFF;
  5201. }
  5202. #u9648 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 0px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u9648_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. }
  5214. #u9649_img {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:42px;
  5220. height:35px;
  5221. }
  5222. #u9649 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:115px;
  5227. width:42px;
  5228. height:35px;
  5229. display:flex;
  5230. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:12px;
  5234. color:#606266;
  5235. }
  5236. #u9649 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 0px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u9649_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. }
  5248. #u9650_img {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:105px;
  5254. height:35px;
  5255. }
  5256. #u9650 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:42px;
  5260. top:115px;
  5261. width:105px;
  5262. height:35px;
  5263. display:flex;
  5264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:12px;
  5268. color:#606266;
  5269. }
  5270. #u9650 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 0px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u9650_text {
  5278. border-width:0px;
  5279. word-wrap:break-word;
  5280. text-transform:none;
  5281. visibility:hidden;
  5282. }
  5283. #u9651_img {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:173px;
  5289. height:35px;
  5290. }
  5291. #u9651 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:147px;
  5295. top:115px;
  5296. width:173px;
  5297. height:35px;
  5298. display:flex;
  5299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:12px;
  5303. color:#606266;
  5304. }
  5305. #u9651 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:2px 2px 2px 0px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u9651_text {
  5313. border-width:0px;
  5314. word-wrap:break-word;
  5315. text-transform:none;
  5316. visibility:hidden;
  5317. }
  5318. #u9652_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:105px;
  5324. height:35px;
  5325. }
  5326. #u9652 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:320px;
  5330. top:115px;
  5331. width:105px;
  5332. height:35px;
  5333. display:flex;
  5334. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:12px;
  5338. color:#606266;
  5339. }
  5340. #u9652 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 2px 2px 0px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u9652_text {
  5348. border-width:0px;
  5349. word-wrap:break-word;
  5350. text-transform:none;
  5351. visibility:hidden;
  5352. }
  5353. #u9653_img {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:129px;
  5359. height:35px;
  5360. }
  5361. #u9653 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:425px;
  5365. top:115px;
  5366. width:129px;
  5367. height:35px;
  5368. display:flex;
  5369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. color:#606266;
  5374. }
  5375. #u9653 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:2px 2px 2px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u9653_text {
  5383. border-width:0px;
  5384. word-wrap:break-word;
  5385. text-transform:none;
  5386. visibility:hidden;
  5387. }
  5388. #u9654_img {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:129px;
  5394. height:35px;
  5395. }
  5396. #u9654 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:554px;
  5400. top:115px;
  5401. width:129px;
  5402. height:35px;
  5403. display:flex;
  5404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:12px;
  5408. color:#606266;
  5409. }
  5410. #u9654 .text {
  5411. position:absolute;
  5412. align-self:center;
  5413. padding:2px 2px 2px 0px;
  5414. box-sizing:border-box;
  5415. width:100%;
  5416. }
  5417. #u9654_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u9655_img {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:117px;
  5429. height:35px;
  5430. }
  5431. #u9655 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:683px;
  5435. top:115px;
  5436. width:117px;
  5437. height:35px;
  5438. display:flex;
  5439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:12px;
  5443. color:#606266;
  5444. }
  5445. #u9655 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 2px 2px 0px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u9655_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u9656_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:115px;
  5464. height:35px;
  5465. }
  5466. #u9656 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:800px;
  5470. top:115px;
  5471. width:115px;
  5472. height:35px;
  5473. display:flex;
  5474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:12px;
  5478. color:#606266;
  5479. }
  5480. #u9656 .text {
  5481. position:absolute;
  5482. align-self:center;
  5483. padding:2px 2px 2px 0px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u9656_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. visibility:hidden;
  5492. }
  5493. #u9657_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:97px;
  5499. height:35px;
  5500. }
  5501. #u9657 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:915px;
  5505. top:115px;
  5506. width:97px;
  5507. height:35px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:12px;
  5513. color:#02A7F0;
  5514. }
  5515. #u9657 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 0px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u9657_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u9658_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:42px;
  5534. height:36px;
  5535. }
  5536. #u9658 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:150px;
  5541. width:42px;
  5542. height:36px;
  5543. display:flex;
  5544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:12px;
  5548. color:#606266;
  5549. }
  5550. #u9658 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 2px 2px 0px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u9658_text {
  5558. border-width:0px;
  5559. word-wrap:break-word;
  5560. text-transform:none;
  5561. }
  5562. #u9659_img {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:105px;
  5568. height:36px;
  5569. }
  5570. #u9659 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:42px;
  5574. top:150px;
  5575. width:105px;
  5576. height:36px;
  5577. display:flex;
  5578. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:12px;
  5582. color:#606266;
  5583. }
  5584. #u9659 .text {
  5585. position:absolute;
  5586. align-self:center;
  5587. padding:2px 2px 2px 0px;
  5588. box-sizing:border-box;
  5589. width:100%;
  5590. }
  5591. #u9659_text {
  5592. border-width:0px;
  5593. word-wrap:break-word;
  5594. text-transform:none;
  5595. visibility:hidden;
  5596. }
  5597. #u9660_img {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:173px;
  5603. height:36px;
  5604. }
  5605. #u9660 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:147px;
  5609. top:150px;
  5610. width:173px;
  5611. height:36px;
  5612. display:flex;
  5613. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:12px;
  5617. color:#606266;
  5618. }
  5619. #u9660 .text {
  5620. position:absolute;
  5621. align-self:center;
  5622. padding:2px 2px 2px 0px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u9660_text {
  5627. border-width:0px;
  5628. word-wrap:break-word;
  5629. text-transform:none;
  5630. visibility:hidden;
  5631. }
  5632. #u9661_img {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:105px;
  5638. height:36px;
  5639. }
  5640. #u9661 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:320px;
  5644. top:150px;
  5645. width:105px;
  5646. height:36px;
  5647. display:flex;
  5648. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. font-size:12px;
  5652. color:#606266;
  5653. }
  5654. #u9661 .text {
  5655. position:absolute;
  5656. align-self:center;
  5657. padding:2px 2px 2px 0px;
  5658. box-sizing:border-box;
  5659. width:100%;
  5660. }
  5661. #u9661_text {
  5662. border-width:0px;
  5663. word-wrap:break-word;
  5664. text-transform:none;
  5665. visibility:hidden;
  5666. }
  5667. #u9662_img {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:129px;
  5673. height:36px;
  5674. }
  5675. #u9662 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:425px;
  5679. top:150px;
  5680. width:129px;
  5681. height:36px;
  5682. display:flex;
  5683. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:12px;
  5687. color:#606266;
  5688. }
  5689. #u9662 .text {
  5690. position:absolute;
  5691. align-self:center;
  5692. padding:2px 2px 2px 0px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u9662_text {
  5697. border-width:0px;
  5698. word-wrap:break-word;
  5699. text-transform:none;
  5700. visibility:hidden;
  5701. }
  5702. #u9663_img {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:129px;
  5708. height:36px;
  5709. }
  5710. #u9663 {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:554px;
  5714. top:150px;
  5715. width:129px;
  5716. height:36px;
  5717. display:flex;
  5718. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. font-size:12px;
  5722. color:#606266;
  5723. }
  5724. #u9663 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:2px 2px 2px 0px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u9663_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. visibility:hidden;
  5736. }
  5737. #u9664_img {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:117px;
  5743. height:36px;
  5744. }
  5745. #u9664 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:683px;
  5749. top:150px;
  5750. width:117px;
  5751. height:36px;
  5752. display:flex;
  5753. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:12px;
  5757. color:#606266;
  5758. }
  5759. #u9664 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 0px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u9664_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u9665_img {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:115px;
  5778. height:36px;
  5779. }
  5780. #u9665 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:800px;
  5784. top:150px;
  5785. width:115px;
  5786. height:36px;
  5787. display:flex;
  5788. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:12px;
  5792. color:#606266;
  5793. }
  5794. #u9665 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:2px 2px 2px 0px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u9665_text {
  5802. border-width:0px;
  5803. word-wrap:break-word;
  5804. text-transform:none;
  5805. visibility:hidden;
  5806. }
  5807. #u9666_img {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:97px;
  5813. height:36px;
  5814. }
  5815. #u9666 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:915px;
  5819. top:150px;
  5820. width:97px;
  5821. height:36px;
  5822. display:flex;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:12px;
  5827. color:#02A7F0;
  5828. }
  5829. #u9666 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 0px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u9666_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u9667_img {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:42px;
  5848. height:35px;
  5849. }
  5850. #u9667 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:186px;
  5855. width:42px;
  5856. height:35px;
  5857. display:flex;
  5858. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:12px;
  5862. color:#606266;
  5863. }
  5864. #u9667 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 2px 2px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u9667_text {
  5872. border-width:0px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. visibility:hidden;
  5876. }
  5877. #u9668_img {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:105px;
  5883. height:35px;
  5884. }
  5885. #u9668 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:42px;
  5889. top:186px;
  5890. width:105px;
  5891. height:35px;
  5892. display:flex;
  5893. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5894. font-weight:400;
  5895. font-style:normal;
  5896. font-size:12px;
  5897. color:#606266;
  5898. }
  5899. #u9668 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 0px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u9668_text {
  5907. border-width:0px;
  5908. word-wrap:break-word;
  5909. text-transform:none;
  5910. visibility:hidden;
  5911. }
  5912. #u9669_img {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:173px;
  5918. height:35px;
  5919. }
  5920. #u9669 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:147px;
  5924. top:186px;
  5925. width:173px;
  5926. height:35px;
  5927. display:flex;
  5928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. font-size:12px;
  5932. color:#606266;
  5933. }
  5934. #u9669 .text {
  5935. position:absolute;
  5936. align-self:center;
  5937. padding:2px 2px 2px 0px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u9669_text {
  5942. border-width:0px;
  5943. word-wrap:break-word;
  5944. text-transform:none;
  5945. visibility:hidden;
  5946. }
  5947. #u9670_img {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:105px;
  5953. height:35px;
  5954. }
  5955. #u9670 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:320px;
  5959. top:186px;
  5960. width:105px;
  5961. height:35px;
  5962. display:flex;
  5963. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5964. font-weight:400;
  5965. font-style:normal;
  5966. font-size:12px;
  5967. color:#606266;
  5968. }
  5969. #u9670 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 0px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u9670_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u9671_img {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:129px;
  5988. height:35px;
  5989. }
  5990. #u9671 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:425px;
  5994. top:186px;
  5995. width:129px;
  5996. height:35px;
  5997. display:flex;
  5998. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:12px;
  6002. color:#606266;
  6003. }
  6004. #u9671 .text {
  6005. position:absolute;
  6006. align-self:center;
  6007. padding:2px 2px 2px 0px;
  6008. box-sizing:border-box;
  6009. width:100%;
  6010. }
  6011. #u9671_text {
  6012. border-width:0px;
  6013. word-wrap:break-word;
  6014. text-transform:none;
  6015. visibility:hidden;
  6016. }
  6017. #u9672_img {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:129px;
  6023. height:35px;
  6024. }
  6025. #u9672 {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:554px;
  6029. top:186px;
  6030. width:129px;
  6031. height:35px;
  6032. display:flex;
  6033. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6034. font-weight:400;
  6035. font-style:normal;
  6036. font-size:12px;
  6037. color:#606266;
  6038. }
  6039. #u9672 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 2px 2px 0px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u9672_text {
  6047. border-width:0px;
  6048. word-wrap:break-word;
  6049. text-transform:none;
  6050. visibility:hidden;
  6051. }
  6052. #u9673_img {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:117px;
  6058. height:35px;
  6059. }
  6060. #u9673 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:683px;
  6064. top:186px;
  6065. width:117px;
  6066. height:35px;
  6067. display:flex;
  6068. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:12px;
  6072. color:#606266;
  6073. }
  6074. #u9673 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 0px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u9673_text {
  6082. border-width:0px;
  6083. word-wrap:break-word;
  6084. text-transform:none;
  6085. visibility:hidden;
  6086. }
  6087. #u9674_img {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:115px;
  6093. height:35px;
  6094. }
  6095. #u9674 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:800px;
  6099. top:186px;
  6100. width:115px;
  6101. height:35px;
  6102. display:flex;
  6103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:12px;
  6107. color:#606266;
  6108. }
  6109. #u9674 .text {
  6110. position:absolute;
  6111. align-self:center;
  6112. padding:2px 2px 2px 0px;
  6113. box-sizing:border-box;
  6114. width:100%;
  6115. }
  6116. #u9674_text {
  6117. border-width:0px;
  6118. word-wrap:break-word;
  6119. text-transform:none;
  6120. visibility:hidden;
  6121. }
  6122. #u9675_img {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:97px;
  6128. height:35px;
  6129. }
  6130. #u9675 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:915px;
  6134. top:186px;
  6135. width:97px;
  6136. height:35px;
  6137. display:flex;
  6138. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:12px;
  6142. color:#606266;
  6143. }
  6144. #u9675 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 0px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u9675_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u9676_img {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:42px;
  6163. height:35px;
  6164. }
  6165. #u9676 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:221px;
  6170. width:42px;
  6171. height:35px;
  6172. display:flex;
  6173. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:12px;
  6177. color:#606266;
  6178. }
  6179. #u9676 .text {
  6180. position:absolute;
  6181. align-self:center;
  6182. padding:2px 2px 2px 0px;
  6183. box-sizing:border-box;
  6184. width:100%;
  6185. }
  6186. #u9676_text {
  6187. border-width:0px;
  6188. word-wrap:break-word;
  6189. text-transform:none;
  6190. visibility:hidden;
  6191. }
  6192. #u9677_img {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:105px;
  6198. height:35px;
  6199. }
  6200. #u9677 {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:42px;
  6204. top:221px;
  6205. width:105px;
  6206. height:35px;
  6207. display:flex;
  6208. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:12px;
  6212. color:#606266;
  6213. }
  6214. #u9677 .text {
  6215. position:absolute;
  6216. align-self:center;
  6217. padding:2px 2px 2px 0px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u9677_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. visibility:hidden;
  6226. }
  6227. #u9678_img {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:173px;
  6233. height:35px;
  6234. }
  6235. #u9678 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:147px;
  6239. top:221px;
  6240. width:173px;
  6241. height:35px;
  6242. display:flex;
  6243. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:12px;
  6247. color:#606266;
  6248. }
  6249. #u9678 .text {
  6250. position:absolute;
  6251. align-self:center;
  6252. padding:2px 2px 2px 0px;
  6253. box-sizing:border-box;
  6254. width:100%;
  6255. }
  6256. #u9678_text {
  6257. border-width:0px;
  6258. word-wrap:break-word;
  6259. text-transform:none;
  6260. visibility:hidden;
  6261. }
  6262. #u9679_img {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:105px;
  6268. height:35px;
  6269. }
  6270. #u9679 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:320px;
  6274. top:221px;
  6275. width:105px;
  6276. height:35px;
  6277. display:flex;
  6278. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6279. font-weight:400;
  6280. font-style:normal;
  6281. font-size:12px;
  6282. color:#606266;
  6283. }
  6284. #u9679 .text {
  6285. position:absolute;
  6286. align-self:center;
  6287. padding:2px 2px 2px 0px;
  6288. box-sizing:border-box;
  6289. width:100%;
  6290. }
  6291. #u9679_text {
  6292. border-width:0px;
  6293. word-wrap:break-word;
  6294. text-transform:none;
  6295. visibility:hidden;
  6296. }
  6297. #u9680_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:129px;
  6303. height:35px;
  6304. }
  6305. #u9680 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:425px;
  6309. top:221px;
  6310. width:129px;
  6311. height:35px;
  6312. display:flex;
  6313. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:12px;
  6317. color:#606266;
  6318. }
  6319. #u9680 .text {
  6320. position:absolute;
  6321. align-self:center;
  6322. padding:2px 2px 2px 0px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u9680_text {
  6327. border-width:0px;
  6328. word-wrap:break-word;
  6329. text-transform:none;
  6330. visibility:hidden;
  6331. }
  6332. #u9681_img {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:0px;
  6336. top:0px;
  6337. width:129px;
  6338. height:35px;
  6339. }
  6340. #u9681 {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:554px;
  6344. top:221px;
  6345. width:129px;
  6346. height:35px;
  6347. display:flex;
  6348. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:12px;
  6352. color:#606266;
  6353. }
  6354. #u9681 .text {
  6355. position:absolute;
  6356. align-self:center;
  6357. padding:2px 2px 2px 0px;
  6358. box-sizing:border-box;
  6359. width:100%;
  6360. }
  6361. #u9681_text {
  6362. border-width:0px;
  6363. word-wrap:break-word;
  6364. text-transform:none;
  6365. visibility:hidden;
  6366. }
  6367. #u9682_img {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:117px;
  6373. height:35px;
  6374. }
  6375. #u9682 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:683px;
  6379. top:221px;
  6380. width:117px;
  6381. height:35px;
  6382. display:flex;
  6383. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:12px;
  6387. color:#606266;
  6388. }
  6389. #u9682 .text {
  6390. position:absolute;
  6391. align-self:center;
  6392. padding:2px 2px 2px 0px;
  6393. box-sizing:border-box;
  6394. width:100%;
  6395. }
  6396. #u9682_text {
  6397. border-width:0px;
  6398. word-wrap:break-word;
  6399. text-transform:none;
  6400. visibility:hidden;
  6401. }
  6402. #u9683_img {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:115px;
  6408. height:35px;
  6409. }
  6410. #u9683 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:800px;
  6414. top:221px;
  6415. width:115px;
  6416. height:35px;
  6417. display:flex;
  6418. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:12px;
  6422. color:#606266;
  6423. }
  6424. #u9683 .text {
  6425. position:absolute;
  6426. align-self:center;
  6427. padding:2px 2px 2px 0px;
  6428. box-sizing:border-box;
  6429. width:100%;
  6430. }
  6431. #u9683_text {
  6432. border-width:0px;
  6433. word-wrap:break-word;
  6434. text-transform:none;
  6435. visibility:hidden;
  6436. }
  6437. #u9684_img {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:97px;
  6443. height:35px;
  6444. }
  6445. #u9684 {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:915px;
  6449. top:221px;
  6450. width:97px;
  6451. height:35px;
  6452. display:flex;
  6453. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:12px;
  6457. color:#606266;
  6458. }
  6459. #u9684 .text {
  6460. position:absolute;
  6461. align-self:center;
  6462. padding:2px 2px 2px 0px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u9684_text {
  6467. border-width:0px;
  6468. word-wrap:break-word;
  6469. text-transform:none;
  6470. visibility:hidden;
  6471. }
  6472. #u9685_img {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:42px;
  6478. height:35px;
  6479. }
  6480. #u9685 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:256px;
  6485. width:42px;
  6486. height:35px;
  6487. display:flex;
  6488. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:12px;
  6492. color:#606266;
  6493. }
  6494. #u9685 .text {
  6495. position:absolute;
  6496. align-self:center;
  6497. padding:2px 2px 2px 0px;
  6498. box-sizing:border-box;
  6499. width:100%;
  6500. }
  6501. #u9685_text {
  6502. border-width:0px;
  6503. word-wrap:break-word;
  6504. text-transform:none;
  6505. visibility:hidden;
  6506. }
  6507. #u9686_img {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:105px;
  6513. height:35px;
  6514. }
  6515. #u9686 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:42px;
  6519. top:256px;
  6520. width:105px;
  6521. height:35px;
  6522. display:flex;
  6523. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:12px;
  6527. color:#606266;
  6528. }
  6529. #u9686 .text {
  6530. position:absolute;
  6531. align-self:center;
  6532. padding:2px 2px 2px 0px;
  6533. box-sizing:border-box;
  6534. width:100%;
  6535. }
  6536. #u9686_text {
  6537. border-width:0px;
  6538. word-wrap:break-word;
  6539. text-transform:none;
  6540. visibility:hidden;
  6541. }
  6542. #u9687_img {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:0px;
  6547. width:173px;
  6548. height:35px;
  6549. }
  6550. #u9687 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:147px;
  6554. top:256px;
  6555. width:173px;
  6556. height:35px;
  6557. display:flex;
  6558. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. font-size:12px;
  6562. color:#606266;
  6563. }
  6564. #u9687 .text {
  6565. position:absolute;
  6566. align-self:center;
  6567. padding:2px 2px 2px 0px;
  6568. box-sizing:border-box;
  6569. width:100%;
  6570. }
  6571. #u9687_text {
  6572. border-width:0px;
  6573. word-wrap:break-word;
  6574. text-transform:none;
  6575. visibility:hidden;
  6576. }
  6577. #u9688_img {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:0px;
  6581. top:0px;
  6582. width:105px;
  6583. height:35px;
  6584. }
  6585. #u9688 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:320px;
  6589. top:256px;
  6590. width:105px;
  6591. height:35px;
  6592. display:flex;
  6593. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:12px;
  6597. color:#606266;
  6598. }
  6599. #u9688 .text {
  6600. position:absolute;
  6601. align-self:center;
  6602. padding:2px 2px 2px 0px;
  6603. box-sizing:border-box;
  6604. width:100%;
  6605. }
  6606. #u9688_text {
  6607. border-width:0px;
  6608. word-wrap:break-word;
  6609. text-transform:none;
  6610. visibility:hidden;
  6611. }
  6612. #u9689_img {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:129px;
  6618. height:35px;
  6619. }
  6620. #u9689 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:425px;
  6624. top:256px;
  6625. width:129px;
  6626. height:35px;
  6627. display:flex;
  6628. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:12px;
  6632. color:#606266;
  6633. }
  6634. #u9689 .text {
  6635. position:absolute;
  6636. align-self:center;
  6637. padding:2px 2px 2px 0px;
  6638. box-sizing:border-box;
  6639. width:100%;
  6640. }
  6641. #u9689_text {
  6642. border-width:0px;
  6643. word-wrap:break-word;
  6644. text-transform:none;
  6645. visibility:hidden;
  6646. }
  6647. #u9690_img {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:129px;
  6653. height:35px;
  6654. }
  6655. #u9690 {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:554px;
  6659. top:256px;
  6660. width:129px;
  6661. height:35px;
  6662. display:flex;
  6663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6664. font-weight:400;
  6665. font-style:normal;
  6666. font-size:12px;
  6667. color:#606266;
  6668. }
  6669. #u9690 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:2px 2px 2px 0px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u9690_text {
  6677. border-width:0px;
  6678. word-wrap:break-word;
  6679. text-transform:none;
  6680. visibility:hidden;
  6681. }
  6682. #u9691_img {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:117px;
  6688. height:35px;
  6689. }
  6690. #u9691 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:683px;
  6694. top:256px;
  6695. width:117px;
  6696. height:35px;
  6697. display:flex;
  6698. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. font-size:12px;
  6702. color:#606266;
  6703. }
  6704. #u9691 .text {
  6705. position:absolute;
  6706. align-self:center;
  6707. padding:2px 2px 2px 0px;
  6708. box-sizing:border-box;
  6709. width:100%;
  6710. }
  6711. #u9691_text {
  6712. border-width:0px;
  6713. word-wrap:break-word;
  6714. text-transform:none;
  6715. visibility:hidden;
  6716. }
  6717. #u9692_img {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:115px;
  6723. height:35px;
  6724. }
  6725. #u9692 {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:800px;
  6729. top:256px;
  6730. width:115px;
  6731. height:35px;
  6732. display:flex;
  6733. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:12px;
  6737. color:#606266;
  6738. }
  6739. #u9692 .text {
  6740. position:absolute;
  6741. align-self:center;
  6742. padding:2px 2px 2px 0px;
  6743. box-sizing:border-box;
  6744. width:100%;
  6745. }
  6746. #u9692_text {
  6747. border-width:0px;
  6748. word-wrap:break-word;
  6749. text-transform:none;
  6750. visibility:hidden;
  6751. }
  6752. #u9693_img {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:0px;
  6756. top:0px;
  6757. width:97px;
  6758. height:35px;
  6759. }
  6760. #u9693 {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:915px;
  6764. top:256px;
  6765. width:97px;
  6766. height:35px;
  6767. display:flex;
  6768. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6769. font-weight:400;
  6770. font-style:normal;
  6771. font-size:12px;
  6772. color:#606266;
  6773. }
  6774. #u9693 .text {
  6775. position:absolute;
  6776. align-self:center;
  6777. padding:2px 2px 2px 0px;
  6778. box-sizing:border-box;
  6779. width:100%;
  6780. }
  6781. #u9693_text {
  6782. border-width:0px;
  6783. word-wrap:break-word;
  6784. text-transform:none;
  6785. visibility:hidden;
  6786. }
  6787. #u9694_img {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:42px;
  6793. height:35px;
  6794. }
  6795. #u9694 {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:291px;
  6800. width:42px;
  6801. height:35px;
  6802. display:flex;
  6803. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:12px;
  6807. color:#606266;
  6808. }
  6809. #u9694 .text {
  6810. position:absolute;
  6811. align-self:center;
  6812. padding:2px 2px 2px 0px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u9694_text {
  6817. border-width:0px;
  6818. word-wrap:break-word;
  6819. text-transform:none;
  6820. visibility:hidden;
  6821. }
  6822. #u9695_img {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:105px;
  6828. height:35px;
  6829. }
  6830. #u9695 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:42px;
  6834. top:291px;
  6835. width:105px;
  6836. height:35px;
  6837. display:flex;
  6838. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6839. font-weight:400;
  6840. font-style:normal;
  6841. font-size:12px;
  6842. color:#606266;
  6843. }
  6844. #u9695 .text {
  6845. position:absolute;
  6846. align-self:center;
  6847. padding:2px 2px 2px 0px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u9695_text {
  6852. border-width:0px;
  6853. word-wrap:break-word;
  6854. text-transform:none;
  6855. visibility:hidden;
  6856. }
  6857. #u9696_img {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:173px;
  6863. height:35px;
  6864. }
  6865. #u9696 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:147px;
  6869. top:291px;
  6870. width:173px;
  6871. height:35px;
  6872. display:flex;
  6873. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. font-size:12px;
  6877. color:#606266;
  6878. }
  6879. #u9696 .text {
  6880. position:absolute;
  6881. align-self:center;
  6882. padding:2px 2px 2px 0px;
  6883. box-sizing:border-box;
  6884. width:100%;
  6885. }
  6886. #u9696_text {
  6887. border-width:0px;
  6888. word-wrap:break-word;
  6889. text-transform:none;
  6890. visibility:hidden;
  6891. }
  6892. #u9697_img {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:105px;
  6898. height:35px;
  6899. }
  6900. #u9697 {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:320px;
  6904. top:291px;
  6905. width:105px;
  6906. height:35px;
  6907. display:flex;
  6908. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6909. font-weight:400;
  6910. font-style:normal;
  6911. font-size:12px;
  6912. color:#606266;
  6913. }
  6914. #u9697 .text {
  6915. position:absolute;
  6916. align-self:center;
  6917. padding:2px 2px 2px 0px;
  6918. box-sizing:border-box;
  6919. width:100%;
  6920. }
  6921. #u9697_text {
  6922. border-width:0px;
  6923. word-wrap:break-word;
  6924. text-transform:none;
  6925. visibility:hidden;
  6926. }
  6927. #u9698_img {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:129px;
  6933. height:35px;
  6934. }
  6935. #u9698 {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:425px;
  6939. top:291px;
  6940. width:129px;
  6941. height:35px;
  6942. display:flex;
  6943. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:12px;
  6947. color:#606266;
  6948. }
  6949. #u9698 .text {
  6950. position:absolute;
  6951. align-self:center;
  6952. padding:2px 2px 2px 0px;
  6953. box-sizing:border-box;
  6954. width:100%;
  6955. }
  6956. #u9698_text {
  6957. border-width:0px;
  6958. word-wrap:break-word;
  6959. text-transform:none;
  6960. visibility:hidden;
  6961. }
  6962. #u9699_img {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:129px;
  6968. height:35px;
  6969. }
  6970. #u9699 {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:554px;
  6974. top:291px;
  6975. width:129px;
  6976. height:35px;
  6977. display:flex;
  6978. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6979. font-weight:400;
  6980. font-style:normal;
  6981. font-size:12px;
  6982. color:#606266;
  6983. }
  6984. #u9699 .text {
  6985. position:absolute;
  6986. align-self:center;
  6987. padding:2px 2px 2px 0px;
  6988. box-sizing:border-box;
  6989. width:100%;
  6990. }
  6991. #u9699_text {
  6992. border-width:0px;
  6993. word-wrap:break-word;
  6994. text-transform:none;
  6995. visibility:hidden;
  6996. }
  6997. #u9700_img {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:117px;
  7003. height:35px;
  7004. }
  7005. #u9700 {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:683px;
  7009. top:291px;
  7010. width:117px;
  7011. height:35px;
  7012. display:flex;
  7013. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:12px;
  7017. color:#606266;
  7018. }
  7019. #u9700 .text {
  7020. position:absolute;
  7021. align-self:center;
  7022. padding:2px 2px 2px 0px;
  7023. box-sizing:border-box;
  7024. width:100%;
  7025. }
  7026. #u9700_text {
  7027. border-width:0px;
  7028. word-wrap:break-word;
  7029. text-transform:none;
  7030. visibility:hidden;
  7031. }
  7032. #u9701_img {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:115px;
  7038. height:35px;
  7039. }
  7040. #u9701 {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:800px;
  7044. top:291px;
  7045. width:115px;
  7046. height:35px;
  7047. display:flex;
  7048. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7049. font-weight:400;
  7050. font-style:normal;
  7051. font-size:12px;
  7052. color:#606266;
  7053. }
  7054. #u9701 .text {
  7055. position:absolute;
  7056. align-self:center;
  7057. padding:2px 2px 2px 0px;
  7058. box-sizing:border-box;
  7059. width:100%;
  7060. }
  7061. #u9701_text {
  7062. border-width:0px;
  7063. word-wrap:break-word;
  7064. text-transform:none;
  7065. visibility:hidden;
  7066. }
  7067. #u9702_img {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:97px;
  7073. height:35px;
  7074. }
  7075. #u9702 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:915px;
  7079. top:291px;
  7080. width:97px;
  7081. height:35px;
  7082. display:flex;
  7083. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:12px;
  7087. color:#606266;
  7088. }
  7089. #u9702 .text {
  7090. position:absolute;
  7091. align-self:center;
  7092. padding:2px 2px 2px 0px;
  7093. box-sizing:border-box;
  7094. width:100%;
  7095. }
  7096. #u9702_text {
  7097. border-width:0px;
  7098. word-wrap:break-word;
  7099. text-transform:none;
  7100. visibility:hidden;
  7101. }
  7102. #u9703_img {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:42px;
  7108. height:35px;
  7109. }
  7110. #u9703 {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:326px;
  7115. width:42px;
  7116. height:35px;
  7117. display:flex;
  7118. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:12px;
  7122. color:#606266;
  7123. }
  7124. #u9703 .text {
  7125. position:absolute;
  7126. align-self:center;
  7127. padding:2px 2px 2px 0px;
  7128. box-sizing:border-box;
  7129. width:100%;
  7130. }
  7131. #u9703_text {
  7132. border-width:0px;
  7133. word-wrap:break-word;
  7134. text-transform:none;
  7135. visibility:hidden;
  7136. }
  7137. #u9704_img {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:105px;
  7143. height:35px;
  7144. }
  7145. #u9704 {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:42px;
  7149. top:326px;
  7150. width:105px;
  7151. height:35px;
  7152. display:flex;
  7153. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:12px;
  7157. color:#606266;
  7158. }
  7159. #u9704 .text {
  7160. position:absolute;
  7161. align-self:center;
  7162. padding:2px 2px 2px 0px;
  7163. box-sizing:border-box;
  7164. width:100%;
  7165. }
  7166. #u9704_text {
  7167. border-width:0px;
  7168. word-wrap:break-word;
  7169. text-transform:none;
  7170. visibility:hidden;
  7171. }
  7172. #u9705_img {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:173px;
  7178. height:35px;
  7179. }
  7180. #u9705 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:147px;
  7184. top:326px;
  7185. width:173px;
  7186. height:35px;
  7187. display:flex;
  7188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:12px;
  7192. color:#606266;
  7193. }
  7194. #u9705 .text {
  7195. position:absolute;
  7196. align-self:center;
  7197. padding:2px 2px 2px 0px;
  7198. box-sizing:border-box;
  7199. width:100%;
  7200. }
  7201. #u9705_text {
  7202. border-width:0px;
  7203. word-wrap:break-word;
  7204. text-transform:none;
  7205. visibility:hidden;
  7206. }
  7207. #u9706_img {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:105px;
  7213. height:35px;
  7214. }
  7215. #u9706 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:320px;
  7219. top:326px;
  7220. width:105px;
  7221. height:35px;
  7222. display:flex;
  7223. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:12px;
  7227. color:#606266;
  7228. }
  7229. #u9706 .text {
  7230. position:absolute;
  7231. align-self:center;
  7232. padding:2px 2px 2px 0px;
  7233. box-sizing:border-box;
  7234. width:100%;
  7235. }
  7236. #u9706_text {
  7237. border-width:0px;
  7238. word-wrap:break-word;
  7239. text-transform:none;
  7240. visibility:hidden;
  7241. }
  7242. #u9707_img {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:129px;
  7248. height:35px;
  7249. }
  7250. #u9707 {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:425px;
  7254. top:326px;
  7255. width:129px;
  7256. height:35px;
  7257. display:flex;
  7258. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:12px;
  7262. color:#606266;
  7263. }
  7264. #u9707 .text {
  7265. position:absolute;
  7266. align-self:center;
  7267. padding:2px 2px 2px 0px;
  7268. box-sizing:border-box;
  7269. width:100%;
  7270. }
  7271. #u9707_text {
  7272. border-width:0px;
  7273. word-wrap:break-word;
  7274. text-transform:none;
  7275. visibility:hidden;
  7276. }
  7277. #u9708_img {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:129px;
  7283. height:35px;
  7284. }
  7285. #u9708 {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:554px;
  7289. top:326px;
  7290. width:129px;
  7291. height:35px;
  7292. display:flex;
  7293. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7294. font-weight:400;
  7295. font-style:normal;
  7296. font-size:12px;
  7297. color:#606266;
  7298. }
  7299. #u9708 .text {
  7300. position:absolute;
  7301. align-self:center;
  7302. padding:2px 2px 2px 0px;
  7303. box-sizing:border-box;
  7304. width:100%;
  7305. }
  7306. #u9708_text {
  7307. border-width:0px;
  7308. word-wrap:break-word;
  7309. text-transform:none;
  7310. visibility:hidden;
  7311. }
  7312. #u9709_img {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:0px;
  7316. top:0px;
  7317. width:117px;
  7318. height:35px;
  7319. }
  7320. #u9709 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:683px;
  7324. top:326px;
  7325. width:117px;
  7326. height:35px;
  7327. display:flex;
  7328. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:12px;
  7332. color:#606266;
  7333. }
  7334. #u9709 .text {
  7335. position:absolute;
  7336. align-self:center;
  7337. padding:2px 2px 2px 0px;
  7338. box-sizing:border-box;
  7339. width:100%;
  7340. }
  7341. #u9709_text {
  7342. border-width:0px;
  7343. word-wrap:break-word;
  7344. text-transform:none;
  7345. visibility:hidden;
  7346. }
  7347. #u9710_img {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:115px;
  7353. height:35px;
  7354. }
  7355. #u9710 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:800px;
  7359. top:326px;
  7360. width:115px;
  7361. height:35px;
  7362. display:flex;
  7363. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:12px;
  7367. color:#606266;
  7368. }
  7369. #u9710 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 0px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u9710_text {
  7377. border-width:0px;
  7378. word-wrap:break-word;
  7379. text-transform:none;
  7380. visibility:hidden;
  7381. }
  7382. #u9711_img {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:97px;
  7388. height:35px;
  7389. }
  7390. #u9711 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:915px;
  7394. top:326px;
  7395. width:97px;
  7396. height:35px;
  7397. display:flex;
  7398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7399. font-weight:400;
  7400. font-style:normal;
  7401. font-size:12px;
  7402. color:#606266;
  7403. }
  7404. #u9711 .text {
  7405. position:absolute;
  7406. align-self:center;
  7407. padding:2px 2px 2px 0px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u9711_text {
  7412. border-width:0px;
  7413. word-wrap:break-word;
  7414. text-transform:none;
  7415. visibility:hidden;
  7416. }
  7417. #u9712_img {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:42px;
  7423. height:35px;
  7424. }
  7425. #u9712 {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:361px;
  7430. width:42px;
  7431. height:35px;
  7432. display:flex;
  7433. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7434. font-weight:400;
  7435. font-style:normal;
  7436. font-size:12px;
  7437. color:#606266;
  7438. }
  7439. #u9712 .text {
  7440. position:absolute;
  7441. align-self:center;
  7442. padding:2px 2px 2px 0px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u9712_text {
  7447. border-width:0px;
  7448. word-wrap:break-word;
  7449. text-transform:none;
  7450. visibility:hidden;
  7451. }
  7452. #u9713_img {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:0px;
  7457. width:105px;
  7458. height:35px;
  7459. }
  7460. #u9713 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:42px;
  7464. top:361px;
  7465. width:105px;
  7466. height:35px;
  7467. display:flex;
  7468. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:12px;
  7472. color:#606266;
  7473. }
  7474. #u9713 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:2px 2px 2px 0px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u9713_text {
  7482. border-width:0px;
  7483. word-wrap:break-word;
  7484. text-transform:none;
  7485. visibility:hidden;
  7486. }
  7487. #u9714_img {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:0px;
  7491. top:0px;
  7492. width:173px;
  7493. height:35px;
  7494. }
  7495. #u9714 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:147px;
  7499. top:361px;
  7500. width:173px;
  7501. height:35px;
  7502. display:flex;
  7503. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7504. font-weight:400;
  7505. font-style:normal;
  7506. font-size:12px;
  7507. color:#606266;
  7508. }
  7509. #u9714 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:2px 2px 2px 0px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u9714_text {
  7517. border-width:0px;
  7518. word-wrap:break-word;
  7519. text-transform:none;
  7520. visibility:hidden;
  7521. }
  7522. #u9715_img {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:0px;
  7526. top:0px;
  7527. width:105px;
  7528. height:35px;
  7529. }
  7530. #u9715 {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:320px;
  7534. top:361px;
  7535. width:105px;
  7536. height:35px;
  7537. display:flex;
  7538. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:12px;
  7542. color:#606266;
  7543. }
  7544. #u9715 .text {
  7545. position:absolute;
  7546. align-self:center;
  7547. padding:2px 2px 2px 0px;
  7548. box-sizing:border-box;
  7549. width:100%;
  7550. }
  7551. #u9715_text {
  7552. border-width:0px;
  7553. word-wrap:break-word;
  7554. text-transform:none;
  7555. visibility:hidden;
  7556. }
  7557. #u9716_img {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:0px;
  7561. top:0px;
  7562. width:129px;
  7563. height:35px;
  7564. }
  7565. #u9716 {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:425px;
  7569. top:361px;
  7570. width:129px;
  7571. height:35px;
  7572. display:flex;
  7573. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7574. font-weight:400;
  7575. font-style:normal;
  7576. font-size:12px;
  7577. color:#606266;
  7578. }
  7579. #u9716 .text {
  7580. position:absolute;
  7581. align-self:center;
  7582. padding:2px 2px 2px 0px;
  7583. box-sizing:border-box;
  7584. width:100%;
  7585. }
  7586. #u9716_text {
  7587. border-width:0px;
  7588. word-wrap:break-word;
  7589. text-transform:none;
  7590. visibility:hidden;
  7591. }
  7592. #u9717_img {
  7593. border-width:0px;
  7594. position:absolute;
  7595. left:0px;
  7596. top:0px;
  7597. width:129px;
  7598. height:35px;
  7599. }
  7600. #u9717 {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:554px;
  7604. top:361px;
  7605. width:129px;
  7606. height:35px;
  7607. display:flex;
  7608. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7609. font-weight:400;
  7610. font-style:normal;
  7611. font-size:12px;
  7612. color:#606266;
  7613. }
  7614. #u9717 .text {
  7615. position:absolute;
  7616. align-self:center;
  7617. padding:2px 2px 2px 0px;
  7618. box-sizing:border-box;
  7619. width:100%;
  7620. }
  7621. #u9717_text {
  7622. border-width:0px;
  7623. word-wrap:break-word;
  7624. text-transform:none;
  7625. visibility:hidden;
  7626. }
  7627. #u9718_img {
  7628. border-width:0px;
  7629. position:absolute;
  7630. left:0px;
  7631. top:0px;
  7632. width:117px;
  7633. height:35px;
  7634. }
  7635. #u9718 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:683px;
  7639. top:361px;
  7640. width:117px;
  7641. height:35px;
  7642. display:flex;
  7643. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:12px;
  7647. color:#606266;
  7648. }
  7649. #u9718 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:2px 2px 2px 0px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u9718_text {
  7657. border-width:0px;
  7658. word-wrap:break-word;
  7659. text-transform:none;
  7660. visibility:hidden;
  7661. }
  7662. #u9719_img {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:115px;
  7668. height:35px;
  7669. }
  7670. #u9719 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:800px;
  7674. top:361px;
  7675. width:115px;
  7676. height:35px;
  7677. display:flex;
  7678. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7679. font-weight:400;
  7680. font-style:normal;
  7681. font-size:12px;
  7682. color:#606266;
  7683. }
  7684. #u9719 .text {
  7685. position:absolute;
  7686. align-self:center;
  7687. padding:2px 2px 2px 0px;
  7688. box-sizing:border-box;
  7689. width:100%;
  7690. }
  7691. #u9719_text {
  7692. border-width:0px;
  7693. word-wrap:break-word;
  7694. text-transform:none;
  7695. visibility:hidden;
  7696. }
  7697. #u9720_img {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:97px;
  7703. height:35px;
  7704. }
  7705. #u9720 {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:915px;
  7709. top:361px;
  7710. width:97px;
  7711. height:35px;
  7712. display:flex;
  7713. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7714. font-weight:400;
  7715. font-style:normal;
  7716. font-size:12px;
  7717. color:#606266;
  7718. }
  7719. #u9720 .text {
  7720. position:absolute;
  7721. align-self:center;
  7722. padding:2px 2px 2px 0px;
  7723. box-sizing:border-box;
  7724. width:100%;
  7725. }
  7726. #u9720_text {
  7727. border-width:0px;
  7728. word-wrap:break-word;
  7729. text-transform:none;
  7730. visibility:hidden;
  7731. }
  7732. #u9721_img {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:0px;
  7736. top:0px;
  7737. width:42px;
  7738. height:32px;
  7739. }
  7740. #u9721 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:0px;
  7744. top:396px;
  7745. width:42px;
  7746. height:32px;
  7747. display:flex;
  7748. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:12px;
  7752. color:#606266;
  7753. }
  7754. #u9721 .text {
  7755. position:absolute;
  7756. align-self:center;
  7757. padding:2px 2px 2px 0px;
  7758. box-sizing:border-box;
  7759. width:100%;
  7760. }
  7761. #u9721_text {
  7762. border-width:0px;
  7763. word-wrap:break-word;
  7764. text-transform:none;
  7765. visibility:hidden;
  7766. }
  7767. #u9722_img {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:0px;
  7771. top:0px;
  7772. width:105px;
  7773. height:32px;
  7774. }
  7775. #u9722 {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:42px;
  7779. top:396px;
  7780. width:105px;
  7781. height:32px;
  7782. display:flex;
  7783. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:12px;
  7787. color:#606266;
  7788. }
  7789. #u9722 .text {
  7790. position:absolute;
  7791. align-self:center;
  7792. padding:2px 2px 2px 0px;
  7793. box-sizing:border-box;
  7794. width:100%;
  7795. }
  7796. #u9722_text {
  7797. border-width:0px;
  7798. word-wrap:break-word;
  7799. text-transform:none;
  7800. visibility:hidden;
  7801. }
  7802. #u9723_img {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:0px;
  7806. top:0px;
  7807. width:173px;
  7808. height:32px;
  7809. }
  7810. #u9723 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:147px;
  7814. top:396px;
  7815. width:173px;
  7816. height:32px;
  7817. display:flex;
  7818. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:12px;
  7822. color:#606266;
  7823. }
  7824. #u9723 .text {
  7825. position:absolute;
  7826. align-self:center;
  7827. padding:2px 2px 2px 0px;
  7828. box-sizing:border-box;
  7829. width:100%;
  7830. }
  7831. #u9723_text {
  7832. border-width:0px;
  7833. word-wrap:break-word;
  7834. text-transform:none;
  7835. visibility:hidden;
  7836. }
  7837. #u9724_img {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:0px;
  7841. top:0px;
  7842. width:105px;
  7843. height:32px;
  7844. }
  7845. #u9724 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:320px;
  7849. top:396px;
  7850. width:105px;
  7851. height:32px;
  7852. display:flex;
  7853. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:12px;
  7857. color:#606266;
  7858. }
  7859. #u9724 .text {
  7860. position:absolute;
  7861. align-self:center;
  7862. padding:2px 2px 2px 0px;
  7863. box-sizing:border-box;
  7864. width:100%;
  7865. }
  7866. #u9724_text {
  7867. border-width:0px;
  7868. word-wrap:break-word;
  7869. text-transform:none;
  7870. visibility:hidden;
  7871. }
  7872. #u9725_img {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:0px;
  7876. top:0px;
  7877. width:129px;
  7878. height:32px;
  7879. }
  7880. #u9725 {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:425px;
  7884. top:396px;
  7885. width:129px;
  7886. height:32px;
  7887. display:flex;
  7888. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7889. font-weight:400;
  7890. font-style:normal;
  7891. font-size:12px;
  7892. color:#606266;
  7893. }
  7894. #u9725 .text {
  7895. position:absolute;
  7896. align-self:center;
  7897. padding:2px 2px 2px 0px;
  7898. box-sizing:border-box;
  7899. width:100%;
  7900. }
  7901. #u9725_text {
  7902. border-width:0px;
  7903. word-wrap:break-word;
  7904. text-transform:none;
  7905. visibility:hidden;
  7906. }
  7907. #u9726_img {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:0px;
  7911. top:0px;
  7912. width:129px;
  7913. height:32px;
  7914. }
  7915. #u9726 {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:554px;
  7919. top:396px;
  7920. width:129px;
  7921. height:32px;
  7922. display:flex;
  7923. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7924. font-weight:400;
  7925. font-style:normal;
  7926. font-size:12px;
  7927. color:#606266;
  7928. }
  7929. #u9726 .text {
  7930. position:absolute;
  7931. align-self:center;
  7932. padding:2px 2px 2px 0px;
  7933. box-sizing:border-box;
  7934. width:100%;
  7935. }
  7936. #u9726_text {
  7937. border-width:0px;
  7938. word-wrap:break-word;
  7939. text-transform:none;
  7940. visibility:hidden;
  7941. }
  7942. #u9727_img {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:117px;
  7948. height:32px;
  7949. }
  7950. #u9727 {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:683px;
  7954. top:396px;
  7955. width:117px;
  7956. height:32px;
  7957. display:flex;
  7958. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7959. font-weight:400;
  7960. font-style:normal;
  7961. font-size:12px;
  7962. color:#606266;
  7963. }
  7964. #u9727 .text {
  7965. position:absolute;
  7966. align-self:center;
  7967. padding:2px 2px 2px 0px;
  7968. box-sizing:border-box;
  7969. width:100%;
  7970. }
  7971. #u9727_text {
  7972. border-width:0px;
  7973. word-wrap:break-word;
  7974. text-transform:none;
  7975. visibility:hidden;
  7976. }
  7977. #u9728_img {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:115px;
  7983. height:32px;
  7984. }
  7985. #u9728 {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:800px;
  7989. top:396px;
  7990. width:115px;
  7991. height:32px;
  7992. display:flex;
  7993. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7994. font-weight:400;
  7995. font-style:normal;
  7996. font-size:12px;
  7997. color:#606266;
  7998. }
  7999. #u9728 .text {
  8000. position:absolute;
  8001. align-self:center;
  8002. padding:2px 2px 2px 0px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u9728_text {
  8007. border-width:0px;
  8008. word-wrap:break-word;
  8009. text-transform:none;
  8010. visibility:hidden;
  8011. }
  8012. #u9729_img {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:0px;
  8016. top:0px;
  8017. width:97px;
  8018. height:32px;
  8019. }
  8020. #u9729 {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:915px;
  8024. top:396px;
  8025. width:97px;
  8026. height:32px;
  8027. display:flex;
  8028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8029. font-weight:400;
  8030. font-style:normal;
  8031. font-size:12px;
  8032. color:#606266;
  8033. }
  8034. #u9729 .text {
  8035. position:absolute;
  8036. align-self:center;
  8037. padding:2px 2px 2px 0px;
  8038. box-sizing:border-box;
  8039. width:100%;
  8040. }
  8041. #u9729_text {
  8042. border-width:0px;
  8043. word-wrap:break-word;
  8044. text-transform:none;
  8045. visibility:hidden;
  8046. }
  8047. #u9730 {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:0px;
  8051. top:0px;
  8052. width:0px;
  8053. height:0px;
  8054. }
  8055. #u9731_div {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:120px;
  8061. height:180px;
  8062. background:inherit;
  8063. background-color:rgba(255, 255, 255, 1);
  8064. box-sizing:border-box;
  8065. border-width:1px;
  8066. border-style:solid;
  8067. border-color:rgba(242, 242, 242, 1);
  8068. border-left:0px;
  8069. border-right:0px;
  8070. border-radius:3px;
  8071. border-top-left-radius:0px;
  8072. border-top-right-radius:0px;
  8073. border-bottom-right-radius:0px;
  8074. border-bottom-left-radius:0px;
  8075. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8076. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8077. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8078. }
  8079. #u9731 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:1400px;
  8083. top:380px;
  8084. width:120px;
  8085. height:180px;
  8086. display:flex;
  8087. }
  8088. #u9731 .text {
  8089. position:absolute;
  8090. align-self:center;
  8091. padding:2px 2px 2px 2px;
  8092. box-sizing:border-box;
  8093. width:100%;
  8094. }
  8095. #u9731_text {
  8096. border-width:0px;
  8097. word-wrap:break-word;
  8098. text-transform:none;
  8099. visibility:hidden;
  8100. }
  8101. #u9732_div {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:100px;
  8107. height:40px;
  8108. background:inherit;
  8109. background-color:rgba(255, 255, 255, 1);
  8110. border:none;
  8111. border-left:0px;
  8112. border-top:0px;
  8113. border-right:0px;
  8114. border-radius:4px;
  8115. border-bottom-right-radius:0px;
  8116. border-bottom-left-radius:0px;
  8117. -moz-box-shadow:none;
  8118. -webkit-box-shadow:none;
  8119. box-shadow:none;
  8120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:14px;
  8124. }
  8125. #u9732 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:1410px;
  8129. top:511px;
  8130. width:100px;
  8131. height:40px;
  8132. display:flex;
  8133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8134. font-weight:400;
  8135. font-style:normal;
  8136. font-size:14px;
  8137. }
  8138. #u9732 .text {
  8139. position:absolute;
  8140. align-self:center;
  8141. padding:5px 0px 5px 0px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u9732_text {
  8146. border-width:0px;
  8147. word-wrap:break-word;
  8148. text-transform:none;
  8149. }
  8150. #u9733_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:100px;
  8156. height:40px;
  8157. background:inherit;
  8158. background-color:rgba(255, 255, 255, 1);
  8159. box-sizing:border-box;
  8160. border-width:1px;
  8161. border-style:solid;
  8162. border-color:rgba(242, 242, 242, 1);
  8163. border-left:0px;
  8164. border-top:0px;
  8165. border-right:0px;
  8166. border-radius:4px;
  8167. border-bottom-right-radius:0px;
  8168. border-bottom-left-radius:0px;
  8169. -moz-box-shadow:none;
  8170. -webkit-box-shadow:none;
  8171. box-shadow:none;
  8172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:14px;
  8176. }
  8177. #u9733 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:1410px;
  8181. top:391px;
  8182. width:100px;
  8183. height:40px;
  8184. display:flex;
  8185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:14px;
  8189. }
  8190. #u9733 .text {
  8191. position:absolute;
  8192. align-self:center;
  8193. padding:5px 0px 5px 0px;
  8194. box-sizing:border-box;
  8195. width:100%;
  8196. }
  8197. #u9733_text {
  8198. border-width:0px;
  8199. word-wrap:break-word;
  8200. text-transform:none;
  8201. }
  8202. #u9734_div {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:0px;
  8206. top:0px;
  8207. width:100px;
  8208. height:40px;
  8209. background:inherit;
  8210. background-color:rgba(255, 255, 255, 1);
  8211. box-sizing:border-box;
  8212. border-width:1px;
  8213. border-style:solid;
  8214. border-color:rgba(242, 242, 242, 1);
  8215. border-left:0px;
  8216. border-top:0px;
  8217. border-right:0px;
  8218. border-radius:4px;
  8219. border-bottom-right-radius:0px;
  8220. border-bottom-left-radius:0px;
  8221. -moz-box-shadow:none;
  8222. -webkit-box-shadow:none;
  8223. box-shadow:none;
  8224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8225. font-weight:400;
  8226. font-style:normal;
  8227. font-size:14px;
  8228. color:#D9001B;
  8229. }
  8230. #u9734 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:1410px;
  8234. top:431px;
  8235. width:100px;
  8236. height:40px;
  8237. display:flex;
  8238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8239. font-weight:400;
  8240. font-style:normal;
  8241. font-size:14px;
  8242. color:#D9001B;
  8243. }
  8244. #u9734 .text {
  8245. position:absolute;
  8246. align-self:center;
  8247. padding:5px 0px 5px 0px;
  8248. box-sizing:border-box;
  8249. width:100%;
  8250. }
  8251. #u9734_text {
  8252. border-width:0px;
  8253. word-wrap:break-word;
  8254. text-transform:none;
  8255. }
  8256. #u9735_div {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:100px;
  8262. height:40px;
  8263. background:inherit;
  8264. background-color:rgba(255, 255, 255, 1);
  8265. box-sizing:border-box;
  8266. border-width:1px;
  8267. border-style:solid;
  8268. border-color:rgba(242, 242, 242, 1);
  8269. border-left:0px;
  8270. border-top:0px;
  8271. border-right:0px;
  8272. border-radius:4px;
  8273. border-bottom-right-radius:0px;
  8274. border-bottom-left-radius:0px;
  8275. -moz-box-shadow:none;
  8276. -webkit-box-shadow:none;
  8277. box-shadow:none;
  8278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8279. font-weight:400;
  8280. font-style:normal;
  8281. font-size:14px;
  8282. }
  8283. #u9735 {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:1410px;
  8287. top:471px;
  8288. width:100px;
  8289. height:40px;
  8290. display:flex;
  8291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:14px;
  8295. }
  8296. #u9735 .text {
  8297. position:absolute;
  8298. align-self:center;
  8299. padding:5px 0px 5px 0px;
  8300. box-sizing:border-box;
  8301. width:100%;
  8302. }
  8303. #u9735_text {
  8304. border-width:0px;
  8305. word-wrap:break-word;
  8306. text-transform:none;
  8307. }
  8308. #u9736_div {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:0px;
  8312. top:0px;
  8313. width:55px;
  8314. height:30px;
  8315. background:inherit;
  8316. background-color:rgba(255, 255, 255, 1);
  8317. box-sizing:border-box;
  8318. border-width:1px;
  8319. border-style:solid;
  8320. border-color:rgba(170, 170, 170, 1);
  8321. border-radius:4px;
  8322. -moz-box-shadow:none;
  8323. -webkit-box-shadow:none;
  8324. box-shadow:none;
  8325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:12px;
  8329. color:#555555;
  8330. }
  8331. #u9736 {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:624px;
  8335. top:229px;
  8336. width:55px;
  8337. height:30px;
  8338. display:flex;
  8339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8340. font-weight:400;
  8341. font-style:normal;
  8342. font-size:12px;
  8343. color:#555555;
  8344. }
  8345. #u9736 .text {
  8346. position:absolute;
  8347. align-self:center;
  8348. padding:5px 15px 5px 15px;
  8349. box-sizing:border-box;
  8350. width:100%;
  8351. }
  8352. #u9736_text {
  8353. border-width:0px;
  8354. white-space:nowrap;
  8355. text-transform:none;
  8356. }
  8357. #u9737_div {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:0px;
  8361. top:0px;
  8362. width:59px;
  8363. height:30px;
  8364. background:inherit;
  8365. background-color:rgba(41, 143, 255, 1);
  8366. border:none;
  8367. border-radius:4px;
  8368. -moz-box-shadow:none;
  8369. -webkit-box-shadow:none;
  8370. box-shadow:none;
  8371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8372. font-weight:400;
  8373. font-style:normal;
  8374. font-size:14px;
  8375. color:#FFFFFF;
  8376. }
  8377. #u9737 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:555px;
  8381. top:229px;
  8382. width:59px;
  8383. height:30px;
  8384. display:flex;
  8385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:14px;
  8389. color:#FFFFFF;
  8390. }
  8391. #u9737 .text {
  8392. position:absolute;
  8393. align-self:center;
  8394. padding:5px 15px 5px 15px;
  8395. box-sizing:border-box;
  8396. width:100%;
  8397. }
  8398. #u9737_text {
  8399. border-width:0px;
  8400. white-space:nowrap;
  8401. text-transform:none;
  8402. }
  8403. #u9738 {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:0px;
  8409. height:0px;
  8410. }
  8411. #u9739_div {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:0px;
  8415. top:0px;
  8416. width:59px;
  8417. height:30px;
  8418. background:inherit;
  8419. background-color:rgba(41, 143, 255, 1);
  8420. border:none;
  8421. border-radius:4px;
  8422. -moz-box-shadow:none;
  8423. -webkit-box-shadow:none;
  8424. box-shadow:none;
  8425. font-family:'Microsoft YaHei', sans-serif;
  8426. font-weight:400;
  8427. font-style:normal;
  8428. font-size:14px;
  8429. color:#FFFFFF;
  8430. }
  8431. #u9739 {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:1156px;
  8435. top:187px;
  8436. width:59px;
  8437. height:30px;
  8438. display:flex;
  8439. font-family:'Microsoft YaHei', sans-serif;
  8440. font-weight:400;
  8441. font-style:normal;
  8442. font-size:14px;
  8443. color:#FFFFFF;
  8444. }
  8445. #u9739 .text {
  8446. position:absolute;
  8447. align-self:center;
  8448. padding:5px 15px 5px 15px;
  8449. box-sizing:border-box;
  8450. width:100%;
  8451. }
  8452. #u9739_text {
  8453. border-width:0px;
  8454. white-space:nowrap;
  8455. text-transform:none;
  8456. }
  8457. #u9740_div {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:0px;
  8461. top:0px;
  8462. width:55px;
  8463. height:30px;
  8464. background:inherit;
  8465. background-color:rgba(255, 255, 255, 1);
  8466. box-sizing:border-box;
  8467. border-width:1px;
  8468. border-style:solid;
  8469. border-color:rgba(170, 170, 170, 1);
  8470. border-radius:4px;
  8471. -moz-box-shadow:none;
  8472. -webkit-box-shadow:none;
  8473. box-shadow:none;
  8474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8475. font-weight:400;
  8476. font-style:normal;
  8477. font-size:12px;
  8478. color:#555555;
  8479. }
  8480. #u9740 {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:1225px;
  8484. top:187px;
  8485. width:55px;
  8486. height:30px;
  8487. display:flex;
  8488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8489. font-weight:400;
  8490. font-style:normal;
  8491. font-size:12px;
  8492. color:#555555;
  8493. }
  8494. #u9740 .text {
  8495. position:absolute;
  8496. align-self:center;
  8497. padding:5px 15px 5px 15px;
  8498. box-sizing:border-box;
  8499. width:100%;
  8500. }
  8501. #u9740_text {
  8502. border-width:0px;
  8503. white-space:nowrap;
  8504. text-transform:none;
  8505. }
  8506. #u9741 {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:0px;
  8510. top:0px;
  8511. width:0px;
  8512. height:0px;
  8513. }
  8514. #u9742_div {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:140px;
  8520. height:30px;
  8521. background:inherit;
  8522. background-color:rgba(255, 255, 255, 1);
  8523. box-sizing:border-box;
  8524. border-width:1px;
  8525. border-style:solid;
  8526. border-color:rgba(201, 201, 201, 1);
  8527. border-radius:4px;
  8528. -moz-box-shadow:none;
  8529. -webkit-box-shadow:none;
  8530. box-shadow:none;
  8531. font-family:'Microsoft YaHei', sans-serif;
  8532. font-weight:400;
  8533. font-style:normal;
  8534. font-size:14px;
  8535. color:#CCCCCC;
  8536. text-align:left;
  8537. }
  8538. #u9742 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:706px;
  8542. top:186px;
  8543. width:140px;
  8544. height:30px;
  8545. display:flex;
  8546. font-family:'Microsoft YaHei', sans-serif;
  8547. font-weight:400;
  8548. font-style:normal;
  8549. font-size:14px;
  8550. color:#CCCCCC;
  8551. text-align:left;
  8552. }
  8553. #u9742 .text {
  8554. position:absolute;
  8555. align-self:center;
  8556. padding:2px 8px 2px 8px;
  8557. box-sizing:border-box;
  8558. width:100%;
  8559. }
  8560. #u9742_text {
  8561. border-width:0px;
  8562. word-wrap:break-word;
  8563. text-transform:none;
  8564. visibility:hidden;
  8565. }
  8566. #u9743_input {
  8567. position:absolute;
  8568. left:0px;
  8569. top:0px;
  8570. width:127px;
  8571. height:25px;
  8572. padding:2px 2px 2px 2px;
  8573. font-family:'Microsoft YaHei', sans-serif;
  8574. font-weight:400;
  8575. font-style:normal;
  8576. font-size:10px;
  8577. letter-spacing:normal;
  8578. color:#000000;
  8579. vertical-align:none;
  8580. text-align:left;
  8581. text-transform:none;
  8582. background-color:transparent;
  8583. border-color:transparent;
  8584. }
  8585. #u9743_input.disabled {
  8586. position:absolute;
  8587. left:0px;
  8588. top:0px;
  8589. width:127px;
  8590. height:25px;
  8591. padding:2px 2px 2px 2px;
  8592. font-family:'Microsoft YaHei', sans-serif;
  8593. font-weight:400;
  8594. font-style:normal;
  8595. font-size:10px;
  8596. letter-spacing:normal;
  8597. color:#000000;
  8598. vertical-align:none;
  8599. text-align:left;
  8600. text-transform:none;
  8601. background-color:transparent;
  8602. border-color:transparent;
  8603. }
  8604. #u9743_div {
  8605. border-width:0px;
  8606. position:absolute;
  8607. left:0px;
  8608. top:0px;
  8609. width:127px;
  8610. height:25px;
  8611. background:inherit;
  8612. background-color:rgba(255, 255, 255, 1);
  8613. border:none;
  8614. border-radius:0px;
  8615. -moz-box-shadow:none;
  8616. -webkit-box-shadow:none;
  8617. box-shadow:none;
  8618. font-family:'Microsoft YaHei', sans-serif;
  8619. font-weight:400;
  8620. font-style:normal;
  8621. font-size:10px;
  8622. }
  8623. #u9743 {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:714px;
  8627. top:187px;
  8628. width:127px;
  8629. height:25px;
  8630. display:flex;
  8631. font-family:'Microsoft YaHei', sans-serif;
  8632. font-weight:400;
  8633. font-style:normal;
  8634. font-size:10px;
  8635. }
  8636. #u9743 .text {
  8637. position:absolute;
  8638. align-self:center;
  8639. padding:2px 2px 2px 2px;
  8640. box-sizing:border-box;
  8641. width:100%;
  8642. }
  8643. #u9743_div.disabled {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:0px;
  8647. top:0px;
  8648. width:127px;
  8649. height:25px;
  8650. background:inherit;
  8651. background-color:rgba(240, 240, 240, 1);
  8652. border:none;
  8653. border-radius:0px;
  8654. -moz-box-shadow:none;
  8655. -webkit-box-shadow:none;
  8656. box-shadow:none;
  8657. font-family:'Microsoft YaHei', sans-serif;
  8658. font-weight:400;
  8659. font-style:normal;
  8660. font-size:10px;
  8661. }
  8662. #u9743.disabled {
  8663. }
  8664. #u9744 {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:0px;
  8668. top:0px;
  8669. width:0px;
  8670. height:0px;
  8671. }
  8672. #u9745_div {
  8673. border-width:0px;
  8674. position:absolute;
  8675. left:0px;
  8676. top:0px;
  8677. width:140px;
  8678. height:30px;
  8679. background:inherit;
  8680. background-color:rgba(255, 255, 255, 1);
  8681. box-sizing:border-box;
  8682. border-width:1px;
  8683. border-style:solid;
  8684. border-color:rgba(215, 215, 215, 1);
  8685. border-radius:4px;
  8686. -moz-box-shadow:none;
  8687. -webkit-box-shadow:none;
  8688. box-shadow:none;
  8689. font-size:11px;
  8690. }
  8691. #u9745 {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:856px;
  8695. top:186px;
  8696. width:140px;
  8697. height:30px;
  8698. display:flex;
  8699. font-size:11px;
  8700. }
  8701. #u9745 .text {
  8702. position:absolute;
  8703. align-self:center;
  8704. padding:2px 2px 2px 2px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u9745_text {
  8709. border-width:0px;
  8710. word-wrap:break-word;
  8711. text-transform:none;
  8712. visibility:hidden;
  8713. }
  8714. #u9746_input {
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:125px;
  8719. height:23px;
  8720. padding:2px 2px 2px 2px;
  8721. font-family:'ArialMT', 'Arial', sans-serif;
  8722. font-weight:400;
  8723. font-style:normal;
  8724. font-size:11px;
  8725. letter-spacing:normal;
  8726. color:#AAAAAA;
  8727. vertical-align:none;
  8728. text-align:left;
  8729. text-transform:none;
  8730. background-color:transparent;
  8731. border-color:transparent;
  8732. }
  8733. #u9746_input.disabled {
  8734. position:absolute;
  8735. left:0px;
  8736. top:0px;
  8737. width:125px;
  8738. height:23px;
  8739. padding:2px 2px 2px 2px;
  8740. font-family:'ArialMT', 'Arial', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:11px;
  8744. letter-spacing:normal;
  8745. color:#AAAAAA;
  8746. vertical-align:none;
  8747. text-align:left;
  8748. text-transform:none;
  8749. background-color:transparent;
  8750. border-color:transparent;
  8751. }
  8752. #u9746_div {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:0px;
  8756. top:0px;
  8757. width:125px;
  8758. height:23px;
  8759. background:inherit;
  8760. background-color:rgba(255, 255, 255, 1);
  8761. border:none;
  8762. border-radius:0px;
  8763. -moz-box-shadow:none;
  8764. -webkit-box-shadow:none;
  8765. box-shadow:none;
  8766. font-size:11px;
  8767. color:#AAAAAA;
  8768. }
  8769. #u9746 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:862px;
  8773. top:188px;
  8774. width:125px;
  8775. height:23px;
  8776. display:flex;
  8777. font-size:11px;
  8778. color:#AAAAAA;
  8779. }
  8780. #u9746 .text {
  8781. position:absolute;
  8782. align-self:flex-start;
  8783. padding:2px 2px 2px 2px;
  8784. box-sizing:border-box;
  8785. width:100%;
  8786. }
  8787. #u9746_div.disabled {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:0px;
  8791. top:0px;
  8792. width:125px;
  8793. height:23px;
  8794. background:inherit;
  8795. background-color:rgba(240, 240, 240, 1);
  8796. border:none;
  8797. border-radius:0px;
  8798. -moz-box-shadow:none;
  8799. -webkit-box-shadow:none;
  8800. box-shadow:none;
  8801. font-size:11px;
  8802. color:#AAAAAA;
  8803. }
  8804. #u9746.disabled {
  8805. }
  8806. .u9746_input_option {
  8807. font-size:11px;
  8808. }
  8809. #u9747 {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:0px;
  8815. height:0px;
  8816. }
  8817. #u9748_div {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:0px;
  8821. top:0px;
  8822. width:140px;
  8823. height:30px;
  8824. background:inherit;
  8825. background-color:rgba(255, 255, 255, 1);
  8826. box-sizing:border-box;
  8827. border-width:1px;
  8828. border-style:solid;
  8829. border-color:rgba(215, 215, 215, 1);
  8830. border-radius:4px;
  8831. -moz-box-shadow:none;
  8832. -webkit-box-shadow:none;
  8833. box-shadow:none;
  8834. font-size:11px;
  8835. }
  8836. #u9748 {
  8837. border-width:0px;
  8838. position:absolute;
  8839. left:1006px;
  8840. top:186px;
  8841. width:140px;
  8842. height:30px;
  8843. display:flex;
  8844. font-size:11px;
  8845. }
  8846. #u9748 .text {
  8847. position:absolute;
  8848. align-self:center;
  8849. padding:2px 2px 2px 2px;
  8850. box-sizing:border-box;
  8851. width:100%;
  8852. }
  8853. #u9748_text {
  8854. border-width:0px;
  8855. word-wrap:break-word;
  8856. text-transform:none;
  8857. visibility:hidden;
  8858. }
  8859. #u9749_input {
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:125px;
  8864. height:23px;
  8865. padding:2px 2px 2px 2px;
  8866. font-family:'ArialMT', 'Arial', sans-serif;
  8867. font-weight:400;
  8868. font-style:normal;
  8869. font-size:11px;
  8870. letter-spacing:normal;
  8871. color:#AAAAAA;
  8872. vertical-align:none;
  8873. text-align:left;
  8874. text-transform:none;
  8875. background-color:transparent;
  8876. border-color:transparent;
  8877. }
  8878. #u9749_input.disabled {
  8879. position:absolute;
  8880. left:0px;
  8881. top:0px;
  8882. width:125px;
  8883. height:23px;
  8884. padding:2px 2px 2px 2px;
  8885. font-family:'ArialMT', 'Arial', sans-serif;
  8886. font-weight:400;
  8887. font-style:normal;
  8888. font-size:11px;
  8889. letter-spacing:normal;
  8890. color:#AAAAAA;
  8891. vertical-align:none;
  8892. text-align:left;
  8893. text-transform:none;
  8894. background-color:transparent;
  8895. border-color:transparent;
  8896. }
  8897. #u9749_div {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:125px;
  8903. height:23px;
  8904. background:inherit;
  8905. background-color:rgba(255, 255, 255, 1);
  8906. border:none;
  8907. border-radius:0px;
  8908. -moz-box-shadow:none;
  8909. -webkit-box-shadow:none;
  8910. box-shadow:none;
  8911. font-size:11px;
  8912. color:#AAAAAA;
  8913. }
  8914. #u9749 {
  8915. border-width:0px;
  8916. position:absolute;
  8917. left:1012px;
  8918. top:188px;
  8919. width:125px;
  8920. height:23px;
  8921. display:flex;
  8922. font-size:11px;
  8923. color:#AAAAAA;
  8924. }
  8925. #u9749 .text {
  8926. position:absolute;
  8927. align-self:flex-start;
  8928. padding:2px 2px 2px 2px;
  8929. box-sizing:border-box;
  8930. width:100%;
  8931. }
  8932. #u9749_div.disabled {
  8933. border-width:0px;
  8934. position:absolute;
  8935. left:0px;
  8936. top:0px;
  8937. width:125px;
  8938. height:23px;
  8939. background:inherit;
  8940. background-color:rgba(240, 240, 240, 1);
  8941. border:none;
  8942. border-radius:0px;
  8943. -moz-box-shadow:none;
  8944. -webkit-box-shadow:none;
  8945. box-shadow:none;
  8946. font-size:11px;
  8947. color:#AAAAAA;
  8948. }
  8949. #u9749.disabled {
  8950. }
  8951. .u9749_input_option {
  8952. font-size:11px;
  8953. }
  8954. #u9750 {
  8955. border-width:0px;
  8956. position:absolute;
  8957. left:0px;
  8958. top:0px;
  8959. width:0px;
  8960. height:0px;
  8961. }
  8962. #u9751_div {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:0px;
  8966. top:0px;
  8967. width:140px;
  8968. height:30px;
  8969. background:inherit;
  8970. background-color:rgba(255, 255, 255, 1);
  8971. box-sizing:border-box;
  8972. border-width:1px;
  8973. border-style:solid;
  8974. border-color:rgba(201, 201, 201, 1);
  8975. border-radius:4px;
  8976. -moz-box-shadow:none;
  8977. -webkit-box-shadow:none;
  8978. box-shadow:none;
  8979. font-family:'Microsoft YaHei', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:14px;
  8983. color:#CCCCCC;
  8984. text-align:left;
  8985. }
  8986. #u9751 {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:556px;
  8990. top:186px;
  8991. width:140px;
  8992. height:30px;
  8993. display:flex;
  8994. font-family:'Microsoft YaHei', sans-serif;
  8995. font-weight:400;
  8996. font-style:normal;
  8997. font-size:14px;
  8998. color:#CCCCCC;
  8999. text-align:left;
  9000. }
  9001. #u9751 .text {
  9002. position:absolute;
  9003. align-self:center;
  9004. padding:2px 8px 2px 8px;
  9005. box-sizing:border-box;
  9006. width:100%;
  9007. }
  9008. #u9751_text {
  9009. border-width:0px;
  9010. word-wrap:break-word;
  9011. text-transform:none;
  9012. visibility:hidden;
  9013. }
  9014. #u9752_input {
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:127px;
  9019. height:25px;
  9020. padding:2px 2px 2px 2px;
  9021. font-family:'Microsoft YaHei', sans-serif;
  9022. font-weight:400;
  9023. font-style:normal;
  9024. font-size:10px;
  9025. letter-spacing:normal;
  9026. color:#000000;
  9027. vertical-align:none;
  9028. text-align:left;
  9029. text-transform:none;
  9030. background-color:transparent;
  9031. border-color:transparent;
  9032. }
  9033. #u9752_input.disabled {
  9034. position:absolute;
  9035. left:0px;
  9036. top:0px;
  9037. width:127px;
  9038. height:25px;
  9039. padding:2px 2px 2px 2px;
  9040. font-family:'Microsoft YaHei', sans-serif;
  9041. font-weight:400;
  9042. font-style:normal;
  9043. font-size:10px;
  9044. letter-spacing:normal;
  9045. color:#000000;
  9046. vertical-align:none;
  9047. text-align:left;
  9048. text-transform:none;
  9049. background-color:transparent;
  9050. border-color:transparent;
  9051. }
  9052. #u9752_div {
  9053. border-width:0px;
  9054. position:absolute;
  9055. left:0px;
  9056. top:0px;
  9057. width:127px;
  9058. height:25px;
  9059. background:inherit;
  9060. background-color:rgba(255, 255, 255, 1);
  9061. border:none;
  9062. border-radius:0px;
  9063. -moz-box-shadow:none;
  9064. -webkit-box-shadow:none;
  9065. box-shadow:none;
  9066. font-family:'Microsoft YaHei', sans-serif;
  9067. font-weight:400;
  9068. font-style:normal;
  9069. font-size:10px;
  9070. }
  9071. #u9752 {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:564px;
  9075. top:187px;
  9076. width:127px;
  9077. height:25px;
  9078. display:flex;
  9079. font-family:'Microsoft YaHei', sans-serif;
  9080. font-weight:400;
  9081. font-style:normal;
  9082. font-size:10px;
  9083. }
  9084. #u9752 .text {
  9085. position:absolute;
  9086. align-self:center;
  9087. padding:2px 2px 2px 2px;
  9088. box-sizing:border-box;
  9089. width:100%;
  9090. }
  9091. #u9752_div.disabled {
  9092. border-width:0px;
  9093. position:absolute;
  9094. left:0px;
  9095. top:0px;
  9096. width:127px;
  9097. height:25px;
  9098. background:inherit;
  9099. background-color:rgba(240, 240, 240, 1);
  9100. border:none;
  9101. border-radius:0px;
  9102. -moz-box-shadow:none;
  9103. -webkit-box-shadow:none;
  9104. box-shadow:none;
  9105. font-family:'Microsoft YaHei', sans-serif;
  9106. font-weight:400;
  9107. font-style:normal;
  9108. font-size:10px;
  9109. }
  9110. #u9752.disabled {
  9111. }
  9112. #u9753 {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:0px;
  9116. top:0px;
  9117. width:0px;
  9118. height:0px;
  9119. }
  9120. #u9754_div {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:0px;
  9124. top:0px;
  9125. width:800px;
  9126. height:1200px;
  9127. background:inherit;
  9128. background-color:rgba(255, 255, 255, 1);
  9129. box-sizing:border-box;
  9130. border-width:1px;
  9131. border-style:solid;
  9132. border-color:rgba(215, 215, 215, 1);
  9133. border-radius:0px;
  9134. -moz-box-shadow:none;
  9135. -webkit-box-shadow:none;
  9136. box-shadow:none;
  9137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9138. font-weight:400;
  9139. font-style:normal;
  9140. font-size:14px;
  9141. color:#AAAAAA;
  9142. text-align:center;
  9143. line-height:30px;
  9144. }
  9145. #u9754 {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:1652px;
  9149. top:50px;
  9150. width:800px;
  9151. height:1200px;
  9152. display:flex;
  9153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9154. font-weight:400;
  9155. font-style:normal;
  9156. font-size:14px;
  9157. color:#AAAAAA;
  9158. text-align:center;
  9159. line-height:30px;
  9160. }
  9161. #u9754 .text {
  9162. position:absolute;
  9163. align-self:center;
  9164. padding:5px 10px 5px 10px;
  9165. box-sizing:border-box;
  9166. width:100%;
  9167. }
  9168. #u9754_text {
  9169. border-width:0px;
  9170. word-wrap:break-word;
  9171. text-transform:none;
  9172. visibility:hidden;
  9173. }
  9174. #u9755_div {
  9175. border-width:0px;
  9176. position:absolute;
  9177. left:0px;
  9178. top:0px;
  9179. width:736px;
  9180. height:100px;
  9181. background:inherit;
  9182. background-color:rgba(242, 242, 242, 1);
  9183. border:none;
  9184. border-radius:4px;
  9185. -moz-box-shadow:none;
  9186. -webkit-box-shadow:none;
  9187. box-shadow:none;
  9188. font-size:11px;
  9189. }
  9190. #u9755 {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:1672px;
  9194. top:113px;
  9195. width:736px;
  9196. height:100px;
  9197. display:flex;
  9198. font-size:11px;
  9199. }
  9200. #u9755 .text {
  9201. position:absolute;
  9202. align-self:center;
  9203. padding:2px 2px 2px 2px;
  9204. box-sizing:border-box;
  9205. width:100%;
  9206. }
  9207. #u9755_text {
  9208. border-width:0px;
  9209. word-wrap:break-word;
  9210. text-transform:none;
  9211. visibility:hidden;
  9212. }
  9213. #u9756_div {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:119px;
  9219. height:35px;
  9220. background:inherit;
  9221. background-color:rgba(255, 255, 255, 0);
  9222. border:none;
  9223. border-top:0px;
  9224. border-right:0px;
  9225. border-bottom:0px;
  9226. border-radius:0px;
  9227. border-top-left-radius:0px;
  9228. border-bottom-left-radius:0px;
  9229. -moz-box-shadow:none;
  9230. -webkit-box-shadow:none;
  9231. box-shadow:none;
  9232. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9233. font-weight:500;
  9234. font-style:normal;
  9235. font-size:18px;
  9236. }
  9237. #u9756 {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:1672px;
  9241. top:68px;
  9242. width:119px;
  9243. height:35px;
  9244. display:flex;
  9245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9246. font-weight:500;
  9247. font-style:normal;
  9248. font-size:18px;
  9249. }
  9250. #u9756 .text {
  9251. position:absolute;
  9252. align-self:center;
  9253. padding:5px 10px 5px 0px;
  9254. box-sizing:border-box;
  9255. width:100%;
  9256. }
  9257. #u9756_text {
  9258. border-width:0px;
  9259. white-space:nowrap;
  9260. text-transform:none;
  9261. }
  9262. #u9757_div {
  9263. border-width:0px;
  9264. position:absolute;
  9265. left:0px;
  9266. top:0px;
  9267. width:740px;
  9268. height:40px;
  9269. background:inherit;
  9270. background-color:rgba(255, 255, 128, 0.0980392156862745);
  9271. border:none;
  9272. border-radius:6px;
  9273. -moz-box-shadow:none;
  9274. -webkit-box-shadow:none;
  9275. box-shadow:none;
  9276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:12px;
  9280. color:#F59A23;
  9281. text-align:left;
  9282. }
  9283. #u9757 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:1672px;
  9287. top:223px;
  9288. width:740px;
  9289. height:40px;
  9290. display:flex;
  9291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9292. font-weight:400;
  9293. font-style:normal;
  9294. font-size:12px;
  9295. color:#F59A23;
  9296. text-align:left;
  9297. }
  9298. #u9757 .text {
  9299. position:absolute;
  9300. align-self:center;
  9301. padding:2px 2px 2px 10px;
  9302. box-sizing:border-box;
  9303. width:100%;
  9304. }
  9305. #u9757_text {
  9306. border-width:0px;
  9307. word-wrap:break-word;
  9308. text-transform:none;
  9309. }
  9310. #u9758_div {
  9311. border-width:0px;
  9312. position:absolute;
  9313. left:0px;
  9314. top:0px;
  9315. width:78px;
  9316. height:30px;
  9317. background:inherit;
  9318. background-color:rgba(255, 255, 255, 0);
  9319. border:none;
  9320. border-top:0px;
  9321. border-right:0px;
  9322. border-bottom:0px;
  9323. border-radius:0px;
  9324. border-top-left-radius:0px;
  9325. border-bottom-left-radius:0px;
  9326. -moz-box-shadow:none;
  9327. -webkit-box-shadow:none;
  9328. box-shadow:none;
  9329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9330. font-weight:400;
  9331. font-style:normal;
  9332. font-size:14px;
  9333. color:#7F7F7F;
  9334. }
  9335. #u9758 {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:1705px;
  9339. top:286px;
  9340. width:78px;
  9341. height:30px;
  9342. display:flex;
  9343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9344. font-weight:400;
  9345. font-style:normal;
  9346. font-size:14px;
  9347. color:#7F7F7F;
  9348. }
  9349. #u9758 .text {
  9350. position:absolute;
  9351. align-self:center;
  9352. padding:5px 0px 5px 0px;
  9353. box-sizing:border-box;
  9354. width:100%;
  9355. }
  9356. #u9758_text {
  9357. border-width:0px;
  9358. white-space:nowrap;
  9359. text-transform:none;
  9360. }
  9361. #u9759 {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:0px;
  9367. height:0px;
  9368. }
  9369. #u9760 {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:0px;
  9373. top:0px;
  9374. width:0px;
  9375. height:0px;
  9376. }
  9377. #u9761_div {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:0px;
  9381. top:0px;
  9382. width:552px;
  9383. height:100px;
  9384. background:inherit;
  9385. background-color:rgba(255, 255, 255, 1);
  9386. box-sizing:border-box;
  9387. border-width:1px;
  9388. border-style:solid;
  9389. border-color:rgba(215, 215, 215, 1);
  9390. border-radius:4px;
  9391. -moz-box-shadow:none;
  9392. -webkit-box-shadow:none;
  9393. box-shadow:none;
  9394. font-size:11px;
  9395. }
  9396. #u9761 {
  9397. border-width:0px;
  9398. position:absolute;
  9399. left:1794px;
  9400. top:531px;
  9401. width:552px;
  9402. height:100px;
  9403. display:flex;
  9404. font-size:11px;
  9405. }
  9406. #u9761 .text {
  9407. position:absolute;
  9408. align-self:center;
  9409. padding:2px 2px 2px 2px;
  9410. box-sizing:border-box;
  9411. width:100%;
  9412. }
  9413. #u9761_text {
  9414. border-width:0px;
  9415. word-wrap:break-word;
  9416. text-transform:none;
  9417. visibility:hidden;
  9418. }
  9419. #u9762_input {
  9420. position:absolute;
  9421. left:0px;
  9422. top:0px;
  9423. width:515px;
  9424. height:80px;
  9425. padding:2px 2px 2px 2px;
  9426. font-family:'ArialMT', 'Arial', sans-serif;
  9427. font-weight:400;
  9428. font-style:normal;
  9429. font-size:13px;
  9430. letter-spacing:normal;
  9431. color:#000000;
  9432. vertical-align:none;
  9433. text-align:left;
  9434. text-transform:none;
  9435. background-color:transparent;
  9436. border-color:transparent;
  9437. resize:none;
  9438. }
  9439. #u9762_input.disabled {
  9440. position:absolute;
  9441. left:0px;
  9442. top:0px;
  9443. width:515px;
  9444. height:80px;
  9445. padding:2px 2px 2px 2px;
  9446. font-family:'ArialMT', 'Arial', sans-serif;
  9447. font-weight:400;
  9448. font-style:normal;
  9449. font-size:13px;
  9450. letter-spacing:normal;
  9451. color:#000000;
  9452. vertical-align:none;
  9453. text-align:left;
  9454. text-transform:none;
  9455. background-color:transparent;
  9456. border-color:transparent;
  9457. resize:none;
  9458. }
  9459. #u9762_div {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:0px;
  9463. top:0px;
  9464. width:515px;
  9465. height:80px;
  9466. background:inherit;
  9467. background-color:rgba(255, 255, 255, 1);
  9468. border:none;
  9469. border-radius:0px;
  9470. -moz-box-shadow:none;
  9471. -webkit-box-shadow:none;
  9472. box-shadow:none;
  9473. }
  9474. #u9762 {
  9475. border-width:0px;
  9476. position:absolute;
  9477. left:1813px;
  9478. top:541px;
  9479. width:515px;
  9480. height:80px;
  9481. display:flex;
  9482. }
  9483. #u9762 .text {
  9484. position:absolute;
  9485. align-self:flex-start;
  9486. padding:2px 2px 2px 2px;
  9487. box-sizing:border-box;
  9488. width:100%;
  9489. }
  9490. #u9762_div.disabled {
  9491. border-width:0px;
  9492. position:absolute;
  9493. left:0px;
  9494. top:0px;
  9495. width:515px;
  9496. height:80px;
  9497. background:inherit;
  9498. background-color:rgba(240, 240, 240, 1);
  9499. border:none;
  9500. border-radius:0px;
  9501. -moz-box-shadow:none;
  9502. -webkit-box-shadow:none;
  9503. box-shadow:none;
  9504. }
  9505. #u9762.disabled {
  9506. }
  9507. #u9763_div {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:0px;
  9511. top:0px;
  9512. width:56px;
  9513. height:14px;
  9514. background:inherit;
  9515. background-color:rgba(242, 242, 242, 1);
  9516. border:none;
  9517. border-radius:19px;
  9518. -moz-box-shadow:none;
  9519. -webkit-box-shadow:none;
  9520. box-shadow:none;
  9521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9522. font-weight:400;
  9523. font-style:normal;
  9524. font-size:10px;
  9525. color:#7F7F7F;
  9526. }
  9527. #u9763 {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:2283px;
  9531. top:612px;
  9532. width:56px;
  9533. height:14px;
  9534. display:flex;
  9535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9536. font-weight:400;
  9537. font-style:normal;
  9538. font-size:10px;
  9539. color:#7F7F7F;
  9540. }
  9541. #u9763 .text {
  9542. position:absolute;
  9543. align-self:center;
  9544. padding:0px 0px 0px 0px;
  9545. box-sizing:border-box;
  9546. width:100%;
  9547. }
  9548. #u9763_text {
  9549. border-width:0px;
  9550. word-wrap:break-word;
  9551. text-transform:none;
  9552. }
  9553. #u9764_div {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:0px;
  9557. top:0px;
  9558. width:64px;
  9559. height:30px;
  9560. background:inherit;
  9561. background-color:rgba(255, 255, 255, 0);
  9562. border:none;
  9563. border-top:0px;
  9564. border-right:0px;
  9565. border-bottom:0px;
  9566. border-radius:0px;
  9567. border-top-left-radius:0px;
  9568. border-bottom-left-radius:0px;
  9569. -moz-box-shadow:none;
  9570. -webkit-box-shadow:none;
  9571. box-shadow:none;
  9572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9573. font-weight:400;
  9574. font-style:normal;
  9575. font-size:14px;
  9576. color:#7F7F7F;
  9577. }
  9578. #u9764 {
  9579. border-width:0px;
  9580. position:absolute;
  9581. left:1705px;
  9582. top:336px;
  9583. width:64px;
  9584. height:30px;
  9585. display:flex;
  9586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9587. font-weight:400;
  9588. font-style:normal;
  9589. font-size:14px;
  9590. color:#7F7F7F;
  9591. }
  9592. #u9764 .text {
  9593. position:absolute;
  9594. align-self:center;
  9595. padding:5px 0px 5px 0px;
  9596. box-sizing:border-box;
  9597. width:100%;
  9598. }
  9599. #u9764_text {
  9600. border-width:0px;
  9601. white-space:nowrap;
  9602. text-transform:none;
  9603. }
  9604. #u9765 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:0px;
  9608. top:0px;
  9609. width:0px;
  9610. height:0px;
  9611. }
  9612. #u9766_div {
  9613. border-width:0px;
  9614. position:absolute;
  9615. left:0px;
  9616. top:0px;
  9617. width:553px;
  9618. height:40px;
  9619. background:inherit;
  9620. background-color:rgba(255, 255, 255, 1);
  9621. box-sizing:border-box;
  9622. border-width:1px;
  9623. border-style:solid;
  9624. border-color:rgba(215, 215, 215, 1);
  9625. border-radius:4px;
  9626. -moz-box-shadow:none;
  9627. -webkit-box-shadow:none;
  9628. box-shadow:none;
  9629. font-size:11px;
  9630. }
  9631. #u9766 {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:1793px;
  9635. top:331px;
  9636. width:553px;
  9637. height:40px;
  9638. display:flex;
  9639. font-size:11px;
  9640. }
  9641. #u9766 .text {
  9642. position:absolute;
  9643. align-self:center;
  9644. padding:2px 2px 2px 2px;
  9645. box-sizing:border-box;
  9646. width:100%;
  9647. }
  9648. #u9766_text {
  9649. border-width:0px;
  9650. word-wrap:break-word;
  9651. text-transform:none;
  9652. visibility:hidden;
  9653. }
  9654. #u9767_input {
  9655. position:absolute;
  9656. left:0px;
  9657. top:0px;
  9658. width:502px;
  9659. height:25px;
  9660. padding:2px 2px 2px 2px;
  9661. font-family:'ArialMT', 'Arial', sans-serif;
  9662. font-weight:400;
  9663. font-style:normal;
  9664. font-size:13px;
  9665. letter-spacing:normal;
  9666. color:#000000;
  9667. vertical-align:none;
  9668. text-align:left;
  9669. text-transform:none;
  9670. background-color:transparent;
  9671. border-color:transparent;
  9672. }
  9673. #u9767_input.disabled {
  9674. position:absolute;
  9675. left:0px;
  9676. top:0px;
  9677. width:502px;
  9678. height:25px;
  9679. padding:2px 2px 2px 2px;
  9680. font-family:'ArialMT', 'Arial', sans-serif;
  9681. font-weight:400;
  9682. font-style:normal;
  9683. font-size:13px;
  9684. letter-spacing:normal;
  9685. color:#000000;
  9686. vertical-align:none;
  9687. text-align:left;
  9688. text-transform:none;
  9689. background-color:transparent;
  9690. border-color:transparent;
  9691. }
  9692. #u9767_div {
  9693. border-width:0px;
  9694. position:absolute;
  9695. left:0px;
  9696. top:0px;
  9697. width:502px;
  9698. height:25px;
  9699. background:inherit;
  9700. background-color:rgba(255, 255, 255, 1);
  9701. border:none;
  9702. border-radius:0px;
  9703. -moz-box-shadow:none;
  9704. -webkit-box-shadow:none;
  9705. box-shadow:none;
  9706. }
  9707. #u9767 {
  9708. border-width:0px;
  9709. position:absolute;
  9710. left:1818px;
  9711. top:339px;
  9712. width:502px;
  9713. height:25px;
  9714. display:flex;
  9715. }
  9716. #u9767 .text {
  9717. position:absolute;
  9718. align-self:center;
  9719. padding:2px 2px 2px 2px;
  9720. box-sizing:border-box;
  9721. width:100%;
  9722. }
  9723. #u9767_div.disabled {
  9724. border-width:0px;
  9725. position:absolute;
  9726. left:0px;
  9727. top:0px;
  9728. width:502px;
  9729. height:25px;
  9730. background:inherit;
  9731. background-color:rgba(240, 240, 240, 1);
  9732. border:none;
  9733. border-radius:0px;
  9734. -moz-box-shadow:none;
  9735. -webkit-box-shadow:none;
  9736. box-shadow:none;
  9737. }
  9738. #u9767.disabled {
  9739. }
  9740. #u9768 {
  9741. border-width:0px;
  9742. position:absolute;
  9743. left:0px;
  9744. top:0px;
  9745. width:0px;
  9746. height:0px;
  9747. }
  9748. #u9769_div {
  9749. border-width:0px;
  9750. position:absolute;
  9751. left:0px;
  9752. top:0px;
  9753. width:800px;
  9754. height:50px;
  9755. background:inherit;
  9756. background-color:rgba(255, 255, 255, 1);
  9757. box-sizing:border-box;
  9758. border-width:1px;
  9759. border-style:solid;
  9760. border-color:rgba(215, 215, 215, 1);
  9761. border-radius:0px;
  9762. -moz-box-shadow:none;
  9763. -webkit-box-shadow:none;
  9764. box-shadow:none;
  9765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9766. font-weight:400;
  9767. font-style:normal;
  9768. font-size:14px;
  9769. color:#AAAAAA;
  9770. text-align:center;
  9771. line-height:30px;
  9772. }
  9773. #u9769 {
  9774. border-width:0px;
  9775. position:absolute;
  9776. left:1652px;
  9777. top:1200px;
  9778. width:800px;
  9779. height:50px;
  9780. display:flex;
  9781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9782. font-weight:400;
  9783. font-style:normal;
  9784. font-size:14px;
  9785. color:#AAAAAA;
  9786. text-align:center;
  9787. line-height:30px;
  9788. }
  9789. #u9769 .text {
  9790. position:absolute;
  9791. align-self:center;
  9792. padding:5px 10px 5px 10px;
  9793. box-sizing:border-box;
  9794. width:100%;
  9795. }
  9796. #u9769_text {
  9797. border-width:0px;
  9798. word-wrap:break-word;
  9799. text-transform:none;
  9800. visibility:hidden;
  9801. }
  9802. #u9770_div {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:0px;
  9806. top:0px;
  9807. width:80px;
  9808. height:30px;
  9809. background:inherit;
  9810. background-color:rgba(24, 144, 255, 1);
  9811. border:none;
  9812. border-radius:4px;
  9813. -moz-box-shadow:none;
  9814. -webkit-box-shadow:none;
  9815. box-shadow:none;
  9816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9817. font-weight:400;
  9818. font-style:normal;
  9819. font-size:14px;
  9820. color:#FFFFFF;
  9821. }
  9822. #u9770 {
  9823. border-width:0px;
  9824. position:absolute;
  9825. left:2352px;
  9826. top:1210px;
  9827. width:80px;
  9828. height:30px;
  9829. display:flex;
  9830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9831. font-weight:400;
  9832. font-style:normal;
  9833. font-size:14px;
  9834. color:#FFFFFF;
  9835. }
  9836. #u9770 .text {
  9837. position:absolute;
  9838. align-self:center;
  9839. padding:2px 2px 2px 2px;
  9840. box-sizing:border-box;
  9841. width:100%;
  9842. }
  9843. #u9770_text {
  9844. border-width:0px;
  9845. word-wrap:break-word;
  9846. text-transform:none;
  9847. }
  9848. #u9771_div {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:0px;
  9852. top:0px;
  9853. width:80px;
  9854. height:30px;
  9855. background:inherit;
  9856. background-color:rgba(255, 255, 255, 1);
  9857. box-sizing:border-box;
  9858. border-width:1px;
  9859. border-style:solid;
  9860. border-color:rgba(170, 170, 170, 1);
  9861. border-radius:4px;
  9862. -moz-box-shadow:none;
  9863. -webkit-box-shadow:none;
  9864. box-shadow:none;
  9865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9866. font-weight:400;
  9867. font-style:normal;
  9868. font-size:14px;
  9869. }
  9870. #u9771 {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:2252px;
  9874. top:1210px;
  9875. width:80px;
  9876. height:30px;
  9877. display:flex;
  9878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9879. font-weight:400;
  9880. font-style:normal;
  9881. font-size:14px;
  9882. }
  9883. #u9771 .text {
  9884. position:absolute;
  9885. align-self:center;
  9886. padding:2px 2px 2px 2px;
  9887. box-sizing:border-box;
  9888. width:100%;
  9889. }
  9890. #u9771_text {
  9891. border-width:0px;
  9892. word-wrap:break-word;
  9893. text-transform:none;
  9894. }
  9895. #u9772_div {
  9896. border-width:0px;
  9897. position:absolute;
  9898. left:0px;
  9899. top:0px;
  9900. width:71px;
  9901. height:30px;
  9902. background:inherit;
  9903. background-color:rgba(255, 255, 255, 0);
  9904. border:none;
  9905. border-top:0px;
  9906. border-right:0px;
  9907. border-bottom:0px;
  9908. border-radius:0px;
  9909. border-top-left-radius:0px;
  9910. border-bottom-left-radius:0px;
  9911. -moz-box-shadow:none;
  9912. -webkit-box-shadow:none;
  9913. box-shadow:none;
  9914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9915. font-weight:400;
  9916. font-style:normal;
  9917. font-size:14px;
  9918. color:#7F7F7F;
  9919. }
  9920. #u9772 {
  9921. border-width:0px;
  9922. position:absolute;
  9923. left:1693px;
  9924. top:129px;
  9925. width:71px;
  9926. height:30px;
  9927. display:flex;
  9928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9929. font-weight:400;
  9930. font-style:normal;
  9931. font-size:14px;
  9932. color:#7F7F7F;
  9933. }
  9934. #u9772 .text {
  9935. position:absolute;
  9936. align-self:center;
  9937. padding:5px 0px 5px 0px;
  9938. box-sizing:border-box;
  9939. width:100%;
  9940. }
  9941. #u9772_text {
  9942. border-width:0px;
  9943. white-space:nowrap;
  9944. text-transform:none;
  9945. }
  9946. #u9773_div {
  9947. border-width:0px;
  9948. position:absolute;
  9949. left:0px;
  9950. top:0px;
  9951. width:155px;
  9952. height:30px;
  9953. background:inherit;
  9954. background-color:rgba(255, 255, 255, 0);
  9955. border:none;
  9956. border-top:0px;
  9957. border-right:0px;
  9958. border-bottom:0px;
  9959. border-radius:0px;
  9960. border-top-left-radius:0px;
  9961. border-bottom-left-radius:0px;
  9962. -moz-box-shadow:none;
  9963. -webkit-box-shadow:none;
  9964. box-shadow:none;
  9965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9966. font-weight:400;
  9967. font-style:normal;
  9968. font-size:14px;
  9969. }
  9970. #u9773 {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:1772px;
  9974. top:129px;
  9975. width:155px;
  9976. height:30px;
  9977. display:flex;
  9978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9979. font-weight:400;
  9980. font-style:normal;
  9981. font-size:14px;
  9982. }
  9983. #u9773 .text {
  9984. position:absolute;
  9985. align-self:center;
  9986. padding:5px 0px 5px 0px;
  9987. box-sizing:border-box;
  9988. width:100%;
  9989. }
  9990. #u9773_text {
  9991. border-width:0px;
  9992. white-space:nowrap;
  9993. text-transform:none;
  9994. }
  9995. #u9774_div {
  9996. border-width:0px;
  9997. position:absolute;
  9998. left:0px;
  9999. top:0px;
  10000. width:71px;
  10001. height:30px;
  10002. background:inherit;
  10003. background-color:rgba(255, 255, 255, 0);
  10004. border:none;
  10005. border-top:0px;
  10006. border-right:0px;
  10007. border-bottom:0px;
  10008. border-radius:0px;
  10009. border-top-left-radius:0px;
  10010. border-bottom-left-radius:0px;
  10011. -moz-box-shadow:none;
  10012. -webkit-box-shadow:none;
  10013. box-shadow:none;
  10014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10015. font-weight:400;
  10016. font-style:normal;
  10017. font-size:14px;
  10018. color:#7F7F7F;
  10019. }
  10020. #u9774 {
  10021. border-width:0px;
  10022. position:absolute;
  10023. left:2096px;
  10024. top:129px;
  10025. width:71px;
  10026. height:30px;
  10027. display:flex;
  10028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10029. font-weight:400;
  10030. font-style:normal;
  10031. font-size:14px;
  10032. color:#7F7F7F;
  10033. }
  10034. #u9774 .text {
  10035. position:absolute;
  10036. align-self:center;
  10037. padding:5px 0px 5px 0px;
  10038. box-sizing:border-box;
  10039. width:100%;
  10040. }
  10041. #u9774_text {
  10042. border-width:0px;
  10043. white-space:nowrap;
  10044. text-transform:none;
  10045. }
  10046. #u9775_div {
  10047. border-width:0px;
  10048. position:absolute;
  10049. left:0px;
  10050. top:0px;
  10051. width:57px;
  10052. height:30px;
  10053. background:inherit;
  10054. background-color:rgba(255, 255, 255, 0);
  10055. border:none;
  10056. border-top:0px;
  10057. border-right:0px;
  10058. border-bottom:0px;
  10059. border-radius:0px;
  10060. border-top-left-radius:0px;
  10061. border-bottom-left-radius:0px;
  10062. -moz-box-shadow:none;
  10063. -webkit-box-shadow:none;
  10064. box-shadow:none;
  10065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10066. font-weight:400;
  10067. font-style:normal;
  10068. font-size:14px;
  10069. }
  10070. #u9775 {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:2175px;
  10074. top:129px;
  10075. width:57px;
  10076. height:30px;
  10077. display:flex;
  10078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10079. font-weight:400;
  10080. font-style:normal;
  10081. font-size:14px;
  10082. }
  10083. #u9775 .text {
  10084. position:absolute;
  10085. align-self:center;
  10086. padding:5px 0px 5px 0px;
  10087. box-sizing:border-box;
  10088. width:100%;
  10089. }
  10090. #u9775_text {
  10091. border-width:0px;
  10092. white-space:nowrap;
  10093. text-transform:none;
  10094. }
  10095. #u9776 {
  10096. border-width:0px;
  10097. position:absolute;
  10098. left:0px;
  10099. top:0px;
  10100. width:0px;
  10101. height:0px;
  10102. }
  10103. #u9777_div {
  10104. border-width:0px;
  10105. position:absolute;
  10106. left:0px;
  10107. top:0px;
  10108. width:555px;
  10109. height:40px;
  10110. background:inherit;
  10111. background-color:rgba(255, 255, 255, 1);
  10112. box-sizing:border-box;
  10113. border-width:1px;
  10114. border-style:solid;
  10115. border-color:rgba(215, 215, 215, 1);
  10116. border-radius:4px;
  10117. -moz-box-shadow:none;
  10118. -webkit-box-shadow:none;
  10119. box-shadow:none;
  10120. font-size:11px;
  10121. }
  10122. #u9777 {
  10123. border-width:0px;
  10124. position:absolute;
  10125. left:1792px;
  10126. top:281px;
  10127. width:555px;
  10128. height:40px;
  10129. display:flex;
  10130. font-size:11px;
  10131. }
  10132. #u9777 .text {
  10133. position:absolute;
  10134. align-self:center;
  10135. padding:2px 2px 2px 2px;
  10136. box-sizing:border-box;
  10137. width:100%;
  10138. }
  10139. #u9777_text {
  10140. border-width:0px;
  10141. word-wrap:break-word;
  10142. text-transform:none;
  10143. visibility:hidden;
  10144. }
  10145. #u9778_input {
  10146. position:absolute;
  10147. left:0px;
  10148. top:0px;
  10149. width:533px;
  10150. height:31px;
  10151. padding:2px 2px 2px 2px;
  10152. font-family:'ArialMT', 'Arial', sans-serif;
  10153. font-weight:400;
  10154. font-style:normal;
  10155. font-size:11px;
  10156. letter-spacing:normal;
  10157. color:#AAAAAA;
  10158. vertical-align:none;
  10159. text-align:left;
  10160. text-transform:none;
  10161. background-color:transparent;
  10162. border-color:transparent;
  10163. }
  10164. #u9778_input.disabled {
  10165. position:absolute;
  10166. left:0px;
  10167. top:0px;
  10168. width:533px;
  10169. height:31px;
  10170. padding:2px 2px 2px 2px;
  10171. font-family:'ArialMT', 'Arial', sans-serif;
  10172. font-weight:400;
  10173. font-style:normal;
  10174. font-size:11px;
  10175. letter-spacing:normal;
  10176. color:#AAAAAA;
  10177. vertical-align:none;
  10178. text-align:left;
  10179. text-transform:none;
  10180. background-color:transparent;
  10181. border-color:transparent;
  10182. }
  10183. #u9778_div {
  10184. border-width:0px;
  10185. position:absolute;
  10186. left:0px;
  10187. top:0px;
  10188. width:533px;
  10189. height:31px;
  10190. background:inherit;
  10191. background-color:rgba(255, 255, 255, 1);
  10192. border:none;
  10193. border-radius:0px;
  10194. -moz-box-shadow:none;
  10195. -webkit-box-shadow:none;
  10196. box-shadow:none;
  10197. font-size:11px;
  10198. color:#AAAAAA;
  10199. }
  10200. #u9778 {
  10201. border-width:0px;
  10202. position:absolute;
  10203. left:1803px;
  10204. top:284px;
  10205. width:533px;
  10206. height:31px;
  10207. display:flex;
  10208. font-size:11px;
  10209. color:#AAAAAA;
  10210. }
  10211. #u9778 .text {
  10212. position:absolute;
  10213. align-self:flex-start;
  10214. padding:2px 2px 2px 2px;
  10215. box-sizing:border-box;
  10216. width:100%;
  10217. }
  10218. #u9778_div.disabled {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:533px;
  10224. height:31px;
  10225. background:inherit;
  10226. background-color:rgba(240, 240, 240, 1);
  10227. border:none;
  10228. border-radius:0px;
  10229. -moz-box-shadow:none;
  10230. -webkit-box-shadow:none;
  10231. box-shadow:none;
  10232. font-size:11px;
  10233. color:#AAAAAA;
  10234. }
  10235. #u9778.disabled {
  10236. }
  10237. .u9778_input_option {
  10238. font-size:11px;
  10239. }
  10240. #u9779_div {
  10241. border-width:0px;
  10242. position:absolute;
  10243. left:0px;
  10244. top:0px;
  10245. width:49px;
  10246. height:27px;
  10247. background:inherit;
  10248. background-color:rgba(255, 255, 255, 0);
  10249. border:none;
  10250. border-top:0px;
  10251. border-right:0px;
  10252. border-bottom:0px;
  10253. border-radius:0px;
  10254. border-top-left-radius:0px;
  10255. border-bottom-left-radius:0px;
  10256. -moz-box-shadow:none;
  10257. -webkit-box-shadow:none;
  10258. box-shadow:none;
  10259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10260. font-weight:400;
  10261. font-style:normal;
  10262. font-size:12px;
  10263. color:#1890FF;
  10264. }
  10265. #u9779 {
  10266. border-width:0px;
  10267. position:absolute;
  10268. left:2359px;
  10269. top:288px;
  10270. width:49px;
  10271. height:27px;
  10272. display:flex;
  10273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10274. font-weight:400;
  10275. font-style:normal;
  10276. font-size:12px;
  10277. color:#1890FF;
  10278. }
  10279. #u9779 .text {
  10280. position:absolute;
  10281. align-self:center;
  10282. padding:5px 0px 5px 0px;
  10283. box-sizing:border-box;
  10284. width:100%;
  10285. }
  10286. #u9779_text {
  10287. border-width:0px;
  10288. white-space:nowrap;
  10289. text-transform:none;
  10290. }
  10291. #u9780_div {
  10292. border-width:0px;
  10293. position:absolute;
  10294. left:0px;
  10295. top:0px;
  10296. width:78px;
  10297. height:30px;
  10298. background:inherit;
  10299. background-color:rgba(255, 255, 255, 0);
  10300. border:none;
  10301. border-top:0px;
  10302. border-right:0px;
  10303. border-bottom:0px;
  10304. border-radius:0px;
  10305. border-top-left-radius:0px;
  10306. border-bottom-left-radius:0px;
  10307. -moz-box-shadow:none;
  10308. -webkit-box-shadow:none;
  10309. box-shadow:none;
  10310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10311. font-weight:400;
  10312. font-style:normal;
  10313. font-size:14px;
  10314. color:#7F7F7F;
  10315. }
  10316. #u9780 {
  10317. border-width:0px;
  10318. position:absolute;
  10319. left:1705px;
  10320. top:386px;
  10321. width:78px;
  10322. height:30px;
  10323. display:flex;
  10324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10325. font-weight:400;
  10326. font-style:normal;
  10327. font-size:14px;
  10328. color:#7F7F7F;
  10329. }
  10330. #u9780 .text {
  10331. position:absolute;
  10332. align-self:center;
  10333. padding:5px 0px 5px 0px;
  10334. box-sizing:border-box;
  10335. width:100%;
  10336. }
  10337. #u9780_text {
  10338. border-width:0px;
  10339. white-space:nowrap;
  10340. text-transform:none;
  10341. }
  10342. #u9781 {
  10343. border-width:0px;
  10344. position:absolute;
  10345. left:0px;
  10346. top:0px;
  10347. width:0px;
  10348. height:0px;
  10349. }
  10350. #u9782_div {
  10351. border-width:0px;
  10352. position:absolute;
  10353. left:0px;
  10354. top:0px;
  10355. width:553px;
  10356. height:40px;
  10357. background:inherit;
  10358. background-color:rgba(255, 255, 255, 1);
  10359. box-sizing:border-box;
  10360. border-width:1px;
  10361. border-style:solid;
  10362. border-color:rgba(215, 215, 215, 1);
  10363. border-radius:4px;
  10364. -moz-box-shadow:none;
  10365. -webkit-box-shadow:none;
  10366. box-shadow:none;
  10367. font-size:11px;
  10368. }
  10369. #u9782 {
  10370. border-width:0px;
  10371. position:absolute;
  10372. left:1793px;
  10373. top:381px;
  10374. width:553px;
  10375. height:40px;
  10376. display:flex;
  10377. font-size:11px;
  10378. }
  10379. #u9782 .text {
  10380. position:absolute;
  10381. align-self:center;
  10382. padding:2px 2px 2px 2px;
  10383. box-sizing:border-box;
  10384. width:100%;
  10385. }
  10386. #u9782_text {
  10387. border-width:0px;
  10388. word-wrap:break-word;
  10389. text-transform:none;
  10390. visibility:hidden;
  10391. }
  10392. #u9783_input {
  10393. position:absolute;
  10394. left:0px;
  10395. top:0px;
  10396. width:502px;
  10397. height:25px;
  10398. padding:2px 2px 2px 2px;
  10399. font-family:'ArialMT', 'Arial', sans-serif;
  10400. font-weight:400;
  10401. font-style:normal;
  10402. font-size:13px;
  10403. letter-spacing:normal;
  10404. color:#000000;
  10405. vertical-align:none;
  10406. text-align:left;
  10407. text-transform:none;
  10408. background-color:transparent;
  10409. border-color:transparent;
  10410. }
  10411. #u9783_input.disabled {
  10412. position:absolute;
  10413. left:0px;
  10414. top:0px;
  10415. width:502px;
  10416. height:25px;
  10417. padding:2px 2px 2px 2px;
  10418. font-family:'ArialMT', 'Arial', sans-serif;
  10419. font-weight:400;
  10420. font-style:normal;
  10421. font-size:13px;
  10422. letter-spacing:normal;
  10423. color:#000000;
  10424. vertical-align:none;
  10425. text-align:left;
  10426. text-transform:none;
  10427. background-color:transparent;
  10428. border-color:transparent;
  10429. }
  10430. #u9783_div {
  10431. border-width:0px;
  10432. position:absolute;
  10433. left:0px;
  10434. top:0px;
  10435. width:502px;
  10436. height:25px;
  10437. background:inherit;
  10438. background-color:rgba(255, 255, 255, 1);
  10439. border:none;
  10440. border-radius:0px;
  10441. -moz-box-shadow:none;
  10442. -webkit-box-shadow:none;
  10443. box-shadow:none;
  10444. }
  10445. #u9783 {
  10446. border-width:0px;
  10447. position:absolute;
  10448. left:1818px;
  10449. top:389px;
  10450. width:502px;
  10451. height:25px;
  10452. display:flex;
  10453. }
  10454. #u9783 .text {
  10455. position:absolute;
  10456. align-self:center;
  10457. padding:2px 2px 2px 2px;
  10458. box-sizing:border-box;
  10459. width:100%;
  10460. }
  10461. #u9783_div.disabled {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:0px;
  10465. top:0px;
  10466. width:502px;
  10467. height:25px;
  10468. background:inherit;
  10469. background-color:rgba(240, 240, 240, 1);
  10470. border:none;
  10471. border-radius:0px;
  10472. -moz-box-shadow:none;
  10473. -webkit-box-shadow:none;
  10474. box-shadow:none;
  10475. }
  10476. #u9783.disabled {
  10477. }
  10478. #u9784_div {
  10479. border-width:0px;
  10480. position:absolute;
  10481. left:0px;
  10482. top:0px;
  10483. width:71px;
  10484. height:30px;
  10485. background:inherit;
  10486. background-color:rgba(255, 255, 255, 0);
  10487. border:none;
  10488. border-top:0px;
  10489. border-right:0px;
  10490. border-bottom:0px;
  10491. border-radius:0px;
  10492. border-top-left-radius:0px;
  10493. border-bottom-left-radius:0px;
  10494. -moz-box-shadow:none;
  10495. -webkit-box-shadow:none;
  10496. box-shadow:none;
  10497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10498. font-weight:400;
  10499. font-style:normal;
  10500. font-size:14px;
  10501. color:#7F7F7F;
  10502. }
  10503. #u9784 {
  10504. border-width:0px;
  10505. position:absolute;
  10506. left:1705px;
  10507. top:436px;
  10508. width:71px;
  10509. height:30px;
  10510. display:flex;
  10511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10512. font-weight:400;
  10513. font-style:normal;
  10514. font-size:14px;
  10515. color:#7F7F7F;
  10516. }
  10517. #u9784 .text {
  10518. position:absolute;
  10519. align-self:center;
  10520. padding:5px 0px 5px 0px;
  10521. box-sizing:border-box;
  10522. width:100%;
  10523. }
  10524. #u9784_text {
  10525. border-width:0px;
  10526. white-space:nowrap;
  10527. text-transform:none;
  10528. }
  10529. #u9785 {
  10530. border-width:0px;
  10531. position:absolute;
  10532. left:0px;
  10533. top:0px;
  10534. width:0px;
  10535. height:0px;
  10536. }
  10537. #u9786_div {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:0px;
  10541. top:0px;
  10542. width:553px;
  10543. height:40px;
  10544. background:inherit;
  10545. background-color:rgba(255, 255, 255, 1);
  10546. box-sizing:border-box;
  10547. border-width:1px;
  10548. border-style:solid;
  10549. border-color:rgba(215, 215, 215, 1);
  10550. border-radius:4px;
  10551. -moz-box-shadow:none;
  10552. -webkit-box-shadow:none;
  10553. box-shadow:none;
  10554. font-size:11px;
  10555. }
  10556. #u9786 {
  10557. border-width:0px;
  10558. position:absolute;
  10559. left:1793px;
  10560. top:431px;
  10561. width:553px;
  10562. height:40px;
  10563. display:flex;
  10564. font-size:11px;
  10565. }
  10566. #u9786 .text {
  10567. position:absolute;
  10568. align-self:center;
  10569. padding:2px 2px 2px 2px;
  10570. box-sizing:border-box;
  10571. width:100%;
  10572. }
  10573. #u9786_text {
  10574. border-width:0px;
  10575. word-wrap:break-word;
  10576. text-transform:none;
  10577. visibility:hidden;
  10578. }
  10579. #u9787_input {
  10580. position:absolute;
  10581. left:0px;
  10582. top:0px;
  10583. width:502px;
  10584. height:25px;
  10585. padding:2px 2px 2px 2px;
  10586. font-family:'ArialMT', 'Arial', sans-serif;
  10587. font-weight:400;
  10588. font-style:normal;
  10589. font-size:13px;
  10590. letter-spacing:normal;
  10591. color:#000000;
  10592. vertical-align:none;
  10593. text-align:left;
  10594. text-transform:none;
  10595. background-color:transparent;
  10596. border-color:transparent;
  10597. }
  10598. #u9787_input.disabled {
  10599. position:absolute;
  10600. left:0px;
  10601. top:0px;
  10602. width:502px;
  10603. height:25px;
  10604. padding:2px 2px 2px 2px;
  10605. font-family:'ArialMT', 'Arial', sans-serif;
  10606. font-weight:400;
  10607. font-style:normal;
  10608. font-size:13px;
  10609. letter-spacing:normal;
  10610. color:#000000;
  10611. vertical-align:none;
  10612. text-align:left;
  10613. text-transform:none;
  10614. background-color:transparent;
  10615. border-color:transparent;
  10616. }
  10617. #u9787_div {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:0px;
  10621. top:0px;
  10622. width:502px;
  10623. height:25px;
  10624. background:inherit;
  10625. background-color:rgba(255, 255, 255, 1);
  10626. border:none;
  10627. border-radius:0px;
  10628. -moz-box-shadow:none;
  10629. -webkit-box-shadow:none;
  10630. box-shadow:none;
  10631. }
  10632. #u9787 {
  10633. border-width:0px;
  10634. position:absolute;
  10635. left:1818px;
  10636. top:439px;
  10637. width:502px;
  10638. height:25px;
  10639. display:flex;
  10640. }
  10641. #u9787 .text {
  10642. position:absolute;
  10643. align-self:center;
  10644. padding:2px 2px 2px 2px;
  10645. box-sizing:border-box;
  10646. width:100%;
  10647. }
  10648. #u9787_div.disabled {
  10649. border-width:0px;
  10650. position:absolute;
  10651. left:0px;
  10652. top:0px;
  10653. width:502px;
  10654. height:25px;
  10655. background:inherit;
  10656. background-color:rgba(240, 240, 240, 1);
  10657. border:none;
  10658. border-radius:0px;
  10659. -moz-box-shadow:none;
  10660. -webkit-box-shadow:none;
  10661. box-shadow:none;
  10662. }
  10663. #u9787.disabled {
  10664. }
  10665. #u9788_div {
  10666. border-width:0px;
  10667. position:absolute;
  10668. left:0px;
  10669. top:0px;
  10670. width:71px;
  10671. height:30px;
  10672. background:inherit;
  10673. background-color:rgba(255, 255, 255, 0);
  10674. border:none;
  10675. border-top:0px;
  10676. border-right:0px;
  10677. border-bottom:0px;
  10678. border-radius:0px;
  10679. border-top-left-radius:0px;
  10680. border-bottom-left-radius:0px;
  10681. -moz-box-shadow:none;
  10682. -webkit-box-shadow:none;
  10683. box-shadow:none;
  10684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10685. font-weight:400;
  10686. font-style:normal;
  10687. font-size:14px;
  10688. color:#7F7F7F;
  10689. }
  10690. #u9788 {
  10691. border-width:0px;
  10692. position:absolute;
  10693. left:1705px;
  10694. top:486px;
  10695. width:71px;
  10696. height:30px;
  10697. display:flex;
  10698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10699. font-weight:400;
  10700. font-style:normal;
  10701. font-size:14px;
  10702. color:#7F7F7F;
  10703. }
  10704. #u9788 .text {
  10705. position:absolute;
  10706. align-self:center;
  10707. padding:5px 0px 5px 0px;
  10708. box-sizing:border-box;
  10709. width:100%;
  10710. }
  10711. #u9788_text {
  10712. border-width:0px;
  10713. white-space:nowrap;
  10714. text-transform:none;
  10715. }
  10716. #u9789 {
  10717. border-width:0px;
  10718. position:absolute;
  10719. left:0px;
  10720. top:0px;
  10721. width:0px;
  10722. height:0px;
  10723. }
  10724. #u9790_div {
  10725. border-width:0px;
  10726. position:absolute;
  10727. left:0px;
  10728. top:0px;
  10729. width:553px;
  10730. height:40px;
  10731. background:inherit;
  10732. background-color:rgba(255, 255, 255, 1);
  10733. box-sizing:border-box;
  10734. border-width:1px;
  10735. border-style:solid;
  10736. border-color:rgba(215, 215, 215, 1);
  10737. border-radius:4px;
  10738. -moz-box-shadow:none;
  10739. -webkit-box-shadow:none;
  10740. box-shadow:none;
  10741. font-size:11px;
  10742. }
  10743. #u9790 {
  10744. border-width:0px;
  10745. position:absolute;
  10746. left:1793px;
  10747. top:481px;
  10748. width:553px;
  10749. height:40px;
  10750. display:flex;
  10751. font-size:11px;
  10752. }
  10753. #u9790 .text {
  10754. position:absolute;
  10755. align-self:center;
  10756. padding:2px 2px 2px 2px;
  10757. box-sizing:border-box;
  10758. width:100%;
  10759. }
  10760. #u9790_text {
  10761. border-width:0px;
  10762. word-wrap:break-word;
  10763. text-transform:none;
  10764. visibility:hidden;
  10765. }
  10766. #u9791_input {
  10767. position:absolute;
  10768. left:0px;
  10769. top:0px;
  10770. width:502px;
  10771. height:25px;
  10772. padding:2px 2px 2px 2px;
  10773. font-family:'ArialMT', 'Arial', sans-serif;
  10774. font-weight:400;
  10775. font-style:normal;
  10776. font-size:13px;
  10777. letter-spacing:normal;
  10778. color:#000000;
  10779. vertical-align:none;
  10780. text-align:left;
  10781. text-transform:none;
  10782. background-color:transparent;
  10783. border-color:transparent;
  10784. }
  10785. #u9791_input.disabled {
  10786. position:absolute;
  10787. left:0px;
  10788. top:0px;
  10789. width:502px;
  10790. height:25px;
  10791. padding:2px 2px 2px 2px;
  10792. font-family:'ArialMT', 'Arial', sans-serif;
  10793. font-weight:400;
  10794. font-style:normal;
  10795. font-size:13px;
  10796. letter-spacing:normal;
  10797. color:#000000;
  10798. vertical-align:none;
  10799. text-align:left;
  10800. text-transform:none;
  10801. background-color:transparent;
  10802. border-color:transparent;
  10803. }
  10804. #u9791_div {
  10805. border-width:0px;
  10806. position:absolute;
  10807. left:0px;
  10808. top:0px;
  10809. width:502px;
  10810. height:25px;
  10811. background:inherit;
  10812. background-color:rgba(255, 255, 255, 1);
  10813. border:none;
  10814. border-radius:0px;
  10815. -moz-box-shadow:none;
  10816. -webkit-box-shadow:none;
  10817. box-shadow:none;
  10818. }
  10819. #u9791 {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:1818px;
  10823. top:489px;
  10824. width:502px;
  10825. height:25px;
  10826. display:flex;
  10827. }
  10828. #u9791 .text {
  10829. position:absolute;
  10830. align-self:center;
  10831. padding:2px 2px 2px 2px;
  10832. box-sizing:border-box;
  10833. width:100%;
  10834. }
  10835. #u9791_div.disabled {
  10836. border-width:0px;
  10837. position:absolute;
  10838. left:0px;
  10839. top:0px;
  10840. width:502px;
  10841. height:25px;
  10842. background:inherit;
  10843. background-color:rgba(240, 240, 240, 1);
  10844. border:none;
  10845. border-radius:0px;
  10846. -moz-box-shadow:none;
  10847. -webkit-box-shadow:none;
  10848. box-shadow:none;
  10849. }
  10850. #u9791.disabled {
  10851. }
  10852. #u9792_div {
  10853. border-width:0px;
  10854. position:absolute;
  10855. left:0px;
  10856. top:0px;
  10857. width:71px;
  10858. height:30px;
  10859. background:inherit;
  10860. background-color:rgba(255, 255, 255, 0);
  10861. border:none;
  10862. border-top:0px;
  10863. border-right:0px;
  10864. border-bottom:0px;
  10865. border-radius:0px;
  10866. border-top-left-radius:0px;
  10867. border-bottom-left-radius:0px;
  10868. -moz-box-shadow:none;
  10869. -webkit-box-shadow:none;
  10870. box-shadow:none;
  10871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10872. font-weight:400;
  10873. font-style:normal;
  10874. font-size:14px;
  10875. color:#7F7F7F;
  10876. }
  10877. #u9792 {
  10878. border-width:0px;
  10879. position:absolute;
  10880. left:1705px;
  10881. top:531px;
  10882. width:71px;
  10883. height:30px;
  10884. display:flex;
  10885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10886. font-weight:400;
  10887. font-style:normal;
  10888. font-size:14px;
  10889. color:#7F7F7F;
  10890. }
  10891. #u9792 .text {
  10892. position:absolute;
  10893. align-self:center;
  10894. padding:5px 0px 5px 0px;
  10895. box-sizing:border-box;
  10896. width:100%;
  10897. }
  10898. #u9792_text {
  10899. border-width:0px;
  10900. white-space:nowrap;
  10901. text-transform:none;
  10902. }
  10903. #u9793_div {
  10904. border-width:0px;
  10905. position:absolute;
  10906. left:0px;
  10907. top:0px;
  10908. width:40px;
  10909. height:40px;
  10910. background:inherit;
  10911. background-color:rgba(255, 255, 255, 0);
  10912. border:none;
  10913. border-top:0px;
  10914. border-right:0px;
  10915. border-bottom:0px;
  10916. border-radius:0px;
  10917. border-top-left-radius:0px;
  10918. border-bottom-left-radius:0px;
  10919. -moz-box-shadow:none;
  10920. -webkit-box-shadow:none;
  10921. box-shadow:none;
  10922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10923. font-weight:500;
  10924. font-style:normal;
  10925. font-size:18px;
  10926. text-align:center;
  10927. }
  10928. #u9793 {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:2412px;
  10932. top:50px;
  10933. width:40px;
  10934. height:40px;
  10935. display:flex;
  10936. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10937. font-weight:500;
  10938. font-style:normal;
  10939. font-size:18px;
  10940. text-align:center;
  10941. }
  10942. #u9793 .text {
  10943. position:absolute;
  10944. align-self:center;
  10945. padding:5px 10px 5px 0px;
  10946. box-sizing:border-box;
  10947. width:100%;
  10948. }
  10949. #u9793_text {
  10950. border-width:0px;
  10951. word-wrap:break-word;
  10952. text-transform:none;
  10953. }
  10954. #u9794_div {
  10955. border-width:0px;
  10956. position:absolute;
  10957. left:0px;
  10958. top:0px;
  10959. width:211px;
  10960. height:20px;
  10961. background:inherit;
  10962. background-color:rgba(255, 255, 255, 0);
  10963. border:none;
  10964. border-radius:0px;
  10965. -moz-box-shadow:none;
  10966. -webkit-box-shadow:none;
  10967. box-shadow:none;
  10968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10969. font-weight:400;
  10970. font-style:normal;
  10971. font-size:14px;
  10972. }
  10973. #u9794 {
  10974. border-width:0px;
  10975. position:absolute;
  10976. left:1772px;
  10977. top:169px;
  10978. width:211px;
  10979. height:20px;
  10980. display:flex;
  10981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10982. font-weight:400;
  10983. font-style:normal;
  10984. font-size:14px;
  10985. }
  10986. #u9794 .text {
  10987. position:absolute;
  10988. align-self:flex-start;
  10989. padding:0px 0px 0px 0px;
  10990. box-sizing:border-box;
  10991. width:100%;
  10992. }
  10993. #u9794_text {
  10994. border-width:0px;
  10995. white-space:nowrap;
  10996. text-transform:none;
  10997. }
  10998. #u9795_div {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:0px;
  11002. top:0px;
  11003. width:71px;
  11004. height:30px;
  11005. background:inherit;
  11006. background-color:rgba(255, 255, 255, 0);
  11007. border:none;
  11008. border-top:0px;
  11009. border-right:0px;
  11010. border-bottom:0px;
  11011. border-radius:0px;
  11012. border-top-left-radius:0px;
  11013. border-bottom-left-radius:0px;
  11014. -moz-box-shadow:none;
  11015. -webkit-box-shadow:none;
  11016. box-shadow:none;
  11017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11018. font-weight:400;
  11019. font-style:normal;
  11020. font-size:14px;
  11021. color:#7F7F7F;
  11022. }
  11023. #u9795 {
  11024. border-width:0px;
  11025. position:absolute;
  11026. left:1693px;
  11027. top:164px;
  11028. width:71px;
  11029. height:30px;
  11030. display:flex;
  11031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11032. font-weight:400;
  11033. font-style:normal;
  11034. font-size:14px;
  11035. color:#7F7F7F;
  11036. }
  11037. #u9795 .text {
  11038. position:absolute;
  11039. align-self:center;
  11040. padding:5px 0px 5px 0px;
  11041. box-sizing:border-box;
  11042. width:100%;
  11043. }
  11044. #u9795_text {
  11045. border-width:0px;
  11046. white-space:nowrap;
  11047. text-transform:none;
  11048. }
  11049. #u9796 {
  11050. border-width:0px;
  11051. position:absolute;
  11052. left:0px;
  11053. top:0px;
  11054. width:0px;
  11055. height:0px;
  11056. }
  11057. #u9797_div {
  11058. border-width:0px;
  11059. position:absolute;
  11060. left:0px;
  11061. top:0px;
  11062. width:200px;
  11063. height:1180px;
  11064. background:inherit;
  11065. background-color:rgba(255, 255, 255, 1);
  11066. border:none;
  11067. border-radius:0px;
  11068. -moz-box-shadow:none;
  11069. -webkit-box-shadow:none;
  11070. box-shadow:none;
  11071. }
  11072. #u9797 {
  11073. border-width:0px;
  11074. position:absolute;
  11075. left:120px;
  11076. top:50px;
  11077. width:200px;
  11078. height:1180px;
  11079. display:flex;
  11080. }
  11081. #u9797 .text {
  11082. position:absolute;
  11083. align-self:center;
  11084. padding:2px 2px 2px 2px;
  11085. box-sizing:border-box;
  11086. width:100%;
  11087. }
  11088. #u9797_text {
  11089. border-width:0px;
  11090. word-wrap:break-word;
  11091. text-transform:none;
  11092. visibility:hidden;
  11093. }
  11094. #u9798_div {
  11095. border-width:0px;
  11096. position:absolute;
  11097. left:0px;
  11098. top:0px;
  11099. width:200px;
  11100. height:60px;
  11101. background:inherit;
  11102. background-color:rgba(224, 231, 247, 1);
  11103. border:none;
  11104. border-radius:0px;
  11105. -moz-box-shadow:none;
  11106. -webkit-box-shadow:none;
  11107. box-shadow:none;
  11108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11109. font-weight:500;
  11110. font-style:normal;
  11111. font-size:18px;
  11112. }
  11113. #u9798 {
  11114. border-width:0px;
  11115. position:absolute;
  11116. left:120px;
  11117. top:50px;
  11118. width:200px;
  11119. height:60px;
  11120. display:flex;
  11121. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11122. font-weight:500;
  11123. font-style:normal;
  11124. font-size:18px;
  11125. }
  11126. #u9798 .text {
  11127. position:absolute;
  11128. align-self:center;
  11129. padding:0px 0px 0px 20px;
  11130. box-sizing:border-box;
  11131. width:100%;
  11132. }
  11133. #u9798_text {
  11134. border-width:0px;
  11135. word-wrap:break-word;
  11136. text-transform:none;
  11137. }
  11138. #u9799_div {
  11139. border-width:0px;
  11140. position:absolute;
  11141. left:0px;
  11142. top:0px;
  11143. width:65px;
  11144. height:22px;
  11145. background:inherit;
  11146. background-color:rgba(255, 255, 255, 0);
  11147. border:none;
  11148. border-radius:0px;
  11149. -moz-box-shadow:none;
  11150. -webkit-box-shadow:none;
  11151. box-shadow:none;
  11152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11153. font-weight:400;
  11154. font-style:normal;
  11155. font-size:16px;
  11156. }
  11157. #u9799 {
  11158. border-width:0px;
  11159. position:absolute;
  11160. left:146px;
  11161. top:350px;
  11162. width:65px;
  11163. height:22px;
  11164. display:flex;
  11165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11166. font-weight:400;
  11167. font-style:normal;
  11168. font-size:16px;
  11169. }
  11170. #u9799 .text {
  11171. position:absolute;
  11172. align-self:flex-start;
  11173. padding:0px 0px 0px 0px;
  11174. box-sizing:border-box;
  11175. width:100%;
  11176. }
  11177. #u9799_text {
  11178. border-width:0px;
  11179. white-space:nowrap;
  11180. text-transform:none;
  11181. }
  11182. #u9800_div {
  11183. border-width:0px;
  11184. position:absolute;
  11185. left:0px;
  11186. top:0px;
  11187. width:65px;
  11188. height:22px;
  11189. background:inherit;
  11190. background-color:rgba(255, 255, 255, 0);
  11191. border:none;
  11192. border-radius:0px;
  11193. -moz-box-shadow:none;
  11194. -webkit-box-shadow:none;
  11195. box-shadow:none;
  11196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11197. font-weight:400;
  11198. font-style:normal;
  11199. font-size:16px;
  11200. }
  11201. #u9800 {
  11202. border-width:0px;
  11203. position:absolute;
  11204. left:146px;
  11205. top:392px;
  11206. width:65px;
  11207. height:22px;
  11208. display:flex;
  11209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11210. font-weight:400;
  11211. font-style:normal;
  11212. font-size:16px;
  11213. }
  11214. #u9800 .text {
  11215. position:absolute;
  11216. align-self:flex-start;
  11217. padding:0px 0px 0px 0px;
  11218. box-sizing:border-box;
  11219. width:100%;
  11220. }
  11221. #u9800_text {
  11222. border-width:0px;
  11223. white-space:nowrap;
  11224. text-transform:none;
  11225. }
  11226. #u9801_div {
  11227. border-width:0px;
  11228. position:absolute;
  11229. left:0px;
  11230. top:0px;
  11231. width:49px;
  11232. height:17px;
  11233. background:inherit;
  11234. background-color:rgba(255, 255, 255, 0);
  11235. border:none;
  11236. border-radius:0px;
  11237. -moz-box-shadow:none;
  11238. -webkit-box-shadow:none;
  11239. box-shadow:none;
  11240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11241. font-weight:400;
  11242. font-style:normal;
  11243. font-size:12px;
  11244. color:#AAAAAA;
  11245. }
  11246. #u9801 {
  11247. border-width:0px;
  11248. position:absolute;
  11249. left:146px;
  11250. top:313px;
  11251. width:49px;
  11252. height:17px;
  11253. display:flex;
  11254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11255. font-weight:400;
  11256. font-style:normal;
  11257. font-size:12px;
  11258. color:#AAAAAA;
  11259. }
  11260. #u9801 .text {
  11261. position:absolute;
  11262. align-self:flex-start;
  11263. padding:0px 0px 0px 0px;
  11264. box-sizing:border-box;
  11265. width:100%;
  11266. }
  11267. #u9801_text {
  11268. border-width:0px;
  11269. white-space:nowrap;
  11270. text-transform:none;
  11271. }
  11272. #u9802_img {
  11273. border-width:0px;
  11274. position:absolute;
  11275. left:0px;
  11276. top:0px;
  11277. width:201px;
  11278. height:2px;
  11279. }
  11280. #u9802 {
  11281. border-width:0px;
  11282. position:absolute;
  11283. left:120px;
  11284. top:293px;
  11285. width:200px;
  11286. height:1px;
  11287. display:flex;
  11288. }
  11289. #u9802 .text {
  11290. position:absolute;
  11291. align-self:center;
  11292. padding:2px 2px 2px 2px;
  11293. box-sizing:border-box;
  11294. width:100%;
  11295. }
  11296. #u9802_text {
  11297. border-width:0px;
  11298. word-wrap:break-word;
  11299. text-transform:none;
  11300. visibility:hidden;
  11301. }
  11302. #u9803_div {
  11303. border-width:0px;
  11304. position:absolute;
  11305. left:0px;
  11306. top:0px;
  11307. width:65px;
  11308. height:22px;
  11309. background:inherit;
  11310. background-color:rgba(255, 255, 255, 0);
  11311. border:none;
  11312. border-radius:0px;
  11313. -moz-box-shadow:none;
  11314. -webkit-box-shadow:none;
  11315. box-shadow:none;
  11316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11317. font-weight:400;
  11318. font-style:normal;
  11319. font-size:16px;
  11320. }
  11321. #u9803 {
  11322. border-width:0px;
  11323. position:absolute;
  11324. left:146px;
  11325. top:167px;
  11326. width:65px;
  11327. height:22px;
  11328. display:flex;
  11329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11330. font-weight:400;
  11331. font-style:normal;
  11332. font-size:16px;
  11333. }
  11334. #u9803 .text {
  11335. position:absolute;
  11336. align-self:flex-start;
  11337. padding:0px 0px 0px 0px;
  11338. box-sizing:border-box;
  11339. width:100%;
  11340. }
  11341. #u9803_text {
  11342. border-width:0px;
  11343. white-space:nowrap;
  11344. text-transform:none;
  11345. }
  11346. #u9804_div {
  11347. border-width:0px;
  11348. position:absolute;
  11349. left:0px;
  11350. top:0px;
  11351. width:65px;
  11352. height:22px;
  11353. background:inherit;
  11354. background-color:rgba(255, 255, 255, 0);
  11355. border:none;
  11356. border-radius:0px;
  11357. -moz-box-shadow:none;
  11358. -webkit-box-shadow:none;
  11359. box-shadow:none;
  11360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11361. font-weight:400;
  11362. font-style:normal;
  11363. font-size:16px;
  11364. }
  11365. #u9804 {
  11366. border-width:0px;
  11367. position:absolute;
  11368. left:146px;
  11369. top:209px;
  11370. width:65px;
  11371. height:22px;
  11372. display:flex;
  11373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11374. font-weight:400;
  11375. font-style:normal;
  11376. font-size:16px;
  11377. }
  11378. #u9804 .text {
  11379. position:absolute;
  11380. align-self:flex-start;
  11381. padding:0px 0px 0px 0px;
  11382. box-sizing:border-box;
  11383. width:100%;
  11384. }
  11385. #u9804_text {
  11386. border-width:0px;
  11387. white-space:nowrap;
  11388. text-transform:none;
  11389. }
  11390. #u9805_div {
  11391. border-width:0px;
  11392. position:absolute;
  11393. left:0px;
  11394. top:0px;
  11395. width:65px;
  11396. height:22px;
  11397. background:inherit;
  11398. background-color:rgba(255, 255, 255, 0);
  11399. border:none;
  11400. border-radius:0px;
  11401. -moz-box-shadow:none;
  11402. -webkit-box-shadow:none;
  11403. box-shadow:none;
  11404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11405. font-weight:400;
  11406. font-style:normal;
  11407. font-size:16px;
  11408. }
  11409. #u9805 {
  11410. border-width:0px;
  11411. position:absolute;
  11412. left:146px;
  11413. top:251px;
  11414. width:65px;
  11415. height:22px;
  11416. display:flex;
  11417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11418. font-weight:400;
  11419. font-style:normal;
  11420. font-size:16px;
  11421. }
  11422. #u9805 .text {
  11423. position:absolute;
  11424. align-self:flex-start;
  11425. padding:0px 0px 0px 0px;
  11426. box-sizing:border-box;
  11427. width:100%;
  11428. }
  11429. #u9805_text {
  11430. border-width:0px;
  11431. white-space:nowrap;
  11432. text-transform:none;
  11433. }
  11434. #u9806_div {
  11435. border-width:0px;
  11436. position:absolute;
  11437. left:0px;
  11438. top:0px;
  11439. width:49px;
  11440. height:17px;
  11441. background:inherit;
  11442. background-color:rgba(255, 255, 255, 0);
  11443. border:none;
  11444. border-radius:0px;
  11445. -moz-box-shadow:none;
  11446. -webkit-box-shadow:none;
  11447. box-shadow:none;
  11448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11449. font-weight:400;
  11450. font-style:normal;
  11451. font-size:12px;
  11452. color:#AAAAAA;
  11453. }
  11454. #u9806 {
  11455. border-width:0px;
  11456. position:absolute;
  11457. left:146px;
  11458. top:130px;
  11459. width:49px;
  11460. height:17px;
  11461. display:flex;
  11462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11463. font-weight:400;
  11464. font-style:normal;
  11465. font-size:12px;
  11466. color:#AAAAAA;
  11467. }
  11468. #u9806 .text {
  11469. position:absolute;
  11470. align-self:flex-start;
  11471. padding:0px 0px 0px 0px;
  11472. box-sizing:border-box;
  11473. width:100%;
  11474. }
  11475. #u9806_text {
  11476. border-width:0px;
  11477. white-space:nowrap;
  11478. text-transform:none;
  11479. }
  11480. #u9807_div {
  11481. border-width:0px;
  11482. position:absolute;
  11483. left:0px;
  11484. top:0px;
  11485. width:65px;
  11486. height:22px;
  11487. background:inherit;
  11488. background-color:rgba(255, 255, 255, 0);
  11489. border:none;
  11490. border-radius:0px;
  11491. -moz-box-shadow:none;
  11492. -webkit-box-shadow:none;
  11493. box-shadow:none;
  11494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11495. font-weight:400;
  11496. font-style:normal;
  11497. font-size:16px;
  11498. }
  11499. #u9807 {
  11500. border-width:0px;
  11501. position:absolute;
  11502. left:146px;
  11503. top:434px;
  11504. width:65px;
  11505. height:22px;
  11506. display:flex;
  11507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11508. font-weight:400;
  11509. font-style:normal;
  11510. font-size:16px;
  11511. }
  11512. #u9807 .text {
  11513. position:absolute;
  11514. align-self:flex-start;
  11515. padding:0px 0px 0px 0px;
  11516. box-sizing:border-box;
  11517. width:100%;
  11518. }
  11519. #u9807_text {
  11520. border-width:0px;
  11521. white-space:nowrap;
  11522. text-transform:none;
  11523. }
  11524. #u9808_div {
  11525. border-width:0px;
  11526. position:absolute;
  11527. left:0px;
  11528. top:0px;
  11529. width:65px;
  11530. height:22px;
  11531. background:inherit;
  11532. background-color:rgba(255, 255, 255, 0);
  11533. border:none;
  11534. border-radius:0px;
  11535. -moz-box-shadow:none;
  11536. -webkit-box-shadow:none;
  11537. box-shadow:none;
  11538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11539. font-weight:400;
  11540. font-style:normal;
  11541. font-size:16px;
  11542. }
  11543. #u9808 {
  11544. border-width:0px;
  11545. position:absolute;
  11546. left:146px;
  11547. top:538px;
  11548. width:65px;
  11549. height:22px;
  11550. display:flex;
  11551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11552. font-weight:400;
  11553. font-style:normal;
  11554. font-size:16px;
  11555. }
  11556. #u9808 .text {
  11557. position:absolute;
  11558. align-self:flex-start;
  11559. padding:0px 0px 0px 0px;
  11560. box-sizing:border-box;
  11561. width:100%;
  11562. }
  11563. #u9808_text {
  11564. border-width:0px;
  11565. white-space:nowrap;
  11566. text-transform:none;
  11567. }
  11568. #u9809_div {
  11569. border-width:0px;
  11570. position:absolute;
  11571. left:0px;
  11572. top:0px;
  11573. width:49px;
  11574. height:17px;
  11575. background:inherit;
  11576. background-color:rgba(255, 255, 255, 0);
  11577. border:none;
  11578. border-radius:0px;
  11579. -moz-box-shadow:none;
  11580. -webkit-box-shadow:none;
  11581. box-shadow:none;
  11582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11583. font-weight:400;
  11584. font-style:normal;
  11585. font-size:12px;
  11586. color:#AAAAAA;
  11587. }
  11588. #u9809 {
  11589. border-width:0px;
  11590. position:absolute;
  11591. left:146px;
  11592. top:501px;
  11593. width:49px;
  11594. height:17px;
  11595. display:flex;
  11596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11597. font-weight:400;
  11598. font-style:normal;
  11599. font-size:12px;
  11600. color:#AAAAAA;
  11601. }
  11602. #u9809 .text {
  11603. position:absolute;
  11604. align-self:flex-start;
  11605. padding:0px 0px 0px 0px;
  11606. box-sizing:border-box;
  11607. width:100%;
  11608. }
  11609. #u9809_text {
  11610. border-width:0px;
  11611. white-space:nowrap;
  11612. text-transform:none;
  11613. }
  11614. #u9810_img {
  11615. border-width:0px;
  11616. position:absolute;
  11617. left:0px;
  11618. top:0px;
  11619. width:201px;
  11620. height:2px;
  11621. }
  11622. #u9810 {
  11623. border-width:0px;
  11624. position:absolute;
  11625. left:120px;
  11626. top:481px;
  11627. width:200px;
  11628. height:1px;
  11629. display:flex;
  11630. }
  11631. #u9810 .text {
  11632. position:absolute;
  11633. align-self:center;
  11634. padding:2px 2px 2px 2px;
  11635. box-sizing:border-box;
  11636. width:100%;
  11637. }
  11638. #u9810_text {
  11639. border-width:0px;
  11640. word-wrap:break-word;
  11641. text-transform:none;
  11642. visibility:hidden;
  11643. }
  11644. #u9811_div {
  11645. border-width:0px;
  11646. position:absolute;
  11647. left:0px;
  11648. top:0px;
  11649. width:65px;
  11650. height:22px;
  11651. background:inherit;
  11652. background-color:rgba(255, 255, 255, 0);
  11653. border:none;
  11654. border-radius:0px;
  11655. -moz-box-shadow:none;
  11656. -webkit-box-shadow:none;
  11657. box-shadow:none;
  11658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11659. font-weight:400;
  11660. font-style:normal;
  11661. font-size:16px;
  11662. }
  11663. #u9811 {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:146px;
  11667. top:580px;
  11668. width:65px;
  11669. height:22px;
  11670. display:flex;
  11671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11672. font-weight:400;
  11673. font-style:normal;
  11674. font-size:16px;
  11675. }
  11676. #u9811 .text {
  11677. position:absolute;
  11678. align-self:flex-start;
  11679. padding:0px 0px 0px 0px;
  11680. box-sizing:border-box;
  11681. width:100%;
  11682. }
  11683. #u9811_text {
  11684. border-width:0px;
  11685. white-space:nowrap;
  11686. text-transform:none;
  11687. }