styles.css 204 KB

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