styles.css 240 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2620px;
  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. #u14802_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u14802 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u14802 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u14802_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u14803_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u14803 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u14803 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u14803_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u14804_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u14804 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u14804 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u14804_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u14805 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u14806_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u14806 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u14806 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u14806_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u14807_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u14807 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u14807 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u14807_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u14808_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u14808 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u14808 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u14808_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u14809 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u14810_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u14810 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u14810 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u14810_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u14811_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u14811 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u14811 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u14811_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u14812 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u14813_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u14813 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u14813 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u14813_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u14814_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u14814 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u14814 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u14814_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u14815 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u14816_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u14816 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u14816 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u14816_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u14817_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u14817 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u14817 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u14817_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u14818 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u14819_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u14819 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u14819 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u14819_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u14820_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u14820 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u14820 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u14820_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u14821 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u14822_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u14822 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u14822 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u14822_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u14823_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u14823 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u14823 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u14823_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u14824 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u14825_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u14825 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u14825 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u14825_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u14826_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u14826 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u14826 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u14826_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u14827 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u14828_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u14828 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u14828 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u14828_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u14829_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u14829 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u14829 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u14829_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u14830 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u14831_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u14831 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u14831 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u14831_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u14832_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u14832 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u14832 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u14832_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u14833 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u14834_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u14834 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u14834 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u14834_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u14835_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u14835 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u14835 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u14835_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u14836 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u14837_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u14837 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u14837 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u14837_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u14838_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u14838 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u14838 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u14838_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u14839 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u14840_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u14840 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u14840 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u14840_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u14841_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u14841 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u14841 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u14841_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u14842 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u14843_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u14843_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u14843_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u14843 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u14843 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u14843_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u14843.disabled {
  1276. }
  1277. .u14843_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u14844_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u14844 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u14844 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u14844_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u14845_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u14845 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u14845 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u14845_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u14846_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u14846 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u14846 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u14846_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u14847 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u14848_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u14848 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u14848 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u14848_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u14849_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u14849 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u14849 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u14849_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u14850_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u14850 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u14850 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u14850_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u14851_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u14851 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u14851 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u14851_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u14852_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u14852 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u14852 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u14852_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u14853 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u14854_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u14854 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u14854 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u14854_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u14855_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u14855 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u14855 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u14855_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u14856_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1259px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u14856 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:330px;
  1661. top:50px;
  1662. width:1259px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u14856 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u14856_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u14857_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:60px;
  1685. height:30px;
  1686. background:inherit;
  1687. background-color:rgba(24, 144, 255, 1);
  1688. border:none;
  1689. border-radius:4px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1694. font-weight:400;
  1695. font-style:normal;
  1696. font-size:14px;
  1697. color:#FFFFFF;
  1698. }
  1699. #u14857 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:550px;
  1703. top:239px;
  1704. width:60px;
  1705. height:30px;
  1706. display:flex;
  1707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:14px;
  1711. color:#FFFFFF;
  1712. }
  1713. #u14857 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u14857_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. }
  1725. #u14858_div {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:0px;
  1729. top:0px;
  1730. width:73px;
  1731. height:50px;
  1732. background:inherit;
  1733. background-color:rgba(255, 255, 255, 0);
  1734. border:none;
  1735. border-left:0px;
  1736. border-top:0px;
  1737. border-right:0px;
  1738. border-radius:0px;
  1739. border-bottom-right-radius:0px;
  1740. border-bottom-left-radius:0px;
  1741. -moz-box-shadow:none;
  1742. -webkit-box-shadow:none;
  1743. box-shadow:none;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:18px;
  1748. }
  1749. #u14858 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:349px;
  1753. top:52px;
  1754. width:73px;
  1755. height:50px;
  1756. display:flex;
  1757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1758. font-weight:400;
  1759. font-style:normal;
  1760. font-size:18px;
  1761. }
  1762. #u14858 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:0px 0px 0px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u14858_text {
  1770. border-width:0px;
  1771. white-space:nowrap;
  1772. text-transform:none;
  1773. }
  1774. #u14859 {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:0px;
  1780. height:0px;
  1781. }
  1782. #u14860_div {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:60px;
  1788. height:30px;
  1789. background:inherit;
  1790. background-color:rgba(24, 144, 255, 1);
  1791. border:none;
  1792. border-radius:4px;
  1793. -moz-box-shadow:none;
  1794. -webkit-box-shadow:none;
  1795. box-shadow:none;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:14px;
  1800. color:#FFFFFF;
  1801. }
  1802. #u14860 {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:844px;
  1806. top:190px;
  1807. width:60px;
  1808. height:30px;
  1809. display:flex;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:14px;
  1814. color:#FFFFFF;
  1815. }
  1816. #u14860 .text {
  1817. position:absolute;
  1818. align-self:center;
  1819. padding:2px 2px 2px 2px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u14860_text {
  1824. border-width:0px;
  1825. word-wrap:break-word;
  1826. text-transform:none;
  1827. }
  1828. #u14861_div {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:60px;
  1834. height:30px;
  1835. background:inherit;
  1836. background-color:rgba(255, 255, 255, 1);
  1837. box-sizing:border-box;
  1838. border-width:1px;
  1839. border-style:solid;
  1840. border-color:rgba(170, 170, 170, 1);
  1841. border-radius:4px;
  1842. -moz-box-shadow:none;
  1843. -webkit-box-shadow:none;
  1844. box-shadow:none;
  1845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1846. font-weight:400;
  1847. font-style:normal;
  1848. font-size:14px;
  1849. }
  1850. #u14861 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:914px;
  1854. top:190px;
  1855. width:60px;
  1856. height:30px;
  1857. display:flex;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. }
  1863. #u14861 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:2px 2px 2px 2px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u14861_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u14862 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:0px;
  1881. height:0px;
  1882. }
  1883. #u14863_div {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:140px;
  1889. height:30px;
  1890. background:inherit;
  1891. background-color:rgba(255, 255, 255, 1);
  1892. box-sizing:border-box;
  1893. border-width:1px;
  1894. border-style:solid;
  1895. border-color:rgba(215, 215, 215, 1);
  1896. border-radius:4px;
  1897. -moz-box-shadow:none;
  1898. -webkit-box-shadow:none;
  1899. box-shadow:none;
  1900. font-size:14px;
  1901. }
  1902. #u14863 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:698px;
  1906. top:150px;
  1907. width:140px;
  1908. height:30px;
  1909. display:flex;
  1910. font-size:14px;
  1911. }
  1912. #u14863 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u14863_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. visibility:hidden;
  1924. }
  1925. #u14864_input {
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:134px;
  1930. height:23px;
  1931. padding:2px 2px 2px 2px;
  1932. font-family:'ArialMT', 'Arial', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:14px;
  1936. letter-spacing:normal;
  1937. color:#AAAAAA;
  1938. vertical-align:none;
  1939. text-align:left;
  1940. text-transform:none;
  1941. background-color:transparent;
  1942. border-color:transparent;
  1943. }
  1944. #u14864_input.disabled {
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:134px;
  1949. height:23px;
  1950. padding:2px 2px 2px 2px;
  1951. font-family:'ArialMT', 'Arial', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:14px;
  1955. letter-spacing:normal;
  1956. color:#AAAAAA;
  1957. vertical-align:none;
  1958. text-align:left;
  1959. text-transform:none;
  1960. background-color:transparent;
  1961. border-color:transparent;
  1962. }
  1963. #u14864_div {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:134px;
  1969. height:23px;
  1970. background:inherit;
  1971. background-color:rgba(255, 255, 255, 1);
  1972. border:none;
  1973. border-radius:0px;
  1974. -moz-box-shadow:none;
  1975. -webkit-box-shadow:none;
  1976. box-shadow:none;
  1977. font-size:14px;
  1978. color:#AAAAAA;
  1979. }
  1980. #u14864 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:702px;
  1984. top:152px;
  1985. width:134px;
  1986. height:23px;
  1987. display:flex;
  1988. font-size:14px;
  1989. color:#AAAAAA;
  1990. }
  1991. #u14864 .text {
  1992. position:absolute;
  1993. align-self:flex-start;
  1994. padding:2px 2px 2px 2px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u14864_div.disabled {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:0px;
  2002. top:0px;
  2003. width:134px;
  2004. height:23px;
  2005. background:inherit;
  2006. background-color:rgba(240, 240, 240, 1);
  2007. border:none;
  2008. border-radius:0px;
  2009. -moz-box-shadow:none;
  2010. -webkit-box-shadow:none;
  2011. box-shadow:none;
  2012. font-size:14px;
  2013. color:#AAAAAA;
  2014. }
  2015. #u14864.disabled {
  2016. }
  2017. .u14864_input_option {
  2018. font-size:14px;
  2019. }
  2020. #u14865 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:0px;
  2026. height:0px;
  2027. }
  2028. #u14866_div {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:140px;
  2034. height:30px;
  2035. background:inherit;
  2036. background-color:rgba(255, 255, 255, 1);
  2037. box-sizing:border-box;
  2038. border-width:1px;
  2039. border-style:solid;
  2040. border-color:rgba(215, 215, 215, 1);
  2041. border-radius:4px;
  2042. -moz-box-shadow:none;
  2043. -webkit-box-shadow:none;
  2044. box-shadow:none;
  2045. font-size:14px;
  2046. }
  2047. #u14866 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:698px;
  2051. top:190px;
  2052. width:140px;
  2053. height:30px;
  2054. display:flex;
  2055. font-size:14px;
  2056. }
  2057. #u14866 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u14866_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u14867_input {
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:134px;
  2075. height:23px;
  2076. padding:2px 2px 2px 2px;
  2077. font-family:'ArialMT', 'Arial', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:14px;
  2081. letter-spacing:normal;
  2082. color:#AAAAAA;
  2083. vertical-align:none;
  2084. text-align:left;
  2085. text-transform:none;
  2086. background-color:transparent;
  2087. border-color:transparent;
  2088. }
  2089. #u14867_input.disabled {
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:134px;
  2094. height:23px;
  2095. padding:2px 2px 2px 2px;
  2096. font-family:'ArialMT', 'Arial', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:14px;
  2100. letter-spacing:normal;
  2101. color:#AAAAAA;
  2102. vertical-align:none;
  2103. text-align:left;
  2104. text-transform:none;
  2105. background-color:transparent;
  2106. border-color:transparent;
  2107. }
  2108. #u14867_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:134px;
  2114. height:23px;
  2115. background:inherit;
  2116. background-color:rgba(255, 255, 255, 1);
  2117. border:none;
  2118. border-radius:0px;
  2119. -moz-box-shadow:none;
  2120. -webkit-box-shadow:none;
  2121. box-shadow:none;
  2122. font-size:14px;
  2123. color:#AAAAAA;
  2124. }
  2125. #u14867 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:702px;
  2129. top:192px;
  2130. width:134px;
  2131. height:23px;
  2132. display:flex;
  2133. font-size:14px;
  2134. color:#AAAAAA;
  2135. }
  2136. #u14867 .text {
  2137. position:absolute;
  2138. align-self:flex-start;
  2139. padding:2px 2px 2px 2px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u14867_div.disabled {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:134px;
  2149. height:23px;
  2150. background:inherit;
  2151. background-color:rgba(240, 240, 240, 1);
  2152. border:none;
  2153. border-radius:0px;
  2154. -moz-box-shadow:none;
  2155. -webkit-box-shadow:none;
  2156. box-shadow:none;
  2157. font-size:14px;
  2158. color:#AAAAAA;
  2159. }
  2160. #u14867.disabled {
  2161. }
  2162. .u14867_input_option {
  2163. font-size:14px;
  2164. }
  2165. #u14868 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:0px;
  2169. top:0px;
  2170. width:0px;
  2171. height:0px;
  2172. }
  2173. #u14869_div {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:140px;
  2179. height:30px;
  2180. background:inherit;
  2181. background-color:rgba(255, 255, 255, 1);
  2182. box-sizing:border-box;
  2183. border-width:1px;
  2184. border-style:solid;
  2185. border-color:rgba(201, 201, 201, 1);
  2186. border-radius:4px;
  2187. -moz-box-shadow:none;
  2188. -webkit-box-shadow:none;
  2189. box-shadow:none;
  2190. font-family:'Microsoft YaHei', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:14px;
  2194. color:#CCCCCC;
  2195. text-align:left;
  2196. }
  2197. #u14869 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:998px;
  2201. top:150px;
  2202. width:140px;
  2203. height:30px;
  2204. display:flex;
  2205. font-family:'Microsoft YaHei', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:14px;
  2209. color:#CCCCCC;
  2210. text-align:left;
  2211. }
  2212. #u14869 .text {
  2213. position:absolute;
  2214. align-self:center;
  2215. padding:2px 8px 2px 8px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u14869_text {
  2220. border-width:0px;
  2221. word-wrap:break-word;
  2222. text-transform:none;
  2223. visibility:hidden;
  2224. }
  2225. #u14870_input {
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:127px;
  2230. height:25px;
  2231. padding:2px 2px 2px 2px;
  2232. font-family:'Microsoft YaHei', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:10px;
  2236. letter-spacing:normal;
  2237. color:#000000;
  2238. vertical-align:none;
  2239. text-align:left;
  2240. text-transform:none;
  2241. background-color:transparent;
  2242. border-color:transparent;
  2243. }
  2244. #u14870_input.disabled {
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:127px;
  2249. height:25px;
  2250. padding:2px 2px 2px 2px;
  2251. font-family:'Microsoft YaHei', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:10px;
  2255. letter-spacing:normal;
  2256. color:#000000;
  2257. vertical-align:none;
  2258. text-align:left;
  2259. text-transform:none;
  2260. background-color:transparent;
  2261. border-color:transparent;
  2262. }
  2263. #u14870_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:127px;
  2269. height:25px;
  2270. background:inherit;
  2271. background-color:rgba(255, 255, 255, 1);
  2272. border:none;
  2273. border-radius:0px;
  2274. -moz-box-shadow:none;
  2275. -webkit-box-shadow:none;
  2276. box-shadow:none;
  2277. font-family:'Microsoft YaHei', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:10px;
  2281. }
  2282. #u14870 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:1006px;
  2286. top:151px;
  2287. width:127px;
  2288. height:25px;
  2289. display:flex;
  2290. font-family:'Microsoft YaHei', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:10px;
  2294. }
  2295. #u14870 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u14870_div.disabled {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:127px;
  2308. height:25px;
  2309. background:inherit;
  2310. background-color:rgba(240, 240, 240, 1);
  2311. border:none;
  2312. border-radius:0px;
  2313. -moz-box-shadow:none;
  2314. -webkit-box-shadow:none;
  2315. box-shadow:none;
  2316. font-family:'Microsoft YaHei', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:10px;
  2320. }
  2321. #u14870.disabled {
  2322. }
  2323. #u14871 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:0px;
  2329. height:0px;
  2330. }
  2331. #u14872_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:140px;
  2337. height:30px;
  2338. background:inherit;
  2339. background-color:rgba(255, 255, 255, 1);
  2340. box-sizing:border-box;
  2341. border-width:1px;
  2342. border-style:solid;
  2343. border-color:rgba(201, 201, 201, 1);
  2344. border-radius:4px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'Microsoft YaHei', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. color:#CCCCCC;
  2353. text-align:left;
  2354. }
  2355. #u14872 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:1148px;
  2359. top:150px;
  2360. width:140px;
  2361. height:30px;
  2362. display:flex;
  2363. font-family:'Microsoft YaHei', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:14px;
  2367. color:#CCCCCC;
  2368. text-align:left;
  2369. }
  2370. #u14872 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 8px 2px 8px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u14872_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. visibility:hidden;
  2382. }
  2383. #u14873_input {
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:127px;
  2388. height:25px;
  2389. padding:2px 2px 2px 2px;
  2390. font-family:'Microsoft YaHei', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:10px;
  2394. letter-spacing:normal;
  2395. color:#000000;
  2396. vertical-align:none;
  2397. text-align:left;
  2398. text-transform:none;
  2399. background-color:transparent;
  2400. border-color:transparent;
  2401. }
  2402. #u14873_input.disabled {
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:127px;
  2407. height:25px;
  2408. padding:2px 2px 2px 2px;
  2409. font-family:'Microsoft YaHei', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:10px;
  2413. letter-spacing:normal;
  2414. color:#000000;
  2415. vertical-align:none;
  2416. text-align:left;
  2417. text-transform:none;
  2418. background-color:transparent;
  2419. border-color:transparent;
  2420. }
  2421. #u14873_div {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:127px;
  2427. height:25px;
  2428. background:inherit;
  2429. background-color:rgba(255, 255, 255, 1);
  2430. border:none;
  2431. border-radius:0px;
  2432. -moz-box-shadow:none;
  2433. -webkit-box-shadow:none;
  2434. box-shadow:none;
  2435. font-family:'Microsoft YaHei', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:10px;
  2439. }
  2440. #u14873 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:1156px;
  2444. top:151px;
  2445. width:127px;
  2446. height:25px;
  2447. display:flex;
  2448. font-family:'Microsoft YaHei', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:10px;
  2452. }
  2453. #u14873 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u14873_div.disabled {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:127px;
  2466. height:25px;
  2467. background:inherit;
  2468. background-color:rgba(240, 240, 240, 1);
  2469. border:none;
  2470. border-radius:0px;
  2471. -moz-box-shadow:none;
  2472. -webkit-box-shadow:none;
  2473. box-shadow:none;
  2474. font-family:'Microsoft YaHei', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:10px;
  2478. }
  2479. #u14873.disabled {
  2480. }
  2481. #u14874 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:0px;
  2487. height:0px;
  2488. }
  2489. #u14875_div {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:140px;
  2495. height:30px;
  2496. background:inherit;
  2497. background-color:rgba(255, 255, 255, 1);
  2498. box-sizing:border-box;
  2499. border-width:1px;
  2500. border-style:solid;
  2501. border-color:rgba(201, 201, 201, 1);
  2502. border-radius:4px;
  2503. -moz-box-shadow:none;
  2504. -webkit-box-shadow:none;
  2505. box-shadow:none;
  2506. font-family:'Microsoft YaHei', sans-serif;
  2507. font-weight:400;
  2508. font-style:normal;
  2509. font-size:14px;
  2510. color:#CCCCCC;
  2511. text-align:left;
  2512. }
  2513. #u14875 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:550px;
  2517. top:190px;
  2518. width:140px;
  2519. height:30px;
  2520. display:flex;
  2521. font-family:'Microsoft YaHei', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:14px;
  2525. color:#CCCCCC;
  2526. text-align:left;
  2527. }
  2528. #u14875 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 8px 2px 8px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u14875_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u14876_input {
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:127px;
  2546. height:25px;
  2547. padding:2px 2px 2px 2px;
  2548. font-family:'Microsoft YaHei', sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:10px;
  2552. letter-spacing:normal;
  2553. color:#000000;
  2554. vertical-align:none;
  2555. text-align:left;
  2556. text-transform:none;
  2557. background-color:transparent;
  2558. border-color:transparent;
  2559. }
  2560. #u14876_input.disabled {
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:127px;
  2565. height:25px;
  2566. padding:2px 2px 2px 2px;
  2567. font-family:'Microsoft YaHei', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:10px;
  2571. letter-spacing:normal;
  2572. color:#000000;
  2573. vertical-align:none;
  2574. text-align:left;
  2575. text-transform:none;
  2576. background-color:transparent;
  2577. border-color:transparent;
  2578. }
  2579. #u14876_div {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:127px;
  2585. height:25px;
  2586. background:inherit;
  2587. background-color:rgba(255, 255, 255, 1);
  2588. border:none;
  2589. border-radius:0px;
  2590. -moz-box-shadow:none;
  2591. -webkit-box-shadow:none;
  2592. box-shadow:none;
  2593. font-family:'Microsoft YaHei', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:10px;
  2597. }
  2598. #u14876 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:558px;
  2602. top:191px;
  2603. width:127px;
  2604. height:25px;
  2605. display:flex;
  2606. font-family:'Microsoft YaHei', sans-serif;
  2607. font-weight:400;
  2608. font-style:normal;
  2609. font-size:10px;
  2610. }
  2611. #u14876 .text {
  2612. position:absolute;
  2613. align-self:center;
  2614. padding:2px 2px 2px 2px;
  2615. box-sizing:border-box;
  2616. width:100%;
  2617. }
  2618. #u14876_div.disabled {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:127px;
  2624. height:25px;
  2625. background:inherit;
  2626. background-color:rgba(240, 240, 240, 1);
  2627. border:none;
  2628. border-radius:0px;
  2629. -moz-box-shadow:none;
  2630. -webkit-box-shadow:none;
  2631. box-shadow:none;
  2632. font-family:'Microsoft YaHei', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:10px;
  2636. }
  2637. #u14876.disabled {
  2638. }
  2639. #u14877 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:0px;
  2645. height:0px;
  2646. }
  2647. #u14878_div {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:140px;
  2653. height:30px;
  2654. background:inherit;
  2655. background-color:rgba(255, 255, 255, 1);
  2656. box-sizing:border-box;
  2657. border-width:1px;
  2658. border-style:solid;
  2659. border-color:rgba(215, 215, 215, 1);
  2660. border-radius:4px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. font-size:14px;
  2665. }
  2666. #u14878 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:1298px;
  2670. top:150px;
  2671. width:140px;
  2672. height:30px;
  2673. display:flex;
  2674. font-size:14px;
  2675. }
  2676. #u14878 .text {
  2677. position:absolute;
  2678. align-self:center;
  2679. padding:2px 2px 2px 2px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u14878_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. visibility:hidden;
  2688. }
  2689. #u14879_input {
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:134px;
  2694. height:23px;
  2695. padding:2px 2px 2px 2px;
  2696. font-family:'ArialMT', 'Arial', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:14px;
  2700. letter-spacing:normal;
  2701. color:#AAAAAA;
  2702. vertical-align:none;
  2703. text-align:left;
  2704. text-transform:none;
  2705. background-color:transparent;
  2706. border-color:transparent;
  2707. }
  2708. #u14879_input.disabled {
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:134px;
  2713. height:23px;
  2714. padding:2px 2px 2px 2px;
  2715. font-family:'ArialMT', 'Arial', sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:14px;
  2719. letter-spacing:normal;
  2720. color:#AAAAAA;
  2721. vertical-align:none;
  2722. text-align:left;
  2723. text-transform:none;
  2724. background-color:transparent;
  2725. border-color:transparent;
  2726. }
  2727. #u14879_div {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:134px;
  2733. height:23px;
  2734. background:inherit;
  2735. background-color:rgba(255, 255, 255, 1);
  2736. border:none;
  2737. border-radius:0px;
  2738. -moz-box-shadow:none;
  2739. -webkit-box-shadow:none;
  2740. box-shadow:none;
  2741. font-size:14px;
  2742. color:#AAAAAA;
  2743. }
  2744. #u14879 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:1302px;
  2748. top:152px;
  2749. width:134px;
  2750. height:23px;
  2751. display:flex;
  2752. font-size:14px;
  2753. color:#AAAAAA;
  2754. }
  2755. #u14879 .text {
  2756. position:absolute;
  2757. align-self:flex-start;
  2758. padding:2px 2px 2px 2px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u14879_div.disabled {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:134px;
  2768. height:23px;
  2769. background:inherit;
  2770. background-color:rgba(240, 240, 240, 1);
  2771. border:none;
  2772. border-radius:0px;
  2773. -moz-box-shadow:none;
  2774. -webkit-box-shadow:none;
  2775. box-shadow:none;
  2776. font-size:14px;
  2777. color:#AAAAAA;
  2778. }
  2779. #u14879.disabled {
  2780. }
  2781. .u14879_input_option {
  2782. font-size:14px;
  2783. }
  2784. #u14880 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:0px;
  2790. height:0px;
  2791. }
  2792. #u14881_div {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:140px;
  2798. height:30px;
  2799. background:inherit;
  2800. background-color:rgba(242, 242, 242, 1);
  2801. box-sizing:border-box;
  2802. border-width:1px;
  2803. border-style:solid;
  2804. border-color:rgba(215, 215, 215, 1);
  2805. border-radius:4px;
  2806. -moz-box-shadow:none;
  2807. -webkit-box-shadow:none;
  2808. box-shadow:none;
  2809. font-size:14px;
  2810. }
  2811. #u14881 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:550px;
  2815. top:150px;
  2816. width:140px;
  2817. height:30px;
  2818. display:flex;
  2819. font-size:14px;
  2820. }
  2821. #u14881 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 2px 2px 2px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u14881_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u14882_input {
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:134px;
  2839. height:23px;
  2840. padding:2px 2px 2px 2px;
  2841. font-family:'ArialMT', 'Arial', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:14px;
  2845. letter-spacing:normal;
  2846. color:#AAAAAA;
  2847. vertical-align:none;
  2848. text-align:left;
  2849. text-transform:none;
  2850. background-color:transparent;
  2851. border-color:transparent;
  2852. }
  2853. #u14882_input.disabled {
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:134px;
  2858. height:23px;
  2859. padding:2px 2px 2px 2px;
  2860. font-family:'ArialMT', 'Arial', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:14px;
  2864. letter-spacing:normal;
  2865. color:#AAAAAA;
  2866. vertical-align:none;
  2867. text-align:left;
  2868. text-transform:none;
  2869. background-color:transparent;
  2870. border-color:transparent;
  2871. }
  2872. #u14882_div {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:134px;
  2878. height:23px;
  2879. background:inherit;
  2880. background-color:rgba(242, 242, 242, 1);
  2881. border:none;
  2882. border-radius:0px;
  2883. -moz-box-shadow:none;
  2884. -webkit-box-shadow:none;
  2885. box-shadow:none;
  2886. font-size:14px;
  2887. color:#AAAAAA;
  2888. }
  2889. #u14882 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:554px;
  2893. top:152px;
  2894. width:134px;
  2895. height:23px;
  2896. display:flex;
  2897. font-size:14px;
  2898. color:#AAAAAA;
  2899. }
  2900. #u14882 .text {
  2901. position:absolute;
  2902. align-self:flex-start;
  2903. padding:2px 2px 2px 2px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u14882_div.disabled {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:134px;
  2913. height:23px;
  2914. background:inherit;
  2915. background-color:rgba(240, 240, 240, 1);
  2916. border:none;
  2917. border-radius:0px;
  2918. -moz-box-shadow:none;
  2919. -webkit-box-shadow:none;
  2920. box-shadow:none;
  2921. font-size:14px;
  2922. color:#AAAAAA;
  2923. }
  2924. #u14882.disabled {
  2925. }
  2926. .u14882_input_option {
  2927. font-size:14px;
  2928. }
  2929. #u14883 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:0px;
  2935. height:0px;
  2936. }
  2937. #u14884_div {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:400px;
  2943. height:160px;
  2944. background:inherit;
  2945. background-color:rgba(255, 255, 255, 1);
  2946. box-sizing:border-box;
  2947. border-width:1px;
  2948. border-style:solid;
  2949. border-color:rgba(204, 204, 204, 1);
  2950. border-radius:0px;
  2951. -moz-box-shadow:none;
  2952. -webkit-box-shadow:none;
  2953. box-shadow:none;
  2954. font-family:'Microsoft YaHei', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. }
  2958. #u14884 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:605px;
  2962. top:702px;
  2963. width:400px;
  2964. height:160px;
  2965. display:flex;
  2966. font-family:'Microsoft YaHei', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. }
  2970. #u14884 .text {
  2971. position:absolute;
  2972. align-self:center;
  2973. padding:2px 2px 2px 2px;
  2974. box-sizing:border-box;
  2975. width:100%;
  2976. }
  2977. #u14884_text {
  2978. border-width:0px;
  2979. word-wrap:break-word;
  2980. text-transform:none;
  2981. visibility:hidden;
  2982. }
  2983. #u14885_div {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:127px;
  2989. height:21px;
  2990. background:inherit;
  2991. background-color:rgba(255, 255, 255, 0);
  2992. border:none;
  2993. border-radius:0px;
  2994. -moz-box-shadow:none;
  2995. -webkit-box-shadow:none;
  2996. box-shadow:none;
  2997. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2998. font-weight:650;
  2999. font-style:normal;
  3000. font-size:18px;
  3001. color:#000000;
  3002. line-height:22px;
  3003. }
  3004. #u14885 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:655px;
  3008. top:727px;
  3009. width:127px;
  3010. height:21px;
  3011. display:flex;
  3012. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3013. font-weight:650;
  3014. font-style:normal;
  3015. font-size:18px;
  3016. color:#000000;
  3017. line-height:22px;
  3018. }
  3019. #u14885 .text {
  3020. position:absolute;
  3021. align-self:flex-start;
  3022. padding:0px 0px 0px 0px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u14885_text {
  3027. border-width:0px;
  3028. white-space:nowrap;
  3029. text-transform:none;
  3030. }
  3031. #u14886_div {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:61px;
  3037. height:32px;
  3038. background:inherit;
  3039. background-color:rgba(24, 144, 255, 1);
  3040. border:none;
  3041. border-radius:4px;
  3042. -moz-box-shadow:none;
  3043. -webkit-box-shadow:none;
  3044. box-shadow:none;
  3045. font-family:'Microsoft YaHei', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:14px;
  3049. color:#FFFFFF;
  3050. }
  3051. #u14886 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:924px;
  3055. top:810px;
  3056. width:61px;
  3057. height:32px;
  3058. display:flex;
  3059. font-family:'Microsoft YaHei', sans-serif;
  3060. font-weight:400;
  3061. font-style:normal;
  3062. font-size:14px;
  3063. color:#FFFFFF;
  3064. }
  3065. #u14886 .text {
  3066. position:absolute;
  3067. align-self:center;
  3068. padding:2px 16px 2px 16px;
  3069. box-sizing:border-box;
  3070. width:100%;
  3071. }
  3072. #u14886_text {
  3073. border-width:0px;
  3074. white-space:nowrap;
  3075. text-transform:none;
  3076. }
  3077. #u14887_div {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:66px;
  3083. height:32px;
  3084. background:inherit;
  3085. background-color:rgba(255, 255, 255, 1);
  3086. box-sizing:border-box;
  3087. border-width:1px;
  3088. border-style:solid;
  3089. border-color:rgba(217, 217, 217, 1);
  3090. border-radius:4px;
  3091. -moz-box-shadow:none;
  3092. -webkit-box-shadow:none;
  3093. box-shadow:none;
  3094. font-family:'Microsoft YaHei', sans-serif;
  3095. font-weight:400;
  3096. font-style:normal;
  3097. font-size:14px;
  3098. color:rgba(0, 0, 0, 0.647058823529412);
  3099. line-height:21px;
  3100. }
  3101. #u14887 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:842px;
  3105. top:810px;
  3106. width:66px;
  3107. height:32px;
  3108. display:flex;
  3109. font-family:'Microsoft YaHei', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:14px;
  3113. color:rgba(0, 0, 0, 0.647058823529412);
  3114. line-height:21px;
  3115. }
  3116. #u14887 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 16px 2px 16px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u14887_text {
  3124. border-width:0px;
  3125. white-space:nowrap;
  3126. text-transform:none;
  3127. }
  3128. #u14888_img {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:24px;
  3134. height:24px;
  3135. }
  3136. #u14888 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:619px;
  3140. top:725px;
  3141. width:24px;
  3142. height:24px;
  3143. display:flex;
  3144. font-family:'Microsoft YaHei', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:52px;
  3148. color:#FAAD14;
  3149. }
  3150. #u14888 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 2px 2px 2px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u14888_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. visibility:hidden;
  3162. }
  3163. #u14889_div {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:326px;
  3169. height:44px;
  3170. background:inherit;
  3171. background-color:rgba(255, 255, 255, 0);
  3172. border:none;
  3173. border-radius:0px;
  3174. -moz-box-shadow:none;
  3175. -webkit-box-shadow:none;
  3176. box-shadow:none;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. color:#7F7F7F;
  3182. line-height:22px;
  3183. }
  3184. #u14889 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:655px;
  3188. top:759px;
  3189. width:326px;
  3190. height:44px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#7F7F7F;
  3197. line-height:22px;
  3198. }
  3199. #u14889 .text {
  3200. position:absolute;
  3201. align-self:flex-start;
  3202. padding:0px 0px 0px 0px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u14889_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. }
  3211. #u14890 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:0px;
  3217. height:0px;
  3218. }
  3219. #u14891_div {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:400px;
  3225. height:160px;
  3226. background:inherit;
  3227. background-color:rgba(255, 255, 255, 1);
  3228. box-sizing:border-box;
  3229. border-width:1px;
  3230. border-style:solid;
  3231. border-color:rgba(204, 204, 204, 1);
  3232. border-radius:0px;
  3233. -moz-box-shadow:none;
  3234. -webkit-box-shadow:none;
  3235. box-shadow:none;
  3236. font-family:'Microsoft YaHei', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. }
  3240. #u14891 {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:1022px;
  3244. top:702px;
  3245. width:400px;
  3246. height:160px;
  3247. display:flex;
  3248. font-family:'Microsoft YaHei', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. }
  3252. #u14891 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 2px 2px 2px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u14891_text {
  3260. border-width:0px;
  3261. word-wrap:break-word;
  3262. text-transform:none;
  3263. visibility:hidden;
  3264. }
  3265. #u14892_div {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:127px;
  3271. height:21px;
  3272. background:inherit;
  3273. background-color:rgba(255, 255, 255, 0);
  3274. border:none;
  3275. border-radius:0px;
  3276. -moz-box-shadow:none;
  3277. -webkit-box-shadow:none;
  3278. box-shadow:none;
  3279. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3280. font-weight:650;
  3281. font-style:normal;
  3282. font-size:18px;
  3283. color:#000000;
  3284. line-height:22px;
  3285. }
  3286. #u14892 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:1082px;
  3290. top:737px;
  3291. width:127px;
  3292. height:21px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3295. font-weight:650;
  3296. font-style:normal;
  3297. font-size:18px;
  3298. color:#000000;
  3299. line-height:22px;
  3300. }
  3301. #u14892 .text {
  3302. position:absolute;
  3303. align-self:flex-start;
  3304. padding:0px 0px 0px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u14892_text {
  3309. border-width:0px;
  3310. white-space:nowrap;
  3311. text-transform:none;
  3312. }
  3313. #u14893_div {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:61px;
  3319. height:32px;
  3320. background:inherit;
  3321. background-color:rgba(24, 144, 255, 1);
  3322. border:none;
  3323. border-radius:4px;
  3324. -moz-box-shadow:none;
  3325. -webkit-box-shadow:none;
  3326. box-shadow:none;
  3327. font-family:'Microsoft YaHei', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. font-size:14px;
  3331. color:#FFFFFF;
  3332. }
  3333. #u14893 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:1341px;
  3337. top:807px;
  3338. width:61px;
  3339. height:32px;
  3340. display:flex;
  3341. font-family:'Microsoft YaHei', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:14px;
  3345. color:#FFFFFF;
  3346. }
  3347. #u14893 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 16px 2px 16px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u14893_text {
  3355. border-width:0px;
  3356. white-space:nowrap;
  3357. text-transform:none;
  3358. }
  3359. #u14894_div {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:66px;
  3365. height:32px;
  3366. background:inherit;
  3367. background-color:rgba(255, 255, 255, 1);
  3368. box-sizing:border-box;
  3369. border-width:1px;
  3370. border-style:solid;
  3371. border-color:rgba(217, 217, 217, 1);
  3372. border-radius:4px;
  3373. -moz-box-shadow:none;
  3374. -webkit-box-shadow:none;
  3375. box-shadow:none;
  3376. font-family:'Microsoft YaHei', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:14px;
  3380. color:rgba(0, 0, 0, 0.647058823529412);
  3381. line-height:21px;
  3382. }
  3383. #u14894 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:1259px;
  3387. top:807px;
  3388. width:66px;
  3389. height:32px;
  3390. display:flex;
  3391. font-family:'Microsoft YaHei', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:14px;
  3395. color:rgba(0, 0, 0, 0.647058823529412);
  3396. line-height:21px;
  3397. }
  3398. #u14894 .text {
  3399. position:absolute;
  3400. align-self:center;
  3401. padding:2px 16px 2px 16px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u14894_text {
  3406. border-width:0px;
  3407. white-space:nowrap;
  3408. text-transform:none;
  3409. }
  3410. #u14895_div {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:241px;
  3416. height:22px;
  3417. background:inherit;
  3418. background-color:rgba(255, 255, 255, 0);
  3419. border:none;
  3420. border-radius:0px;
  3421. -moz-box-shadow:none;
  3422. -webkit-box-shadow:none;
  3423. box-shadow:none;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:12px;
  3428. color:#7F7F7F;
  3429. line-height:22px;
  3430. }
  3431. #u14895 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:1082px;
  3435. top:769px;
  3436. width:241px;
  3437. height:22px;
  3438. display:flex;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. color:#7F7F7F;
  3444. line-height:22px;
  3445. }
  3446. #u14895 .text {
  3447. position:absolute;
  3448. align-self:flex-start;
  3449. padding:0px 0px 0px 0px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u14895_text {
  3454. border-width:0px;
  3455. white-space:nowrap;
  3456. text-transform:none;
  3457. }
  3458. #u14896_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:24px;
  3464. height:24px;
  3465. }
  3466. #u14896 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:1046px;
  3470. top:737px;
  3471. width:24px;
  3472. height:24px;
  3473. display:flex;
  3474. }
  3475. #u14896 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 2px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u14896_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u14898 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:0px;
  3494. height:0px;
  3495. }
  3496. #u14899_div {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:200px;
  3502. height:1190px;
  3503. background:inherit;
  3504. background-color:rgba(255, 255, 255, 1);
  3505. border:none;
  3506. border-radius:0px;
  3507. -moz-box-shadow:none;
  3508. -webkit-box-shadow:none;
  3509. box-shadow:none;
  3510. }
  3511. #u14899 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:120px;
  3515. top:50px;
  3516. width:200px;
  3517. height:1190px;
  3518. display:flex;
  3519. }
  3520. #u14899 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 2px 2px 2px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u14899_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u14900_div {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:200px;
  3539. height:60px;
  3540. background:inherit;
  3541. background-color:rgba(224, 231, 247, 1);
  3542. border:none;
  3543. border-radius:0px;
  3544. -moz-box-shadow:none;
  3545. -webkit-box-shadow:none;
  3546. box-shadow:none;
  3547. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3548. font-weight:500;
  3549. font-style:normal;
  3550. font-size:18px;
  3551. }
  3552. #u14900 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:120px;
  3556. top:50px;
  3557. width:200px;
  3558. height:60px;
  3559. display:flex;
  3560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3561. font-weight:500;
  3562. font-style:normal;
  3563. font-size:18px;
  3564. }
  3565. #u14900 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:0px 0px 0px 20px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u14900_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. }
  3577. #u14901_div {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:65px;
  3583. height:22px;
  3584. background:inherit;
  3585. background-color:rgba(255, 255, 255, 0);
  3586. border:none;
  3587. border-radius:0px;
  3588. -moz-box-shadow:none;
  3589. -webkit-box-shadow:none;
  3590. box-shadow:none;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:16px;
  3595. }
  3596. #u14901 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:145px;
  3600. top:576px;
  3601. width:65px;
  3602. height:22px;
  3603. display:flex;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:16px;
  3608. }
  3609. #u14901 .text {
  3610. position:absolute;
  3611. align-self:flex-start;
  3612. padding:0px 0px 0px 0px;
  3613. box-sizing:border-box;
  3614. width:100%;
  3615. }
  3616. #u14901_text {
  3617. border-width:0px;
  3618. white-space:nowrap;
  3619. text-transform:none;
  3620. }
  3621. #u14902_div {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:49px;
  3627. height:17px;
  3628. background:inherit;
  3629. background-color:rgba(255, 255, 255, 0);
  3630. border:none;
  3631. border-radius:0px;
  3632. -moz-box-shadow:none;
  3633. -webkit-box-shadow:none;
  3634. box-shadow:none;
  3635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:12px;
  3639. color:#AAAAAA;
  3640. }
  3641. #u14902 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:143px;
  3645. top:539px;
  3646. width:49px;
  3647. height:17px;
  3648. display:flex;
  3649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3650. font-weight:400;
  3651. font-style:normal;
  3652. font-size:12px;
  3653. color:#AAAAAA;
  3654. }
  3655. #u14902 .text {
  3656. position:absolute;
  3657. align-self:flex-start;
  3658. padding:0px 0px 0px 0px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u14902_text {
  3663. border-width:0px;
  3664. white-space:nowrap;
  3665. text-transform:none;
  3666. }
  3667. #u14903_div {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:49px;
  3673. height:17px;
  3674. background:inherit;
  3675. background-color:rgba(255, 255, 255, 0);
  3676. border:none;
  3677. border-radius:0px;
  3678. -moz-box-shadow:none;
  3679. -webkit-box-shadow:none;
  3680. box-shadow:none;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:12px;
  3685. color:#AAAAAA;
  3686. }
  3687. #u14903 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:144px;
  3691. top:131px;
  3692. width:49px;
  3693. height:17px;
  3694. display:flex;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:12px;
  3699. color:#AAAAAA;
  3700. }
  3701. #u14903 .text {
  3702. position:absolute;
  3703. align-self:flex-start;
  3704. padding:0px 0px 0px 0px;
  3705. box-sizing:border-box;
  3706. width:100%;
  3707. }
  3708. #u14903_text {
  3709. border-width:0px;
  3710. white-space:nowrap;
  3711. text-transform:none;
  3712. }
  3713. #u14904_div {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:65px;
  3719. height:22px;
  3720. background:inherit;
  3721. background-color:rgba(255, 255, 255, 0);
  3722. border:none;
  3723. border-radius:0px;
  3724. -moz-box-shadow:none;
  3725. -webkit-box-shadow:none;
  3726. box-shadow:none;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:16px;
  3731. }
  3732. #u14904 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:146px;
  3736. top:168px;
  3737. width:65px;
  3738. height:22px;
  3739. display:flex;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:16px;
  3744. }
  3745. #u14904 .text {
  3746. position:absolute;
  3747. align-self:flex-start;
  3748. padding:0px 0px 0px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u14904_text {
  3753. border-width:0px;
  3754. white-space:nowrap;
  3755. text-transform:none;
  3756. }
  3757. #u14905_img {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:201px;
  3763. height:2px;
  3764. }
  3765. #u14905 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:120px;
  3769. top:518px;
  3770. width:200px;
  3771. height:1px;
  3772. display:flex;
  3773. }
  3774. #u14905 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:2px 2px 2px 2px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u14905_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. visibility:hidden;
  3786. }
  3787. #u14906_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:65px;
  3793. height:22px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 0);
  3796. border:none;
  3797. border-radius:0px;
  3798. -moz-box-shadow:none;
  3799. -webkit-box-shadow:none;
  3800. box-shadow:none;
  3801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3802. font-weight:400;
  3803. font-style:normal;
  3804. font-size:16px;
  3805. }
  3806. #u14906 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:145px;
  3810. top:618px;
  3811. width:65px;
  3812. height:22px;
  3813. display:flex;
  3814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:16px;
  3818. }
  3819. #u14906 .text {
  3820. position:absolute;
  3821. align-self:flex-start;
  3822. padding:0px 0px 0px 0px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u14906_text {
  3827. border-width:0px;
  3828. white-space:nowrap;
  3829. text-transform:none;
  3830. }
  3831. #u14907_div {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:49px;
  3837. height:17px;
  3838. background:inherit;
  3839. background-color:rgba(255, 255, 255, 0);
  3840. border:none;
  3841. border-radius:0px;
  3842. -moz-box-shadow:none;
  3843. -webkit-box-shadow:none;
  3844. box-shadow:none;
  3845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:12px;
  3849. color:#AAAAAA;
  3850. }
  3851. #u14907 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:144px;
  3855. top:355px;
  3856. width:49px;
  3857. height:17px;
  3858. display:flex;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#AAAAAA;
  3864. }
  3865. #u14907 .text {
  3866. position:absolute;
  3867. align-self:flex-start;
  3868. padding:0px 0px 0px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u14907_text {
  3873. border-width:0px;
  3874. white-space:nowrap;
  3875. text-transform:none;
  3876. }
  3877. #u14908_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:201px;
  3883. height:2px;
  3884. }
  3885. #u14908 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:121px;
  3889. top:334px;
  3890. width:200px;
  3891. height:1px;
  3892. display:flex;
  3893. }
  3894. #u14908 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 2px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u14908_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u14909_div {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:65px;
  3913. height:22px;
  3914. background:inherit;
  3915. background-color:rgba(255, 255, 255, 0);
  3916. border:none;
  3917. border-radius:0px;
  3918. -moz-box-shadow:none;
  3919. -webkit-box-shadow:none;
  3920. box-shadow:none;
  3921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:16px;
  3925. }
  3926. #u14909 {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:146px;
  3930. top:392px;
  3931. width:65px;
  3932. height:22px;
  3933. display:flex;
  3934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3935. font-weight:400;
  3936. font-style:normal;
  3937. font-size:16px;
  3938. }
  3939. #u14909 .text {
  3940. position:absolute;
  3941. align-self:flex-start;
  3942. padding:0px 0px 0px 0px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u14909_text {
  3947. border-width:0px;
  3948. white-space:nowrap;
  3949. text-transform:none;
  3950. }
  3951. #u14910_div {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:65px;
  3957. height:22px;
  3958. background:inherit;
  3959. background-color:rgba(255, 255, 255, 0);
  3960. border:none;
  3961. border-radius:0px;
  3962. -moz-box-shadow:none;
  3963. -webkit-box-shadow:none;
  3964. box-shadow:none;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:16px;
  3969. }
  3970. #u14910 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:146px;
  3974. top:434px;
  3975. width:65px;
  3976. height:22px;
  3977. display:flex;
  3978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3979. font-weight:400;
  3980. font-style:normal;
  3981. font-size:16px;
  3982. }
  3983. #u14910 .text {
  3984. position:absolute;
  3985. align-self:flex-start;
  3986. padding:0px 0px 0px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u14910_text {
  3991. border-width:0px;
  3992. white-space:nowrap;
  3993. text-transform:none;
  3994. }
  3995. #u14911_div {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:65px;
  4001. height:22px;
  4002. background:inherit;
  4003. background-color:rgba(255, 255, 255, 0);
  4004. border:none;
  4005. border-radius:0px;
  4006. -moz-box-shadow:none;
  4007. -webkit-box-shadow:none;
  4008. box-shadow:none;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:16px;
  4013. }
  4014. #u14911 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:145px;
  4018. top:926px;
  4019. width:65px;
  4020. height:22px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:16px;
  4026. }
  4027. #u14911 .text {
  4028. position:absolute;
  4029. align-self:flex-start;
  4030. padding:0px 0px 0px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u14911_text {
  4035. border-width:0px;
  4036. white-space:nowrap;
  4037. text-transform:none;
  4038. }
  4039. #u14912_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:97px;
  4045. height:22px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 0);
  4048. border:none;
  4049. border-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:16px;
  4057. }
  4058. #u14912 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:145px;
  4062. top:718px;
  4063. width:97px;
  4064. height:22px;
  4065. display:flex;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:16px;
  4070. }
  4071. #u14912 .text {
  4072. position:absolute;
  4073. align-self:flex-start;
  4074. padding:0px 0px 0px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u14912_text {
  4079. border-width:0px;
  4080. white-space:nowrap;
  4081. text-transform:none;
  4082. }
  4083. #u14913_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:49px;
  4089. height:17px;
  4090. background:inherit;
  4091. background-color:rgba(255, 255, 255, 0);
  4092. border:none;
  4093. border-radius:0px;
  4094. -moz-box-shadow:none;
  4095. -webkit-box-shadow:none;
  4096. box-shadow:none;
  4097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:12px;
  4101. color:#AAAAAA;
  4102. }
  4103. #u14913 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:143px;
  4107. top:681px;
  4108. width:49px;
  4109. height:17px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:12px;
  4115. color:#AAAAAA;
  4116. }
  4117. #u14913 .text {
  4118. position:absolute;
  4119. align-self:flex-start;
  4120. padding:0px 0px 0px 0px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u14913_text {
  4125. border-width:0px;
  4126. white-space:nowrap;
  4127. text-transform:none;
  4128. }
  4129. #u14914_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:201px;
  4135. height:2px;
  4136. }
  4137. #u14914 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:120px;
  4141. top:660px;
  4142. width:200px;
  4143. height:1px;
  4144. display:flex;
  4145. }
  4146. #u14914 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 2px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u14914_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u14915_div {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:97px;
  4165. height:22px;
  4166. background:inherit;
  4167. background-color:rgba(255, 255, 255, 0);
  4168. border:none;
  4169. border-radius:0px;
  4170. -moz-box-shadow:none;
  4171. -webkit-box-shadow:none;
  4172. box-shadow:none;
  4173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:16px;
  4177. }
  4178. #u14915 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:145px;
  4182. top:800px;
  4183. width:97px;
  4184. height:22px;
  4185. display:flex;
  4186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:16px;
  4190. }
  4191. #u14915 .text {
  4192. position:absolute;
  4193. align-self:flex-start;
  4194. padding:0px 0px 0px 0px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u14915_text {
  4199. border-width:0px;
  4200. white-space:nowrap;
  4201. text-transform:none;
  4202. }
  4203. #u14916_div {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:97px;
  4209. height:22px;
  4210. background:inherit;
  4211. background-color:rgba(255, 255, 255, 0);
  4212. border:none;
  4213. border-radius:0px;
  4214. -moz-box-shadow:none;
  4215. -webkit-box-shadow:none;
  4216. box-shadow:none;
  4217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:16px;
  4221. }
  4222. #u14916 {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:145px;
  4226. top:842px;
  4227. width:97px;
  4228. height:22px;
  4229. display:flex;
  4230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4231. font-weight:400;
  4232. font-style:normal;
  4233. font-size:16px;
  4234. }
  4235. #u14916 .text {
  4236. position:absolute;
  4237. align-self:flex-start;
  4238. padding:0px 0px 0px 0px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u14916_text {
  4243. border-width:0px;
  4244. white-space:nowrap;
  4245. text-transform:none;
  4246. }
  4247. #u14917_div {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:65px;
  4253. height:22px;
  4254. background:inherit;
  4255. background-color:rgba(255, 255, 255, 0);
  4256. border:none;
  4257. border-radius:0px;
  4258. -moz-box-shadow:none;
  4259. -webkit-box-shadow:none;
  4260. box-shadow:none;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:16px;
  4265. }
  4266. #u14917 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:145px;
  4270. top:1026px;
  4271. width:65px;
  4272. height:22px;
  4273. display:flex;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:16px;
  4278. }
  4279. #u14917 .text {
  4280. position:absolute;
  4281. align-self:flex-start;
  4282. padding:0px 0px 0px 0px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u14917_text {
  4287. border-width:0px;
  4288. white-space:nowrap;
  4289. text-transform:none;
  4290. }
  4291. #u14918_div {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:49px;
  4297. height:17px;
  4298. background:inherit;
  4299. background-color:rgba(255, 255, 255, 0);
  4300. border:none;
  4301. border-radius:0px;
  4302. -moz-box-shadow:none;
  4303. -webkit-box-shadow:none;
  4304. box-shadow:none;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:12px;
  4309. color:#AAAAAA;
  4310. }
  4311. #u14918 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:143px;
  4315. top:989px;
  4316. width:49px;
  4317. height:17px;
  4318. display:flex;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:12px;
  4323. color:#AAAAAA;
  4324. }
  4325. #u14918 .text {
  4326. position:absolute;
  4327. align-self:flex-start;
  4328. padding:0px 0px 0px 0px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u14918_text {
  4333. border-width:0px;
  4334. white-space:nowrap;
  4335. text-transform:none;
  4336. }
  4337. #u14919_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:201px;
  4343. height:2px;
  4344. }
  4345. #u14919 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:120px;
  4349. top:968px;
  4350. width:200px;
  4351. height:1px;
  4352. display:flex;
  4353. }
  4354. #u14919 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 2px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u14919_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u14920_div {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:65px;
  4373. height:22px;
  4374. background:inherit;
  4375. background-color:rgba(255, 255, 255, 0);
  4376. border:none;
  4377. border-radius:0px;
  4378. -moz-box-shadow:none;
  4379. -webkit-box-shadow:none;
  4380. box-shadow:none;
  4381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4382. font-weight:400;
  4383. font-style:normal;
  4384. font-size:16px;
  4385. }
  4386. #u14920 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:145px;
  4390. top:1068px;
  4391. width:65px;
  4392. height:22px;
  4393. display:flex;
  4394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:16px;
  4398. }
  4399. #u14920 .text {
  4400. position:absolute;
  4401. align-self:flex-start;
  4402. padding:0px 0px 0px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u14920_text {
  4407. border-width:0px;
  4408. white-space:nowrap;
  4409. text-transform:none;
  4410. }
  4411. #u14921_div {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:97px;
  4417. height:22px;
  4418. background:inherit;
  4419. background-color:rgba(255, 255, 255, 0);
  4420. border:none;
  4421. border-radius:0px;
  4422. -moz-box-shadow:none;
  4423. -webkit-box-shadow:none;
  4424. box-shadow:none;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:16px;
  4429. }
  4430. #u14921 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:145px;
  4434. top:884px;
  4435. width:97px;
  4436. height:22px;
  4437. display:flex;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:16px;
  4442. }
  4443. #u14921 .text {
  4444. position:absolute;
  4445. align-self:flex-start;
  4446. padding:0px 0px 0px 0px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u14921_text {
  4451. border-width:0px;
  4452. white-space:nowrap;
  4453. text-transform:none;
  4454. }
  4455. #u14922_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:81px;
  4461. height:22px;
  4462. background:inherit;
  4463. background-color:rgba(255, 255, 255, 0);
  4464. border:none;
  4465. border-radius:0px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:16px;
  4473. }
  4474. #u14922 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:146px;
  4478. top:476px;
  4479. width:81px;
  4480. height:22px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:16px;
  4486. }
  4487. #u14922 .text {
  4488. position:absolute;
  4489. align-self:flex-start;
  4490. padding:0px 0px 0px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u14922_text {
  4495. border-width:0px;
  4496. white-space:nowrap;
  4497. text-transform:none;
  4498. }
  4499. #u14923_div {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:97px;
  4505. height:22px;
  4506. background:inherit;
  4507. background-color:rgba(255, 255, 255, 0);
  4508. border:none;
  4509. border-radius:0px;
  4510. -moz-box-shadow:none;
  4511. -webkit-box-shadow:none;
  4512. box-shadow:none;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:16px;
  4517. }
  4518. #u14923 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:145px;
  4522. top:760px;
  4523. width:97px;
  4524. height:22px;
  4525. display:flex;
  4526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4527. font-weight:400;
  4528. font-style:normal;
  4529. font-size:16px;
  4530. }
  4531. #u14923 .text {
  4532. position:absolute;
  4533. align-self:flex-start;
  4534. padding:0px 0px 0px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u14923_text {
  4539. border-width:0px;
  4540. white-space:nowrap;
  4541. text-transform:none;
  4542. }
  4543. #u14924_div {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:65px;
  4549. height:22px;
  4550. background:inherit;
  4551. background-color:rgba(255, 255, 255, 0);
  4552. border:none;
  4553. border-radius:0px;
  4554. -moz-box-shadow:none;
  4555. -webkit-box-shadow:none;
  4556. box-shadow:none;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:16px;
  4561. }
  4562. #u14924 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:145px;
  4566. top:210px;
  4567. width:65px;
  4568. height:22px;
  4569. display:flex;
  4570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:16px;
  4574. }
  4575. #u14924 .text {
  4576. position:absolute;
  4577. align-self:flex-start;
  4578. padding:0px 0px 0px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u14924_text {
  4583. border-width:0px;
  4584. white-space:nowrap;
  4585. text-transform:none;
  4586. }
  4587. #u14925_div {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:81px;
  4593. height:22px;
  4594. background:inherit;
  4595. background-color:rgba(255, 255, 255, 0);
  4596. border:none;
  4597. border-radius:0px;
  4598. -moz-box-shadow:none;
  4599. -webkit-box-shadow:none;
  4600. box-shadow:none;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:16px;
  4605. }
  4606. #u14925 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:146px;
  4610. top:252px;
  4611. width:81px;
  4612. height:22px;
  4613. display:flex;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:16px;
  4618. }
  4619. #u14925 .text {
  4620. position:absolute;
  4621. align-self:flex-start;
  4622. padding:0px 0px 0px 0px;
  4623. box-sizing:border-box;
  4624. width:100%;
  4625. }
  4626. #u14925_text {
  4627. border-width:0px;
  4628. white-space:nowrap;
  4629. text-transform:none;
  4630. }
  4631. #u14926_div {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:65px;
  4637. height:22px;
  4638. background:inherit;
  4639. background-color:rgba(255, 255, 255, 0);
  4640. border:none;
  4641. border-radius:0px;
  4642. -moz-box-shadow:none;
  4643. -webkit-box-shadow:none;
  4644. box-shadow:none;
  4645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:16px;
  4649. }
  4650. #u14926 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:146px;
  4654. top:294px;
  4655. width:65px;
  4656. height:22px;
  4657. display:flex;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:16px;
  4662. }
  4663. #u14926 .text {
  4664. position:absolute;
  4665. align-self:flex-start;
  4666. padding:0px 0px 0px 0px;
  4667. box-sizing:border-box;
  4668. width:100%;
  4669. }
  4670. #u14926_text {
  4671. border-width:0px;
  4672. white-space:nowrap;
  4673. text-transform:none;
  4674. }
  4675. #u14927_div {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:393px;
  4681. height:20px;
  4682. background:inherit;
  4683. background-color:rgba(255, 255, 255, 0);
  4684. border:none;
  4685. border-left:0px;
  4686. border-top:0px;
  4687. border-right:0px;
  4688. border-radius:0px;
  4689. border-bottom-right-radius:0px;
  4690. border-bottom-left-radius:0px;
  4691. -moz-box-shadow:none;
  4692. -webkit-box-shadow:none;
  4693. box-shadow:none;
  4694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4695. font-weight:400;
  4696. font-style:normal;
  4697. font-size:14px;
  4698. color:#7F7F7F;
  4699. }
  4700. #u14927 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:352px;
  4704. top:100px;
  4705. width:393px;
  4706. height:20px;
  4707. display:flex;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:14px;
  4712. color:#7F7F7F;
  4713. }
  4714. #u14927 .text {
  4715. position:absolute;
  4716. align-self:center;
  4717. padding:0px 0px 0px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u14927_text {
  4722. border-width:0px;
  4723. white-space:nowrap;
  4724. text-transform:none;
  4725. }
  4726. #u14928_div {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:680px;
  4732. height:44px;
  4733. background:inherit;
  4734. background-color:rgba(255, 255, 255, 0);
  4735. border:none;
  4736. border-top:0px;
  4737. border-right:0px;
  4738. border-bottom:0px;
  4739. border-radius:0px;
  4740. border-top-left-radius:0px;
  4741. border-bottom-left-radius:0px;
  4742. -moz-box-shadow:none;
  4743. -webkit-box-shadow:none;
  4744. box-shadow:none;
  4745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. font-size:12px;
  4749. color:#D9001B;
  4750. }
  4751. #u14928 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:605px;
  4755. top:640px;
  4756. width:680px;
  4757. height:44px;
  4758. display:flex;
  4759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:12px;
  4763. color:#D9001B;
  4764. }
  4765. #u14928 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:5px 0px 5px 0px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u14928_text {
  4773. border-width:0px;
  4774. white-space:nowrap;
  4775. text-transform:none;
  4776. }
  4777. #u14929_div {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:55px;
  4783. height:30px;
  4784. background:inherit;
  4785. background-color:rgba(255, 255, 255, 1);
  4786. box-sizing:border-box;
  4787. border-width:1px;
  4788. border-style:solid;
  4789. border-color:rgba(170, 170, 170, 1);
  4790. border-radius:4px;
  4791. -moz-box-shadow:none;
  4792. -webkit-box-shadow:none;
  4793. box-shadow:none;
  4794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:12px;
  4798. color:#555555;
  4799. }
  4800. #u14929 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:689px;
  4804. top:239px;
  4805. width:55px;
  4806. height:30px;
  4807. display:flex;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:12px;
  4812. color:#555555;
  4813. }
  4814. #u14929 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:5px 15px 5px 15px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u14929_text {
  4822. border-width:0px;
  4823. white-space:nowrap;
  4824. text-transform:none;
  4825. }
  4826. #u14930_div {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:59px;
  4832. height:30px;
  4833. background:inherit;
  4834. background-color:rgba(255, 255, 255, 1);
  4835. box-sizing:border-box;
  4836. border-width:1px;
  4837. border-style:solid;
  4838. border-color:rgba(170, 170, 170, 1);
  4839. border-radius:4px;
  4840. -moz-box-shadow:none;
  4841. -webkit-box-shadow:none;
  4842. box-shadow:none;
  4843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:14px;
  4847. color:#555555;
  4848. }
  4849. #u14930 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:620px;
  4853. top:239px;
  4854. width:59px;
  4855. height:30px;
  4856. display:flex;
  4857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:14px;
  4861. color:#555555;
  4862. }
  4863. #u14930 .text {
  4864. position:absolute;
  4865. align-self:center;
  4866. padding:5px 15px 5px 15px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u14930_text {
  4871. border-width:0px;
  4872. white-space:nowrap;
  4873. text-transform:none;
  4874. }
  4875. #u14931_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:115px;
  4881. height:30px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 1);
  4884. border:none;
  4885. border-radius:4px;
  4886. -moz-box-shadow:none;
  4887. -webkit-box-shadow:none;
  4888. box-shadow:none;
  4889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4890. font-weight:400;
  4891. font-style:normal;
  4892. font-size:12px;
  4893. text-decoration:underline ;
  4894. color:#298FFF;
  4895. }
  4896. #u14931 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:1463px;
  4900. top:237px;
  4901. width:115px;
  4902. height:30px;
  4903. display:flex;
  4904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:12px;
  4908. text-decoration:underline ;
  4909. color:#298FFF;
  4910. }
  4911. #u14931 .text {
  4912. position:absolute;
  4913. align-self:center;
  4914. padding:5px 15px 5px 15px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u14931_text {
  4919. border-width:0px;
  4920. white-space:nowrap;
  4921. text-transform:none;
  4922. }
  4923. #u14932 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:0px;
  4929. height:0px;
  4930. }
  4931. #u14933 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:350px;
  4935. top:221px;
  4936. width:117px;
  4937. height:400px;
  4938. }
  4939. #u14933_children {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:0px;
  4945. height:0px;
  4946. }
  4947. #u14934 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:98px;
  4953. height:20px;
  4954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. }
  4958. #u14935_img {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:9px;
  4964. height:9px;
  4965. }
  4966. #u14935 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:6px;
  4970. top:6px;
  4971. width:9px;
  4972. height:9px;
  4973. display:flex;
  4974. }
  4975. #u14935 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:2px 2px 2px 2px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u14935_img.selected {
  4983. }
  4984. #u14935.selected {
  4985. }
  4986. #u14935_text {
  4987. border-width:0px;
  4988. word-wrap:break-word;
  4989. text-transform:none;
  4990. visibility:hidden;
  4991. }
  4992. #u14936_div {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:76px;
  4998. height:20px;
  4999. background:inherit;
  5000. background-color:rgba(255, 255, 255, 0);
  5001. border:none;
  5002. border-radius:0px;
  5003. -moz-box-shadow:none;
  5004. -webkit-box-shadow:none;
  5005. box-shadow:none;
  5006. }
  5007. #u14936 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:22px;
  5011. top:0px;
  5012. width:76px;
  5013. height:20px;
  5014. display:flex;
  5015. }
  5016. #u14936 .text {
  5017. position:absolute;
  5018. align-self:center;
  5019. padding:2px 2px 2px 3px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u14936_text {
  5024. border-width:0px;
  5025. white-space:nowrap;
  5026. text-transform:none;
  5027. }
  5028. #u14934_children {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:0px;
  5034. height:0px;
  5035. }
  5036. #u14937 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:20px;
  5040. top:20px;
  5041. width:62px;
  5042. height:20px;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. }
  5047. #u14938_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:40px;
  5053. height:20px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 0);
  5056. border:none;
  5057. border-radius:0px;
  5058. -moz-box-shadow:none;
  5059. -webkit-box-shadow:none;
  5060. box-shadow:none;
  5061. }
  5062. #u14938 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:22px;
  5066. top:0px;
  5067. width:40px;
  5068. height:20px;
  5069. display:flex;
  5070. }
  5071. #u14938 .text {
  5072. position:absolute;
  5073. align-self:center;
  5074. padding:2px 2px 2px 3px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u14938_text {
  5079. border-width:0px;
  5080. white-space:nowrap;
  5081. text-transform:none;
  5082. }
  5083. #u14939 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:20px;
  5087. top:40px;
  5088. width:64px;
  5089. height:20px;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. }
  5094. #u14940_div {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:42px;
  5100. height:20px;
  5101. background:inherit;
  5102. background-color:rgba(255, 255, 255, 0);
  5103. border:none;
  5104. border-radius:0px;
  5105. -moz-box-shadow:none;
  5106. -webkit-box-shadow:none;
  5107. box-shadow:none;
  5108. }
  5109. #u14940 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:22px;
  5113. top:0px;
  5114. width:42px;
  5115. height:20px;
  5116. display:flex;
  5117. }
  5118. #u14940 .text {
  5119. position:absolute;
  5120. align-self:center;
  5121. padding:2px 2px 2px 3px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u14940_text {
  5126. border-width:0px;
  5127. white-space:nowrap;
  5128. text-transform:none;
  5129. }
  5130. #u14941 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:20px;
  5134. top:60px;
  5135. width:62px;
  5136. height:20px;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. color:#1890FF;
  5141. }
  5142. #u14942_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:40px;
  5148. height:20px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. }
  5157. #u14942 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:22px;
  5161. top:0px;
  5162. width:40px;
  5163. height:20px;
  5164. display:flex;
  5165. }
  5166. #u14942 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 3px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u14942_text {
  5174. border-width:0px;
  5175. white-space:nowrap;
  5176. text-transform:none;
  5177. }
  5178. #u14943 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:20px;
  5182. top:80px;
  5183. width:64px;
  5184. height:20px;
  5185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. }
  5189. #u14944_div {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:42px;
  5195. height:20px;
  5196. background:inherit;
  5197. background-color:rgba(255, 255, 255, 0);
  5198. border:none;
  5199. border-radius:0px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. }
  5204. #u14944 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:22px;
  5208. top:0px;
  5209. width:42px;
  5210. height:20px;
  5211. display:flex;
  5212. }
  5213. #u14944 .text {
  5214. position:absolute;
  5215. align-self:center;
  5216. padding:2px 2px 2px 3px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u14944_text {
  5221. border-width:0px;
  5222. white-space:nowrap;
  5223. text-transform:none;
  5224. }
  5225. #u14945 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:20px;
  5229. top:100px;
  5230. width:62px;
  5231. height:20px;
  5232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. }
  5236. #u14946_div {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:40px;
  5242. height:20px;
  5243. background:inherit;
  5244. background-color:rgba(255, 255, 255, 0);
  5245. border:none;
  5246. border-radius:0px;
  5247. -moz-box-shadow:none;
  5248. -webkit-box-shadow:none;
  5249. box-shadow:none;
  5250. }
  5251. #u14946 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:22px;
  5255. top:0px;
  5256. width:40px;
  5257. height:20px;
  5258. display:flex;
  5259. }
  5260. #u14946 .text {
  5261. position:absolute;
  5262. align-self:center;
  5263. padding:2px 2px 2px 3px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u14946_text {
  5268. border-width:0px;
  5269. white-space:nowrap;
  5270. text-transform:none;
  5271. }
  5272. #u14947 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:20px;
  5276. top:120px;
  5277. width:64px;
  5278. height:20px;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. }
  5283. #u14948_div {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:42px;
  5289. height:20px;
  5290. background:inherit;
  5291. background-color:rgba(255, 255, 255, 0);
  5292. border:none;
  5293. border-radius:0px;
  5294. -moz-box-shadow:none;
  5295. -webkit-box-shadow:none;
  5296. box-shadow:none;
  5297. }
  5298. #u14948 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:22px;
  5302. top:0px;
  5303. width:42px;
  5304. height:20px;
  5305. display:flex;
  5306. }
  5307. #u14948 .text {
  5308. position:absolute;
  5309. align-self:center;
  5310. padding:2px 2px 2px 3px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u14948_text {
  5315. border-width:0px;
  5316. white-space:nowrap;
  5317. text-transform:none;
  5318. }
  5319. #u14949 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:20px;
  5323. top:140px;
  5324. width:41px;
  5325. height:20px;
  5326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. }
  5330. #u14950_div {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:19px;
  5336. height:20px;
  5337. background:inherit;
  5338. background-color:rgba(255, 255, 255, 0);
  5339. border:none;
  5340. border-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. }
  5345. #u14950 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:22px;
  5349. top:0px;
  5350. width:19px;
  5351. height:20px;
  5352. display:flex;
  5353. }
  5354. #u14950 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:2px 2px 2px 3px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u14950_text {
  5362. border-width:0px;
  5363. white-space:nowrap;
  5364. text-transform:none;
  5365. }
  5366. #u14951 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:160px;
  5371. width:101px;
  5372. height:20px;
  5373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. }
  5377. #u14952_img {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:0px;
  5381. top:0px;
  5382. width:9px;
  5383. height:9px;
  5384. }
  5385. #u14952 {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:6px;
  5389. top:6px;
  5390. width:9px;
  5391. height:9px;
  5392. display:flex;
  5393. }
  5394. #u14952 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:2px 2px 2px 2px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u14952_img.selected {
  5402. }
  5403. #u14952.selected {
  5404. }
  5405. #u14952_text {
  5406. border-width:0px;
  5407. word-wrap:break-word;
  5408. text-transform:none;
  5409. visibility:hidden;
  5410. }
  5411. #u14953_div {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:79px;
  5417. height:20px;
  5418. background:inherit;
  5419. background-color:rgba(255, 255, 255, 0);
  5420. border:none;
  5421. border-radius:0px;
  5422. -moz-box-shadow:none;
  5423. -webkit-box-shadow:none;
  5424. box-shadow:none;
  5425. }
  5426. #u14953 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:22px;
  5430. top:0px;
  5431. width:79px;
  5432. height:20px;
  5433. display:flex;
  5434. }
  5435. #u14953 .text {
  5436. position:absolute;
  5437. align-self:center;
  5438. padding:2px 2px 2px 3px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u14953_text {
  5443. border-width:0px;
  5444. white-space:nowrap;
  5445. text-transform:none;
  5446. }
  5447. #u14951_children {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:0px;
  5453. height:0px;
  5454. }
  5455. #u14954 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:20px;
  5459. top:20px;
  5460. width:62px;
  5461. height:20px;
  5462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. }
  5466. #u14955_div {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:40px;
  5472. height:20px;
  5473. background:inherit;
  5474. background-color:rgba(255, 255, 255, 0);
  5475. border:none;
  5476. border-radius:0px;
  5477. -moz-box-shadow:none;
  5478. -webkit-box-shadow:none;
  5479. box-shadow:none;
  5480. }
  5481. #u14955 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:22px;
  5485. top:0px;
  5486. width:40px;
  5487. height:20px;
  5488. display:flex;
  5489. }
  5490. #u14955 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:2px 2px 2px 3px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u14955_text {
  5498. border-width:0px;
  5499. white-space:nowrap;
  5500. text-transform:none;
  5501. }
  5502. #u14956 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:20px;
  5506. top:40px;
  5507. width:64px;
  5508. height:20px;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. }
  5513. #u14957_div {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:42px;
  5519. height:20px;
  5520. background:inherit;
  5521. background-color:rgba(255, 255, 255, 0);
  5522. border:none;
  5523. border-radius:0px;
  5524. -moz-box-shadow:none;
  5525. -webkit-box-shadow:none;
  5526. box-shadow:none;
  5527. }
  5528. #u14957 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:22px;
  5532. top:0px;
  5533. width:42px;
  5534. height:20px;
  5535. display:flex;
  5536. }
  5537. #u14957 .text {
  5538. position:absolute;
  5539. align-self:center;
  5540. padding:2px 2px 2px 3px;
  5541. box-sizing:border-box;
  5542. width:100%;
  5543. }
  5544. #u14957_text {
  5545. border-width:0px;
  5546. white-space:nowrap;
  5547. text-transform:none;
  5548. }
  5549. #u14958 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:20px;
  5553. top:60px;
  5554. width:62px;
  5555. height:20px;
  5556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. }
  5560. #u14959_div {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:0px;
  5564. top:0px;
  5565. width:40px;
  5566. height:20px;
  5567. background:inherit;
  5568. background-color:rgba(255, 255, 255, 0);
  5569. border:none;
  5570. border-radius:0px;
  5571. -moz-box-shadow:none;
  5572. -webkit-box-shadow:none;
  5573. box-shadow:none;
  5574. }
  5575. #u14959 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:22px;
  5579. top:0px;
  5580. width:40px;
  5581. height:20px;
  5582. display:flex;
  5583. }
  5584. #u14959 .text {
  5585. position:absolute;
  5586. align-self:center;
  5587. padding:2px 2px 2px 3px;
  5588. box-sizing:border-box;
  5589. width:100%;
  5590. }
  5591. #u14959_text {
  5592. border-width:0px;
  5593. white-space:nowrap;
  5594. text-transform:none;
  5595. }
  5596. #u14960 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:20px;
  5600. top:80px;
  5601. width:64px;
  5602. height:20px;
  5603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. }
  5607. #u14961_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:42px;
  5613. height:20px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 0);
  5616. border:none;
  5617. border-radius:0px;
  5618. -moz-box-shadow:none;
  5619. -webkit-box-shadow:none;
  5620. box-shadow:none;
  5621. }
  5622. #u14961 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:22px;
  5626. top:0px;
  5627. width:42px;
  5628. height:20px;
  5629. display:flex;
  5630. }
  5631. #u14961 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 3px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u14961_text {
  5639. border-width:0px;
  5640. white-space:nowrap;
  5641. text-transform:none;
  5642. }
  5643. #u14962 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:20px;
  5647. top:100px;
  5648. width:41px;
  5649. height:20px;
  5650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. }
  5654. #u14963_div {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:19px;
  5660. height:20px;
  5661. background:inherit;
  5662. background-color:rgba(255, 255, 255, 0);
  5663. border:none;
  5664. border-radius:0px;
  5665. -moz-box-shadow:none;
  5666. -webkit-box-shadow:none;
  5667. box-shadow:none;
  5668. }
  5669. #u14963 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:22px;
  5673. top:0px;
  5674. width:19px;
  5675. height:20px;
  5676. display:flex;
  5677. }
  5678. #u14963 .text {
  5679. position:absolute;
  5680. align-self:center;
  5681. padding:2px 2px 2px 3px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u14963_text {
  5686. border-width:0px;
  5687. white-space:nowrap;
  5688. text-transform:none;
  5689. }
  5690. #u14964 {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:280px;
  5695. width:101px;
  5696. height:20px;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. }
  5701. #u14965_img {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:9px;
  5707. height:9px;
  5708. }
  5709. #u14965 {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:6px;
  5713. top:6px;
  5714. width:9px;
  5715. height:9px;
  5716. display:flex;
  5717. }
  5718. #u14965 .text {
  5719. position:absolute;
  5720. align-self:center;
  5721. padding:2px 2px 2px 2px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u14965_img.selected {
  5726. }
  5727. #u14965.selected {
  5728. }
  5729. #u14965_text {
  5730. border-width:0px;
  5731. word-wrap:break-word;
  5732. text-transform:none;
  5733. visibility:hidden;
  5734. }
  5735. #u14966_div {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:0px;
  5739. top:0px;
  5740. width:79px;
  5741. height:20px;
  5742. background:inherit;
  5743. background-color:rgba(255, 255, 255, 0);
  5744. border:none;
  5745. border-radius:0px;
  5746. -moz-box-shadow:none;
  5747. -webkit-box-shadow:none;
  5748. box-shadow:none;
  5749. }
  5750. #u14966 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:22px;
  5754. top:0px;
  5755. width:79px;
  5756. height:20px;
  5757. display:flex;
  5758. }
  5759. #u14966 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 3px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u14966_text {
  5767. border-width:0px;
  5768. white-space:nowrap;
  5769. text-transform:none;
  5770. }
  5771. #u14964_children {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:0px;
  5777. height:0px;
  5778. }
  5779. #u14967 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:20px;
  5783. top:20px;
  5784. width:97px;
  5785. height:20px;
  5786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5787. font-weight:400;
  5788. font-style:normal;
  5789. }
  5790. #u14968_div {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:75px;
  5796. height:20px;
  5797. background:inherit;
  5798. background-color:rgba(255, 255, 255, 0);
  5799. border:none;
  5800. border-radius:0px;
  5801. -moz-box-shadow:none;
  5802. -webkit-box-shadow:none;
  5803. box-shadow:none;
  5804. }
  5805. #u14968 {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:22px;
  5809. top:0px;
  5810. width:75px;
  5811. height:20px;
  5812. display:flex;
  5813. }
  5814. #u14968 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:2px 2px 2px 3px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u14968_text {
  5822. border-width:0px;
  5823. white-space:nowrap;
  5824. text-transform:none;
  5825. }
  5826. #u14969 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:320px;
  5831. width:101px;
  5832. height:20px;
  5833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5834. font-weight:400;
  5835. font-style:normal;
  5836. }
  5837. #u14970_img {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:9px;
  5843. height:9px;
  5844. }
  5845. #u14970 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:6px;
  5849. top:6px;
  5850. width:9px;
  5851. height:9px;
  5852. display:flex;
  5853. }
  5854. #u14970 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u14970_img.selected {
  5862. }
  5863. #u14970.selected {
  5864. }
  5865. #u14970_text {
  5866. border-width:0px;
  5867. word-wrap:break-word;
  5868. text-transform:none;
  5869. visibility:hidden;
  5870. }
  5871. #u14971_div {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:79px;
  5877. height:20px;
  5878. background:inherit;
  5879. background-color:rgba(255, 255, 255, 0);
  5880. border:none;
  5881. border-radius:0px;
  5882. -moz-box-shadow:none;
  5883. -webkit-box-shadow:none;
  5884. box-shadow:none;
  5885. }
  5886. #u14971 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:22px;
  5890. top:0px;
  5891. width:79px;
  5892. height:20px;
  5893. display:flex;
  5894. }
  5895. #u14971 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:2px 2px 2px 3px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u14971_text {
  5903. border-width:0px;
  5904. white-space:nowrap;
  5905. text-transform:none;
  5906. }
  5907. #u14969_children {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:0px;
  5913. height:0px;
  5914. }
  5915. #u14972 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:20px;
  5919. top:20px;
  5920. width:97px;
  5921. height:20px;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. }
  5926. #u14973_div {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:75px;
  5932. height:20px;
  5933. background:inherit;
  5934. background-color:rgba(255, 255, 255, 0);
  5935. border:none;
  5936. border-radius:0px;
  5937. -moz-box-shadow:none;
  5938. -webkit-box-shadow:none;
  5939. box-shadow:none;
  5940. }
  5941. #u14973 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:22px;
  5945. top:0px;
  5946. width:75px;
  5947. height:20px;
  5948. display:flex;
  5949. }
  5950. #u14973 .text {
  5951. position:absolute;
  5952. align-self:center;
  5953. padding:2px 2px 2px 3px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u14973_text {
  5958. border-width:0px;
  5959. white-space:nowrap;
  5960. text-transform:none;
  5961. }
  5962. #u14974 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:360px;
  5967. width:103px;
  5968. height:20px;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. }
  5973. #u14975_img {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:9px;
  5979. height:9px;
  5980. }
  5981. #u14975 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:6px;
  5985. top:6px;
  5986. width:9px;
  5987. height:9px;
  5988. display:flex;
  5989. }
  5990. #u14975 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:2px 2px 2px 2px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u14975_img.selected {
  5998. }
  5999. #u14975.selected {
  6000. }
  6001. #u14975_text {
  6002. border-width:0px;
  6003. word-wrap:break-word;
  6004. text-transform:none;
  6005. visibility:hidden;
  6006. }
  6007. #u14976_div {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:0px;
  6011. top:0px;
  6012. width:81px;
  6013. height:20px;
  6014. background:inherit;
  6015. background-color:rgba(255, 255, 255, 0);
  6016. border:none;
  6017. border-radius:0px;
  6018. -moz-box-shadow:none;
  6019. -webkit-box-shadow:none;
  6020. box-shadow:none;
  6021. }
  6022. #u14976 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:22px;
  6026. top:0px;
  6027. width:81px;
  6028. height:20px;
  6029. display:flex;
  6030. }
  6031. #u14976 .text {
  6032. position:absolute;
  6033. align-self:center;
  6034. padding:2px 2px 2px 3px;
  6035. box-sizing:border-box;
  6036. width:100%;
  6037. }
  6038. #u14976_text {
  6039. border-width:0px;
  6040. white-space:nowrap;
  6041. text-transform:none;
  6042. }
  6043. #u14974_children {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:0px;
  6049. height:0px;
  6050. }
  6051. #u14977 {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:20px;
  6055. top:20px;
  6056. width:97px;
  6057. height:20px;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. }
  6062. #u14978_div {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:75px;
  6068. height:20px;
  6069. background:inherit;
  6070. background-color:rgba(255, 255, 255, 0);
  6071. border:none;
  6072. border-radius:0px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. }
  6077. #u14978 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:22px;
  6081. top:0px;
  6082. width:75px;
  6083. height:20px;
  6084. display:flex;
  6085. }
  6086. #u14978 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:2px 2px 2px 3px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u14978_text {
  6094. border-width:0px;
  6095. white-space:nowrap;
  6096. text-transform:none;
  6097. }
  6098. #u14979 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:0px;
  6104. height:0px;
  6105. }
  6106. #u14980_div {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:170px;
  6112. height:30px;
  6113. background:inherit;
  6114. background-color:rgba(255, 255, 255, 1);
  6115. box-sizing:border-box;
  6116. border-width:1px;
  6117. border-style:solid;
  6118. border-color:rgba(242, 242, 242, 1);
  6119. border-radius:4px;
  6120. -moz-box-shadow:none;
  6121. -webkit-box-shadow:none;
  6122. box-shadow:none;
  6123. font-family:'Microsoft YaHei', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:14px;
  6127. color:#CCCCCC;
  6128. text-align:left;
  6129. }
  6130. #u14980 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:350px;
  6134. top:179px;
  6135. width:170px;
  6136. height:30px;
  6137. display:flex;
  6138. font-family:'Microsoft YaHei', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:14px;
  6142. color:#CCCCCC;
  6143. text-align:left;
  6144. }
  6145. #u14980 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 8px 2px 8px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u14980_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u14981_input {
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:133px;
  6163. height:26px;
  6164. padding:2px 2px 2px 2px;
  6165. font-family:'Microsoft YaHei', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:14px;
  6169. letter-spacing:normal;
  6170. color:#000000;
  6171. vertical-align:none;
  6172. text-align:left;
  6173. text-transform:none;
  6174. background-color:transparent;
  6175. border-color:transparent;
  6176. }
  6177. #u14981_input.disabled {
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:133px;
  6182. height:26px;
  6183. padding:2px 2px 2px 2px;
  6184. font-family:'Microsoft YaHei', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:14px;
  6188. letter-spacing:normal;
  6189. color:#000000;
  6190. vertical-align:none;
  6191. text-align:left;
  6192. text-transform:none;
  6193. background-color:transparent;
  6194. border-color:transparent;
  6195. }
  6196. #u14981_div {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:133px;
  6202. height:26px;
  6203. background:inherit;
  6204. background-color:rgba(255, 255, 255, 1);
  6205. border:none;
  6206. border-radius:0px;
  6207. -moz-box-shadow:none;
  6208. -webkit-box-shadow:none;
  6209. box-shadow:none;
  6210. font-family:'Microsoft YaHei', sans-serif;
  6211. font-weight:400;
  6212. font-style:normal;
  6213. font-size:14px;
  6214. }
  6215. #u14981 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:355px;
  6219. top:181px;
  6220. width:133px;
  6221. height:26px;
  6222. display:flex;
  6223. font-family:'Microsoft YaHei', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:14px;
  6227. }
  6228. #u14981 .text {
  6229. position:absolute;
  6230. align-self:center;
  6231. padding:2px 2px 2px 2px;
  6232. box-sizing:border-box;
  6233. width:100%;
  6234. }
  6235. #u14981_div.disabled {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:133px;
  6241. height:26px;
  6242. background:inherit;
  6243. background-color:rgba(240, 240, 240, 1);
  6244. border:none;
  6245. border-radius:0px;
  6246. -moz-box-shadow:none;
  6247. -webkit-box-shadow:none;
  6248. box-shadow:none;
  6249. font-family:'Microsoft YaHei', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:14px;
  6253. }
  6254. #u14981.disabled {
  6255. }
  6256. #u14982_img {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:14px;
  6262. height:14px;
  6263. }
  6264. #u14982 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:496px;
  6268. top:188px;
  6269. width:14px;
  6270. height:14px;
  6271. display:flex;
  6272. }
  6273. #u14982 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:2px 2px 2px 2px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u14982_text {
  6281. border-width:0px;
  6282. word-wrap:break-word;
  6283. text-transform:none;
  6284. visibility:hidden;
  6285. }
  6286. #u14983 {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:0px;
  6292. height:0px;
  6293. }
  6294. #u14984_div {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:109px;
  6300. height:30px;
  6301. background:inherit;
  6302. background-color:rgba(255, 255, 255, 0);
  6303. border:none;
  6304. border-radius:0px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:18px;
  6312. color:#000000;
  6313. line-height:30px;
  6314. }
  6315. #u14984 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:350px;
  6319. top:140px;
  6320. width:109px;
  6321. height:30px;
  6322. display:flex;
  6323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:18px;
  6327. color:#000000;
  6328. line-height:30px;
  6329. }
  6330. #u14984 .text {
  6331. position:absolute;
  6332. align-self:flex-start;
  6333. padding:0px 0px 0px 0px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u14984_text {
  6338. border-width:0px;
  6339. white-space:nowrap;
  6340. text-transform:none;
  6341. }
  6342. #u14985_img {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:12px;
  6348. height:7px;
  6349. }
  6350. #u14985 {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:471px;
  6354. top:151px;
  6355. width:12px;
  6356. height:7px;
  6357. display:flex;
  6358. }
  6359. #u14985 .text {
  6360. position:absolute;
  6361. align-self:center;
  6362. padding:2px 2px 2px 2px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u14985_text {
  6367. border-width:0px;
  6368. word-wrap:break-word;
  6369. text-transform:none;
  6370. visibility:hidden;
  6371. }
  6372. #u14986 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:0px;
  6378. height:0px;
  6379. }
  6380. #u14987 {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:550px;
  6384. top:278px;
  6385. width:1028px;
  6386. height:303px;
  6387. }
  6388. #u14988_img {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:74px;
  6394. height:36px;
  6395. }
  6396. #u14988 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:74px;
  6402. height:36px;
  6403. display:flex;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:12px;
  6408. color:#FFFFFF;
  6409. }
  6410. #u14988 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u14988_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. }
  6422. #u14989_img {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:74px;
  6428. height:36px;
  6429. }
  6430. #u14989 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:74px;
  6434. top:0px;
  6435. width:74px;
  6436. height:36px;
  6437. display:flex;
  6438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6439. font-weight:400;
  6440. font-style:normal;
  6441. font-size:12px;
  6442. color:#FFFFFF;
  6443. }
  6444. #u14989 .text {
  6445. position:absolute;
  6446. align-self:center;
  6447. padding:2px 2px 2px 0px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u14989_text {
  6452. border-width:0px;
  6453. word-wrap:break-word;
  6454. text-transform:none;
  6455. }
  6456. #u14990_img {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:74px;
  6462. height:36px;
  6463. }
  6464. #u14990 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:148px;
  6468. top:0px;
  6469. width:74px;
  6470. height:36px;
  6471. display:flex;
  6472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6473. font-weight:400;
  6474. font-style:normal;
  6475. font-size:12px;
  6476. color:#FFFFFF;
  6477. }
  6478. #u14990 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:2px 2px 2px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u14990_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. }
  6490. #u14991_img {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:123px;
  6496. height:36px;
  6497. }
  6498. #u14991 {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:222px;
  6502. top:0px;
  6503. width:123px;
  6504. height:36px;
  6505. display:flex;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:12px;
  6510. color:#FFFFFF;
  6511. }
  6512. #u14991 .text {
  6513. position:absolute;
  6514. align-self:center;
  6515. padding:2px 2px 2px 0px;
  6516. box-sizing:border-box;
  6517. width:100%;
  6518. }
  6519. #u14991_text {
  6520. border-width:0px;
  6521. word-wrap:break-word;
  6522. text-transform:none;
  6523. }
  6524. #u14992_img {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:85px;
  6530. height:36px;
  6531. }
  6532. #u14992 {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:345px;
  6536. top:0px;
  6537. width:85px;
  6538. height:36px;
  6539. display:flex;
  6540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6541. font-weight:400;
  6542. font-style:normal;
  6543. font-size:12px;
  6544. color:#FFFFFF;
  6545. }
  6546. #u14992 .text {
  6547. position:absolute;
  6548. align-self:center;
  6549. padding:2px 2px 2px 0px;
  6550. box-sizing:border-box;
  6551. width:100%;
  6552. }
  6553. #u14992_text {
  6554. border-width:0px;
  6555. word-wrap:break-word;
  6556. text-transform:none;
  6557. }
  6558. #u14993_img {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:0px;
  6562. top:0px;
  6563. width:82px;
  6564. height:36px;
  6565. }
  6566. #u14993 {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:430px;
  6570. top:0px;
  6571. width:82px;
  6572. height:36px;
  6573. display:flex;
  6574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:12px;
  6578. color:#FFFFFF;
  6579. }
  6580. #u14993 .text {
  6581. position:absolute;
  6582. align-self:center;
  6583. padding:2px 2px 2px 0px;
  6584. box-sizing:border-box;
  6585. width:100%;
  6586. }
  6587. #u14993_text {
  6588. border-width:0px;
  6589. word-wrap:break-word;
  6590. text-transform:none;
  6591. }
  6592. #u14994_img {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:82px;
  6598. height:36px;
  6599. }
  6600. #u14994 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:512px;
  6604. top:0px;
  6605. width:82px;
  6606. height:36px;
  6607. display:flex;
  6608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6609. font-weight:400;
  6610. font-style:normal;
  6611. font-size:12px;
  6612. color:#FFFFFF;
  6613. }
  6614. #u14994 .text {
  6615. position:absolute;
  6616. align-self:center;
  6617. padding:2px 2px 2px 0px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u14994_text {
  6622. border-width:0px;
  6623. word-wrap:break-word;
  6624. text-transform:none;
  6625. }
  6626. #u14995_img {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:72px;
  6632. height:36px;
  6633. }
  6634. #u14995 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:594px;
  6638. top:0px;
  6639. width:72px;
  6640. height:36px;
  6641. display:flex;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:12px;
  6646. color:#FFFFFF;
  6647. }
  6648. #u14995 .text {
  6649. position:absolute;
  6650. align-self:center;
  6651. padding:2px 2px 2px 0px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u14995_text {
  6656. border-width:0px;
  6657. word-wrap:break-word;
  6658. text-transform:none;
  6659. }
  6660. #u14996_img {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:72px;
  6666. height:36px;
  6667. }
  6668. #u14996 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:666px;
  6672. top:0px;
  6673. width:72px;
  6674. height:36px;
  6675. display:flex;
  6676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6677. font-weight:400;
  6678. font-style:normal;
  6679. font-size:12px;
  6680. color:#FFFFFF;
  6681. }
  6682. #u14996 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:2px 2px 2px 0px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u14996_text {
  6690. border-width:0px;
  6691. word-wrap:break-word;
  6692. text-transform:none;
  6693. }
  6694. #u14997_img {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:72px;
  6700. height:36px;
  6701. }
  6702. #u14997 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:738px;
  6706. top:0px;
  6707. width:72px;
  6708. height:36px;
  6709. display:flex;
  6710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:12px;
  6714. color:#FFFFFF;
  6715. }
  6716. #u14997 .text {
  6717. position:absolute;
  6718. align-self:center;
  6719. padding:2px 2px 2px 0px;
  6720. box-sizing:border-box;
  6721. width:100%;
  6722. }
  6723. #u14997_text {
  6724. border-width:0px;
  6725. word-wrap:break-word;
  6726. text-transform:none;
  6727. }
  6728. #u14998_img {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:72px;
  6734. height:36px;
  6735. }
  6736. #u14998 {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:810px;
  6740. top:0px;
  6741. width:72px;
  6742. height:36px;
  6743. display:flex;
  6744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6745. font-weight:400;
  6746. font-style:normal;
  6747. font-size:12px;
  6748. color:#FFFFFF;
  6749. }
  6750. #u14998 .text {
  6751. position:absolute;
  6752. align-self:center;
  6753. padding:2px 2px 2px 0px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u14998_text {
  6758. border-width:0px;
  6759. word-wrap:break-word;
  6760. text-transform:none;
  6761. }
  6762. #u14999_img {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:72px;
  6768. height:36px;
  6769. }
  6770. #u14999 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:882px;
  6774. top:0px;
  6775. width:72px;
  6776. height:36px;
  6777. display:flex;
  6778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6779. font-weight:400;
  6780. font-style:normal;
  6781. font-size:12px;
  6782. color:#FFFFFF;
  6783. }
  6784. #u14999 .text {
  6785. position:absolute;
  6786. align-self:center;
  6787. padding:2px 2px 2px 0px;
  6788. box-sizing:border-box;
  6789. width:100%;
  6790. }
  6791. #u14999_text {
  6792. border-width:0px;
  6793. word-wrap:break-word;
  6794. text-transform:none;
  6795. }
  6796. #u15000_img {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:74px;
  6802. height:36px;
  6803. }
  6804. #u15000 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:954px;
  6808. top:0px;
  6809. width:74px;
  6810. height:36px;
  6811. display:flex;
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:12px;
  6816. color:#FFFFFF;
  6817. }
  6818. #u15000 .text {
  6819. position:absolute;
  6820. align-self:center;
  6821. padding:2px 2px 2px 0px;
  6822. box-sizing:border-box;
  6823. width:100%;
  6824. }
  6825. #u15000_text {
  6826. border-width:0px;
  6827. word-wrap:break-word;
  6828. text-transform:none;
  6829. }
  6830. #u15001_img {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:74px;
  6836. height:44px;
  6837. }
  6838. #u15001 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:0px;
  6842. top:36px;
  6843. width:74px;
  6844. height:44px;
  6845. display:flex;
  6846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. color:#333333;
  6851. line-height:40px;
  6852. }
  6853. #u15001 .text {
  6854. position:absolute;
  6855. align-self:center;
  6856. padding:2px 2px 2px 0px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u15001_text {
  6861. border-width:0px;
  6862. word-wrap:break-word;
  6863. text-transform:none;
  6864. }
  6865. #u15002_img {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:74px;
  6871. height:44px;
  6872. }
  6873. #u15002 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:74px;
  6877. top:36px;
  6878. width:74px;
  6879. height:44px;
  6880. display:flex;
  6881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:12px;
  6885. color:#333333;
  6886. line-height:40px;
  6887. }
  6888. #u15002 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:2px 2px 2px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u15002_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. }
  6900. #u15003_img {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:74px;
  6906. height:44px;
  6907. }
  6908. #u15003 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:148px;
  6912. top:36px;
  6913. width:74px;
  6914. height:44px;
  6915. display:flex;
  6916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:12px;
  6920. color:#333333;
  6921. line-height:40px;
  6922. }
  6923. #u15003 .text {
  6924. position:absolute;
  6925. align-self:center;
  6926. padding:2px 2px 2px 0px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u15003_text {
  6931. border-width:0px;
  6932. word-wrap:break-word;
  6933. text-transform:none;
  6934. }
  6935. #u15004_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:123px;
  6941. height:44px;
  6942. }
  6943. #u15004 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:222px;
  6947. top:36px;
  6948. width:123px;
  6949. height:44px;
  6950. display:flex;
  6951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:12px;
  6955. color:#333333;
  6956. line-height:40px;
  6957. }
  6958. #u15004 .text {
  6959. position:absolute;
  6960. align-self:center;
  6961. padding:2px 2px 2px 0px;
  6962. box-sizing:border-box;
  6963. width:100%;
  6964. }
  6965. #u15004_text {
  6966. border-width:0px;
  6967. word-wrap:break-word;
  6968. text-transform:none;
  6969. }
  6970. #u15005_img {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:85px;
  6976. height:44px;
  6977. }
  6978. #u15005 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:345px;
  6982. top:36px;
  6983. width:85px;
  6984. height:44px;
  6985. display:flex;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:12px;
  6990. color:#333333;
  6991. line-height:40px;
  6992. }
  6993. #u15005 .text {
  6994. position:absolute;
  6995. align-self:center;
  6996. padding:2px 2px 2px 0px;
  6997. box-sizing:border-box;
  6998. width:100%;
  6999. }
  7000. #u15005_text {
  7001. border-width:0px;
  7002. word-wrap:break-word;
  7003. text-transform:none;
  7004. }
  7005. #u15006_img {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:0px;
  7009. top:0px;
  7010. width:82px;
  7011. height:44px;
  7012. }
  7013. #u15006 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:430px;
  7017. top:36px;
  7018. width:82px;
  7019. height:44px;
  7020. display:flex;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:12px;
  7025. }
  7026. #u15006 .text {
  7027. position:absolute;
  7028. align-self:center;
  7029. padding:2px 2px 2px 0px;
  7030. box-sizing:border-box;
  7031. width:100%;
  7032. }
  7033. #u15006_text {
  7034. border-width:0px;
  7035. word-wrap:break-word;
  7036. text-transform:none;
  7037. }
  7038. #u15007_img {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:82px;
  7044. height:44px;
  7045. }
  7046. #u15007 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:512px;
  7050. top:36px;
  7051. width:82px;
  7052. height:44px;
  7053. display:flex;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:12px;
  7058. color:#606266;
  7059. }
  7060. #u15007 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:2px 2px 2px 0px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u15007_text {
  7068. border-width:0px;
  7069. word-wrap:break-word;
  7070. text-transform:none;
  7071. }
  7072. #u15008_img {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:72px;
  7078. height:44px;
  7079. }
  7080. #u15008 {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:594px;
  7084. top:36px;
  7085. width:72px;
  7086. height:44px;
  7087. display:flex;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:12px;
  7092. color:#333333;
  7093. }
  7094. #u15008 .text {
  7095. position:absolute;
  7096. align-self:center;
  7097. padding:2px 2px 2px 0px;
  7098. box-sizing:border-box;
  7099. width:100%;
  7100. }
  7101. #u15008_text {
  7102. border-width:0px;
  7103. word-wrap:break-word;
  7104. text-transform:none;
  7105. visibility:hidden;
  7106. }
  7107. #u15009_img {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:72px;
  7113. height:44px;
  7114. }
  7115. #u15009 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:666px;
  7119. top:36px;
  7120. width:72px;
  7121. height:44px;
  7122. display:flex;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:12px;
  7127. color:#333333;
  7128. }
  7129. #u15009 .text {
  7130. position:absolute;
  7131. align-self:center;
  7132. padding:2px 2px 2px 0px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u15009_text {
  7137. border-width:0px;
  7138. word-wrap:break-word;
  7139. text-transform:none;
  7140. visibility:hidden;
  7141. }
  7142. #u15010_img {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:72px;
  7148. height:44px;
  7149. }
  7150. #u15010 {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:738px;
  7154. top:36px;
  7155. width:72px;
  7156. height:44px;
  7157. display:flex;
  7158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7159. font-weight:400;
  7160. font-style:normal;
  7161. font-size:12px;
  7162. color:#333333;
  7163. }
  7164. #u15010 .text {
  7165. position:absolute;
  7166. align-self:center;
  7167. padding:2px 2px 2px 0px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u15010_text {
  7172. border-width:0px;
  7173. word-wrap:break-word;
  7174. text-transform:none;
  7175. visibility:hidden;
  7176. }
  7177. #u15011_img {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:72px;
  7183. height:44px;
  7184. }
  7185. #u15011 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:810px;
  7189. top:36px;
  7190. width:72px;
  7191. height:44px;
  7192. display:flex;
  7193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:12px;
  7197. color:#333333;
  7198. }
  7199. #u15011 .text {
  7200. position:absolute;
  7201. align-self:center;
  7202. padding:2px 2px 2px 0px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u15011_text {
  7207. border-width:0px;
  7208. word-wrap:break-word;
  7209. text-transform:none;
  7210. visibility:hidden;
  7211. }
  7212. #u15012_img {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:72px;
  7218. height:44px;
  7219. }
  7220. #u15012 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:882px;
  7224. top:36px;
  7225. width:72px;
  7226. height:44px;
  7227. display:flex;
  7228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:12px;
  7232. color:#333333;
  7233. }
  7234. #u15012 .text {
  7235. position:absolute;
  7236. align-self:center;
  7237. padding:2px 2px 2px 0px;
  7238. box-sizing:border-box;
  7239. width:100%;
  7240. }
  7241. #u15012_text {
  7242. border-width:0px;
  7243. word-wrap:break-word;
  7244. text-transform:none;
  7245. visibility:hidden;
  7246. }
  7247. #u15013_img {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:74px;
  7253. height:44px;
  7254. }
  7255. #u15013 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:954px;
  7259. top:36px;
  7260. width:74px;
  7261. height:44px;
  7262. display:flex;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:12px;
  7267. color:#298FFF;
  7268. line-height:35px;
  7269. }
  7270. #u15013 .text {
  7271. position:absolute;
  7272. align-self:center;
  7273. padding:2px 2px 2px 0px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u15013_text {
  7278. border-width:0px;
  7279. word-wrap:break-word;
  7280. text-transform:none;
  7281. }
  7282. #u15014_img {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:74px;
  7288. height:40px;
  7289. }
  7290. #u15014 {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:0px;
  7294. top:80px;
  7295. width:74px;
  7296. height:40px;
  7297. display:flex;
  7298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7299. font-weight:400;
  7300. font-style:normal;
  7301. font-size:12px;
  7302. color:#333333;
  7303. line-height:40px;
  7304. }
  7305. #u15014 .text {
  7306. position:absolute;
  7307. align-self:center;
  7308. padding:2px 2px 2px 0px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u15014_text {
  7313. border-width:0px;
  7314. word-wrap:break-word;
  7315. text-transform:none;
  7316. visibility:hidden;
  7317. }
  7318. #u15015_img {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:0px;
  7322. top:0px;
  7323. width:74px;
  7324. height:40px;
  7325. }
  7326. #u15015 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:74px;
  7330. top:80px;
  7331. width:74px;
  7332. height:40px;
  7333. display:flex;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:12px;
  7338. color:#333333;
  7339. line-height:40px;
  7340. }
  7341. #u15015 .text {
  7342. position:absolute;
  7343. align-self:center;
  7344. padding:2px 2px 2px 0px;
  7345. box-sizing:border-box;
  7346. width:100%;
  7347. }
  7348. #u15015_text {
  7349. border-width:0px;
  7350. word-wrap:break-word;
  7351. text-transform:none;
  7352. visibility:hidden;
  7353. }
  7354. #u15016_img {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:0px;
  7358. top:0px;
  7359. width:74px;
  7360. height:40px;
  7361. }
  7362. #u15016 {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:148px;
  7366. top:80px;
  7367. width:74px;
  7368. height:40px;
  7369. display:flex;
  7370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7371. font-weight:400;
  7372. font-style:normal;
  7373. font-size:12px;
  7374. color:#333333;
  7375. line-height:40px;
  7376. }
  7377. #u15016 .text {
  7378. position:absolute;
  7379. align-self:center;
  7380. padding:2px 2px 2px 0px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u15016_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. visibility:hidden;
  7389. }
  7390. #u15017_img {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:123px;
  7396. height:40px;
  7397. }
  7398. #u15017 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:222px;
  7402. top:80px;
  7403. width:123px;
  7404. height:40px;
  7405. display:flex;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:12px;
  7410. color:#333333;
  7411. line-height:40px;
  7412. }
  7413. #u15017 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 2px 2px 0px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u15017_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u15018_img {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:85px;
  7432. height:40px;
  7433. }
  7434. #u15018 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:345px;
  7438. top:80px;
  7439. width:85px;
  7440. height:40px;
  7441. display:flex;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:12px;
  7446. color:#333333;
  7447. line-height:40px;
  7448. }
  7449. #u15018 .text {
  7450. position:absolute;
  7451. align-self:center;
  7452. padding:2px 2px 2px 0px;
  7453. box-sizing:border-box;
  7454. width:100%;
  7455. }
  7456. #u15018_text {
  7457. border-width:0px;
  7458. word-wrap:break-word;
  7459. text-transform:none;
  7460. visibility:hidden;
  7461. }
  7462. #u15019_img {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:82px;
  7468. height:40px;
  7469. }
  7470. #u15019 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:430px;
  7474. top:80px;
  7475. width:82px;
  7476. height:40px;
  7477. display:flex;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:12px;
  7482. }
  7483. #u15019 .text {
  7484. position:absolute;
  7485. align-self:center;
  7486. padding:2px 2px 2px 0px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u15019_text {
  7491. border-width:0px;
  7492. word-wrap:break-word;
  7493. text-transform:none;
  7494. visibility:hidden;
  7495. }
  7496. #u15020_img {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:82px;
  7502. height:40px;
  7503. }
  7504. #u15020 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:512px;
  7508. top:80px;
  7509. width:82px;
  7510. height:40px;
  7511. display:flex;
  7512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:12px;
  7516. color:#606266;
  7517. }
  7518. #u15020 .text {
  7519. position:absolute;
  7520. align-self:center;
  7521. padding:2px 2px 2px 0px;
  7522. box-sizing:border-box;
  7523. width:100%;
  7524. }
  7525. #u15020_text {
  7526. border-width:0px;
  7527. word-wrap:break-word;
  7528. text-transform:none;
  7529. visibility:hidden;
  7530. }
  7531. #u15021_img {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:72px;
  7537. height:40px;
  7538. }
  7539. #u15021 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:594px;
  7543. top:80px;
  7544. width:72px;
  7545. height:40px;
  7546. display:flex;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:12px;
  7551. color:#333333;
  7552. }
  7553. #u15021 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 0px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u15021_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u15022_img {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:72px;
  7572. height:40px;
  7573. }
  7574. #u15022 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:666px;
  7578. top:80px;
  7579. width:72px;
  7580. height:40px;
  7581. display:flex;
  7582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:12px;
  7586. color:#333333;
  7587. }
  7588. #u15022 .text {
  7589. position:absolute;
  7590. align-self:center;
  7591. padding:2px 2px 2px 0px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u15022_text {
  7596. border-width:0px;
  7597. word-wrap:break-word;
  7598. text-transform:none;
  7599. visibility:hidden;
  7600. }
  7601. #u15023_img {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:72px;
  7607. height:40px;
  7608. }
  7609. #u15023 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:738px;
  7613. top:80px;
  7614. width:72px;
  7615. height:40px;
  7616. display:flex;
  7617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:12px;
  7621. color:#333333;
  7622. }
  7623. #u15023 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 0px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u15023_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. visibility:hidden;
  7635. }
  7636. #u15024_img {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:72px;
  7642. height:40px;
  7643. }
  7644. #u15024 {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:810px;
  7648. top:80px;
  7649. width:72px;
  7650. height:40px;
  7651. display:flex;
  7652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7653. font-weight:400;
  7654. font-style:normal;
  7655. font-size:12px;
  7656. color:#333333;
  7657. }
  7658. #u15024 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:2px 2px 2px 0px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u15024_text {
  7666. border-width:0px;
  7667. word-wrap:break-word;
  7668. text-transform:none;
  7669. visibility:hidden;
  7670. }
  7671. #u15025_img {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:72px;
  7677. height:40px;
  7678. }
  7679. #u15025 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:882px;
  7683. top:80px;
  7684. width:72px;
  7685. height:40px;
  7686. display:flex;
  7687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:12px;
  7691. color:#333333;
  7692. }
  7693. #u15025 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:2px 2px 2px 0px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u15025_text {
  7701. border-width:0px;
  7702. word-wrap:break-word;
  7703. text-transform:none;
  7704. visibility:hidden;
  7705. }
  7706. #u15026_img {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:74px;
  7712. height:40px;
  7713. }
  7714. #u15026 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:954px;
  7718. top:80px;
  7719. width:74px;
  7720. height:40px;
  7721. display:flex;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:12px;
  7726. color:#1890FF;
  7727. }
  7728. #u15026 .text {
  7729. position:absolute;
  7730. align-self:center;
  7731. padding:2px 2px 2px 0px;
  7732. box-sizing:border-box;
  7733. width:100%;
  7734. }
  7735. #u15026_text {
  7736. border-width:0px;
  7737. word-wrap:break-word;
  7738. text-transform:none;
  7739. visibility:hidden;
  7740. }
  7741. #u15027_img {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:74px;
  7747. height:43px;
  7748. }
  7749. #u15027 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:120px;
  7754. width:74px;
  7755. height:43px;
  7756. display:flex;
  7757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. font-size:12px;
  7761. color:#333333;
  7762. line-height:40px;
  7763. }
  7764. #u15027 .text {
  7765. position:absolute;
  7766. align-self:center;
  7767. padding:2px 2px 2px 0px;
  7768. box-sizing:border-box;
  7769. width:100%;
  7770. }
  7771. #u15027_text {
  7772. border-width:0px;
  7773. word-wrap:break-word;
  7774. text-transform:none;
  7775. visibility:hidden;
  7776. }
  7777. #u15028_img {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:74px;
  7783. height:43px;
  7784. }
  7785. #u15028 {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:74px;
  7789. top:120px;
  7790. width:74px;
  7791. height:43px;
  7792. display:flex;
  7793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7794. font-weight:400;
  7795. font-style:normal;
  7796. font-size:12px;
  7797. color:#333333;
  7798. line-height:40px;
  7799. }
  7800. #u15028 .text {
  7801. position:absolute;
  7802. align-self:center;
  7803. padding:2px 2px 2px 0px;
  7804. box-sizing:border-box;
  7805. width:100%;
  7806. }
  7807. #u15028_text {
  7808. border-width:0px;
  7809. word-wrap:break-word;
  7810. text-transform:none;
  7811. visibility:hidden;
  7812. }
  7813. #u15029_img {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:74px;
  7819. height:43px;
  7820. }
  7821. #u15029 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:148px;
  7825. top:120px;
  7826. width:74px;
  7827. height:43px;
  7828. display:flex;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:12px;
  7833. color:#333333;
  7834. line-height:40px;
  7835. }
  7836. #u15029 .text {
  7837. position:absolute;
  7838. align-self:center;
  7839. padding:2px 2px 2px 0px;
  7840. box-sizing:border-box;
  7841. width:100%;
  7842. }
  7843. #u15029_text {
  7844. border-width:0px;
  7845. word-wrap:break-word;
  7846. text-transform:none;
  7847. visibility:hidden;
  7848. }
  7849. #u15030_img {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:123px;
  7855. height:43px;
  7856. }
  7857. #u15030 {
  7858. border-width:0px;
  7859. position:absolute;
  7860. left:222px;
  7861. top:120px;
  7862. width:123px;
  7863. height:43px;
  7864. display:flex;
  7865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7866. font-weight:400;
  7867. font-style:normal;
  7868. font-size:12px;
  7869. color:#333333;
  7870. line-height:40px;
  7871. }
  7872. #u15030 .text {
  7873. position:absolute;
  7874. align-self:center;
  7875. padding:2px 2px 2px 0px;
  7876. box-sizing:border-box;
  7877. width:100%;
  7878. }
  7879. #u15030_text {
  7880. border-width:0px;
  7881. word-wrap:break-word;
  7882. text-transform:none;
  7883. visibility:hidden;
  7884. }
  7885. #u15031_img {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:85px;
  7891. height:43px;
  7892. }
  7893. #u15031 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:345px;
  7897. top:120px;
  7898. width:85px;
  7899. height:43px;
  7900. display:flex;
  7901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:12px;
  7905. color:#333333;
  7906. line-height:40px;
  7907. }
  7908. #u15031 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 2px 2px 0px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u15031_text {
  7916. border-width:0px;
  7917. word-wrap:break-word;
  7918. text-transform:none;
  7919. visibility:hidden;
  7920. }
  7921. #u15032_img {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:82px;
  7927. height:43px;
  7928. }
  7929. #u15032 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:430px;
  7933. top:120px;
  7934. width:82px;
  7935. height:43px;
  7936. display:flex;
  7937. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:12px;
  7941. color:#606266;
  7942. }
  7943. #u15032 .text {
  7944. position:absolute;
  7945. align-self:center;
  7946. padding:2px 2px 2px 0px;
  7947. box-sizing:border-box;
  7948. width:100%;
  7949. }
  7950. #u15032_text {
  7951. border-width:0px;
  7952. word-wrap:break-word;
  7953. text-transform:none;
  7954. visibility:hidden;
  7955. }
  7956. #u15033_img {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:0px;
  7960. top:0px;
  7961. width:82px;
  7962. height:43px;
  7963. }
  7964. #u15033 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:512px;
  7968. top:120px;
  7969. width:82px;
  7970. height:43px;
  7971. display:flex;
  7972. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:12px;
  7976. color:#606266;
  7977. }
  7978. #u15033 .text {
  7979. position:absolute;
  7980. align-self:center;
  7981. padding:2px 2px 2px 0px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u15033_text {
  7986. border-width:0px;
  7987. word-wrap:break-word;
  7988. text-transform:none;
  7989. visibility:hidden;
  7990. }
  7991. #u15034_img {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:72px;
  7997. height:43px;
  7998. }
  7999. #u15034 {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:594px;
  8003. top:120px;
  8004. width:72px;
  8005. height:43px;
  8006. display:flex;
  8007. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8008. font-weight:400;
  8009. font-style:normal;
  8010. font-size:12px;
  8011. color:#606266;
  8012. }
  8013. #u15034 .text {
  8014. position:absolute;
  8015. align-self:center;
  8016. padding:2px 2px 2px 0px;
  8017. box-sizing:border-box;
  8018. width:100%;
  8019. }
  8020. #u15034_text {
  8021. border-width:0px;
  8022. word-wrap:break-word;
  8023. text-transform:none;
  8024. visibility:hidden;
  8025. }
  8026. #u15035_img {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:72px;
  8032. height:43px;
  8033. }
  8034. #u15035 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:666px;
  8038. top:120px;
  8039. width:72px;
  8040. height:43px;
  8041. display:flex;
  8042. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:12px;
  8046. color:#606266;
  8047. }
  8048. #u15035 .text {
  8049. position:absolute;
  8050. align-self:center;
  8051. padding:2px 2px 2px 0px;
  8052. box-sizing:border-box;
  8053. width:100%;
  8054. }
  8055. #u15035_text {
  8056. border-width:0px;
  8057. word-wrap:break-word;
  8058. text-transform:none;
  8059. visibility:hidden;
  8060. }
  8061. #u15036_img {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:72px;
  8067. height:43px;
  8068. }
  8069. #u15036 {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:738px;
  8073. top:120px;
  8074. width:72px;
  8075. height:43px;
  8076. display:flex;
  8077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8078. font-weight:400;
  8079. font-style:normal;
  8080. font-size:12px;
  8081. color:#606266;
  8082. }
  8083. #u15036 .text {
  8084. position:absolute;
  8085. align-self:center;
  8086. padding:2px 2px 2px 0px;
  8087. box-sizing:border-box;
  8088. width:100%;
  8089. }
  8090. #u15036_text {
  8091. border-width:0px;
  8092. word-wrap:break-word;
  8093. text-transform:none;
  8094. visibility:hidden;
  8095. }
  8096. #u15037_img {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:0px;
  8101. width:72px;
  8102. height:43px;
  8103. }
  8104. #u15037 {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:810px;
  8108. top:120px;
  8109. width:72px;
  8110. height:43px;
  8111. display:flex;
  8112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8113. font-weight:400;
  8114. font-style:normal;
  8115. font-size:12px;
  8116. color:#606266;
  8117. }
  8118. #u15037 .text {
  8119. position:absolute;
  8120. align-self:center;
  8121. padding:2px 2px 2px 0px;
  8122. box-sizing:border-box;
  8123. width:100%;
  8124. }
  8125. #u15037_text {
  8126. border-width:0px;
  8127. word-wrap:break-word;
  8128. text-transform:none;
  8129. visibility:hidden;
  8130. }
  8131. #u15038_img {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:0px;
  8135. top:0px;
  8136. width:72px;
  8137. height:43px;
  8138. }
  8139. #u15038 {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:882px;
  8143. top:120px;
  8144. width:72px;
  8145. height:43px;
  8146. display:flex;
  8147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8148. font-weight:400;
  8149. font-style:normal;
  8150. font-size:12px;
  8151. color:#606266;
  8152. }
  8153. #u15038 .text {
  8154. position:absolute;
  8155. align-self:center;
  8156. padding:2px 2px 2px 0px;
  8157. box-sizing:border-box;
  8158. width:100%;
  8159. }
  8160. #u15038_text {
  8161. border-width:0px;
  8162. word-wrap:break-word;
  8163. text-transform:none;
  8164. visibility:hidden;
  8165. }
  8166. #u15039_img {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:74px;
  8172. height:43px;
  8173. }
  8174. #u15039 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:954px;
  8178. top:120px;
  8179. width:74px;
  8180. height:43px;
  8181. display:flex;
  8182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:12px;
  8186. color:#1890FF;
  8187. }
  8188. #u15039 .text {
  8189. position:absolute;
  8190. align-self:center;
  8191. padding:2px 2px 2px 0px;
  8192. box-sizing:border-box;
  8193. width:100%;
  8194. }
  8195. #u15039_text {
  8196. border-width:0px;
  8197. word-wrap:break-word;
  8198. text-transform:none;
  8199. visibility:hidden;
  8200. }
  8201. #u15040_img {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:74px;
  8207. height:40px;
  8208. }
  8209. #u15040 {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:0px;
  8213. top:163px;
  8214. width:74px;
  8215. height:40px;
  8216. display:flex;
  8217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8218. font-weight:400;
  8219. font-style:normal;
  8220. font-size:12px;
  8221. color:#606266;
  8222. }
  8223. #u15040 .text {
  8224. position:absolute;
  8225. align-self:center;
  8226. padding:2px 2px 2px 0px;
  8227. box-sizing:border-box;
  8228. width:100%;
  8229. }
  8230. #u15040_text {
  8231. border-width:0px;
  8232. word-wrap:break-word;
  8233. text-transform:none;
  8234. visibility:hidden;
  8235. }
  8236. #u15041_img {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:0px;
  8240. top:0px;
  8241. width:74px;
  8242. height:40px;
  8243. }
  8244. #u15041 {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:74px;
  8248. top:163px;
  8249. width:74px;
  8250. height:40px;
  8251. display:flex;
  8252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:12px;
  8256. color:#606266;
  8257. }
  8258. #u15041 .text {
  8259. position:absolute;
  8260. align-self:center;
  8261. padding:2px 2px 2px 0px;
  8262. box-sizing:border-box;
  8263. width:100%;
  8264. }
  8265. #u15041_text {
  8266. border-width:0px;
  8267. word-wrap:break-word;
  8268. text-transform:none;
  8269. visibility:hidden;
  8270. }
  8271. #u15042_img {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:74px;
  8277. height:40px;
  8278. }
  8279. #u15042 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:148px;
  8283. top:163px;
  8284. width:74px;
  8285. height:40px;
  8286. display:flex;
  8287. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8288. font-weight:400;
  8289. font-style:normal;
  8290. font-size:12px;
  8291. color:#606266;
  8292. }
  8293. #u15042 .text {
  8294. position:absolute;
  8295. align-self:center;
  8296. padding:2px 2px 2px 0px;
  8297. box-sizing:border-box;
  8298. width:100%;
  8299. }
  8300. #u15042_text {
  8301. border-width:0px;
  8302. word-wrap:break-word;
  8303. text-transform:none;
  8304. visibility:hidden;
  8305. }
  8306. #u15043_img {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:123px;
  8312. height:40px;
  8313. }
  8314. #u15043 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:222px;
  8318. top:163px;
  8319. width:123px;
  8320. height:40px;
  8321. display:flex;
  8322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8323. font-weight:400;
  8324. font-style:normal;
  8325. font-size:12px;
  8326. color:#606266;
  8327. }
  8328. #u15043 .text {
  8329. position:absolute;
  8330. align-self:center;
  8331. padding:2px 2px 2px 0px;
  8332. box-sizing:border-box;
  8333. width:100%;
  8334. }
  8335. #u15043_text {
  8336. border-width:0px;
  8337. word-wrap:break-word;
  8338. text-transform:none;
  8339. visibility:hidden;
  8340. }
  8341. #u15044_img {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:85px;
  8347. height:40px;
  8348. }
  8349. #u15044 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:345px;
  8353. top:163px;
  8354. width:85px;
  8355. height:40px;
  8356. display:flex;
  8357. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:12px;
  8361. color:#606266;
  8362. }
  8363. #u15044 .text {
  8364. position:absolute;
  8365. align-self:center;
  8366. padding:2px 2px 2px 0px;
  8367. box-sizing:border-box;
  8368. width:100%;
  8369. }
  8370. #u15044_text {
  8371. border-width:0px;
  8372. word-wrap:break-word;
  8373. text-transform:none;
  8374. visibility:hidden;
  8375. }
  8376. #u15045_img {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:82px;
  8382. height:40px;
  8383. }
  8384. #u15045 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:430px;
  8388. top:163px;
  8389. width:82px;
  8390. height:40px;
  8391. display:flex;
  8392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. font-size:12px;
  8396. color:#606266;
  8397. }
  8398. #u15045 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:2px 2px 2px 0px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u15045_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. visibility:hidden;
  8410. }
  8411. #u15046_img {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:0px;
  8415. top:0px;
  8416. width:82px;
  8417. height:40px;
  8418. }
  8419. #u15046 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:512px;
  8423. top:163px;
  8424. width:82px;
  8425. height:40px;
  8426. display:flex;
  8427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8428. font-weight:400;
  8429. font-style:normal;
  8430. font-size:12px;
  8431. color:#606266;
  8432. }
  8433. #u15046 .text {
  8434. position:absolute;
  8435. align-self:center;
  8436. padding:2px 2px 2px 0px;
  8437. box-sizing:border-box;
  8438. width:100%;
  8439. }
  8440. #u15046_text {
  8441. border-width:0px;
  8442. word-wrap:break-word;
  8443. text-transform:none;
  8444. visibility:hidden;
  8445. }
  8446. #u15047_img {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:72px;
  8452. height:40px;
  8453. }
  8454. #u15047 {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:594px;
  8458. top:163px;
  8459. width:72px;
  8460. height:40px;
  8461. display:flex;
  8462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:12px;
  8466. color:#606266;
  8467. }
  8468. #u15047 .text {
  8469. position:absolute;
  8470. align-self:center;
  8471. padding:2px 2px 2px 0px;
  8472. box-sizing:border-box;
  8473. width:100%;
  8474. }
  8475. #u15047_text {
  8476. border-width:0px;
  8477. word-wrap:break-word;
  8478. text-transform:none;
  8479. visibility:hidden;
  8480. }
  8481. #u15048_img {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:72px;
  8487. height:40px;
  8488. }
  8489. #u15048 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:666px;
  8493. top:163px;
  8494. width:72px;
  8495. height:40px;
  8496. display:flex;
  8497. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8498. font-weight:400;
  8499. font-style:normal;
  8500. font-size:12px;
  8501. color:#606266;
  8502. }
  8503. #u15048 .text {
  8504. position:absolute;
  8505. align-self:center;
  8506. padding:2px 2px 2px 0px;
  8507. box-sizing:border-box;
  8508. width:100%;
  8509. }
  8510. #u15048_text {
  8511. border-width:0px;
  8512. word-wrap:break-word;
  8513. text-transform:none;
  8514. visibility:hidden;
  8515. }
  8516. #u15049_img {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:0px;
  8520. top:0px;
  8521. width:72px;
  8522. height:40px;
  8523. }
  8524. #u15049 {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:738px;
  8528. top:163px;
  8529. width:72px;
  8530. height:40px;
  8531. display:flex;
  8532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. font-size:12px;
  8536. color:#606266;
  8537. }
  8538. #u15049 .text {
  8539. position:absolute;
  8540. align-self:center;
  8541. padding:2px 2px 2px 0px;
  8542. box-sizing:border-box;
  8543. width:100%;
  8544. }
  8545. #u15049_text {
  8546. border-width:0px;
  8547. word-wrap:break-word;
  8548. text-transform:none;
  8549. visibility:hidden;
  8550. }
  8551. #u15050_img {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:0px;
  8555. top:0px;
  8556. width:72px;
  8557. height:40px;
  8558. }
  8559. #u15050 {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:810px;
  8563. top:163px;
  8564. width:72px;
  8565. height:40px;
  8566. display:flex;
  8567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8568. font-weight:400;
  8569. font-style:normal;
  8570. font-size:12px;
  8571. color:#606266;
  8572. }
  8573. #u15050 .text {
  8574. position:absolute;
  8575. align-self:center;
  8576. padding:2px 2px 2px 0px;
  8577. box-sizing:border-box;
  8578. width:100%;
  8579. }
  8580. #u15050_text {
  8581. border-width:0px;
  8582. word-wrap:break-word;
  8583. text-transform:none;
  8584. visibility:hidden;
  8585. }
  8586. #u15051_img {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:0px;
  8590. top:0px;
  8591. width:72px;
  8592. height:40px;
  8593. }
  8594. #u15051 {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:882px;
  8598. top:163px;
  8599. width:72px;
  8600. height:40px;
  8601. display:flex;
  8602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8603. font-weight:400;
  8604. font-style:normal;
  8605. font-size:12px;
  8606. color:#606266;
  8607. }
  8608. #u15051 .text {
  8609. position:absolute;
  8610. align-self:center;
  8611. padding:2px 2px 2px 0px;
  8612. box-sizing:border-box;
  8613. width:100%;
  8614. }
  8615. #u15051_text {
  8616. border-width:0px;
  8617. word-wrap:break-word;
  8618. text-transform:none;
  8619. visibility:hidden;
  8620. }
  8621. #u15052_img {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:0px;
  8625. top:0px;
  8626. width:74px;
  8627. height:40px;
  8628. }
  8629. #u15052 {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:954px;
  8633. top:163px;
  8634. width:74px;
  8635. height:40px;
  8636. display:flex;
  8637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:12px;
  8641. color:#606266;
  8642. }
  8643. #u15052 .text {
  8644. position:absolute;
  8645. align-self:center;
  8646. padding:2px 2px 2px 0px;
  8647. box-sizing:border-box;
  8648. width:100%;
  8649. }
  8650. #u15052_text {
  8651. border-width:0px;
  8652. word-wrap:break-word;
  8653. text-transform:none;
  8654. visibility:hidden;
  8655. }
  8656. #u15053_img {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:74px;
  8662. height:40px;
  8663. }
  8664. #u15053 {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:0px;
  8668. top:203px;
  8669. width:74px;
  8670. height:40px;
  8671. display:flex;
  8672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8673. font-weight:400;
  8674. font-style:normal;
  8675. font-size:12px;
  8676. color:#606266;
  8677. }
  8678. #u15053 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:2px 2px 2px 0px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u15053_text {
  8686. border-width:0px;
  8687. word-wrap:break-word;
  8688. text-transform:none;
  8689. visibility:hidden;
  8690. }
  8691. #u15054_img {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:74px;
  8697. height:40px;
  8698. }
  8699. #u15054 {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:74px;
  8703. top:203px;
  8704. width:74px;
  8705. height:40px;
  8706. display:flex;
  8707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8708. font-weight:400;
  8709. font-style:normal;
  8710. font-size:12px;
  8711. color:#606266;
  8712. }
  8713. #u15054 .text {
  8714. position:absolute;
  8715. align-self:center;
  8716. padding:2px 2px 2px 0px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u15054_text {
  8721. border-width:0px;
  8722. word-wrap:break-word;
  8723. text-transform:none;
  8724. visibility:hidden;
  8725. }
  8726. #u15055_img {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:74px;
  8732. height:40px;
  8733. }
  8734. #u15055 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:148px;
  8738. top:203px;
  8739. width:74px;
  8740. height:40px;
  8741. display:flex;
  8742. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8743. font-weight:400;
  8744. font-style:normal;
  8745. font-size:12px;
  8746. color:#606266;
  8747. }
  8748. #u15055 .text {
  8749. position:absolute;
  8750. align-self:center;
  8751. padding:2px 2px 2px 0px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u15055_text {
  8756. border-width:0px;
  8757. word-wrap:break-word;
  8758. text-transform:none;
  8759. visibility:hidden;
  8760. }
  8761. #u15056_img {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:0px;
  8765. top:0px;
  8766. width:123px;
  8767. height:40px;
  8768. }
  8769. #u15056 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:222px;
  8773. top:203px;
  8774. width:123px;
  8775. height:40px;
  8776. display:flex;
  8777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:12px;
  8781. color:#606266;
  8782. }
  8783. #u15056 .text {
  8784. position:absolute;
  8785. align-self:center;
  8786. padding:2px 2px 2px 0px;
  8787. box-sizing:border-box;
  8788. width:100%;
  8789. }
  8790. #u15056_text {
  8791. border-width:0px;
  8792. word-wrap:break-word;
  8793. text-transform:none;
  8794. visibility:hidden;
  8795. }
  8796. #u15057_img {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:0px;
  8800. top:0px;
  8801. width:85px;
  8802. height:40px;
  8803. }
  8804. #u15057 {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:345px;
  8808. top:203px;
  8809. width:85px;
  8810. height:40px;
  8811. display:flex;
  8812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8813. font-weight:400;
  8814. font-style:normal;
  8815. font-size:12px;
  8816. color:#606266;
  8817. }
  8818. #u15057 .text {
  8819. position:absolute;
  8820. align-self:center;
  8821. padding:2px 2px 2px 0px;
  8822. box-sizing:border-box;
  8823. width:100%;
  8824. }
  8825. #u15057_text {
  8826. border-width:0px;
  8827. word-wrap:break-word;
  8828. text-transform:none;
  8829. visibility:hidden;
  8830. }
  8831. #u15058_img {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:0px;
  8835. top:0px;
  8836. width:82px;
  8837. height:40px;
  8838. }
  8839. #u15058 {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:430px;
  8843. top:203px;
  8844. width:82px;
  8845. height:40px;
  8846. display:flex;
  8847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. font-size:12px;
  8851. color:#606266;
  8852. }
  8853. #u15058 .text {
  8854. position:absolute;
  8855. align-self:center;
  8856. padding:2px 2px 2px 0px;
  8857. box-sizing:border-box;
  8858. width:100%;
  8859. }
  8860. #u15058_text {
  8861. border-width:0px;
  8862. word-wrap:break-word;
  8863. text-transform:none;
  8864. visibility:hidden;
  8865. }
  8866. #u15059_img {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:0px;
  8870. top:0px;
  8871. width:82px;
  8872. height:40px;
  8873. }
  8874. #u15059 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:512px;
  8878. top:203px;
  8879. width:82px;
  8880. height:40px;
  8881. display:flex;
  8882. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:12px;
  8886. color:#606266;
  8887. }
  8888. #u15059 .text {
  8889. position:absolute;
  8890. align-self:center;
  8891. padding:2px 2px 2px 0px;
  8892. box-sizing:border-box;
  8893. width:100%;
  8894. }
  8895. #u15059_text {
  8896. border-width:0px;
  8897. word-wrap:break-word;
  8898. text-transform:none;
  8899. visibility:hidden;
  8900. }
  8901. #u15060_img {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:0px;
  8905. top:0px;
  8906. width:72px;
  8907. height:40px;
  8908. }
  8909. #u15060 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:594px;
  8913. top:203px;
  8914. width:72px;
  8915. height:40px;
  8916. display:flex;
  8917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8918. font-weight:400;
  8919. font-style:normal;
  8920. font-size:12px;
  8921. color:#606266;
  8922. }
  8923. #u15060 .text {
  8924. position:absolute;
  8925. align-self:center;
  8926. padding:2px 2px 2px 0px;
  8927. box-sizing:border-box;
  8928. width:100%;
  8929. }
  8930. #u15060_text {
  8931. border-width:0px;
  8932. word-wrap:break-word;
  8933. text-transform:none;
  8934. visibility:hidden;
  8935. }
  8936. #u15061_img {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:0px;
  8940. top:0px;
  8941. width:72px;
  8942. height:40px;
  8943. }
  8944. #u15061 {
  8945. border-width:0px;
  8946. position:absolute;
  8947. left:666px;
  8948. top:203px;
  8949. width:72px;
  8950. height:40px;
  8951. display:flex;
  8952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8953. font-weight:400;
  8954. font-style:normal;
  8955. font-size:12px;
  8956. color:#606266;
  8957. }
  8958. #u15061 .text {
  8959. position:absolute;
  8960. align-self:center;
  8961. padding:2px 2px 2px 0px;
  8962. box-sizing:border-box;
  8963. width:100%;
  8964. }
  8965. #u15061_text {
  8966. border-width:0px;
  8967. word-wrap:break-word;
  8968. text-transform:none;
  8969. visibility:hidden;
  8970. }
  8971. #u15062_img {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:72px;
  8977. height:40px;
  8978. }
  8979. #u15062 {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:738px;
  8983. top:203px;
  8984. width:72px;
  8985. height:40px;
  8986. display:flex;
  8987. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:12px;
  8991. color:#606266;
  8992. }
  8993. #u15062 .text {
  8994. position:absolute;
  8995. align-self:center;
  8996. padding:2px 2px 2px 0px;
  8997. box-sizing:border-box;
  8998. width:100%;
  8999. }
  9000. #u15062_text {
  9001. border-width:0px;
  9002. word-wrap:break-word;
  9003. text-transform:none;
  9004. visibility:hidden;
  9005. }
  9006. #u15063_img {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:72px;
  9012. height:40px;
  9013. }
  9014. #u15063 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:810px;
  9018. top:203px;
  9019. width:72px;
  9020. height:40px;
  9021. display:flex;
  9022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:12px;
  9026. color:#606266;
  9027. }
  9028. #u15063 .text {
  9029. position:absolute;
  9030. align-self:center;
  9031. padding:2px 2px 2px 0px;
  9032. box-sizing:border-box;
  9033. width:100%;
  9034. }
  9035. #u15063_text {
  9036. border-width:0px;
  9037. word-wrap:break-word;
  9038. text-transform:none;
  9039. visibility:hidden;
  9040. }
  9041. #u15064_img {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:72px;
  9047. height:40px;
  9048. }
  9049. #u15064 {
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:882px;
  9053. top:203px;
  9054. width:72px;
  9055. height:40px;
  9056. display:flex;
  9057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9058. font-weight:400;
  9059. font-style:normal;
  9060. font-size:12px;
  9061. color:#606266;
  9062. }
  9063. #u15064 .text {
  9064. position:absolute;
  9065. align-self:center;
  9066. padding:2px 2px 2px 0px;
  9067. box-sizing:border-box;
  9068. width:100%;
  9069. }
  9070. #u15064_text {
  9071. border-width:0px;
  9072. word-wrap:break-word;
  9073. text-transform:none;
  9074. visibility:hidden;
  9075. }
  9076. #u15065_img {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:0px;
  9080. top:0px;
  9081. width:74px;
  9082. height:40px;
  9083. }
  9084. #u15065 {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:954px;
  9088. top:203px;
  9089. width:74px;
  9090. height:40px;
  9091. display:flex;
  9092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. font-size:12px;
  9096. color:#606266;
  9097. }
  9098. #u15065 .text {
  9099. position:absolute;
  9100. align-self:center;
  9101. padding:2px 2px 2px 0px;
  9102. box-sizing:border-box;
  9103. width:100%;
  9104. }
  9105. #u15065_text {
  9106. border-width:0px;
  9107. word-wrap:break-word;
  9108. text-transform:none;
  9109. visibility:hidden;
  9110. }
  9111. #u15066_img {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:0px;
  9115. top:0px;
  9116. width:74px;
  9117. height:40px;
  9118. }
  9119. #u15066 {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:0px;
  9123. top:243px;
  9124. width:74px;
  9125. height:40px;
  9126. display:flex;
  9127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9128. font-weight:400;
  9129. font-style:normal;
  9130. font-size:12px;
  9131. color:#606266;
  9132. }
  9133. #u15066 .text {
  9134. position:absolute;
  9135. align-self:center;
  9136. padding:2px 2px 2px 0px;
  9137. box-sizing:border-box;
  9138. width:100%;
  9139. }
  9140. #u15066_text {
  9141. border-width:0px;
  9142. word-wrap:break-word;
  9143. text-transform:none;
  9144. visibility:hidden;
  9145. }
  9146. #u15067_img {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:0px;
  9150. top:0px;
  9151. width:74px;
  9152. height:40px;
  9153. }
  9154. #u15067 {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:74px;
  9158. top:243px;
  9159. width:74px;
  9160. height:40px;
  9161. display:flex;
  9162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. font-size:12px;
  9166. color:#606266;
  9167. }
  9168. #u15067 .text {
  9169. position:absolute;
  9170. align-self:center;
  9171. padding:2px 2px 2px 0px;
  9172. box-sizing:border-box;
  9173. width:100%;
  9174. }
  9175. #u15067_text {
  9176. border-width:0px;
  9177. word-wrap:break-word;
  9178. text-transform:none;
  9179. visibility:hidden;
  9180. }
  9181. #u15068_img {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:74px;
  9187. height:40px;
  9188. }
  9189. #u15068 {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:148px;
  9193. top:243px;
  9194. width:74px;
  9195. height:40px;
  9196. display:flex;
  9197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9198. font-weight:400;
  9199. font-style:normal;
  9200. font-size:12px;
  9201. color:#606266;
  9202. }
  9203. #u15068 .text {
  9204. position:absolute;
  9205. align-self:center;
  9206. padding:2px 2px 2px 0px;
  9207. box-sizing:border-box;
  9208. width:100%;
  9209. }
  9210. #u15068_text {
  9211. border-width:0px;
  9212. word-wrap:break-word;
  9213. text-transform:none;
  9214. visibility:hidden;
  9215. }
  9216. #u15069_img {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:0px;
  9220. top:0px;
  9221. width:123px;
  9222. height:40px;
  9223. }
  9224. #u15069 {
  9225. border-width:0px;
  9226. position:absolute;
  9227. left:222px;
  9228. top:243px;
  9229. width:123px;
  9230. height:40px;
  9231. display:flex;
  9232. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9233. font-weight:400;
  9234. font-style:normal;
  9235. font-size:12px;
  9236. color:#606266;
  9237. }
  9238. #u15069 .text {
  9239. position:absolute;
  9240. align-self:center;
  9241. padding:2px 2px 2px 0px;
  9242. box-sizing:border-box;
  9243. width:100%;
  9244. }
  9245. #u15069_text {
  9246. border-width:0px;
  9247. word-wrap:break-word;
  9248. text-transform:none;
  9249. visibility:hidden;
  9250. }
  9251. #u15070_img {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:85px;
  9257. height:40px;
  9258. }
  9259. #u15070 {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:345px;
  9263. top:243px;
  9264. width:85px;
  9265. height:40px;
  9266. display:flex;
  9267. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9268. font-weight:400;
  9269. font-style:normal;
  9270. font-size:12px;
  9271. color:#606266;
  9272. }
  9273. #u15070 .text {
  9274. position:absolute;
  9275. align-self:center;
  9276. padding:2px 2px 2px 0px;
  9277. box-sizing:border-box;
  9278. width:100%;
  9279. }
  9280. #u15070_text {
  9281. border-width:0px;
  9282. word-wrap:break-word;
  9283. text-transform:none;
  9284. visibility:hidden;
  9285. }
  9286. #u15071_img {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:0px;
  9290. top:0px;
  9291. width:82px;
  9292. height:40px;
  9293. }
  9294. #u15071 {
  9295. border-width:0px;
  9296. position:absolute;
  9297. left:430px;
  9298. top:243px;
  9299. width:82px;
  9300. height:40px;
  9301. display:flex;
  9302. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9303. font-weight:400;
  9304. font-style:normal;
  9305. font-size:12px;
  9306. color:#606266;
  9307. }
  9308. #u15071 .text {
  9309. position:absolute;
  9310. align-self:center;
  9311. padding:2px 2px 2px 0px;
  9312. box-sizing:border-box;
  9313. width:100%;
  9314. }
  9315. #u15071_text {
  9316. border-width:0px;
  9317. word-wrap:break-word;
  9318. text-transform:none;
  9319. visibility:hidden;
  9320. }
  9321. #u15072_img {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:0px;
  9325. top:0px;
  9326. width:82px;
  9327. height:40px;
  9328. }
  9329. #u15072 {
  9330. border-width:0px;
  9331. position:absolute;
  9332. left:512px;
  9333. top:243px;
  9334. width:82px;
  9335. height:40px;
  9336. display:flex;
  9337. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9338. font-weight:400;
  9339. font-style:normal;
  9340. font-size:12px;
  9341. color:#606266;
  9342. }
  9343. #u15072 .text {
  9344. position:absolute;
  9345. align-self:center;
  9346. padding:2px 2px 2px 0px;
  9347. box-sizing:border-box;
  9348. width:100%;
  9349. }
  9350. #u15072_text {
  9351. border-width:0px;
  9352. word-wrap:break-word;
  9353. text-transform:none;
  9354. visibility:hidden;
  9355. }
  9356. #u15073_img {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:0px;
  9360. top:0px;
  9361. width:72px;
  9362. height:40px;
  9363. }
  9364. #u15073 {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:594px;
  9368. top:243px;
  9369. width:72px;
  9370. height:40px;
  9371. display:flex;
  9372. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9373. font-weight:400;
  9374. font-style:normal;
  9375. font-size:12px;
  9376. color:#606266;
  9377. }
  9378. #u15073 .text {
  9379. position:absolute;
  9380. align-self:center;
  9381. padding:2px 2px 2px 0px;
  9382. box-sizing:border-box;
  9383. width:100%;
  9384. }
  9385. #u15073_text {
  9386. border-width:0px;
  9387. word-wrap:break-word;
  9388. text-transform:none;
  9389. visibility:hidden;
  9390. }
  9391. #u15074_img {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:0px;
  9395. top:0px;
  9396. width:72px;
  9397. height:40px;
  9398. }
  9399. #u15074 {
  9400. border-width:0px;
  9401. position:absolute;
  9402. left:666px;
  9403. top:243px;
  9404. width:72px;
  9405. height:40px;
  9406. display:flex;
  9407. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9408. font-weight:400;
  9409. font-style:normal;
  9410. font-size:12px;
  9411. color:#606266;
  9412. }
  9413. #u15074 .text {
  9414. position:absolute;
  9415. align-self:center;
  9416. padding:2px 2px 2px 0px;
  9417. box-sizing:border-box;
  9418. width:100%;
  9419. }
  9420. #u15074_text {
  9421. border-width:0px;
  9422. word-wrap:break-word;
  9423. text-transform:none;
  9424. visibility:hidden;
  9425. }
  9426. #u15075_img {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:0px;
  9430. top:0px;
  9431. width:72px;
  9432. height:40px;
  9433. }
  9434. #u15075 {
  9435. border-width:0px;
  9436. position:absolute;
  9437. left:738px;
  9438. top:243px;
  9439. width:72px;
  9440. height:40px;
  9441. display:flex;
  9442. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9443. font-weight:400;
  9444. font-style:normal;
  9445. font-size:12px;
  9446. color:#606266;
  9447. }
  9448. #u15075 .text {
  9449. position:absolute;
  9450. align-self:center;
  9451. padding:2px 2px 2px 0px;
  9452. box-sizing:border-box;
  9453. width:100%;
  9454. }
  9455. #u15075_text {
  9456. border-width:0px;
  9457. word-wrap:break-word;
  9458. text-transform:none;
  9459. visibility:hidden;
  9460. }
  9461. #u15076_img {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:0px;
  9465. top:0px;
  9466. width:72px;
  9467. height:40px;
  9468. }
  9469. #u15076 {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:810px;
  9473. top:243px;
  9474. width:72px;
  9475. height:40px;
  9476. display:flex;
  9477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:12px;
  9481. color:#606266;
  9482. }
  9483. #u15076 .text {
  9484. position:absolute;
  9485. align-self:center;
  9486. padding:2px 2px 2px 0px;
  9487. box-sizing:border-box;
  9488. width:100%;
  9489. }
  9490. #u15076_text {
  9491. border-width:0px;
  9492. word-wrap:break-word;
  9493. text-transform:none;
  9494. visibility:hidden;
  9495. }
  9496. #u15077_img {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:0px;
  9500. top:0px;
  9501. width:72px;
  9502. height:40px;
  9503. }
  9504. #u15077 {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:882px;
  9508. top:243px;
  9509. width:72px;
  9510. height:40px;
  9511. display:flex;
  9512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9513. font-weight:400;
  9514. font-style:normal;
  9515. font-size:12px;
  9516. color:#606266;
  9517. }
  9518. #u15077 .text {
  9519. position:absolute;
  9520. align-self:center;
  9521. padding:2px 2px 2px 0px;
  9522. box-sizing:border-box;
  9523. width:100%;
  9524. }
  9525. #u15077_text {
  9526. border-width:0px;
  9527. word-wrap:break-word;
  9528. text-transform:none;
  9529. visibility:hidden;
  9530. }
  9531. #u15078_img {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:0px;
  9535. top:0px;
  9536. width:74px;
  9537. height:40px;
  9538. }
  9539. #u15078 {
  9540. border-width:0px;
  9541. position:absolute;
  9542. left:954px;
  9543. top:243px;
  9544. width:74px;
  9545. height:40px;
  9546. display:flex;
  9547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9548. font-weight:400;
  9549. font-style:normal;
  9550. font-size:12px;
  9551. color:#606266;
  9552. }
  9553. #u15078 .text {
  9554. position:absolute;
  9555. align-self:center;
  9556. padding:2px 2px 2px 0px;
  9557. box-sizing:border-box;
  9558. width:100%;
  9559. }
  9560. #u15078_text {
  9561. border-width:0px;
  9562. word-wrap:break-word;
  9563. text-transform:none;
  9564. visibility:hidden;
  9565. }
  9566. #u15079_img {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:0px;
  9570. top:0px;
  9571. width:74px;
  9572. height:20px;
  9573. }
  9574. #u15079 {
  9575. border-width:0px;
  9576. position:absolute;
  9577. left:0px;
  9578. top:283px;
  9579. width:74px;
  9580. height:20px;
  9581. display:flex;
  9582. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9583. font-weight:400;
  9584. font-style:normal;
  9585. font-size:12px;
  9586. color:#606266;
  9587. }
  9588. #u15079 .text {
  9589. position:absolute;
  9590. align-self:center;
  9591. padding:2px 2px 2px 0px;
  9592. box-sizing:border-box;
  9593. width:100%;
  9594. }
  9595. #u15079_text {
  9596. border-width:0px;
  9597. word-wrap:break-word;
  9598. text-transform:none;
  9599. visibility:hidden;
  9600. }
  9601. #u15080_img {
  9602. border-width:0px;
  9603. position:absolute;
  9604. left:0px;
  9605. top:0px;
  9606. width:74px;
  9607. height:20px;
  9608. }
  9609. #u15080 {
  9610. border-width:0px;
  9611. position:absolute;
  9612. left:74px;
  9613. top:283px;
  9614. width:74px;
  9615. height:20px;
  9616. display:flex;
  9617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9618. font-weight:400;
  9619. font-style:normal;
  9620. font-size:12px;
  9621. color:#606266;
  9622. }
  9623. #u15080 .text {
  9624. position:absolute;
  9625. align-self:center;
  9626. padding:2px 2px 2px 0px;
  9627. box-sizing:border-box;
  9628. width:100%;
  9629. }
  9630. #u15080_text {
  9631. border-width:0px;
  9632. word-wrap:break-word;
  9633. text-transform:none;
  9634. visibility:hidden;
  9635. }
  9636. #u15081_img {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:0px;
  9640. top:0px;
  9641. width:74px;
  9642. height:20px;
  9643. }
  9644. #u15081 {
  9645. border-width:0px;
  9646. position:absolute;
  9647. left:148px;
  9648. top:283px;
  9649. width:74px;
  9650. height:20px;
  9651. display:flex;
  9652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9653. font-weight:400;
  9654. font-style:normal;
  9655. font-size:12px;
  9656. color:#606266;
  9657. }
  9658. #u15081 .text {
  9659. position:absolute;
  9660. align-self:center;
  9661. padding:2px 2px 2px 0px;
  9662. box-sizing:border-box;
  9663. width:100%;
  9664. }
  9665. #u15081_text {
  9666. border-width:0px;
  9667. word-wrap:break-word;
  9668. text-transform:none;
  9669. visibility:hidden;
  9670. }
  9671. #u15082_img {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:0px;
  9675. top:0px;
  9676. width:123px;
  9677. height:20px;
  9678. }
  9679. #u15082 {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:222px;
  9683. top:283px;
  9684. width:123px;
  9685. height:20px;
  9686. display:flex;
  9687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9688. font-weight:400;
  9689. font-style:normal;
  9690. font-size:12px;
  9691. color:#606266;
  9692. }
  9693. #u15082 .text {
  9694. position:absolute;
  9695. align-self:center;
  9696. padding:2px 2px 2px 0px;
  9697. box-sizing:border-box;
  9698. width:100%;
  9699. }
  9700. #u15082_text {
  9701. border-width:0px;
  9702. word-wrap:break-word;
  9703. text-transform:none;
  9704. visibility:hidden;
  9705. }
  9706. #u15083_img {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:0px;
  9710. top:0px;
  9711. width:85px;
  9712. height:20px;
  9713. }
  9714. #u15083 {
  9715. border-width:0px;
  9716. position:absolute;
  9717. left:345px;
  9718. top:283px;
  9719. width:85px;
  9720. height:20px;
  9721. display:flex;
  9722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9723. font-weight:400;
  9724. font-style:normal;
  9725. font-size:12px;
  9726. color:#606266;
  9727. }
  9728. #u15083 .text {
  9729. position:absolute;
  9730. align-self:center;
  9731. padding:2px 2px 2px 0px;
  9732. box-sizing:border-box;
  9733. width:100%;
  9734. }
  9735. #u15083_text {
  9736. border-width:0px;
  9737. word-wrap:break-word;
  9738. text-transform:none;
  9739. visibility:hidden;
  9740. }
  9741. #u15084_img {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:0px;
  9745. top:0px;
  9746. width:82px;
  9747. height:20px;
  9748. }
  9749. #u15084 {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:430px;
  9753. top:283px;
  9754. width:82px;
  9755. height:20px;
  9756. display:flex;
  9757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9758. font-weight:400;
  9759. font-style:normal;
  9760. font-size:12px;
  9761. color:#606266;
  9762. }
  9763. #u15084 .text {
  9764. position:absolute;
  9765. align-self:center;
  9766. padding:2px 2px 2px 0px;
  9767. box-sizing:border-box;
  9768. width:100%;
  9769. }
  9770. #u15084_text {
  9771. border-width:0px;
  9772. word-wrap:break-word;
  9773. text-transform:none;
  9774. visibility:hidden;
  9775. }
  9776. #u15085_img {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:0px;
  9780. top:0px;
  9781. width:82px;
  9782. height:20px;
  9783. }
  9784. #u15085 {
  9785. border-width:0px;
  9786. position:absolute;
  9787. left:512px;
  9788. top:283px;
  9789. width:82px;
  9790. height:20px;
  9791. display:flex;
  9792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9793. font-weight:400;
  9794. font-style:normal;
  9795. font-size:12px;
  9796. color:#606266;
  9797. }
  9798. #u15085 .text {
  9799. position:absolute;
  9800. align-self:center;
  9801. padding:2px 2px 2px 0px;
  9802. box-sizing:border-box;
  9803. width:100%;
  9804. }
  9805. #u15085_text {
  9806. border-width:0px;
  9807. word-wrap:break-word;
  9808. text-transform:none;
  9809. visibility:hidden;
  9810. }
  9811. #u15086_img {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:0px;
  9815. top:0px;
  9816. width:72px;
  9817. height:20px;
  9818. }
  9819. #u15086 {
  9820. border-width:0px;
  9821. position:absolute;
  9822. left:594px;
  9823. top:283px;
  9824. width:72px;
  9825. height:20px;
  9826. display:flex;
  9827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9828. font-weight:400;
  9829. font-style:normal;
  9830. font-size:12px;
  9831. color:#606266;
  9832. }
  9833. #u15086 .text {
  9834. position:absolute;
  9835. align-self:center;
  9836. padding:2px 2px 2px 0px;
  9837. box-sizing:border-box;
  9838. width:100%;
  9839. }
  9840. #u15086_text {
  9841. border-width:0px;
  9842. word-wrap:break-word;
  9843. text-transform:none;
  9844. visibility:hidden;
  9845. }
  9846. #u15087_img {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:0px;
  9850. top:0px;
  9851. width:72px;
  9852. height:20px;
  9853. }
  9854. #u15087 {
  9855. border-width:0px;
  9856. position:absolute;
  9857. left:666px;
  9858. top:283px;
  9859. width:72px;
  9860. height:20px;
  9861. display:flex;
  9862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9863. font-weight:400;
  9864. font-style:normal;
  9865. font-size:12px;
  9866. color:#606266;
  9867. }
  9868. #u15087 .text {
  9869. position:absolute;
  9870. align-self:center;
  9871. padding:2px 2px 2px 0px;
  9872. box-sizing:border-box;
  9873. width:100%;
  9874. }
  9875. #u15087_text {
  9876. border-width:0px;
  9877. word-wrap:break-word;
  9878. text-transform:none;
  9879. visibility:hidden;
  9880. }
  9881. #u15088_img {
  9882. border-width:0px;
  9883. position:absolute;
  9884. left:0px;
  9885. top:0px;
  9886. width:72px;
  9887. height:20px;
  9888. }
  9889. #u15088 {
  9890. border-width:0px;
  9891. position:absolute;
  9892. left:738px;
  9893. top:283px;
  9894. width:72px;
  9895. height:20px;
  9896. display:flex;
  9897. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9898. font-weight:400;
  9899. font-style:normal;
  9900. font-size:12px;
  9901. color:#606266;
  9902. }
  9903. #u15088 .text {
  9904. position:absolute;
  9905. align-self:center;
  9906. padding:2px 2px 2px 0px;
  9907. box-sizing:border-box;
  9908. width:100%;
  9909. }
  9910. #u15088_text {
  9911. border-width:0px;
  9912. word-wrap:break-word;
  9913. text-transform:none;
  9914. visibility:hidden;
  9915. }
  9916. #u15089_img {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:0px;
  9920. top:0px;
  9921. width:72px;
  9922. height:20px;
  9923. }
  9924. #u15089 {
  9925. border-width:0px;
  9926. position:absolute;
  9927. left:810px;
  9928. top:283px;
  9929. width:72px;
  9930. height:20px;
  9931. display:flex;
  9932. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9933. font-weight:400;
  9934. font-style:normal;
  9935. font-size:12px;
  9936. color:#606266;
  9937. }
  9938. #u15089 .text {
  9939. position:absolute;
  9940. align-self:center;
  9941. padding:2px 2px 2px 0px;
  9942. box-sizing:border-box;
  9943. width:100%;
  9944. }
  9945. #u15089_text {
  9946. border-width:0px;
  9947. word-wrap:break-word;
  9948. text-transform:none;
  9949. visibility:hidden;
  9950. }
  9951. #u15090_img {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:0px;
  9955. top:0px;
  9956. width:72px;
  9957. height:20px;
  9958. }
  9959. #u15090 {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:882px;
  9963. top:283px;
  9964. width:72px;
  9965. height:20px;
  9966. display:flex;
  9967. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9968. font-weight:400;
  9969. font-style:normal;
  9970. font-size:12px;
  9971. color:#606266;
  9972. }
  9973. #u15090 .text {
  9974. position:absolute;
  9975. align-self:center;
  9976. padding:2px 2px 2px 0px;
  9977. box-sizing:border-box;
  9978. width:100%;
  9979. }
  9980. #u15090_text {
  9981. border-width:0px;
  9982. word-wrap:break-word;
  9983. text-transform:none;
  9984. visibility:hidden;
  9985. }
  9986. #u15091_img {
  9987. border-width:0px;
  9988. position:absolute;
  9989. left:0px;
  9990. top:0px;
  9991. width:74px;
  9992. height:20px;
  9993. }
  9994. #u15091 {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:954px;
  9998. top:283px;
  9999. width:74px;
  10000. height:20px;
  10001. display:flex;
  10002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10003. font-weight:400;
  10004. font-style:normal;
  10005. font-size:12px;
  10006. color:#606266;
  10007. }
  10008. #u15091 .text {
  10009. position:absolute;
  10010. align-self:center;
  10011. padding:2px 2px 2px 0px;
  10012. box-sizing:border-box;
  10013. width:100%;
  10014. }
  10015. #u15091_text {
  10016. border-width:0px;
  10017. word-wrap:break-word;
  10018. text-transform:none;
  10019. visibility:hidden;
  10020. }
  10021. #u15092 {
  10022. border-width:0px;
  10023. position:absolute;
  10024. left:0px;
  10025. top:0px;
  10026. width:0px;
  10027. height:0px;
  10028. }
  10029. #u15093_div {
  10030. border-width:0px;
  10031. position:absolute;
  10032. left:0px;
  10033. top:0px;
  10034. width:80px;
  10035. height:100px;
  10036. background:inherit;
  10037. background-color:rgba(255, 255, 255, 1);
  10038. box-sizing:border-box;
  10039. border-width:1px;
  10040. border-style:solid;
  10041. border-color:rgba(242, 242, 242, 1);
  10042. border-radius:4px;
  10043. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10044. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10045. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10047. font-weight:400;
  10048. font-style:normal;
  10049. font-size:14px;
  10050. text-align:left;
  10051. }
  10052. #u15093 {
  10053. border-width:0px;
  10054. position:absolute;
  10055. left:1473px;
  10056. top:350px;
  10057. width:80px;
  10058. height:100px;
  10059. display:flex;
  10060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10061. font-weight:400;
  10062. font-style:normal;
  10063. font-size:14px;
  10064. text-align:left;
  10065. }
  10066. #u15093 .text {
  10067. position:absolute;
  10068. align-self:center;
  10069. padding:2px 2px 2px 2px;
  10070. box-sizing:border-box;
  10071. width:100%;
  10072. }
  10073. #u15093_text {
  10074. border-width:0px;
  10075. word-wrap:break-word;
  10076. text-transform:none;
  10077. visibility:hidden;
  10078. }
  10079. #u15094_div {
  10080. border-width:0px;
  10081. position:absolute;
  10082. left:0px;
  10083. top:0px;
  10084. width:66px;
  10085. height:40px;
  10086. background:inherit;
  10087. background-color:rgba(255, 255, 255, 1);
  10088. box-sizing:border-box;
  10089. border-width:1px;
  10090. border-style:solid;
  10091. border-color:rgba(215, 215, 215, 1);
  10092. border-left:0px;
  10093. border-top:0px;
  10094. border-right:0px;
  10095. border-radius:0px;
  10096. border-bottom-right-radius:0px;
  10097. border-bottom-left-radius:0px;
  10098. -moz-box-shadow:none;
  10099. -webkit-box-shadow:none;
  10100. box-shadow:none;
  10101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10102. font-weight:400;
  10103. font-style:normal;
  10104. font-size:14px;
  10105. }
  10106. #u15094 {
  10107. border-width:0px;
  10108. position:absolute;
  10109. left:1479px;
  10110. top:360px;
  10111. width:66px;
  10112. height:40px;
  10113. display:flex;
  10114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10115. font-weight:400;
  10116. font-style:normal;
  10117. font-size:14px;
  10118. }
  10119. #u15094 .text {
  10120. position:absolute;
  10121. align-self:center;
  10122. padding:2px 2px 2px 2px;
  10123. box-sizing:border-box;
  10124. width:100%;
  10125. }
  10126. #u15094_text {
  10127. border-width:0px;
  10128. word-wrap:break-word;
  10129. text-transform:none;
  10130. }
  10131. #u15095_div {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:66px;
  10137. height:40px;
  10138. background:inherit;
  10139. background-color:rgba(255, 255, 255, 1);
  10140. border:none;
  10141. border-left:0px;
  10142. border-top:0px;
  10143. border-right:0px;
  10144. border-radius:0px;
  10145. border-bottom-right-radius:0px;
  10146. border-bottom-left-radius:0px;
  10147. -moz-box-shadow:none;
  10148. -webkit-box-shadow:none;
  10149. box-shadow:none;
  10150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10151. font-weight:400;
  10152. font-style:normal;
  10153. font-size:14px;
  10154. }
  10155. #u15095 {
  10156. border-width:0px;
  10157. position:absolute;
  10158. left:1479px;
  10159. top:400px;
  10160. width:66px;
  10161. height:40px;
  10162. display:flex;
  10163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10164. font-weight:400;
  10165. font-style:normal;
  10166. font-size:14px;
  10167. }
  10168. #u15095 .text {
  10169. position:absolute;
  10170. align-self:center;
  10171. padding:2px 2px 2px 2px;
  10172. box-sizing:border-box;
  10173. width:100%;
  10174. }
  10175. #u15095_text {
  10176. border-width:0px;
  10177. word-wrap:break-word;
  10178. text-transform:none;
  10179. }
  10180. #u15096_img {
  10181. border-width:0px;
  10182. position:absolute;
  10183. left:0px;
  10184. top:0px;
  10185. width:50px;
  10186. height:31px;
  10187. }
  10188. #u15096 {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:1369px;
  10192. top:322px;
  10193. width:50px;
  10194. height:31px;
  10195. display:flex;
  10196. }
  10197. #u15096 .text {
  10198. position:absolute;
  10199. align-self:center;
  10200. padding:2px 2px 2px 2px;
  10201. box-sizing:border-box;
  10202. width:100%;
  10203. }
  10204. #u15096_text {
  10205. border-width:0px;
  10206. word-wrap:break-word;
  10207. text-transform:none;
  10208. visibility:hidden;
  10209. }
  10210. #u15097 {
  10211. border-width:0px;
  10212. position:absolute;
  10213. left:0px;
  10214. top:0px;
  10215. width:0px;
  10216. height:0px;
  10217. }
  10218. #u15098_div {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:140px;
  10224. height:30px;
  10225. background:inherit;
  10226. background-color:rgba(255, 255, 255, 1);
  10227. box-sizing:border-box;
  10228. border-width:1px;
  10229. border-style:solid;
  10230. border-color:rgba(215, 215, 215, 1);
  10231. border-radius:4px;
  10232. -moz-box-shadow:none;
  10233. -webkit-box-shadow:none;
  10234. box-shadow:none;
  10235. font-size:14px;
  10236. }
  10237. #u15098 {
  10238. border-width:0px;
  10239. position:absolute;
  10240. left:848px;
  10241. top:150px;
  10242. width:140px;
  10243. height:30px;
  10244. display:flex;
  10245. font-size:14px;
  10246. }
  10247. #u15098 .text {
  10248. position:absolute;
  10249. align-self:center;
  10250. padding:2px 2px 2px 2px;
  10251. box-sizing:border-box;
  10252. width:100%;
  10253. }
  10254. #u15098_text {
  10255. border-width:0px;
  10256. word-wrap:break-word;
  10257. text-transform:none;
  10258. visibility:hidden;
  10259. }
  10260. #u15099_input {
  10261. position:absolute;
  10262. left:0px;
  10263. top:0px;
  10264. width:134px;
  10265. height:23px;
  10266. padding:2px 2px 2px 2px;
  10267. font-family:'ArialMT', 'Arial', sans-serif;
  10268. font-weight:400;
  10269. font-style:normal;
  10270. font-size:14px;
  10271. letter-spacing:normal;
  10272. color:#AAAAAA;
  10273. vertical-align:none;
  10274. text-align:left;
  10275. text-transform:none;
  10276. background-color:transparent;
  10277. border-color:transparent;
  10278. }
  10279. #u15099_input.disabled {
  10280. position:absolute;
  10281. left:0px;
  10282. top:0px;
  10283. width:134px;
  10284. height:23px;
  10285. padding:2px 2px 2px 2px;
  10286. font-family:'ArialMT', 'Arial', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. font-size:14px;
  10290. letter-spacing:normal;
  10291. color:#AAAAAA;
  10292. vertical-align:none;
  10293. text-align:left;
  10294. text-transform:none;
  10295. background-color:transparent;
  10296. border-color:transparent;
  10297. }
  10298. #u15099_div {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:0px;
  10302. top:0px;
  10303. width:134px;
  10304. height:23px;
  10305. background:inherit;
  10306. background-color:rgba(255, 255, 255, 1);
  10307. border:none;
  10308. border-radius:0px;
  10309. -moz-box-shadow:none;
  10310. -webkit-box-shadow:none;
  10311. box-shadow:none;
  10312. font-size:14px;
  10313. color:#AAAAAA;
  10314. }
  10315. #u15099 {
  10316. border-width:0px;
  10317. position:absolute;
  10318. left:852px;
  10319. top:152px;
  10320. width:134px;
  10321. height:23px;
  10322. display:flex;
  10323. font-size:14px;
  10324. color:#AAAAAA;
  10325. }
  10326. #u15099 .text {
  10327. position:absolute;
  10328. align-self:flex-start;
  10329. padding:2px 2px 2px 2px;
  10330. box-sizing:border-box;
  10331. width:100%;
  10332. }
  10333. #u15099_div.disabled {
  10334. border-width:0px;
  10335. position:absolute;
  10336. left:0px;
  10337. top:0px;
  10338. width:134px;
  10339. height:23px;
  10340. background:inherit;
  10341. background-color:rgba(240, 240, 240, 1);
  10342. border:none;
  10343. border-radius:0px;
  10344. -moz-box-shadow:none;
  10345. -webkit-box-shadow:none;
  10346. box-shadow:none;
  10347. font-size:14px;
  10348. color:#AAAAAA;
  10349. }
  10350. #u15099.disabled {
  10351. }
  10352. .u15099_input_option {
  10353. font-size:14px;
  10354. }
  10355. #u15100 {
  10356. border-width:0px;
  10357. position:absolute;
  10358. left:0px;
  10359. top:0px;
  10360. width:0px;
  10361. height:0px;
  10362. }
  10363. #u15101_div {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:0px;
  10367. top:0px;
  10368. width:1000px;
  10369. height:1196px;
  10370. background:inherit;
  10371. background-color:rgba(255, 255, 255, 1);
  10372. box-sizing:border-box;
  10373. border-width:1px;
  10374. border-style:solid;
  10375. border-color:rgba(215, 215, 215, 1);
  10376. border-radius:0px;
  10377. -moz-box-shadow:none;
  10378. -webkit-box-shadow:none;
  10379. box-shadow:none;
  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. text-align:center;
  10386. line-height:30px;
  10387. }
  10388. #u15101 {
  10389. border-width:0px;
  10390. position:absolute;
  10391. left:1620px;
  10392. top:47px;
  10393. width:1000px;
  10394. height:1196px;
  10395. display:flex;
  10396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10397. font-weight:400;
  10398. font-style:normal;
  10399. font-size:14px;
  10400. color:#AAAAAA;
  10401. text-align:center;
  10402. line-height:30px;
  10403. }
  10404. #u15101 .text {
  10405. position:absolute;
  10406. align-self:center;
  10407. padding:5px 10px 5px 10px;
  10408. box-sizing:border-box;
  10409. width:100%;
  10410. }
  10411. #u15101_text {
  10412. border-width:0px;
  10413. word-wrap:break-word;
  10414. text-transform:none;
  10415. visibility:hidden;
  10416. }
  10417. #u15102_div {
  10418. border-width:0px;
  10419. position:absolute;
  10420. left:0px;
  10421. top:0px;
  10422. width:137px;
  10423. height:35px;
  10424. background:inherit;
  10425. background-color:rgba(255, 255, 255, 0);
  10426. border:none;
  10427. border-top:0px;
  10428. border-right:0px;
  10429. border-bottom:0px;
  10430. border-radius:0px;
  10431. border-top-left-radius:0px;
  10432. border-bottom-left-radius:0px;
  10433. -moz-box-shadow:none;
  10434. -webkit-box-shadow:none;
  10435. box-shadow:none;
  10436. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10437. font-weight:500;
  10438. font-style:normal;
  10439. font-size:18px;
  10440. }
  10441. #u15102 {
  10442. border-width:0px;
  10443. position:absolute;
  10444. left:1640px;
  10445. top:65px;
  10446. width:137px;
  10447. height:35px;
  10448. display:flex;
  10449. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10450. font-weight:500;
  10451. font-style:normal;
  10452. font-size:18px;
  10453. }
  10454. #u15102 .text {
  10455. position:absolute;
  10456. align-self:center;
  10457. padding:5px 10px 5px 0px;
  10458. box-sizing:border-box;
  10459. width:100%;
  10460. }
  10461. #u15102_text {
  10462. border-width:0px;
  10463. white-space:nowrap;
  10464. text-transform:none;
  10465. }
  10466. #u15103 {
  10467. border-width:0px;
  10468. position:absolute;
  10469. left:0px;
  10470. top:0px;
  10471. width:0px;
  10472. height:0px;
  10473. }
  10474. #u15104_div {
  10475. border-width:0px;
  10476. position:absolute;
  10477. left:0px;
  10478. top:0px;
  10479. width:40px;
  10480. height:40px;
  10481. background:inherit;
  10482. background-color:rgba(255, 255, 255, 0);
  10483. border:none;
  10484. border-top:0px;
  10485. border-right:0px;
  10486. border-bottom:0px;
  10487. border-radius:0px;
  10488. border-top-left-radius:0px;
  10489. border-bottom-left-radius:0px;
  10490. -moz-box-shadow:none;
  10491. -webkit-box-shadow:none;
  10492. box-shadow:none;
  10493. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10494. font-weight:500;
  10495. font-style:normal;
  10496. font-size:18px;
  10497. text-align:center;
  10498. }
  10499. #u15104 {
  10500. border-width:0px;
  10501. position:absolute;
  10502. left:2580px;
  10503. top:47px;
  10504. width:40px;
  10505. height:40px;
  10506. display:flex;
  10507. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10508. font-weight:500;
  10509. font-style:normal;
  10510. font-size:18px;
  10511. text-align:center;
  10512. }
  10513. #u15104 .text {
  10514. position:absolute;
  10515. align-self:center;
  10516. padding:5px 10px 5px 0px;
  10517. box-sizing:border-box;
  10518. width:100%;
  10519. }
  10520. #u15104_text {
  10521. border-width:0px;
  10522. word-wrap:break-word;
  10523. text-transform:none;
  10524. }
  10525. #u15105_img {
  10526. border-width:0px;
  10527. position:absolute;
  10528. left:0px;
  10529. top:0px;
  10530. width:13px;
  10531. height:13px;
  10532. }
  10533. #u15105 {
  10534. border-width:0px;
  10535. position:absolute;
  10536. left:2568px;
  10537. top:63px;
  10538. width:13px;
  10539. height:13px;
  10540. display:flex;
  10541. }
  10542. #u15105 .text {
  10543. position:absolute;
  10544. align-self:center;
  10545. padding:2px 2px 2px 2px;
  10546. box-sizing:border-box;
  10547. width:100%;
  10548. }
  10549. #u15105_text {
  10550. border-width:0px;
  10551. word-wrap:break-word;
  10552. text-transform:none;
  10553. visibility:hidden;
  10554. }
  10555. #u15106 {
  10556. border-width:0px;
  10557. position:absolute;
  10558. left:0px;
  10559. top:0px;
  10560. width:0px;
  10561. height:0px;
  10562. }
  10563. #u15107_div {
  10564. border-width:0px;
  10565. position:absolute;
  10566. left:0px;
  10567. top:0px;
  10568. width:1000px;
  10569. height:50px;
  10570. background:inherit;
  10571. background-color:rgba(255, 255, 255, 1);
  10572. box-sizing:border-box;
  10573. border-width:1px;
  10574. border-style:solid;
  10575. border-color:rgba(215, 215, 215, 1);
  10576. border-radius:0px;
  10577. -moz-box-shadow:none;
  10578. -webkit-box-shadow:none;
  10579. box-shadow:none;
  10580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10581. font-weight:400;
  10582. font-style:normal;
  10583. font-size:14px;
  10584. color:#AAAAAA;
  10585. text-align:center;
  10586. line-height:30px;
  10587. }
  10588. #u15107 {
  10589. border-width:0px;
  10590. position:absolute;
  10591. left:1620px;
  10592. top:1193px;
  10593. width:1000px;
  10594. height:50px;
  10595. display:flex;
  10596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10597. font-weight:400;
  10598. font-style:normal;
  10599. font-size:14px;
  10600. color:#AAAAAA;
  10601. text-align:center;
  10602. line-height:30px;
  10603. }
  10604. #u15107 .text {
  10605. position:absolute;
  10606. align-self:center;
  10607. padding:5px 10px 5px 10px;
  10608. box-sizing:border-box;
  10609. width:100%;
  10610. }
  10611. #u15107_text {
  10612. border-width:0px;
  10613. word-wrap:break-word;
  10614. text-transform:none;
  10615. visibility:hidden;
  10616. }
  10617. #u15108_div {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:0px;
  10621. top:0px;
  10622. width:80px;
  10623. height:30px;
  10624. background:inherit;
  10625. background-color:rgba(255, 255, 255, 1);
  10626. box-sizing:border-box;
  10627. border-width:1px;
  10628. border-style:solid;
  10629. border-color:rgba(121, 121, 121, 1);
  10630. border-radius:4px;
  10631. -moz-box-shadow:none;
  10632. -webkit-box-shadow:none;
  10633. box-shadow:none;
  10634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10635. font-weight:400;
  10636. font-style:normal;
  10637. font-size:14px;
  10638. }
  10639. #u15108 {
  10640. border-width:0px;
  10641. position:absolute;
  10642. left:2520px;
  10643. top:1203px;
  10644. width:80px;
  10645. height:30px;
  10646. display:flex;
  10647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10648. font-weight:400;
  10649. font-style:normal;
  10650. font-size:14px;
  10651. }
  10652. #u15108 .text {
  10653. position:absolute;
  10654. align-self:center;
  10655. padding:2px 2px 2px 2px;
  10656. box-sizing:border-box;
  10657. width:100%;
  10658. }
  10659. #u15108_text {
  10660. border-width:0px;
  10661. word-wrap:break-word;
  10662. text-transform:none;
  10663. }
  10664. #u15109 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:1640px;
  10668. top:170px;
  10669. width:960px;
  10670. height:213px;
  10671. }
  10672. #u15110_img {
  10673. border-width:0px;
  10674. position:absolute;
  10675. left:0px;
  10676. top:0px;
  10677. width:59px;
  10678. height:30px;
  10679. }
  10680. #u15110 {
  10681. border-width:0px;
  10682. position:absolute;
  10683. left:0px;
  10684. top:0px;
  10685. width:59px;
  10686. height:30px;
  10687. display:flex;
  10688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10689. font-weight:400;
  10690. font-style:normal;
  10691. color:#FFFFFF;
  10692. }
  10693. #u15110 .text {
  10694. position:absolute;
  10695. align-self:center;
  10696. padding:2px 2px 2px 2px;
  10697. box-sizing:border-box;
  10698. width:100%;
  10699. }
  10700. #u15110_text {
  10701. border-width:0px;
  10702. word-wrap:break-word;
  10703. text-transform:none;
  10704. }
  10705. #u15111_img {
  10706. border-width:0px;
  10707. position:absolute;
  10708. left:0px;
  10709. top:0px;
  10710. width:113px;
  10711. height:30px;
  10712. }
  10713. #u15111 {
  10714. border-width:0px;
  10715. position:absolute;
  10716. left:59px;
  10717. top:0px;
  10718. width:113px;
  10719. height:30px;
  10720. display:flex;
  10721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10722. font-weight:400;
  10723. font-style:normal;
  10724. color:#FFFFFF;
  10725. }
  10726. #u15111 .text {
  10727. position:absolute;
  10728. align-self:center;
  10729. padding:2px 2px 2px 2px;
  10730. box-sizing:border-box;
  10731. width:100%;
  10732. }
  10733. #u15111_text {
  10734. border-width:0px;
  10735. word-wrap:break-word;
  10736. text-transform:none;
  10737. }
  10738. #u15112_img {
  10739. border-width:0px;
  10740. position:absolute;
  10741. left:0px;
  10742. top:0px;
  10743. width:113px;
  10744. height:30px;
  10745. }
  10746. #u15112 {
  10747. border-width:0px;
  10748. position:absolute;
  10749. left:172px;
  10750. top:0px;
  10751. width:113px;
  10752. height:30px;
  10753. display:flex;
  10754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10755. font-weight:400;
  10756. font-style:normal;
  10757. color:#FFFFFF;
  10758. }
  10759. #u15112 .text {
  10760. position:absolute;
  10761. align-self:center;
  10762. padding:2px 2px 2px 2px;
  10763. box-sizing:border-box;
  10764. width:100%;
  10765. }
  10766. #u15112_text {
  10767. border-width:0px;
  10768. word-wrap:break-word;
  10769. text-transform:none;
  10770. }
  10771. #u15113_img {
  10772. border-width:0px;
  10773. position:absolute;
  10774. left:0px;
  10775. top:0px;
  10776. width:113px;
  10777. height:30px;
  10778. }
  10779. #u15113 {
  10780. border-width:0px;
  10781. position:absolute;
  10782. left:285px;
  10783. top:0px;
  10784. width:113px;
  10785. height:30px;
  10786. display:flex;
  10787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10788. font-weight:400;
  10789. font-style:normal;
  10790. color:#FFFFFF;
  10791. }
  10792. #u15113 .text {
  10793. position:absolute;
  10794. align-self:center;
  10795. padding:2px 2px 2px 2px;
  10796. box-sizing:border-box;
  10797. width:100%;
  10798. }
  10799. #u15113_text {
  10800. border-width:0px;
  10801. word-wrap:break-word;
  10802. text-transform:none;
  10803. }
  10804. #u15114_img {
  10805. border-width:0px;
  10806. position:absolute;
  10807. left:0px;
  10808. top:0px;
  10809. width:113px;
  10810. height:30px;
  10811. }
  10812. #u15114 {
  10813. border-width:0px;
  10814. position:absolute;
  10815. left:398px;
  10816. top:0px;
  10817. width:113px;
  10818. height:30px;
  10819. display:flex;
  10820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10821. font-weight:400;
  10822. font-style:normal;
  10823. color:#FFFFFF;
  10824. }
  10825. #u15114 .text {
  10826. position:absolute;
  10827. align-self:center;
  10828. padding:2px 2px 2px 2px;
  10829. box-sizing:border-box;
  10830. width:100%;
  10831. }
  10832. #u15114_text {
  10833. border-width:0px;
  10834. word-wrap:break-word;
  10835. text-transform:none;
  10836. }
  10837. #u15115_img {
  10838. border-width:0px;
  10839. position:absolute;
  10840. left:0px;
  10841. top:0px;
  10842. width:113px;
  10843. height:30px;
  10844. }
  10845. #u15115 {
  10846. border-width:0px;
  10847. position:absolute;
  10848. left:511px;
  10849. top:0px;
  10850. width:113px;
  10851. height:30px;
  10852. display:flex;
  10853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10854. font-weight:400;
  10855. font-style:normal;
  10856. color:#FFFFFF;
  10857. }
  10858. #u15115 .text {
  10859. position:absolute;
  10860. align-self:center;
  10861. padding:2px 2px 2px 2px;
  10862. box-sizing:border-box;
  10863. width:100%;
  10864. }
  10865. #u15115_text {
  10866. border-width:0px;
  10867. word-wrap:break-word;
  10868. text-transform:none;
  10869. }
  10870. #u15116_img {
  10871. border-width:0px;
  10872. position:absolute;
  10873. left:0px;
  10874. top:0px;
  10875. width:113px;
  10876. height:30px;
  10877. }
  10878. #u15116 {
  10879. border-width:0px;
  10880. position:absolute;
  10881. left:624px;
  10882. top:0px;
  10883. width:113px;
  10884. height:30px;
  10885. display:flex;
  10886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10887. font-weight:400;
  10888. font-style:normal;
  10889. color:#FFFFFF;
  10890. }
  10891. #u15116 .text {
  10892. position:absolute;
  10893. align-self:center;
  10894. padding:2px 2px 2px 2px;
  10895. box-sizing:border-box;
  10896. width:100%;
  10897. }
  10898. #u15116_text {
  10899. border-width:0px;
  10900. word-wrap:break-word;
  10901. text-transform:none;
  10902. }
  10903. #u15117_img {
  10904. border-width:0px;
  10905. position:absolute;
  10906. left:0px;
  10907. top:0px;
  10908. width:113px;
  10909. height:30px;
  10910. }
  10911. #u15117 {
  10912. border-width:0px;
  10913. position:absolute;
  10914. left:737px;
  10915. top:0px;
  10916. width:113px;
  10917. height:30px;
  10918. display:flex;
  10919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10920. font-weight:400;
  10921. font-style:normal;
  10922. color:#FFFFFF;
  10923. }
  10924. #u15117 .text {
  10925. position:absolute;
  10926. align-self:center;
  10927. padding:2px 2px 2px 2px;
  10928. box-sizing:border-box;
  10929. width:100%;
  10930. }
  10931. #u15117_text {
  10932. border-width:0px;
  10933. word-wrap:break-word;
  10934. text-transform:none;
  10935. }
  10936. #u15118_img {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:0px;
  10940. top:0px;
  10941. width:110px;
  10942. height:30px;
  10943. }
  10944. #u15118 {
  10945. border-width:0px;
  10946. position:absolute;
  10947. left:850px;
  10948. top:0px;
  10949. width:110px;
  10950. height:30px;
  10951. display:flex;
  10952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10953. font-weight:400;
  10954. font-style:normal;
  10955. color:#FFFFFF;
  10956. }
  10957. #u15118 .text {
  10958. position:absolute;
  10959. align-self:center;
  10960. padding:2px 2px 2px 2px;
  10961. box-sizing:border-box;
  10962. width:100%;
  10963. }
  10964. #u15118_text {
  10965. border-width:0px;
  10966. word-wrap:break-word;
  10967. text-transform:none;
  10968. }
  10969. #u15119_img {
  10970. border-width:0px;
  10971. position:absolute;
  10972. left:0px;
  10973. top:0px;
  10974. width:59px;
  10975. height:40px;
  10976. }
  10977. #u15119 {
  10978. border-width:0px;
  10979. position:absolute;
  10980. left:0px;
  10981. top:30px;
  10982. width:59px;
  10983. height:40px;
  10984. display:flex;
  10985. }
  10986. #u15119 .text {
  10987. position:absolute;
  10988. align-self:center;
  10989. padding:2px 2px 2px 2px;
  10990. box-sizing:border-box;
  10991. width:100%;
  10992. }
  10993. #u15119_text {
  10994. border-width:0px;
  10995. word-wrap:break-word;
  10996. text-transform:none;
  10997. }
  10998. #u15120_img {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:0px;
  11002. top:0px;
  11003. width:113px;
  11004. height:40px;
  11005. }
  11006. #u15120 {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:59px;
  11010. top:30px;
  11011. width:113px;
  11012. height:40px;
  11013. display:flex;
  11014. }
  11015. #u15120 .text {
  11016. position:absolute;
  11017. align-self:center;
  11018. padding:2px 2px 2px 2px;
  11019. box-sizing:border-box;
  11020. width:100%;
  11021. }
  11022. #u15120_text {
  11023. border-width:0px;
  11024. word-wrap:break-word;
  11025. text-transform:none;
  11026. }
  11027. #u15121_img {
  11028. border-width:0px;
  11029. position:absolute;
  11030. left:0px;
  11031. top:0px;
  11032. width:113px;
  11033. height:40px;
  11034. }
  11035. #u15121 {
  11036. border-width:0px;
  11037. position:absolute;
  11038. left:172px;
  11039. top:30px;
  11040. width:113px;
  11041. height:40px;
  11042. display:flex;
  11043. }
  11044. #u15121 .text {
  11045. position:absolute;
  11046. align-self:center;
  11047. padding:2px 2px 2px 2px;
  11048. box-sizing:border-box;
  11049. width:100%;
  11050. }
  11051. #u15121_text {
  11052. border-width:0px;
  11053. word-wrap:break-word;
  11054. text-transform:none;
  11055. }
  11056. #u15122_img {
  11057. border-width:0px;
  11058. position:absolute;
  11059. left:0px;
  11060. top:0px;
  11061. width:113px;
  11062. height:40px;
  11063. }
  11064. #u15122 {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:285px;
  11068. top:30px;
  11069. width:113px;
  11070. height:40px;
  11071. display:flex;
  11072. }
  11073. #u15122 .text {
  11074. position:absolute;
  11075. align-self:center;
  11076. padding:2px 2px 2px 2px;
  11077. box-sizing:border-box;
  11078. width:100%;
  11079. }
  11080. #u15122_text {
  11081. border-width:0px;
  11082. word-wrap:break-word;
  11083. text-transform:none;
  11084. }
  11085. #u15123_img {
  11086. border-width:0px;
  11087. position:absolute;
  11088. left:0px;
  11089. top:0px;
  11090. width:113px;
  11091. height:40px;
  11092. }
  11093. #u15123 {
  11094. border-width:0px;
  11095. position:absolute;
  11096. left:398px;
  11097. top:30px;
  11098. width:113px;
  11099. height:40px;
  11100. display:flex;
  11101. }
  11102. #u15123 .text {
  11103. position:absolute;
  11104. align-self:center;
  11105. padding:2px 2px 2px 2px;
  11106. box-sizing:border-box;
  11107. width:100%;
  11108. }
  11109. #u15123_text {
  11110. border-width:0px;
  11111. word-wrap:break-word;
  11112. text-transform:none;
  11113. visibility:hidden;
  11114. }
  11115. #u15124_img {
  11116. border-width:0px;
  11117. position:absolute;
  11118. left:0px;
  11119. top:0px;
  11120. width:113px;
  11121. height:40px;
  11122. }
  11123. #u15124 {
  11124. border-width:0px;
  11125. position:absolute;
  11126. left:511px;
  11127. top:30px;
  11128. width:113px;
  11129. height:40px;
  11130. display:flex;
  11131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11132. font-weight:400;
  11133. font-style:normal;
  11134. }
  11135. #u15124 .text {
  11136. position:absolute;
  11137. align-self:center;
  11138. padding:2px 2px 2px 2px;
  11139. box-sizing:border-box;
  11140. width:100%;
  11141. }
  11142. #u15124_text {
  11143. border-width:0px;
  11144. word-wrap:break-word;
  11145. text-transform:none;
  11146. }
  11147. #u15125_img {
  11148. border-width:0px;
  11149. position:absolute;
  11150. left:0px;
  11151. top:0px;
  11152. width:113px;
  11153. height:40px;
  11154. }
  11155. #u15125 {
  11156. border-width:0px;
  11157. position:absolute;
  11158. left:624px;
  11159. top:30px;
  11160. width:113px;
  11161. height:40px;
  11162. display:flex;
  11163. }
  11164. #u15125 .text {
  11165. position:absolute;
  11166. align-self:center;
  11167. padding:2px 2px 2px 2px;
  11168. box-sizing:border-box;
  11169. width:100%;
  11170. }
  11171. #u15125_text {
  11172. border-width:0px;
  11173. word-wrap:break-word;
  11174. text-transform:none;
  11175. }
  11176. #u15126_img {
  11177. border-width:0px;
  11178. position:absolute;
  11179. left:0px;
  11180. top:0px;
  11181. width:113px;
  11182. height:40px;
  11183. }
  11184. #u15126 {
  11185. border-width:0px;
  11186. position:absolute;
  11187. left:737px;
  11188. top:30px;
  11189. width:113px;
  11190. height:40px;
  11191. display:flex;
  11192. }
  11193. #u15126 .text {
  11194. position:absolute;
  11195. align-self:center;
  11196. padding:2px 2px 2px 2px;
  11197. box-sizing:border-box;
  11198. width:100%;
  11199. }
  11200. #u15126_text {
  11201. border-width:0px;
  11202. word-wrap:break-word;
  11203. text-transform:none;
  11204. }
  11205. #u15127_img {
  11206. border-width:0px;
  11207. position:absolute;
  11208. left:0px;
  11209. top:0px;
  11210. width:110px;
  11211. height:40px;
  11212. }
  11213. #u15127 {
  11214. border-width:0px;
  11215. position:absolute;
  11216. left:850px;
  11217. top:30px;
  11218. width:110px;
  11219. height:40px;
  11220. display:flex;
  11221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11222. font-weight:400;
  11223. font-style:normal;
  11224. color:#298FFF;
  11225. }
  11226. #u15127 .text {
  11227. position:absolute;
  11228. align-self:center;
  11229. padding:2px 2px 2px 2px;
  11230. box-sizing:border-box;
  11231. width:100%;
  11232. }
  11233. #u15127_text {
  11234. border-width:0px;
  11235. word-wrap:break-word;
  11236. text-transform:none;
  11237. }
  11238. #u15128_img {
  11239. border-width:0px;
  11240. position:absolute;
  11241. left:0px;
  11242. top:0px;
  11243. width:59px;
  11244. height:30px;
  11245. }
  11246. #u15128 {
  11247. border-width:0px;
  11248. position:absolute;
  11249. left:0px;
  11250. top:70px;
  11251. width:59px;
  11252. height:30px;
  11253. display:flex;
  11254. }
  11255. #u15128 .text {
  11256. position:absolute;
  11257. align-self:center;
  11258. padding:2px 2px 2px 2px;
  11259. box-sizing:border-box;
  11260. width:100%;
  11261. }
  11262. #u15128_text {
  11263. border-width:0px;
  11264. word-wrap:break-word;
  11265. text-transform:none;
  11266. }
  11267. #u15129_img {
  11268. border-width:0px;
  11269. position:absolute;
  11270. left:0px;
  11271. top:0px;
  11272. width:113px;
  11273. height:30px;
  11274. }
  11275. #u15129 {
  11276. border-width:0px;
  11277. position:absolute;
  11278. left:59px;
  11279. top:70px;
  11280. width:113px;
  11281. height:30px;
  11282. display:flex;
  11283. }
  11284. #u15129 .text {
  11285. position:absolute;
  11286. align-self:center;
  11287. padding:2px 2px 2px 2px;
  11288. box-sizing:border-box;
  11289. width:100%;
  11290. }
  11291. #u15129_text {
  11292. border-width:0px;
  11293. word-wrap:break-word;
  11294. text-transform:none;
  11295. visibility:hidden;
  11296. }
  11297. #u15130_img {
  11298. border-width:0px;
  11299. position:absolute;
  11300. left:0px;
  11301. top:0px;
  11302. width:113px;
  11303. height:30px;
  11304. }
  11305. #u15130 {
  11306. border-width:0px;
  11307. position:absolute;
  11308. left:172px;
  11309. top:70px;
  11310. width:113px;
  11311. height:30px;
  11312. display:flex;
  11313. }
  11314. #u15130 .text {
  11315. position:absolute;
  11316. align-self:center;
  11317. padding:2px 2px 2px 2px;
  11318. box-sizing:border-box;
  11319. width:100%;
  11320. }
  11321. #u15130_text {
  11322. border-width:0px;
  11323. word-wrap:break-word;
  11324. text-transform:none;
  11325. visibility:hidden;
  11326. }
  11327. #u15131_img {
  11328. border-width:0px;
  11329. position:absolute;
  11330. left:0px;
  11331. top:0px;
  11332. width:113px;
  11333. height:30px;
  11334. }
  11335. #u15131 {
  11336. border-width:0px;
  11337. position:absolute;
  11338. left:285px;
  11339. top:70px;
  11340. width:113px;
  11341. height:30px;
  11342. display:flex;
  11343. }
  11344. #u15131 .text {
  11345. position:absolute;
  11346. align-self:center;
  11347. padding:2px 2px 2px 2px;
  11348. box-sizing:border-box;
  11349. width:100%;
  11350. }
  11351. #u15131_text {
  11352. border-width:0px;
  11353. word-wrap:break-word;
  11354. text-transform:none;
  11355. visibility:hidden;
  11356. }
  11357. #u15132_img {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:0px;
  11361. top:0px;
  11362. width:113px;
  11363. height:30px;
  11364. }
  11365. #u15132 {
  11366. border-width:0px;
  11367. position:absolute;
  11368. left:398px;
  11369. top:70px;
  11370. width:113px;
  11371. height:30px;
  11372. display:flex;
  11373. }
  11374. #u15132 .text {
  11375. position:absolute;
  11376. align-self:center;
  11377. padding:2px 2px 2px 2px;
  11378. box-sizing:border-box;
  11379. width:100%;
  11380. }
  11381. #u15132_text {
  11382. border-width:0px;
  11383. word-wrap:break-word;
  11384. text-transform:none;
  11385. visibility:hidden;
  11386. }
  11387. #u15133_img {
  11388. border-width:0px;
  11389. position:absolute;
  11390. left:0px;
  11391. top:0px;
  11392. width:113px;
  11393. height:30px;
  11394. }
  11395. #u15133 {
  11396. border-width:0px;
  11397. position:absolute;
  11398. left:511px;
  11399. top:70px;
  11400. width:113px;
  11401. height:30px;
  11402. display:flex;
  11403. }
  11404. #u15133 .text {
  11405. position:absolute;
  11406. align-self:center;
  11407. padding:2px 2px 2px 2px;
  11408. box-sizing:border-box;
  11409. width:100%;
  11410. }
  11411. #u15133_text {
  11412. border-width:0px;
  11413. word-wrap:break-word;
  11414. text-transform:none;
  11415. visibility:hidden;
  11416. }
  11417. #u15134_img {
  11418. border-width:0px;
  11419. position:absolute;
  11420. left:0px;
  11421. top:0px;
  11422. width:113px;
  11423. height:30px;
  11424. }
  11425. #u15134 {
  11426. border-width:0px;
  11427. position:absolute;
  11428. left:624px;
  11429. top:70px;
  11430. width:113px;
  11431. height:30px;
  11432. display:flex;
  11433. }
  11434. #u15134 .text {
  11435. position:absolute;
  11436. align-self:center;
  11437. padding:2px 2px 2px 2px;
  11438. box-sizing:border-box;
  11439. width:100%;
  11440. }
  11441. #u15134_text {
  11442. border-width:0px;
  11443. word-wrap:break-word;
  11444. text-transform:none;
  11445. visibility:hidden;
  11446. }
  11447. #u15135_img {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:0px;
  11451. top:0px;
  11452. width:113px;
  11453. height:30px;
  11454. }
  11455. #u15135 {
  11456. border-width:0px;
  11457. position:absolute;
  11458. left:737px;
  11459. top:70px;
  11460. width:113px;
  11461. height:30px;
  11462. display:flex;
  11463. }
  11464. #u15135 .text {
  11465. position:absolute;
  11466. align-self:center;
  11467. padding:2px 2px 2px 2px;
  11468. box-sizing:border-box;
  11469. width:100%;
  11470. }
  11471. #u15135_text {
  11472. border-width:0px;
  11473. word-wrap:break-word;
  11474. text-transform:none;
  11475. visibility:hidden;
  11476. }
  11477. #u15136_img {
  11478. border-width:0px;
  11479. position:absolute;
  11480. left:0px;
  11481. top:0px;
  11482. width:110px;
  11483. height:30px;
  11484. }
  11485. #u15136 {
  11486. border-width:0px;
  11487. position:absolute;
  11488. left:850px;
  11489. top:70px;
  11490. width:110px;
  11491. height:30px;
  11492. display:flex;
  11493. }
  11494. #u15136 .text {
  11495. position:absolute;
  11496. align-self:center;
  11497. padding:2px 2px 2px 2px;
  11498. box-sizing:border-box;
  11499. width:100%;
  11500. }
  11501. #u15136_text {
  11502. border-width:0px;
  11503. word-wrap:break-word;
  11504. text-transform:none;
  11505. visibility:hidden;
  11506. }
  11507. #u15137_img {
  11508. border-width:0px;
  11509. position:absolute;
  11510. left:0px;
  11511. top:0px;
  11512. width:59px;
  11513. height:30px;
  11514. }
  11515. #u15137 {
  11516. border-width:0px;
  11517. position:absolute;
  11518. left:0px;
  11519. top:100px;
  11520. width:59px;
  11521. height:30px;
  11522. display:flex;
  11523. }
  11524. #u15137 .text {
  11525. position:absolute;
  11526. align-self:center;
  11527. padding:2px 2px 2px 2px;
  11528. box-sizing:border-box;
  11529. width:100%;
  11530. }
  11531. #u15137_text {
  11532. border-width:0px;
  11533. word-wrap:break-word;
  11534. text-transform:none;
  11535. }
  11536. #u15138_img {
  11537. border-width:0px;
  11538. position:absolute;
  11539. left:0px;
  11540. top:0px;
  11541. width:113px;
  11542. height:30px;
  11543. }
  11544. #u15138 {
  11545. border-width:0px;
  11546. position:absolute;
  11547. left:59px;
  11548. top:100px;
  11549. width:113px;
  11550. height:30px;
  11551. display:flex;
  11552. }
  11553. #u15138 .text {
  11554. position:absolute;
  11555. align-self:center;
  11556. padding:2px 2px 2px 2px;
  11557. box-sizing:border-box;
  11558. width:100%;
  11559. }
  11560. #u15138_text {
  11561. border-width:0px;
  11562. word-wrap:break-word;
  11563. text-transform:none;
  11564. visibility:hidden;
  11565. }
  11566. #u15139_img {
  11567. border-width:0px;
  11568. position:absolute;
  11569. left:0px;
  11570. top:0px;
  11571. width:113px;
  11572. height:30px;
  11573. }
  11574. #u15139 {
  11575. border-width:0px;
  11576. position:absolute;
  11577. left:172px;
  11578. top:100px;
  11579. width:113px;
  11580. height:30px;
  11581. display:flex;
  11582. }
  11583. #u15139 .text {
  11584. position:absolute;
  11585. align-self:center;
  11586. padding:2px 2px 2px 2px;
  11587. box-sizing:border-box;
  11588. width:100%;
  11589. }
  11590. #u15139_text {
  11591. border-width:0px;
  11592. word-wrap:break-word;
  11593. text-transform:none;
  11594. visibility:hidden;
  11595. }
  11596. #u15140_img {
  11597. border-width:0px;
  11598. position:absolute;
  11599. left:0px;
  11600. top:0px;
  11601. width:113px;
  11602. height:30px;
  11603. }
  11604. #u15140 {
  11605. border-width:0px;
  11606. position:absolute;
  11607. left:285px;
  11608. top:100px;
  11609. width:113px;
  11610. height:30px;
  11611. display:flex;
  11612. }
  11613. #u15140 .text {
  11614. position:absolute;
  11615. align-self:center;
  11616. padding:2px 2px 2px 2px;
  11617. box-sizing:border-box;
  11618. width:100%;
  11619. }
  11620. #u15140_text {
  11621. border-width:0px;
  11622. word-wrap:break-word;
  11623. text-transform:none;
  11624. visibility:hidden;
  11625. }
  11626. #u15141_img {
  11627. border-width:0px;
  11628. position:absolute;
  11629. left:0px;
  11630. top:0px;
  11631. width:113px;
  11632. height:30px;
  11633. }
  11634. #u15141 {
  11635. border-width:0px;
  11636. position:absolute;
  11637. left:398px;
  11638. top:100px;
  11639. width:113px;
  11640. height:30px;
  11641. display:flex;
  11642. }
  11643. #u15141 .text {
  11644. position:absolute;
  11645. align-self:center;
  11646. padding:2px 2px 2px 2px;
  11647. box-sizing:border-box;
  11648. width:100%;
  11649. }
  11650. #u15141_text {
  11651. border-width:0px;
  11652. word-wrap:break-word;
  11653. text-transform:none;
  11654. visibility:hidden;
  11655. }
  11656. #u15142_img {
  11657. border-width:0px;
  11658. position:absolute;
  11659. left:0px;
  11660. top:0px;
  11661. width:113px;
  11662. height:30px;
  11663. }
  11664. #u15142 {
  11665. border-width:0px;
  11666. position:absolute;
  11667. left:511px;
  11668. top:100px;
  11669. width:113px;
  11670. height:30px;
  11671. display:flex;
  11672. }
  11673. #u15142 .text {
  11674. position:absolute;
  11675. align-self:center;
  11676. padding:2px 2px 2px 2px;
  11677. box-sizing:border-box;
  11678. width:100%;
  11679. }
  11680. #u15142_text {
  11681. border-width:0px;
  11682. word-wrap:break-word;
  11683. text-transform:none;
  11684. visibility:hidden;
  11685. }
  11686. #u15143_img {
  11687. border-width:0px;
  11688. position:absolute;
  11689. left:0px;
  11690. top:0px;
  11691. width:113px;
  11692. height:30px;
  11693. }
  11694. #u15143 {
  11695. border-width:0px;
  11696. position:absolute;
  11697. left:624px;
  11698. top:100px;
  11699. width:113px;
  11700. height:30px;
  11701. display:flex;
  11702. }
  11703. #u15143 .text {
  11704. position:absolute;
  11705. align-self:center;
  11706. padding:2px 2px 2px 2px;
  11707. box-sizing:border-box;
  11708. width:100%;
  11709. }
  11710. #u15143_text {
  11711. border-width:0px;
  11712. word-wrap:break-word;
  11713. text-transform:none;
  11714. visibility:hidden;
  11715. }
  11716. #u15144_img {
  11717. border-width:0px;
  11718. position:absolute;
  11719. left:0px;
  11720. top:0px;
  11721. width:113px;
  11722. height:30px;
  11723. }
  11724. #u15144 {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:737px;
  11728. top:100px;
  11729. width:113px;
  11730. height:30px;
  11731. display:flex;
  11732. }
  11733. #u15144 .text {
  11734. position:absolute;
  11735. align-self:center;
  11736. padding:2px 2px 2px 2px;
  11737. box-sizing:border-box;
  11738. width:100%;
  11739. }
  11740. #u15144_text {
  11741. border-width:0px;
  11742. word-wrap:break-word;
  11743. text-transform:none;
  11744. visibility:hidden;
  11745. }
  11746. #u15145_img {
  11747. border-width:0px;
  11748. position:absolute;
  11749. left:0px;
  11750. top:0px;
  11751. width:110px;
  11752. height:30px;
  11753. }
  11754. #u15145 {
  11755. border-width:0px;
  11756. position:absolute;
  11757. left:850px;
  11758. top:100px;
  11759. width:110px;
  11760. height:30px;
  11761. display:flex;
  11762. }
  11763. #u15145 .text {
  11764. position:absolute;
  11765. align-self:center;
  11766. padding:2px 2px 2px 2px;
  11767. box-sizing:border-box;
  11768. width:100%;
  11769. }
  11770. #u15145_text {
  11771. border-width:0px;
  11772. word-wrap:break-word;
  11773. text-transform:none;
  11774. visibility:hidden;
  11775. }
  11776. #u15146_img {
  11777. border-width:0px;
  11778. position:absolute;
  11779. left:0px;
  11780. top:0px;
  11781. width:59px;
  11782. height:30px;
  11783. }
  11784. #u15146 {
  11785. border-width:0px;
  11786. position:absolute;
  11787. left:0px;
  11788. top:130px;
  11789. width:59px;
  11790. height:30px;
  11791. display:flex;
  11792. }
  11793. #u15146 .text {
  11794. position:absolute;
  11795. align-self:center;
  11796. padding:2px 2px 2px 2px;
  11797. box-sizing:border-box;
  11798. width:100%;
  11799. }
  11800. #u15146_text {
  11801. border-width:0px;
  11802. word-wrap:break-word;
  11803. text-transform:none;
  11804. }
  11805. #u15147_img {
  11806. border-width:0px;
  11807. position:absolute;
  11808. left:0px;
  11809. top:0px;
  11810. width:113px;
  11811. height:30px;
  11812. }
  11813. #u15147 {
  11814. border-width:0px;
  11815. position:absolute;
  11816. left:59px;
  11817. top:130px;
  11818. width:113px;
  11819. height:30px;
  11820. display:flex;
  11821. }
  11822. #u15147 .text {
  11823. position:absolute;
  11824. align-self:center;
  11825. padding:2px 2px 2px 2px;
  11826. box-sizing:border-box;
  11827. width:100%;
  11828. }
  11829. #u15147_text {
  11830. border-width:0px;
  11831. word-wrap:break-word;
  11832. text-transform:none;
  11833. visibility:hidden;
  11834. }
  11835. #u15148_img {
  11836. border-width:0px;
  11837. position:absolute;
  11838. left:0px;
  11839. top:0px;
  11840. width:113px;
  11841. height:30px;
  11842. }
  11843. #u15148 {
  11844. border-width:0px;
  11845. position:absolute;
  11846. left:172px;
  11847. top:130px;
  11848. width:113px;
  11849. height:30px;
  11850. display:flex;
  11851. }
  11852. #u15148 .text {
  11853. position:absolute;
  11854. align-self:center;
  11855. padding:2px 2px 2px 2px;
  11856. box-sizing:border-box;
  11857. width:100%;
  11858. }
  11859. #u15148_text {
  11860. border-width:0px;
  11861. word-wrap:break-word;
  11862. text-transform:none;
  11863. visibility:hidden;
  11864. }
  11865. #u15149_img {
  11866. border-width:0px;
  11867. position:absolute;
  11868. left:0px;
  11869. top:0px;
  11870. width:113px;
  11871. height:30px;
  11872. }
  11873. #u15149 {
  11874. border-width:0px;
  11875. position:absolute;
  11876. left:285px;
  11877. top:130px;
  11878. width:113px;
  11879. height:30px;
  11880. display:flex;
  11881. }
  11882. #u15149 .text {
  11883. position:absolute;
  11884. align-self:center;
  11885. padding:2px 2px 2px 2px;
  11886. box-sizing:border-box;
  11887. width:100%;
  11888. }
  11889. #u15149_text {
  11890. border-width:0px;
  11891. word-wrap:break-word;
  11892. text-transform:none;
  11893. visibility:hidden;
  11894. }
  11895. #u15150_img {
  11896. border-width:0px;
  11897. position:absolute;
  11898. left:0px;
  11899. top:0px;
  11900. width:113px;
  11901. height:30px;
  11902. }
  11903. #u15150 {
  11904. border-width:0px;
  11905. position:absolute;
  11906. left:398px;
  11907. top:130px;
  11908. width:113px;
  11909. height:30px;
  11910. display:flex;
  11911. }
  11912. #u15150 .text {
  11913. position:absolute;
  11914. align-self:center;
  11915. padding:2px 2px 2px 2px;
  11916. box-sizing:border-box;
  11917. width:100%;
  11918. }
  11919. #u15150_text {
  11920. border-width:0px;
  11921. word-wrap:break-word;
  11922. text-transform:none;
  11923. visibility:hidden;
  11924. }
  11925. #u15151_img {
  11926. border-width:0px;
  11927. position:absolute;
  11928. left:0px;
  11929. top:0px;
  11930. width:113px;
  11931. height:30px;
  11932. }
  11933. #u15151 {
  11934. border-width:0px;
  11935. position:absolute;
  11936. left:511px;
  11937. top:130px;
  11938. width:113px;
  11939. height:30px;
  11940. display:flex;
  11941. }
  11942. #u15151 .text {
  11943. position:absolute;
  11944. align-self:center;
  11945. padding:2px 2px 2px 2px;
  11946. box-sizing:border-box;
  11947. width:100%;
  11948. }
  11949. #u15151_text {
  11950. border-width:0px;
  11951. word-wrap:break-word;
  11952. text-transform:none;
  11953. visibility:hidden;
  11954. }
  11955. #u15152_img {
  11956. border-width:0px;
  11957. position:absolute;
  11958. left:0px;
  11959. top:0px;
  11960. width:113px;
  11961. height:30px;
  11962. }
  11963. #u15152 {
  11964. border-width:0px;
  11965. position:absolute;
  11966. left:624px;
  11967. top:130px;
  11968. width:113px;
  11969. height:30px;
  11970. display:flex;
  11971. }
  11972. #u15152 .text {
  11973. position:absolute;
  11974. align-self:center;
  11975. padding:2px 2px 2px 2px;
  11976. box-sizing:border-box;
  11977. width:100%;
  11978. }
  11979. #u15152_text {
  11980. border-width:0px;
  11981. word-wrap:break-word;
  11982. text-transform:none;
  11983. visibility:hidden;
  11984. }
  11985. #u15153_img {
  11986. border-width:0px;
  11987. position:absolute;
  11988. left:0px;
  11989. top:0px;
  11990. width:113px;
  11991. height:30px;
  11992. }
  11993. #u15153 {
  11994. border-width:0px;
  11995. position:absolute;
  11996. left:737px;
  11997. top:130px;
  11998. width:113px;
  11999. height:30px;
  12000. display:flex;
  12001. }
  12002. #u15153 .text {
  12003. position:absolute;
  12004. align-self:center;
  12005. padding:2px 2px 2px 2px;
  12006. box-sizing:border-box;
  12007. width:100%;
  12008. }
  12009. #u15153_text {
  12010. border-width:0px;
  12011. word-wrap:break-word;
  12012. text-transform:none;
  12013. visibility:hidden;
  12014. }
  12015. #u15154_img {
  12016. border-width:0px;
  12017. position:absolute;
  12018. left:0px;
  12019. top:0px;
  12020. width:110px;
  12021. height:30px;
  12022. }
  12023. #u15154 {
  12024. border-width:0px;
  12025. position:absolute;
  12026. left:850px;
  12027. top:130px;
  12028. width:110px;
  12029. height:30px;
  12030. display:flex;
  12031. }
  12032. #u15154 .text {
  12033. position:absolute;
  12034. align-self:center;
  12035. padding:2px 2px 2px 2px;
  12036. box-sizing:border-box;
  12037. width:100%;
  12038. }
  12039. #u15154_text {
  12040. border-width:0px;
  12041. word-wrap:break-word;
  12042. text-transform:none;
  12043. visibility:hidden;
  12044. }
  12045. #u15155_img {
  12046. border-width:0px;
  12047. position:absolute;
  12048. left:0px;
  12049. top:0px;
  12050. width:59px;
  12051. height:30px;
  12052. }
  12053. #u15155 {
  12054. border-width:0px;
  12055. position:absolute;
  12056. left:0px;
  12057. top:160px;
  12058. width:59px;
  12059. height:30px;
  12060. display:flex;
  12061. }
  12062. #u15155 .text {
  12063. position:absolute;
  12064. align-self:center;
  12065. padding:2px 2px 2px 2px;
  12066. box-sizing:border-box;
  12067. width:100%;
  12068. }
  12069. #u15155_text {
  12070. border-width:0px;
  12071. word-wrap:break-word;
  12072. text-transform:none;
  12073. }
  12074. #u15156_img {
  12075. border-width:0px;
  12076. position:absolute;
  12077. left:0px;
  12078. top:0px;
  12079. width:113px;
  12080. height:30px;
  12081. }
  12082. #u15156 {
  12083. border-width:0px;
  12084. position:absolute;
  12085. left:59px;
  12086. top:160px;
  12087. width:113px;
  12088. height:30px;
  12089. display:flex;
  12090. }
  12091. #u15156 .text {
  12092. position:absolute;
  12093. align-self:center;
  12094. padding:2px 2px 2px 2px;
  12095. box-sizing:border-box;
  12096. width:100%;
  12097. }
  12098. #u15156_text {
  12099. border-width:0px;
  12100. word-wrap:break-word;
  12101. text-transform:none;
  12102. visibility:hidden;
  12103. }
  12104. #u15157_img {
  12105. border-width:0px;
  12106. position:absolute;
  12107. left:0px;
  12108. top:0px;
  12109. width:113px;
  12110. height:30px;
  12111. }
  12112. #u15157 {
  12113. border-width:0px;
  12114. position:absolute;
  12115. left:172px;
  12116. top:160px;
  12117. width:113px;
  12118. height:30px;
  12119. display:flex;
  12120. }
  12121. #u15157 .text {
  12122. position:absolute;
  12123. align-self:center;
  12124. padding:2px 2px 2px 2px;
  12125. box-sizing:border-box;
  12126. width:100%;
  12127. }
  12128. #u15157_text {
  12129. border-width:0px;
  12130. word-wrap:break-word;
  12131. text-transform:none;
  12132. visibility:hidden;
  12133. }
  12134. #u15158_img {
  12135. border-width:0px;
  12136. position:absolute;
  12137. left:0px;
  12138. top:0px;
  12139. width:113px;
  12140. height:30px;
  12141. }
  12142. #u15158 {
  12143. border-width:0px;
  12144. position:absolute;
  12145. left:285px;
  12146. top:160px;
  12147. width:113px;
  12148. height:30px;
  12149. display:flex;
  12150. }
  12151. #u15158 .text {
  12152. position:absolute;
  12153. align-self:center;
  12154. padding:2px 2px 2px 2px;
  12155. box-sizing:border-box;
  12156. width:100%;
  12157. }
  12158. #u15158_text {
  12159. border-width:0px;
  12160. word-wrap:break-word;
  12161. text-transform:none;
  12162. visibility:hidden;
  12163. }
  12164. #u15159_img {
  12165. border-width:0px;
  12166. position:absolute;
  12167. left:0px;
  12168. top:0px;
  12169. width:113px;
  12170. height:30px;
  12171. }
  12172. #u15159 {
  12173. border-width:0px;
  12174. position:absolute;
  12175. left:398px;
  12176. top:160px;
  12177. width:113px;
  12178. height:30px;
  12179. display:flex;
  12180. }
  12181. #u15159 .text {
  12182. position:absolute;
  12183. align-self:center;
  12184. padding:2px 2px 2px 2px;
  12185. box-sizing:border-box;
  12186. width:100%;
  12187. }
  12188. #u15159_text {
  12189. border-width:0px;
  12190. word-wrap:break-word;
  12191. text-transform:none;
  12192. visibility:hidden;
  12193. }
  12194. #u15160_img {
  12195. border-width:0px;
  12196. position:absolute;
  12197. left:0px;
  12198. top:0px;
  12199. width:113px;
  12200. height:30px;
  12201. }
  12202. #u15160 {
  12203. border-width:0px;
  12204. position:absolute;
  12205. left:511px;
  12206. top:160px;
  12207. width:113px;
  12208. height:30px;
  12209. display:flex;
  12210. }
  12211. #u15160 .text {
  12212. position:absolute;
  12213. align-self:center;
  12214. padding:2px 2px 2px 2px;
  12215. box-sizing:border-box;
  12216. width:100%;
  12217. }
  12218. #u15160_text {
  12219. border-width:0px;
  12220. word-wrap:break-word;
  12221. text-transform:none;
  12222. visibility:hidden;
  12223. }
  12224. #u15161_img {
  12225. border-width:0px;
  12226. position:absolute;
  12227. left:0px;
  12228. top:0px;
  12229. width:113px;
  12230. height:30px;
  12231. }
  12232. #u15161 {
  12233. border-width:0px;
  12234. position:absolute;
  12235. left:624px;
  12236. top:160px;
  12237. width:113px;
  12238. height:30px;
  12239. display:flex;
  12240. }
  12241. #u15161 .text {
  12242. position:absolute;
  12243. align-self:center;
  12244. padding:2px 2px 2px 2px;
  12245. box-sizing:border-box;
  12246. width:100%;
  12247. }
  12248. #u15161_text {
  12249. border-width:0px;
  12250. word-wrap:break-word;
  12251. text-transform:none;
  12252. visibility:hidden;
  12253. }
  12254. #u15162_img {
  12255. border-width:0px;
  12256. position:absolute;
  12257. left:0px;
  12258. top:0px;
  12259. width:113px;
  12260. height:30px;
  12261. }
  12262. #u15162 {
  12263. border-width:0px;
  12264. position:absolute;
  12265. left:737px;
  12266. top:160px;
  12267. width:113px;
  12268. height:30px;
  12269. display:flex;
  12270. }
  12271. #u15162 .text {
  12272. position:absolute;
  12273. align-self:center;
  12274. padding:2px 2px 2px 2px;
  12275. box-sizing:border-box;
  12276. width:100%;
  12277. }
  12278. #u15162_text {
  12279. border-width:0px;
  12280. word-wrap:break-word;
  12281. text-transform:none;
  12282. visibility:hidden;
  12283. }
  12284. #u15163_img {
  12285. border-width:0px;
  12286. position:absolute;
  12287. left:0px;
  12288. top:0px;
  12289. width:110px;
  12290. height:30px;
  12291. }
  12292. #u15163 {
  12293. border-width:0px;
  12294. position:absolute;
  12295. left:850px;
  12296. top:160px;
  12297. width:110px;
  12298. height:30px;
  12299. display:flex;
  12300. }
  12301. #u15163 .text {
  12302. position:absolute;
  12303. align-self:center;
  12304. padding:2px 2px 2px 2px;
  12305. box-sizing:border-box;
  12306. width:100%;
  12307. }
  12308. #u15163_text {
  12309. border-width:0px;
  12310. word-wrap:break-word;
  12311. text-transform:none;
  12312. visibility:hidden;
  12313. }
  12314. #u15164_img {
  12315. border-width:0px;
  12316. position:absolute;
  12317. left:0px;
  12318. top:0px;
  12319. width:59px;
  12320. height:23px;
  12321. }
  12322. #u15164 {
  12323. border-width:0px;
  12324. position:absolute;
  12325. left:0px;
  12326. top:190px;
  12327. width:59px;
  12328. height:23px;
  12329. display:flex;
  12330. }
  12331. #u15164 .text {
  12332. position:absolute;
  12333. align-self:center;
  12334. padding:2px 2px 2px 2px;
  12335. box-sizing:border-box;
  12336. width:100%;
  12337. }
  12338. #u15164_text {
  12339. border-width:0px;
  12340. word-wrap:break-word;
  12341. text-transform:none;
  12342. }
  12343. #u15165_img {
  12344. border-width:0px;
  12345. position:absolute;
  12346. left:0px;
  12347. top:0px;
  12348. width:113px;
  12349. height:23px;
  12350. }
  12351. #u15165 {
  12352. border-width:0px;
  12353. position:absolute;
  12354. left:59px;
  12355. top:190px;
  12356. width:113px;
  12357. height:23px;
  12358. display:flex;
  12359. }
  12360. #u15165 .text {
  12361. position:absolute;
  12362. align-self:center;
  12363. padding:2px 2px 2px 2px;
  12364. box-sizing:border-box;
  12365. width:100%;
  12366. }
  12367. #u15165_text {
  12368. border-width:0px;
  12369. word-wrap:break-word;
  12370. text-transform:none;
  12371. visibility:hidden;
  12372. }
  12373. #u15166_img {
  12374. border-width:0px;
  12375. position:absolute;
  12376. left:0px;
  12377. top:0px;
  12378. width:113px;
  12379. height:23px;
  12380. }
  12381. #u15166 {
  12382. border-width:0px;
  12383. position:absolute;
  12384. left:172px;
  12385. top:190px;
  12386. width:113px;
  12387. height:23px;
  12388. display:flex;
  12389. }
  12390. #u15166 .text {
  12391. position:absolute;
  12392. align-self:center;
  12393. padding:2px 2px 2px 2px;
  12394. box-sizing:border-box;
  12395. width:100%;
  12396. }
  12397. #u15166_text {
  12398. border-width:0px;
  12399. word-wrap:break-word;
  12400. text-transform:none;
  12401. visibility:hidden;
  12402. }
  12403. #u15167_img {
  12404. border-width:0px;
  12405. position:absolute;
  12406. left:0px;
  12407. top:0px;
  12408. width:113px;
  12409. height:23px;
  12410. }
  12411. #u15167 {
  12412. border-width:0px;
  12413. position:absolute;
  12414. left:285px;
  12415. top:190px;
  12416. width:113px;
  12417. height:23px;
  12418. display:flex;
  12419. }
  12420. #u15167 .text {
  12421. position:absolute;
  12422. align-self:center;
  12423. padding:2px 2px 2px 2px;
  12424. box-sizing:border-box;
  12425. width:100%;
  12426. }
  12427. #u15167_text {
  12428. border-width:0px;
  12429. word-wrap:break-word;
  12430. text-transform:none;
  12431. visibility:hidden;
  12432. }
  12433. #u15168_img {
  12434. border-width:0px;
  12435. position:absolute;
  12436. left:0px;
  12437. top:0px;
  12438. width:113px;
  12439. height:23px;
  12440. }
  12441. #u15168 {
  12442. border-width:0px;
  12443. position:absolute;
  12444. left:398px;
  12445. top:190px;
  12446. width:113px;
  12447. height:23px;
  12448. display:flex;
  12449. }
  12450. #u15168 .text {
  12451. position:absolute;
  12452. align-self:center;
  12453. padding:2px 2px 2px 2px;
  12454. box-sizing:border-box;
  12455. width:100%;
  12456. }
  12457. #u15168_text {
  12458. border-width:0px;
  12459. word-wrap:break-word;
  12460. text-transform:none;
  12461. visibility:hidden;
  12462. }
  12463. #u15169_img {
  12464. border-width:0px;
  12465. position:absolute;
  12466. left:0px;
  12467. top:0px;
  12468. width:113px;
  12469. height:23px;
  12470. }
  12471. #u15169 {
  12472. border-width:0px;
  12473. position:absolute;
  12474. left:511px;
  12475. top:190px;
  12476. width:113px;
  12477. height:23px;
  12478. display:flex;
  12479. }
  12480. #u15169 .text {
  12481. position:absolute;
  12482. align-self:center;
  12483. padding:2px 2px 2px 2px;
  12484. box-sizing:border-box;
  12485. width:100%;
  12486. }
  12487. #u15169_text {
  12488. border-width:0px;
  12489. word-wrap:break-word;
  12490. text-transform:none;
  12491. visibility:hidden;
  12492. }
  12493. #u15170_img {
  12494. border-width:0px;
  12495. position:absolute;
  12496. left:0px;
  12497. top:0px;
  12498. width:113px;
  12499. height:23px;
  12500. }
  12501. #u15170 {
  12502. border-width:0px;
  12503. position:absolute;
  12504. left:624px;
  12505. top:190px;
  12506. width:113px;
  12507. height:23px;
  12508. display:flex;
  12509. }
  12510. #u15170 .text {
  12511. position:absolute;
  12512. align-self:center;
  12513. padding:2px 2px 2px 2px;
  12514. box-sizing:border-box;
  12515. width:100%;
  12516. }
  12517. #u15170_text {
  12518. border-width:0px;
  12519. word-wrap:break-word;
  12520. text-transform:none;
  12521. visibility:hidden;
  12522. }
  12523. #u15171_img {
  12524. border-width:0px;
  12525. position:absolute;
  12526. left:0px;
  12527. top:0px;
  12528. width:113px;
  12529. height:23px;
  12530. }
  12531. #u15171 {
  12532. border-width:0px;
  12533. position:absolute;
  12534. left:737px;
  12535. top:190px;
  12536. width:113px;
  12537. height:23px;
  12538. display:flex;
  12539. }
  12540. #u15171 .text {
  12541. position:absolute;
  12542. align-self:center;
  12543. padding:2px 2px 2px 2px;
  12544. box-sizing:border-box;
  12545. width:100%;
  12546. }
  12547. #u15171_text {
  12548. border-width:0px;
  12549. word-wrap:break-word;
  12550. text-transform:none;
  12551. visibility:hidden;
  12552. }
  12553. #u15172_img {
  12554. border-width:0px;
  12555. position:absolute;
  12556. left:0px;
  12557. top:0px;
  12558. width:110px;
  12559. height:23px;
  12560. }
  12561. #u15172 {
  12562. border-width:0px;
  12563. position:absolute;
  12564. left:850px;
  12565. top:190px;
  12566. width:110px;
  12567. height:23px;
  12568. display:flex;
  12569. }
  12570. #u15172 .text {
  12571. position:absolute;
  12572. align-self:center;
  12573. padding:2px 2px 2px 2px;
  12574. box-sizing:border-box;
  12575. width:100%;
  12576. }
  12577. #u15172_text {
  12578. border-width:0px;
  12579. word-wrap:break-word;
  12580. text-transform:none;
  12581. visibility:hidden;
  12582. }
  12583. #u15173 {
  12584. border-width:0px;
  12585. position:absolute;
  12586. left:0px;
  12587. top:0px;
  12588. width:0px;
  12589. height:0px;
  12590. }
  12591. #u15174_div {
  12592. border-width:0px;
  12593. position:absolute;
  12594. left:0px;
  12595. top:0px;
  12596. width:120px;
  12597. height:30px;
  12598. background:inherit;
  12599. background-color:rgba(255, 255, 255, 1);
  12600. box-sizing:border-box;
  12601. border-width:1px;
  12602. border-style:solid;
  12603. border-color:rgba(201, 201, 201, 1);
  12604. border-radius:4px;
  12605. -moz-box-shadow:none;
  12606. -webkit-box-shadow:none;
  12607. box-shadow:none;
  12608. font-family:'Microsoft YaHei', sans-serif;
  12609. font-weight:400;
  12610. font-style:normal;
  12611. font-size:14px;
  12612. color:#CCCCCC;
  12613. text-align:left;
  12614. }
  12615. #u15174 {
  12616. border-width:0px;
  12617. position:absolute;
  12618. left:2160px;
  12619. top:120px;
  12620. width:120px;
  12621. height:30px;
  12622. display:flex;
  12623. font-family:'Microsoft YaHei', sans-serif;
  12624. font-weight:400;
  12625. font-style:normal;
  12626. font-size:14px;
  12627. color:#CCCCCC;
  12628. text-align:left;
  12629. }
  12630. #u15174 .text {
  12631. position:absolute;
  12632. align-self:center;
  12633. padding:2px 8px 2px 8px;
  12634. box-sizing:border-box;
  12635. width:100%;
  12636. }
  12637. #u15174_text {
  12638. border-width:0px;
  12639. word-wrap:break-word;
  12640. text-transform:none;
  12641. visibility:hidden;
  12642. }
  12643. #u15175_input {
  12644. position:absolute;
  12645. left:0px;
  12646. top:0px;
  12647. width:109px;
  12648. height:25px;
  12649. padding:2px 2px 2px 2px;
  12650. font-family:'Microsoft YaHei', sans-serif;
  12651. font-weight:400;
  12652. font-style:normal;
  12653. font-size:10px;
  12654. letter-spacing:normal;
  12655. color:#000000;
  12656. vertical-align:none;
  12657. text-align:left;
  12658. text-transform:none;
  12659. background-color:transparent;
  12660. border-color:transparent;
  12661. }
  12662. #u15175_input.disabled {
  12663. position:absolute;
  12664. left:0px;
  12665. top:0px;
  12666. width:109px;
  12667. height:25px;
  12668. padding:2px 2px 2px 2px;
  12669. font-family:'Microsoft YaHei', sans-serif;
  12670. font-weight:400;
  12671. font-style:normal;
  12672. font-size:10px;
  12673. letter-spacing:normal;
  12674. color:#000000;
  12675. vertical-align:none;
  12676. text-align:left;
  12677. text-transform:none;
  12678. background-color:transparent;
  12679. border-color:transparent;
  12680. }
  12681. #u15175_div {
  12682. border-width:0px;
  12683. position:absolute;
  12684. left:0px;
  12685. top:0px;
  12686. width:109px;
  12687. height:25px;
  12688. background:inherit;
  12689. background-color:rgba(255, 255, 255, 1);
  12690. border:none;
  12691. border-radius:0px;
  12692. -moz-box-shadow:none;
  12693. -webkit-box-shadow:none;
  12694. box-shadow:none;
  12695. font-family:'Microsoft YaHei', sans-serif;
  12696. font-weight:400;
  12697. font-style:normal;
  12698. font-size:10px;
  12699. }
  12700. #u15175 {
  12701. border-width:0px;
  12702. position:absolute;
  12703. left:2167px;
  12704. top:121px;
  12705. width:109px;
  12706. height:25px;
  12707. display:flex;
  12708. font-family:'Microsoft YaHei', sans-serif;
  12709. font-weight:400;
  12710. font-style:normal;
  12711. font-size:10px;
  12712. }
  12713. #u15175 .text {
  12714. position:absolute;
  12715. align-self:center;
  12716. padding:2px 2px 2px 2px;
  12717. box-sizing:border-box;
  12718. width:100%;
  12719. }
  12720. #u15175_div.disabled {
  12721. border-width:0px;
  12722. position:absolute;
  12723. left:0px;
  12724. top:0px;
  12725. width:109px;
  12726. height:25px;
  12727. background:inherit;
  12728. background-color:rgba(240, 240, 240, 1);
  12729. border:none;
  12730. border-radius:0px;
  12731. -moz-box-shadow:none;
  12732. -webkit-box-shadow:none;
  12733. box-shadow:none;
  12734. font-family:'Microsoft YaHei', sans-serif;
  12735. font-weight:400;
  12736. font-style:normal;
  12737. font-size:10px;
  12738. }
  12739. #u15175.disabled {
  12740. }
  12741. #u15176 {
  12742. border-width:0px;
  12743. position:absolute;
  12744. left:0px;
  12745. top:0px;
  12746. width:0px;
  12747. height:0px;
  12748. }
  12749. #u15177_div {
  12750. border-width:0px;
  12751. position:absolute;
  12752. left:0px;
  12753. top:0px;
  12754. width:120px;
  12755. height:30px;
  12756. background:inherit;
  12757. background-color:rgba(255, 255, 255, 1);
  12758. box-sizing:border-box;
  12759. border-width:1px;
  12760. border-style:solid;
  12761. border-color:rgba(201, 201, 201, 1);
  12762. border-radius:4px;
  12763. -moz-box-shadow:none;
  12764. -webkit-box-shadow:none;
  12765. box-shadow:none;
  12766. font-family:'Microsoft YaHei', sans-serif;
  12767. font-weight:400;
  12768. font-style:normal;
  12769. font-size:14px;
  12770. color:#CCCCCC;
  12771. text-align:left;
  12772. }
  12773. #u15177 {
  12774. border-width:0px;
  12775. position:absolute;
  12776. left:2290px;
  12777. top:120px;
  12778. width:120px;
  12779. height:30px;
  12780. display:flex;
  12781. font-family:'Microsoft YaHei', sans-serif;
  12782. font-weight:400;
  12783. font-style:normal;
  12784. font-size:14px;
  12785. color:#CCCCCC;
  12786. text-align:left;
  12787. }
  12788. #u15177 .text {
  12789. position:absolute;
  12790. align-self:center;
  12791. padding:2px 8px 2px 8px;
  12792. box-sizing:border-box;
  12793. width:100%;
  12794. }
  12795. #u15177_text {
  12796. border-width:0px;
  12797. word-wrap:break-word;
  12798. text-transform:none;
  12799. visibility:hidden;
  12800. }
  12801. #u15178_input {
  12802. position:absolute;
  12803. left:0px;
  12804. top:0px;
  12805. width:109px;
  12806. height:25px;
  12807. padding:2px 2px 2px 2px;
  12808. font-family:'Microsoft YaHei', sans-serif;
  12809. font-weight:400;
  12810. font-style:normal;
  12811. font-size:10px;
  12812. letter-spacing:normal;
  12813. color:#000000;
  12814. vertical-align:none;
  12815. text-align:left;
  12816. text-transform:none;
  12817. background-color:transparent;
  12818. border-color:transparent;
  12819. }
  12820. #u15178_input.disabled {
  12821. position:absolute;
  12822. left:0px;
  12823. top:0px;
  12824. width:109px;
  12825. height:25px;
  12826. padding:2px 2px 2px 2px;
  12827. font-family:'Microsoft YaHei', sans-serif;
  12828. font-weight:400;
  12829. font-style:normal;
  12830. font-size:10px;
  12831. letter-spacing:normal;
  12832. color:#000000;
  12833. vertical-align:none;
  12834. text-align:left;
  12835. text-transform:none;
  12836. background-color:transparent;
  12837. border-color:transparent;
  12838. }
  12839. #u15178_div {
  12840. border-width:0px;
  12841. position:absolute;
  12842. left:0px;
  12843. top:0px;
  12844. width:109px;
  12845. height:25px;
  12846. background:inherit;
  12847. background-color:rgba(255, 255, 255, 1);
  12848. border:none;
  12849. border-radius:0px;
  12850. -moz-box-shadow:none;
  12851. -webkit-box-shadow:none;
  12852. box-shadow:none;
  12853. font-family:'Microsoft YaHei', sans-serif;
  12854. font-weight:400;
  12855. font-style:normal;
  12856. font-size:10px;
  12857. }
  12858. #u15178 {
  12859. border-width:0px;
  12860. position:absolute;
  12861. left:2297px;
  12862. top:121px;
  12863. width:109px;
  12864. height:25px;
  12865. display:flex;
  12866. font-family:'Microsoft YaHei', sans-serif;
  12867. font-weight:400;
  12868. font-style:normal;
  12869. font-size:10px;
  12870. }
  12871. #u15178 .text {
  12872. position:absolute;
  12873. align-self:center;
  12874. padding:2px 2px 2px 2px;
  12875. box-sizing:border-box;
  12876. width:100%;
  12877. }
  12878. #u15178_div.disabled {
  12879. border-width:0px;
  12880. position:absolute;
  12881. left:0px;
  12882. top:0px;
  12883. width:109px;
  12884. height:25px;
  12885. background:inherit;
  12886. background-color:rgba(240, 240, 240, 1);
  12887. border:none;
  12888. border-radius:0px;
  12889. -moz-box-shadow:none;
  12890. -webkit-box-shadow:none;
  12891. box-shadow:none;
  12892. font-family:'Microsoft YaHei', sans-serif;
  12893. font-weight:400;
  12894. font-style:normal;
  12895. font-size:10px;
  12896. }
  12897. #u15178.disabled {
  12898. }
  12899. #u15179 {
  12900. border-width:0px;
  12901. position:absolute;
  12902. left:0px;
  12903. top:0px;
  12904. width:0px;
  12905. height:0px;
  12906. }
  12907. #u15180_div {
  12908. border-width:0px;
  12909. position:absolute;
  12910. left:0px;
  12911. top:0px;
  12912. width:60px;
  12913. height:30px;
  12914. background:inherit;
  12915. background-color:rgba(24, 144, 255, 1);
  12916. border:none;
  12917. border-radius:4px;
  12918. -moz-box-shadow:none;
  12919. -webkit-box-shadow:none;
  12920. box-shadow:none;
  12921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12922. font-weight:400;
  12923. font-style:normal;
  12924. font-size:14px;
  12925. color:#FFFFFF;
  12926. }
  12927. #u15180 {
  12928. border-width:0px;
  12929. position:absolute;
  12930. left:2420px;
  12931. top:120px;
  12932. width:60px;
  12933. height:30px;
  12934. display:flex;
  12935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12936. font-weight:400;
  12937. font-style:normal;
  12938. font-size:14px;
  12939. color:#FFFFFF;
  12940. }
  12941. #u15180 .text {
  12942. position:absolute;
  12943. align-self:center;
  12944. padding:2px 2px 2px 2px;
  12945. box-sizing:border-box;
  12946. width:100%;
  12947. }
  12948. #u15180_text {
  12949. border-width:0px;
  12950. word-wrap:break-word;
  12951. text-transform:none;
  12952. }
  12953. #u15181_div {
  12954. border-width:0px;
  12955. position:absolute;
  12956. left:0px;
  12957. top:0px;
  12958. width:60px;
  12959. height:30px;
  12960. background:inherit;
  12961. background-color:rgba(255, 255, 255, 1);
  12962. box-sizing:border-box;
  12963. border-width:1px;
  12964. border-style:solid;
  12965. border-color:rgba(170, 170, 170, 1);
  12966. border-radius:4px;
  12967. -moz-box-shadow:none;
  12968. -webkit-box-shadow:none;
  12969. box-shadow:none;
  12970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12971. font-weight:400;
  12972. font-style:normal;
  12973. font-size:14px;
  12974. }
  12975. #u15181 {
  12976. border-width:0px;
  12977. position:absolute;
  12978. left:2490px;
  12979. top:120px;
  12980. width:60px;
  12981. height:30px;
  12982. display:flex;
  12983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12984. font-weight:400;
  12985. font-style:normal;
  12986. font-size:14px;
  12987. }
  12988. #u15181 .text {
  12989. position:absolute;
  12990. align-self:center;
  12991. padding:2px 2px 2px 2px;
  12992. box-sizing:border-box;
  12993. width:100%;
  12994. }
  12995. #u15181_text {
  12996. border-width:0px;
  12997. word-wrap:break-word;
  12998. text-transform:none;
  12999. }
  13000. #u15182 {
  13001. border-width:0px;
  13002. position:absolute;
  13003. left:0px;
  13004. top:0px;
  13005. width:0px;
  13006. height:0px;
  13007. }
  13008. #u15183_div {
  13009. border-width:0px;
  13010. position:absolute;
  13011. left:0px;
  13012. top:0px;
  13013. width:120px;
  13014. height:30px;
  13015. background:inherit;
  13016. background-color:rgba(255, 255, 255, 1);
  13017. box-sizing:border-box;
  13018. border-width:1px;
  13019. border-style:solid;
  13020. border-color:rgba(215, 215, 215, 1);
  13021. border-radius:4px;
  13022. -moz-box-shadow:none;
  13023. -webkit-box-shadow:none;
  13024. box-shadow:none;
  13025. font-size:14px;
  13026. }
  13027. #u15183 {
  13028. border-width:0px;
  13029. position:absolute;
  13030. left:1900px;
  13031. top:120px;
  13032. width:120px;
  13033. height:30px;
  13034. display:flex;
  13035. font-size:14px;
  13036. }
  13037. #u15183 .text {
  13038. position:absolute;
  13039. align-self:center;
  13040. padding:2px 2px 2px 2px;
  13041. box-sizing:border-box;
  13042. width:100%;
  13043. }
  13044. #u15183_text {
  13045. border-width:0px;
  13046. word-wrap:break-word;
  13047. text-transform:none;
  13048. visibility:hidden;
  13049. }
  13050. #u15184_input {
  13051. position:absolute;
  13052. left:0px;
  13053. top:0px;
  13054. width:115px;
  13055. height:23px;
  13056. padding:2px 2px 2px 2px;
  13057. font-family:'ArialMT', 'Arial', sans-serif;
  13058. font-weight:400;
  13059. font-style:normal;
  13060. font-size:14px;
  13061. letter-spacing:normal;
  13062. color:#AAAAAA;
  13063. vertical-align:none;
  13064. text-align:left;
  13065. text-transform:none;
  13066. background-color:transparent;
  13067. border-color:transparent;
  13068. }
  13069. #u15184_input.disabled {
  13070. position:absolute;
  13071. left:0px;
  13072. top:0px;
  13073. width:115px;
  13074. height:23px;
  13075. padding:2px 2px 2px 2px;
  13076. font-family:'ArialMT', 'Arial', sans-serif;
  13077. font-weight:400;
  13078. font-style:normal;
  13079. font-size:14px;
  13080. letter-spacing:normal;
  13081. color:#AAAAAA;
  13082. vertical-align:none;
  13083. text-align:left;
  13084. text-transform:none;
  13085. background-color:transparent;
  13086. border-color:transparent;
  13087. }
  13088. #u15184_div {
  13089. border-width:0px;
  13090. position:absolute;
  13091. left:0px;
  13092. top:0px;
  13093. width:115px;
  13094. height:23px;
  13095. background:inherit;
  13096. background-color:rgba(255, 255, 255, 1);
  13097. border:none;
  13098. border-radius:0px;
  13099. -moz-box-shadow:none;
  13100. -webkit-box-shadow:none;
  13101. box-shadow:none;
  13102. font-size:14px;
  13103. color:#AAAAAA;
  13104. }
  13105. #u15184 {
  13106. border-width:0px;
  13107. position:absolute;
  13108. left:1903px;
  13109. top:122px;
  13110. width:115px;
  13111. height:23px;
  13112. display:flex;
  13113. font-size:14px;
  13114. color:#AAAAAA;
  13115. }
  13116. #u15184 .text {
  13117. position:absolute;
  13118. align-self:flex-start;
  13119. padding:2px 2px 2px 2px;
  13120. box-sizing:border-box;
  13121. width:100%;
  13122. }
  13123. #u15184_div.disabled {
  13124. border-width:0px;
  13125. position:absolute;
  13126. left:0px;
  13127. top:0px;
  13128. width:115px;
  13129. height:23px;
  13130. background:inherit;
  13131. background-color:rgba(240, 240, 240, 1);
  13132. border:none;
  13133. border-radius:0px;
  13134. -moz-box-shadow:none;
  13135. -webkit-box-shadow:none;
  13136. box-shadow:none;
  13137. font-size:14px;
  13138. color:#AAAAAA;
  13139. }
  13140. #u15184.disabled {
  13141. }
  13142. .u15184_input_option {
  13143. font-size:14px;
  13144. }
  13145. #u15185 {
  13146. border-width:0px;
  13147. position:absolute;
  13148. left:0px;
  13149. top:0px;
  13150. width:0px;
  13151. height:0px;
  13152. }
  13153. #u15186_div {
  13154. border-width:0px;
  13155. position:absolute;
  13156. left:0px;
  13157. top:0px;
  13158. width:120px;
  13159. height:30px;
  13160. background:inherit;
  13161. background-color:rgba(255, 255, 255, 1);
  13162. box-sizing:border-box;
  13163. border-width:1px;
  13164. border-style:solid;
  13165. border-color:rgba(215, 215, 215, 1);
  13166. border-radius:4px;
  13167. -moz-box-shadow:none;
  13168. -webkit-box-shadow:none;
  13169. box-shadow:none;
  13170. font-size:14px;
  13171. }
  13172. #u15186 {
  13173. border-width:0px;
  13174. position:absolute;
  13175. left:1770px;
  13176. top:120px;
  13177. width:120px;
  13178. height:30px;
  13179. display:flex;
  13180. font-size:14px;
  13181. }
  13182. #u15186 .text {
  13183. position:absolute;
  13184. align-self:center;
  13185. padding:2px 2px 2px 2px;
  13186. box-sizing:border-box;
  13187. width:100%;
  13188. }
  13189. #u15186_text {
  13190. border-width:0px;
  13191. word-wrap:break-word;
  13192. text-transform:none;
  13193. visibility:hidden;
  13194. }
  13195. #u15187_input {
  13196. position:absolute;
  13197. left:0px;
  13198. top:0px;
  13199. width:115px;
  13200. height:23px;
  13201. padding:2px 2px 2px 2px;
  13202. font-family:'ArialMT', 'Arial', sans-serif;
  13203. font-weight:400;
  13204. font-style:normal;
  13205. font-size:14px;
  13206. letter-spacing:normal;
  13207. color:#AAAAAA;
  13208. vertical-align:none;
  13209. text-align:left;
  13210. text-transform:none;
  13211. background-color:transparent;
  13212. border-color:transparent;
  13213. }
  13214. #u15187_input.disabled {
  13215. position:absolute;
  13216. left:0px;
  13217. top:0px;
  13218. width:115px;
  13219. height:23px;
  13220. padding:2px 2px 2px 2px;
  13221. font-family:'ArialMT', 'Arial', sans-serif;
  13222. font-weight:400;
  13223. font-style:normal;
  13224. font-size:14px;
  13225. letter-spacing:normal;
  13226. color:#AAAAAA;
  13227. vertical-align:none;
  13228. text-align:left;
  13229. text-transform:none;
  13230. background-color:transparent;
  13231. border-color:transparent;
  13232. }
  13233. #u15187_div {
  13234. border-width:0px;
  13235. position:absolute;
  13236. left:0px;
  13237. top:0px;
  13238. width:115px;
  13239. height:23px;
  13240. background:inherit;
  13241. background-color:rgba(255, 255, 255, 1);
  13242. border:none;
  13243. border-radius:0px;
  13244. -moz-box-shadow:none;
  13245. -webkit-box-shadow:none;
  13246. box-shadow:none;
  13247. font-size:14px;
  13248. color:#AAAAAA;
  13249. }
  13250. #u15187 {
  13251. border-width:0px;
  13252. position:absolute;
  13253. left:1773px;
  13254. top:122px;
  13255. width:115px;
  13256. height:23px;
  13257. display:flex;
  13258. font-size:14px;
  13259. color:#AAAAAA;
  13260. }
  13261. #u15187 .text {
  13262. position:absolute;
  13263. align-self:flex-start;
  13264. padding:2px 2px 2px 2px;
  13265. box-sizing:border-box;
  13266. width:100%;
  13267. }
  13268. #u15187_div.disabled {
  13269. border-width:0px;
  13270. position:absolute;
  13271. left:0px;
  13272. top:0px;
  13273. width:115px;
  13274. height:23px;
  13275. background:inherit;
  13276. background-color:rgba(240, 240, 240, 1);
  13277. border:none;
  13278. border-radius:0px;
  13279. -moz-box-shadow:none;
  13280. -webkit-box-shadow:none;
  13281. box-shadow:none;
  13282. font-size:14px;
  13283. color:#AAAAAA;
  13284. }
  13285. #u15187.disabled {
  13286. }
  13287. .u15187_input_option {
  13288. font-size:14px;
  13289. }
  13290. #u15188 {
  13291. border-width:0px;
  13292. position:absolute;
  13293. left:0px;
  13294. top:0px;
  13295. width:0px;
  13296. height:0px;
  13297. }
  13298. #u15189_div {
  13299. border-width:0px;
  13300. position:absolute;
  13301. left:0px;
  13302. top:0px;
  13303. width:120px;
  13304. height:30px;
  13305. background:inherit;
  13306. background-color:rgba(255, 255, 255, 1);
  13307. box-sizing:border-box;
  13308. border-width:1px;
  13309. border-style:solid;
  13310. border-color:rgba(215, 215, 215, 1);
  13311. border-radius:4px;
  13312. -moz-box-shadow:none;
  13313. -webkit-box-shadow:none;
  13314. box-shadow:none;
  13315. font-size:14px;
  13316. }
  13317. #u15189 {
  13318. border-width:0px;
  13319. position:absolute;
  13320. left:1640px;
  13321. top:120px;
  13322. width:120px;
  13323. height:30px;
  13324. display:flex;
  13325. font-size:14px;
  13326. }
  13327. #u15189 .text {
  13328. position:absolute;
  13329. align-self:center;
  13330. padding:2px 2px 2px 2px;
  13331. box-sizing:border-box;
  13332. width:100%;
  13333. }
  13334. #u15189_text {
  13335. border-width:0px;
  13336. word-wrap:break-word;
  13337. text-transform:none;
  13338. visibility:hidden;
  13339. }
  13340. #u15190_input {
  13341. position:absolute;
  13342. left:0px;
  13343. top:0px;
  13344. width:115px;
  13345. height:23px;
  13346. padding:2px 2px 2px 2px;
  13347. font-family:'ArialMT', 'Arial', sans-serif;
  13348. font-weight:400;
  13349. font-style:normal;
  13350. font-size:14px;
  13351. letter-spacing:normal;
  13352. color:#AAAAAA;
  13353. vertical-align:none;
  13354. text-align:left;
  13355. text-transform:none;
  13356. background-color:transparent;
  13357. border-color:transparent;
  13358. }
  13359. #u15190_input.disabled {
  13360. position:absolute;
  13361. left:0px;
  13362. top:0px;
  13363. width:115px;
  13364. height:23px;
  13365. padding:2px 2px 2px 2px;
  13366. font-family:'ArialMT', 'Arial', sans-serif;
  13367. font-weight:400;
  13368. font-style:normal;
  13369. font-size:14px;
  13370. letter-spacing:normal;
  13371. color:#AAAAAA;
  13372. vertical-align:none;
  13373. text-align:left;
  13374. text-transform:none;
  13375. background-color:transparent;
  13376. border-color:transparent;
  13377. }
  13378. #u15190_div {
  13379. border-width:0px;
  13380. position:absolute;
  13381. left:0px;
  13382. top:0px;
  13383. width:115px;
  13384. height:23px;
  13385. background:inherit;
  13386. background-color:rgba(255, 255, 255, 1);
  13387. border:none;
  13388. border-radius:0px;
  13389. -moz-box-shadow:none;
  13390. -webkit-box-shadow:none;
  13391. box-shadow:none;
  13392. font-size:14px;
  13393. color:#AAAAAA;
  13394. }
  13395. #u15190 {
  13396. border-width:0px;
  13397. position:absolute;
  13398. left:1643px;
  13399. top:122px;
  13400. width:115px;
  13401. height:23px;
  13402. display:flex;
  13403. font-size:14px;
  13404. color:#AAAAAA;
  13405. }
  13406. #u15190 .text {
  13407. position:absolute;
  13408. align-self:flex-start;
  13409. padding:2px 2px 2px 2px;
  13410. box-sizing:border-box;
  13411. width:100%;
  13412. }
  13413. #u15190_div.disabled {
  13414. border-width:0px;
  13415. position:absolute;
  13416. left:0px;
  13417. top:0px;
  13418. width:115px;
  13419. height:23px;
  13420. background:inherit;
  13421. background-color:rgba(240, 240, 240, 1);
  13422. border:none;
  13423. border-radius:0px;
  13424. -moz-box-shadow:none;
  13425. -webkit-box-shadow:none;
  13426. box-shadow:none;
  13427. font-size:14px;
  13428. color:#AAAAAA;
  13429. }
  13430. #u15190.disabled {
  13431. }
  13432. .u15190_input_option {
  13433. font-size:14px;
  13434. }
  13435. #u15191 {
  13436. border-width:0px;
  13437. position:absolute;
  13438. left:0px;
  13439. top:0px;
  13440. width:0px;
  13441. height:0px;
  13442. }
  13443. #u15192_div {
  13444. border-width:0px;
  13445. position:absolute;
  13446. left:0px;
  13447. top:0px;
  13448. width:120px;
  13449. height:30px;
  13450. background:inherit;
  13451. background-color:rgba(255, 255, 255, 1);
  13452. box-sizing:border-box;
  13453. border-width:1px;
  13454. border-style:solid;
  13455. border-color:rgba(201, 201, 201, 1);
  13456. border-radius:4px;
  13457. -moz-box-shadow:none;
  13458. -webkit-box-shadow:none;
  13459. box-shadow:none;
  13460. font-family:'Microsoft YaHei', sans-serif;
  13461. font-weight:400;
  13462. font-style:normal;
  13463. font-size:14px;
  13464. color:#CCCCCC;
  13465. text-align:left;
  13466. }
  13467. #u15192 {
  13468. border-width:0px;
  13469. position:absolute;
  13470. left:2030px;
  13471. top:120px;
  13472. width:120px;
  13473. height:30px;
  13474. display:flex;
  13475. font-family:'Microsoft YaHei', sans-serif;
  13476. font-weight:400;
  13477. font-style:normal;
  13478. font-size:14px;
  13479. color:#CCCCCC;
  13480. text-align:left;
  13481. }
  13482. #u15192 .text {
  13483. position:absolute;
  13484. align-self:center;
  13485. padding:2px 8px 2px 8px;
  13486. box-sizing:border-box;
  13487. width:100%;
  13488. }
  13489. #u15192_text {
  13490. border-width:0px;
  13491. word-wrap:break-word;
  13492. text-transform:none;
  13493. visibility:hidden;
  13494. }
  13495. #u15193_input {
  13496. position:absolute;
  13497. left:0px;
  13498. top:0px;
  13499. width:109px;
  13500. height:25px;
  13501. padding:2px 2px 2px 2px;
  13502. font-family:'Microsoft YaHei', sans-serif;
  13503. font-weight:400;
  13504. font-style:normal;
  13505. font-size:10px;
  13506. letter-spacing:normal;
  13507. color:#000000;
  13508. vertical-align:none;
  13509. text-align:left;
  13510. text-transform:none;
  13511. background-color:transparent;
  13512. border-color:transparent;
  13513. }
  13514. #u15193_input.disabled {
  13515. position:absolute;
  13516. left:0px;
  13517. top:0px;
  13518. width:109px;
  13519. height:25px;
  13520. padding:2px 2px 2px 2px;
  13521. font-family:'Microsoft YaHei', sans-serif;
  13522. font-weight:400;
  13523. font-style:normal;
  13524. font-size:10px;
  13525. letter-spacing:normal;
  13526. color:#000000;
  13527. vertical-align:none;
  13528. text-align:left;
  13529. text-transform:none;
  13530. background-color:transparent;
  13531. border-color:transparent;
  13532. }
  13533. #u15193_div {
  13534. border-width:0px;
  13535. position:absolute;
  13536. left:0px;
  13537. top:0px;
  13538. width:109px;
  13539. height:25px;
  13540. background:inherit;
  13541. background-color:rgba(255, 255, 255, 1);
  13542. border:none;
  13543. border-radius:0px;
  13544. -moz-box-shadow:none;
  13545. -webkit-box-shadow:none;
  13546. box-shadow:none;
  13547. font-family:'Microsoft YaHei', sans-serif;
  13548. font-weight:400;
  13549. font-style:normal;
  13550. font-size:10px;
  13551. }
  13552. #u15193 {
  13553. border-width:0px;
  13554. position:absolute;
  13555. left:2037px;
  13556. top:121px;
  13557. width:109px;
  13558. height:25px;
  13559. display:flex;
  13560. font-family:'Microsoft YaHei', sans-serif;
  13561. font-weight:400;
  13562. font-style:normal;
  13563. font-size:10px;
  13564. }
  13565. #u15193 .text {
  13566. position:absolute;
  13567. align-self:center;
  13568. padding:2px 2px 2px 2px;
  13569. box-sizing:border-box;
  13570. width:100%;
  13571. }
  13572. #u15193_div.disabled {
  13573. border-width:0px;
  13574. position:absolute;
  13575. left:0px;
  13576. top:0px;
  13577. width:109px;
  13578. height:25px;
  13579. background:inherit;
  13580. background-color:rgba(240, 240, 240, 1);
  13581. border:none;
  13582. border-radius:0px;
  13583. -moz-box-shadow:none;
  13584. -webkit-box-shadow:none;
  13585. box-shadow:none;
  13586. font-family:'Microsoft YaHei', sans-serif;
  13587. font-weight:400;
  13588. font-style:normal;
  13589. font-size:10px;
  13590. }
  13591. #u15193.disabled {
  13592. }
  13593. #u15194 {
  13594. border-width:0px;
  13595. position:absolute;
  13596. left:0px;
  13597. top:0px;
  13598. width:0px;
  13599. height:0px;
  13600. }
  13601. #u15195 {
  13602. border-width:0px;
  13603. position:absolute;
  13604. left:0px;
  13605. top:0px;
  13606. width:0px;
  13607. height:0px;
  13608. }
  13609. #u15196_div {
  13610. border-width:0px;
  13611. position:absolute;
  13612. left:0px;
  13613. top:0px;
  13614. width:380px;
  13615. height:160px;
  13616. background:inherit;
  13617. background-color:rgba(255, 255, 255, 1);
  13618. box-sizing:border-box;
  13619. border-width:1px;
  13620. border-style:solid;
  13621. border-color:rgba(242, 242, 242, 1);
  13622. border-radius:4px;
  13623. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  13624. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  13625. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  13626. font-family:'Microsoft YaHei', sans-serif;
  13627. font-weight:400;
  13628. font-style:normal;
  13629. }
  13630. #u15196 {
  13631. border-width:0px;
  13632. position:absolute;
  13633. left:1955px;
  13634. top:368px;
  13635. width:380px;
  13636. height:160px;
  13637. display:flex;
  13638. font-family:'Microsoft YaHei', sans-serif;
  13639. font-weight:400;
  13640. font-style:normal;
  13641. }
  13642. #u15196 .text {
  13643. position:absolute;
  13644. align-self:center;
  13645. padding:2px 2px 2px 2px;
  13646. box-sizing:border-box;
  13647. width:100%;
  13648. }
  13649. #u15196_text {
  13650. border-width:0px;
  13651. word-wrap:break-word;
  13652. text-transform:none;
  13653. visibility:hidden;
  13654. }
  13655. #u15197_div {
  13656. border-width:0px;
  13657. position:absolute;
  13658. left:0px;
  13659. top:0px;
  13660. width:217px;
  13661. height:21px;
  13662. background:inherit;
  13663. background-color:rgba(255, 255, 255, 0);
  13664. border:none;
  13665. border-radius:0px;
  13666. -moz-box-shadow:none;
  13667. -webkit-box-shadow:none;
  13668. box-shadow:none;
  13669. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13670. font-weight:650;
  13671. font-style:normal;
  13672. font-size:18px;
  13673. color:#000000;
  13674. line-height:22px;
  13675. }
  13676. #u15197 {
  13677. border-width:0px;
  13678. position:absolute;
  13679. left:2015px;
  13680. top:393px;
  13681. width:217px;
  13682. height:21px;
  13683. display:flex;
  13684. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13685. font-weight:650;
  13686. font-style:normal;
  13687. font-size:18px;
  13688. color:#000000;
  13689. line-height:22px;
  13690. }
  13691. #u15197 .text {
  13692. position:absolute;
  13693. align-self:flex-start;
  13694. padding:0px 0px 0px 0px;
  13695. box-sizing:border-box;
  13696. width:100%;
  13697. }
  13698. #u15197_text {
  13699. border-width:0px;
  13700. white-space:nowrap;
  13701. text-transform:none;
  13702. }
  13703. #u15198_div {
  13704. border-width:0px;
  13705. position:absolute;
  13706. left:0px;
  13707. top:0px;
  13708. width:61px;
  13709. height:32px;
  13710. background:inherit;
  13711. background-color:rgba(24, 144, 255, 1);
  13712. border:none;
  13713. border-radius:4px;
  13714. -moz-box-shadow:none;
  13715. -webkit-box-shadow:none;
  13716. box-shadow:none;
  13717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13718. font-weight:400;
  13719. font-style:normal;
  13720. font-size:14px;
  13721. color:#FFFFFF;
  13722. }
  13723. #u15198 {
  13724. border-width:0px;
  13725. position:absolute;
  13726. left:2254px;
  13727. top:480px;
  13728. width:61px;
  13729. height:32px;
  13730. display:flex;
  13731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13732. font-weight:400;
  13733. font-style:normal;
  13734. font-size:14px;
  13735. color:#FFFFFF;
  13736. }
  13737. #u15198 .text {
  13738. position:absolute;
  13739. align-self:center;
  13740. padding:2px 16px 2px 16px;
  13741. box-sizing:border-box;
  13742. width:100%;
  13743. }
  13744. #u15198_text {
  13745. border-width:0px;
  13746. white-space:nowrap;
  13747. text-transform:none;
  13748. }
  13749. #u15199_img {
  13750. border-width:0px;
  13751. position:absolute;
  13752. left:0px;
  13753. top:0px;
  13754. width:20px;
  13755. height:20px;
  13756. }
  13757. #u15199 {
  13758. border-width:0px;
  13759. position:absolute;
  13760. left:1984px;
  13761. top:397px;
  13762. width:20px;
  13763. height:20px;
  13764. display:flex;
  13765. }
  13766. #u15199 .text {
  13767. position:absolute;
  13768. align-self:center;
  13769. padding:2px 2px 2px 2px;
  13770. box-sizing:border-box;
  13771. width:100%;
  13772. }
  13773. #u15199_text {
  13774. border-width:0px;
  13775. word-wrap:break-word;
  13776. text-transform:none;
  13777. visibility:hidden;
  13778. }
  13779. #u15200_div {
  13780. border-width:0px;
  13781. position:absolute;
  13782. left:0px;
  13783. top:0px;
  13784. width:300px;
  13785. height:44px;
  13786. background:inherit;
  13787. background-color:rgba(255, 255, 255, 0);
  13788. border:none;
  13789. border-radius:0px;
  13790. -moz-box-shadow:none;
  13791. -webkit-box-shadow:none;
  13792. box-shadow:none;
  13793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13794. font-weight:400;
  13795. font-style:normal;
  13796. font-size:14px;
  13797. color:#7F7F7F;
  13798. line-height:22px;
  13799. }
  13800. #u15200 {
  13801. border-width:0px;
  13802. position:absolute;
  13803. left:2015px;
  13804. top:427px;
  13805. width:300px;
  13806. height:44px;
  13807. display:flex;
  13808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13809. font-weight:400;
  13810. font-style:normal;
  13811. font-size:14px;
  13812. color:#7F7F7F;
  13813. line-height:22px;
  13814. }
  13815. #u15200 .text {
  13816. position:absolute;
  13817. align-self:flex-start;
  13818. padding:0px 0px 0px 0px;
  13819. box-sizing:border-box;
  13820. width:100%;
  13821. }
  13822. #u15200_text {
  13823. border-width:0px;
  13824. word-wrap:break-word;
  13825. text-transform:none;
  13826. }
  13827. #u15201_div {
  13828. border-width:0px;
  13829. position:absolute;
  13830. left:0px;
  13831. top:0px;
  13832. width:66px;
  13833. height:32px;
  13834. background:inherit;
  13835. background-color:rgba(255, 255, 255, 1);
  13836. box-sizing:border-box;
  13837. border-width:1px;
  13838. border-style:solid;
  13839. border-color:rgba(217, 217, 217, 1);
  13840. border-radius:4px;
  13841. -moz-box-shadow:none;
  13842. -webkit-box-shadow:none;
  13843. box-shadow:none;
  13844. font-family:'Microsoft YaHei', sans-serif;
  13845. font-weight:400;
  13846. font-style:normal;
  13847. font-size:14px;
  13848. color:rgba(0, 0, 0, 0.647058823529412);
  13849. line-height:21px;
  13850. }
  13851. #u15201 {
  13852. border-width:0px;
  13853. position:absolute;
  13854. left:2171px;
  13855. top:480px;
  13856. width:66px;
  13857. height:32px;
  13858. display:flex;
  13859. font-family:'Microsoft YaHei', sans-serif;
  13860. font-weight:400;
  13861. font-style:normal;
  13862. font-size:14px;
  13863. color:rgba(0, 0, 0, 0.647058823529412);
  13864. line-height:21px;
  13865. }
  13866. #u15201 .text {
  13867. position:absolute;
  13868. align-self:center;
  13869. padding:2px 16px 2px 16px;
  13870. box-sizing:border-box;
  13871. width:100%;
  13872. }
  13873. #u15201_text {
  13874. border-width:0px;
  13875. white-space:nowrap;
  13876. text-transform:none;
  13877. }