styles.css 175 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u13877_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. #u13877 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u13877 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u13877_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u13878_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. #u13878 {
  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. #u13878 .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. #u13878_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u13879_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. #u13879 {
  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. #u13879 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u13879_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u13880 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u13881_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u13881 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u13881 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u13881_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u13882_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. #u13882 {
  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. #u13882 .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. #u13882_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u13883_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. #u13883 {
  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. #u13883 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u13883_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u13884 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u13885_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. #u13885 {
  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. #u13885 .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. #u13885_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u13886_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u13886 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u13886 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u13886_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u13887 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u13888_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. #u13888 {
  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. #u13888 .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. #u13888_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u13889_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u13889 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u13889 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u13889_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u13890 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u13891_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. #u13891 {
  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. #u13891 .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. #u13891_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u13892_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u13892 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u13892 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u13892_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u13893 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u13894_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. #u13894 {
  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. #u13894 .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. #u13894_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u13895_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u13895 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u13895 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u13895_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u13896 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u13897_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. #u13897 {
  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. #u13897 .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. #u13897_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u13898_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u13898 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u13898 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u13898_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u13899 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u13900_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. #u13900 {
  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. #u13900 .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. #u13900_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u13901_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u13901 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u13901 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u13901_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u13902 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u13903_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. #u13903 {
  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. #u13903 .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. #u13903_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u13904_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u13904 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u13904 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u13904_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u13905 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u13906_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. #u13906 {
  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. #u13906 .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. #u13906_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u13907_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u13907 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u13907 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u13907_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u13908 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u13909_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. #u13909 {
  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. #u13909 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u13909_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u13910_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u13910 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u13910 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u13910_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u13911 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u13912_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. #u13912 {
  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. #u13912 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u13912_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u13913_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u13913 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u13913 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u13913_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u13914 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u13915_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. #u13915 {
  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. #u13915 .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. #u13915_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u13916_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u13916 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u13916 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u13916_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u13917 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u13918_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. #u13918_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. #u13918_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. #u13918 {
  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. #u13918 .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. #u13918_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. #u13918.disabled {
  1276. }
  1277. .u13918_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u13919_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u13919 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u13919 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u13919_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u13920_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. #u13920 {
  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. #u13920 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u13920_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u13921_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u13921 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u13921 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u13921_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u13922 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u13923_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. #u13923 {
  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. #u13923 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u13923_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u13924_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u13924 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u13924 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u13924_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u13925_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u13925 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u13925 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u13925_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u13926_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u13926 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u13926 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u13926_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u13927_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u13927 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u13927 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u13927_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u13928 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u13929_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. #u13929 {
  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. #u13929 .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. #u13929_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u13930_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u13930 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u13930 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u13930_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u13931_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1259px;
  1648. height:1190px;
  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. #u13931 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:330px;
  1661. top:50px;
  1662. width:1259px;
  1663. height:1190px;
  1664. display:flex;
  1665. }
  1666. #u13931 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u13931_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u13932 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:350px;
  1683. top:284px;
  1684. width:1219px;
  1685. height:328px;
  1686. }
  1687. #u13933_img {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:47px;
  1693. height:35px;
  1694. }
  1695. #u13933 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:47px;
  1701. height:35px;
  1702. display:flex;
  1703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1704. font-weight:400;
  1705. font-style:normal;
  1706. font-size:12px;
  1707. color:#FFFFFF;
  1708. }
  1709. #u13933 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 0px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u13933_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. }
  1721. #u13934_img {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:75px;
  1727. height:35px;
  1728. }
  1729. #u13934 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:47px;
  1733. top:0px;
  1734. width:75px;
  1735. height:35px;
  1736. display:flex;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:12px;
  1741. color:#FFFFFF;
  1742. }
  1743. #u13934 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u13934_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. }
  1755. #u13935_img {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:75px;
  1761. height:35px;
  1762. }
  1763. #u13935 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:122px;
  1767. top:0px;
  1768. width:75px;
  1769. height:35px;
  1770. display:flex;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:12px;
  1775. color:#FFFFFF;
  1776. }
  1777. #u13935 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:2px 2px 2px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u13935_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. }
  1789. #u13936_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:75px;
  1795. height:35px;
  1796. }
  1797. #u13936 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:197px;
  1801. top:0px;
  1802. width:75px;
  1803. height:35px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:12px;
  1809. color:#FFFFFF;
  1810. }
  1811. #u13936 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 0px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u13936_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u13937_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:75px;
  1829. height:35px;
  1830. }
  1831. #u13937 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:272px;
  1835. top:0px;
  1836. width:75px;
  1837. height:35px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:12px;
  1843. color:#FFFFFF;
  1844. }
  1845. #u13937 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u13937_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u13938_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:75px;
  1863. height:35px;
  1864. }
  1865. #u13938 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:347px;
  1869. top:0px;
  1870. width:75px;
  1871. height:35px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:12px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u13938 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u13938_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u13939_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:75px;
  1897. height:35px;
  1898. }
  1899. #u13939 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:422px;
  1903. top:0px;
  1904. width:75px;
  1905. height:35px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:12px;
  1911. color:#FFFFFF;
  1912. }
  1913. #u13939 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u13939_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u13940_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:95px;
  1931. height:35px;
  1932. }
  1933. #u13940 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:497px;
  1937. top:0px;
  1938. width:95px;
  1939. height:35px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. color:#FFFFFF;
  1946. }
  1947. #u13940 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u13940_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u13941_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:76px;
  1965. height:35px;
  1966. }
  1967. #u13941 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:592px;
  1971. top:0px;
  1972. width:76px;
  1973. height:35px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u13941 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u13941_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u13942_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:75px;
  1999. height:35px;
  2000. }
  2001. #u13942 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:668px;
  2005. top:0px;
  2006. width:75px;
  2007. height:35px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#FFFFFF;
  2014. }
  2015. #u13942 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u13942_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u13943_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:75px;
  2033. height:35px;
  2034. }
  2035. #u13943 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:743px;
  2039. top:0px;
  2040. width:75px;
  2041. height:35px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. color:#FFFFFF;
  2048. }
  2049. #u13943 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u13943_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. }
  2061. #u13944_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:75px;
  2067. height:35px;
  2068. }
  2069. #u13944 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:818px;
  2073. top:0px;
  2074. width:75px;
  2075. height:35px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#FFFFFF;
  2082. }
  2083. #u13944 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u13944_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u13945_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:75px;
  2101. height:35px;
  2102. }
  2103. #u13945 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:893px;
  2107. top:0px;
  2108. width:75px;
  2109. height:35px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. color:#FFFFFF;
  2116. }
  2117. #u13945 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 0px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u13945_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. }
  2129. #u13946_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:76px;
  2135. height:35px;
  2136. }
  2137. #u13946 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:968px;
  2141. top:0px;
  2142. width:76px;
  2143. height:35px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:12px;
  2149. color:#FFFFFF;
  2150. }
  2151. #u13946 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u13946_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. }
  2163. #u13947_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:76px;
  2169. height:35px;
  2170. }
  2171. #u13947 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:1044px;
  2175. top:0px;
  2176. width:76px;
  2177. height:35px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#FFFFFF;
  2184. }
  2185. #u13947 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u13947_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. }
  2197. #u13948_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:99px;
  2203. height:35px;
  2204. }
  2205. #u13948 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:1120px;
  2209. top:0px;
  2210. width:99px;
  2211. height:35px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. color:#FFFFFF;
  2218. }
  2219. #u13948 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u13948_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u13949_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:47px;
  2237. height:47px;
  2238. }
  2239. #u13949 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:35px;
  2244. width:47px;
  2245. height:47px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. color:#333333;
  2252. line-height:40px;
  2253. }
  2254. #u13949 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u13949_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. visibility:hidden;
  2266. }
  2267. #u13950_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:75px;
  2273. height:47px;
  2274. }
  2275. #u13950 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:47px;
  2279. top:35px;
  2280. width:75px;
  2281. height:47px;
  2282. display:flex;
  2283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:12px;
  2287. color:#333333;
  2288. line-height:40px;
  2289. }
  2290. #u13950 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u13950_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. visibility:hidden;
  2302. }
  2303. #u13951_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:75px;
  2309. height:47px;
  2310. }
  2311. #u13951 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:122px;
  2315. top:35px;
  2316. width:75px;
  2317. height:47px;
  2318. display:flex;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:12px;
  2323. color:#333333;
  2324. line-height:40px;
  2325. }
  2326. #u13951 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:2px 2px 2px 0px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u13951_text {
  2334. border-width:0px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. visibility:hidden;
  2338. }
  2339. #u13952_img {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:75px;
  2345. height:47px;
  2346. }
  2347. #u13952 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:197px;
  2351. top:35px;
  2352. width:75px;
  2353. height:47px;
  2354. display:flex;
  2355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2356. font-weight:400;
  2357. font-style:normal;
  2358. font-size:12px;
  2359. color:#333333;
  2360. line-height:40px;
  2361. }
  2362. #u13952 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 0px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u13952_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u13953_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:75px;
  2381. height:47px;
  2382. }
  2383. #u13953 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:272px;
  2387. top:35px;
  2388. width:75px;
  2389. height:47px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. color:#333333;
  2396. line-height:40px;
  2397. }
  2398. #u13953 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:2px 2px 2px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u13953_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. visibility:hidden;
  2410. }
  2411. #u13954_img {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:75px;
  2417. height:47px;
  2418. }
  2419. #u13954 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:347px;
  2423. top:35px;
  2424. width:75px;
  2425. height:47px;
  2426. display:flex;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:12px;
  2431. color:#333333;
  2432. line-height:40px;
  2433. }
  2434. #u13954 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 0px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u13954_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u13955_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:75px;
  2453. height:47px;
  2454. }
  2455. #u13955 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:422px;
  2459. top:35px;
  2460. width:75px;
  2461. height:47px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. color:#333333;
  2468. line-height:40px;
  2469. }
  2470. #u13955 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 0px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u13955_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u13956_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:95px;
  2489. height:47px;
  2490. }
  2491. #u13956 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:497px;
  2495. top:35px;
  2496. width:95px;
  2497. height:47px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#333333;
  2504. line-height:40px;
  2505. }
  2506. #u13956 .text {
  2507. position:absolute;
  2508. align-self:center;
  2509. padding:2px 2px 2px 0px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u13956_text {
  2514. border-width:0px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. visibility:hidden;
  2518. }
  2519. #u13957_img {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:76px;
  2525. height:47px;
  2526. }
  2527. #u13957 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:592px;
  2531. top:35px;
  2532. width:76px;
  2533. height:47px;
  2534. display:flex;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:12px;
  2539. color:#333333;
  2540. line-height:40px;
  2541. }
  2542. #u13957 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 2px 2px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u13957_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. }
  2554. #u13958_img {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:75px;
  2560. height:47px;
  2561. }
  2562. #u13958 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:668px;
  2566. top:35px;
  2567. width:75px;
  2568. height:47px;
  2569. display:flex;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:12px;
  2574. color:#333333;
  2575. line-height:40px;
  2576. }
  2577. #u13958 .text {
  2578. position:absolute;
  2579. align-self:center;
  2580. padding:2px 2px 2px 0px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u13958_text {
  2585. border-width:0px;
  2586. word-wrap:break-word;
  2587. text-transform:none;
  2588. visibility:hidden;
  2589. }
  2590. #u13959_img {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:75px;
  2596. height:47px;
  2597. }
  2598. #u13959 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:743px;
  2602. top:35px;
  2603. width:75px;
  2604. height:47px;
  2605. display:flex;
  2606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2607. font-weight:400;
  2608. font-style:normal;
  2609. font-size:12px;
  2610. color:#333333;
  2611. line-height:40px;
  2612. }
  2613. #u13959 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 0px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u13959_text {
  2621. border-width:0px;
  2622. word-wrap:break-word;
  2623. text-transform:none;
  2624. visibility:hidden;
  2625. }
  2626. #u13960_img {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:75px;
  2632. height:47px;
  2633. }
  2634. #u13960 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:818px;
  2638. top:35px;
  2639. width:75px;
  2640. height:47px;
  2641. display:flex;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:12px;
  2646. color:#333333;
  2647. line-height:40px;
  2648. }
  2649. #u13960 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 0px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u13960_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. }
  2661. #u13961_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:75px;
  2667. height:47px;
  2668. }
  2669. #u13961 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:893px;
  2673. top:35px;
  2674. width:75px;
  2675. height:47px;
  2676. display:flex;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:12px;
  2681. color:#333333;
  2682. line-height:40px;
  2683. }
  2684. #u13961 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:2px 2px 2px 0px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u13961_text {
  2692. border-width:0px;
  2693. word-wrap:break-word;
  2694. text-transform:none;
  2695. visibility:hidden;
  2696. }
  2697. #u13962_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:76px;
  2703. height:47px;
  2704. }
  2705. #u13962 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:968px;
  2709. top:35px;
  2710. width:76px;
  2711. height:47px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. color:#333333;
  2718. line-height:40px;
  2719. }
  2720. #u13962 .text {
  2721. position:absolute;
  2722. align-self:center;
  2723. padding:2px 2px 2px 0px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u13962_text {
  2728. border-width:0px;
  2729. word-wrap:break-word;
  2730. text-transform:none;
  2731. visibility:hidden;
  2732. }
  2733. #u13963_img {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:76px;
  2739. height:47px;
  2740. }
  2741. #u13963 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:1044px;
  2745. top:35px;
  2746. width:76px;
  2747. height:47px;
  2748. display:flex;
  2749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2750. font-weight:400;
  2751. font-style:normal;
  2752. font-size:12px;
  2753. color:#333333;
  2754. line-height:40px;
  2755. }
  2756. #u13963 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 0px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u13963_text {
  2764. border-width:0px;
  2765. word-wrap:break-word;
  2766. text-transform:none;
  2767. visibility:hidden;
  2768. }
  2769. #u13964_img {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:0px;
  2773. top:0px;
  2774. width:99px;
  2775. height:47px;
  2776. }
  2777. #u13964 {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:1120px;
  2781. top:35px;
  2782. width:99px;
  2783. height:47px;
  2784. display:flex;
  2785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. font-size:12px;
  2789. color:#AAAAAA;
  2790. line-height:40px;
  2791. }
  2792. #u13964 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 0px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u13964_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. }
  2804. #u13965_img {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:47px;
  2810. height:44px;
  2811. }
  2812. #u13965 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:82px;
  2817. width:47px;
  2818. height:44px;
  2819. display:flex;
  2820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:12px;
  2824. color:#333333;
  2825. line-height:40px;
  2826. }
  2827. #u13965 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 2px 2px 0px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u13965_text {
  2835. border-width:0px;
  2836. word-wrap:break-word;
  2837. text-transform:none;
  2838. visibility:hidden;
  2839. }
  2840. #u13966_img {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:75px;
  2846. height:44px;
  2847. }
  2848. #u13966 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:47px;
  2852. top:82px;
  2853. width:75px;
  2854. height:44px;
  2855. display:flex;
  2856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:12px;
  2860. color:#333333;
  2861. line-height:40px;
  2862. }
  2863. #u13966 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u13966_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u13967_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:75px;
  2882. height:44px;
  2883. }
  2884. #u13967 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:122px;
  2888. top:82px;
  2889. width:75px;
  2890. height:44px;
  2891. display:flex;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. color:#333333;
  2897. line-height:40px;
  2898. }
  2899. #u13967 .text {
  2900. position:absolute;
  2901. align-self:center;
  2902. padding:2px 2px 2px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u13967_text {
  2907. border-width:0px;
  2908. word-wrap:break-word;
  2909. text-transform:none;
  2910. visibility:hidden;
  2911. }
  2912. #u13968_img {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:75px;
  2918. height:44px;
  2919. }
  2920. #u13968 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:197px;
  2924. top:82px;
  2925. width:75px;
  2926. height:44px;
  2927. display:flex;
  2928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2929. font-weight:400;
  2930. font-style:normal;
  2931. font-size:12px;
  2932. color:#333333;
  2933. line-height:40px;
  2934. }
  2935. #u13968 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 0px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u13968_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. visibility:hidden;
  2947. }
  2948. #u13969_img {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:75px;
  2954. height:44px;
  2955. }
  2956. #u13969 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:272px;
  2960. top:82px;
  2961. width:75px;
  2962. height:44px;
  2963. display:flex;
  2964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2965. font-weight:400;
  2966. font-style:normal;
  2967. font-size:12px;
  2968. color:#333333;
  2969. line-height:40px;
  2970. }
  2971. #u13969 .text {
  2972. position:absolute;
  2973. align-self:center;
  2974. padding:2px 2px 2px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u13969_text {
  2979. border-width:0px;
  2980. word-wrap:break-word;
  2981. text-transform:none;
  2982. visibility:hidden;
  2983. }
  2984. #u13970_img {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:75px;
  2990. height:44px;
  2991. }
  2992. #u13970 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:347px;
  2996. top:82px;
  2997. width:75px;
  2998. height:44px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:12px;
  3004. color:#333333;
  3005. line-height:40px;
  3006. }
  3007. #u13970 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:2px 2px 2px 0px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u13970_text {
  3015. border-width:0px;
  3016. word-wrap:break-word;
  3017. text-transform:none;
  3018. visibility:hidden;
  3019. }
  3020. #u13971_img {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:75px;
  3026. height:44px;
  3027. }
  3028. #u13971 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:422px;
  3032. top:82px;
  3033. width:75px;
  3034. height:44px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:12px;
  3040. color:#333333;
  3041. line-height:40px;
  3042. }
  3043. #u13971 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 0px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u13971_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. visibility:hidden;
  3055. }
  3056. #u13972_img {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:95px;
  3062. height:44px;
  3063. }
  3064. #u13972 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:497px;
  3068. top:82px;
  3069. width:95px;
  3070. height:44px;
  3071. display:flex;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. font-size:12px;
  3076. color:#333333;
  3077. line-height:40px;
  3078. }
  3079. #u13972 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 0px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u13972_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u13973_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:76px;
  3098. height:44px;
  3099. }
  3100. #u13973 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:592px;
  3104. top:82px;
  3105. width:76px;
  3106. height:44px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:12px;
  3112. color:#333333;
  3113. line-height:40px;
  3114. }
  3115. #u13973 .text {
  3116. position:absolute;
  3117. align-self:center;
  3118. padding:2px 2px 2px 0px;
  3119. box-sizing:border-box;
  3120. width:100%;
  3121. }
  3122. #u13973_text {
  3123. border-width:0px;
  3124. word-wrap:break-word;
  3125. text-transform:none;
  3126. }
  3127. #u13974_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:75px;
  3133. height:44px;
  3134. }
  3135. #u13974 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:668px;
  3139. top:82px;
  3140. width:75px;
  3141. height:44px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. color:#333333;
  3148. line-height:40px;
  3149. }
  3150. #u13974 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 2px 2px 0px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u13974_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. visibility:hidden;
  3162. }
  3163. #u13975_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:75px;
  3169. height:44px;
  3170. }
  3171. #u13975 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:743px;
  3175. top:82px;
  3176. width:75px;
  3177. height:44px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:12px;
  3183. color:#333333;
  3184. line-height:40px;
  3185. }
  3186. #u13975 .text {
  3187. position:absolute;
  3188. align-self:center;
  3189. padding:2px 2px 2px 0px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u13975_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u13976_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:75px;
  3205. height:44px;
  3206. }
  3207. #u13976 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:818px;
  3211. top:82px;
  3212. width:75px;
  3213. height:44px;
  3214. display:flex;
  3215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:12px;
  3219. color:#333333;
  3220. line-height:40px;
  3221. }
  3222. #u13976 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 0px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u13976_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. }
  3234. #u13977_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:75px;
  3240. height:44px;
  3241. }
  3242. #u13977 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:893px;
  3246. top:82px;
  3247. width:75px;
  3248. height:44px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. color:#333333;
  3255. line-height:40px;
  3256. }
  3257. #u13977 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 0px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u13977_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. visibility:hidden;
  3269. }
  3270. #u13978_img {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:76px;
  3276. height:44px;
  3277. }
  3278. #u13978 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:968px;
  3282. top:82px;
  3283. width:76px;
  3284. height:44px;
  3285. display:flex;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:12px;
  3290. color:#333333;
  3291. line-height:40px;
  3292. }
  3293. #u13978 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:2px 2px 2px 0px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u13978_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u13979_img {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:76px;
  3312. height:44px;
  3313. }
  3314. #u13979 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:1044px;
  3318. top:82px;
  3319. width:76px;
  3320. height:44px;
  3321. display:flex;
  3322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:12px;
  3326. color:#333333;
  3327. line-height:40px;
  3328. }
  3329. #u13979 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 2px 2px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u13979_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u13980_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:99px;
  3348. height:44px;
  3349. }
  3350. #u13980 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:1120px;
  3354. top:82px;
  3355. width:99px;
  3356. height:44px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:12px;
  3362. color:#AAAAAA;
  3363. line-height:40px;
  3364. }
  3365. #u13980 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 2px 2px 0px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u13980_text {
  3373. border-width:0px;
  3374. word-wrap:break-word;
  3375. text-transform:none;
  3376. }
  3377. #u13981_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:47px;
  3383. height:44px;
  3384. }
  3385. #u13981 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:126px;
  3390. width:47px;
  3391. height:44px;
  3392. display:flex;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:12px;
  3397. color:#333333;
  3398. line-height:40px;
  3399. }
  3400. #u13981 .text {
  3401. position:absolute;
  3402. align-self:center;
  3403. padding:2px 2px 2px 0px;
  3404. box-sizing:border-box;
  3405. width:100%;
  3406. }
  3407. #u13981_text {
  3408. border-width:0px;
  3409. word-wrap:break-word;
  3410. text-transform:none;
  3411. visibility:hidden;
  3412. }
  3413. #u13982_img {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:75px;
  3419. height:44px;
  3420. }
  3421. #u13982 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:47px;
  3425. top:126px;
  3426. width:75px;
  3427. height:44px;
  3428. display:flex;
  3429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:12px;
  3433. color:#333333;
  3434. line-height:40px;
  3435. }
  3436. #u13982 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u13982_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u13983_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:75px;
  3455. height:44px;
  3456. }
  3457. #u13983 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:122px;
  3461. top:126px;
  3462. width:75px;
  3463. height:44px;
  3464. display:flex;
  3465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:12px;
  3469. color:#333333;
  3470. line-height:40px;
  3471. }
  3472. #u13983 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u13983_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u13984_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:75px;
  3491. height:44px;
  3492. }
  3493. #u13984 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:197px;
  3497. top:126px;
  3498. width:75px;
  3499. height:44px;
  3500. display:flex;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:12px;
  3505. color:#333333;
  3506. line-height:40px;
  3507. }
  3508. #u13984 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:2px 2px 2px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u13984_text {
  3516. border-width:0px;
  3517. word-wrap:break-word;
  3518. text-transform:none;
  3519. visibility:hidden;
  3520. }
  3521. #u13985_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:75px;
  3527. height:44px;
  3528. }
  3529. #u13985 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:272px;
  3533. top:126px;
  3534. width:75px;
  3535. height:44px;
  3536. display:flex;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:12px;
  3541. color:#333333;
  3542. line-height:40px;
  3543. }
  3544. #u13985 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u13985_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. visibility:hidden;
  3556. }
  3557. #u13986_img {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:75px;
  3563. height:44px;
  3564. }
  3565. #u13986 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:347px;
  3569. top:126px;
  3570. width:75px;
  3571. height:44px;
  3572. display:flex;
  3573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3574. font-weight:400;
  3575. font-style:normal;
  3576. font-size:12px;
  3577. color:#333333;
  3578. line-height:40px;
  3579. }
  3580. #u13986 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u13986_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u13987_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:75px;
  3599. height:44px;
  3600. }
  3601. #u13987 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:422px;
  3605. top:126px;
  3606. width:75px;
  3607. height:44px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#333333;
  3614. line-height:40px;
  3615. }
  3616. #u13987 .text {
  3617. position:absolute;
  3618. align-self:center;
  3619. padding:2px 2px 2px 0px;
  3620. box-sizing:border-box;
  3621. width:100%;
  3622. }
  3623. #u13987_text {
  3624. border-width:0px;
  3625. word-wrap:break-word;
  3626. text-transform:none;
  3627. visibility:hidden;
  3628. }
  3629. #u13988_img {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:0px;
  3633. top:0px;
  3634. width:95px;
  3635. height:44px;
  3636. }
  3637. #u13988 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:497px;
  3641. top:126px;
  3642. width:95px;
  3643. height:44px;
  3644. display:flex;
  3645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3646. font-weight:400;
  3647. font-style:normal;
  3648. font-size:12px;
  3649. color:#333333;
  3650. line-height:40px;
  3651. }
  3652. #u13988 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u13988_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. visibility:hidden;
  3664. }
  3665. #u13989_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:76px;
  3671. height:44px;
  3672. }
  3673. #u13989 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:592px;
  3677. top:126px;
  3678. width:76px;
  3679. height:44px;
  3680. display:flex;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:12px;
  3685. color:#333333;
  3686. line-height:40px;
  3687. }
  3688. #u13989 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 2px 2px 0px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u13989_text {
  3696. border-width:0px;
  3697. word-wrap:break-word;
  3698. text-transform:none;
  3699. visibility:hidden;
  3700. }
  3701. #u13990_img {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:75px;
  3707. height:44px;
  3708. }
  3709. #u13990 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:668px;
  3713. top:126px;
  3714. width:75px;
  3715. height:44px;
  3716. display:flex;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:12px;
  3721. color:#333333;
  3722. line-height:40px;
  3723. }
  3724. #u13990 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u13990_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u13991_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:75px;
  3743. height:44px;
  3744. }
  3745. #u13991 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:743px;
  3749. top:126px;
  3750. width:75px;
  3751. height:44px;
  3752. display:flex;
  3753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. color:#333333;
  3758. line-height:40px;
  3759. }
  3760. #u13991 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u13991_text {
  3768. border-width:0px;
  3769. word-wrap:break-word;
  3770. text-transform:none;
  3771. visibility:hidden;
  3772. }
  3773. #u13992_img {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:75px;
  3779. height:44px;
  3780. }
  3781. #u13992 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:818px;
  3785. top:126px;
  3786. width:75px;
  3787. height:44px;
  3788. display:flex;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:12px;
  3793. color:#333333;
  3794. line-height:40px;
  3795. }
  3796. #u13992 .text {
  3797. position:absolute;
  3798. align-self:center;
  3799. padding:2px 2px 2px 0px;
  3800. box-sizing:border-box;
  3801. width:100%;
  3802. }
  3803. #u13992_text {
  3804. border-width:0px;
  3805. word-wrap:break-word;
  3806. text-transform:none;
  3807. }
  3808. #u13993_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:75px;
  3814. height:44px;
  3815. }
  3816. #u13993 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:893px;
  3820. top:126px;
  3821. width:75px;
  3822. height:44px;
  3823. display:flex;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. color:#333333;
  3829. line-height:40px;
  3830. }
  3831. #u13993 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:2px 2px 2px 0px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u13993_text {
  3839. border-width:0px;
  3840. word-wrap:break-word;
  3841. text-transform:none;
  3842. visibility:hidden;
  3843. }
  3844. #u13994_img {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:76px;
  3850. height:44px;
  3851. }
  3852. #u13994 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:968px;
  3856. top:126px;
  3857. width:76px;
  3858. height:44px;
  3859. display:flex;
  3860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3861. font-weight:400;
  3862. font-style:normal;
  3863. font-size:12px;
  3864. color:#333333;
  3865. line-height:40px;
  3866. }
  3867. #u13994 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:2px 2px 2px 0px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u13994_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. visibility:hidden;
  3879. }
  3880. #u13995_img {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:76px;
  3886. height:44px;
  3887. }
  3888. #u13995 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:1044px;
  3892. top:126px;
  3893. width:76px;
  3894. height:44px;
  3895. display:flex;
  3896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3897. font-weight:400;
  3898. font-style:normal;
  3899. font-size:12px;
  3900. color:#333333;
  3901. line-height:40px;
  3902. }
  3903. #u13995 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 0px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u13995_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u13996_img {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:99px;
  3922. height:44px;
  3923. }
  3924. #u13996 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:1120px;
  3928. top:126px;
  3929. width:99px;
  3930. height:44px;
  3931. display:flex;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:12px;
  3936. line-height:40px;
  3937. }
  3938. #u13996 .text {
  3939. position:absolute;
  3940. align-self:center;
  3941. padding:2px 2px 2px 0px;
  3942. box-sizing:border-box;
  3943. width:100%;
  3944. }
  3945. #u13996_text {
  3946. border-width:0px;
  3947. word-wrap:break-word;
  3948. text-transform:none;
  3949. }
  3950. #u13997_img {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:47px;
  3956. height:44px;
  3957. }
  3958. #u13997 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:170px;
  3963. width:47px;
  3964. height:44px;
  3965. display:flex;
  3966. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:12px;
  3970. color:#606266;
  3971. }
  3972. #u13997 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:2px 2px 2px 0px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u13997_text {
  3980. border-width:0px;
  3981. word-wrap:break-word;
  3982. text-transform:none;
  3983. visibility:hidden;
  3984. }
  3985. #u13998_img {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:0px;
  3989. top:0px;
  3990. width:75px;
  3991. height:44px;
  3992. }
  3993. #u13998 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:47px;
  3997. top:170px;
  3998. width:75px;
  3999. height:44px;
  4000. display:flex;
  4001. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. font-size:12px;
  4005. color:#606266;
  4006. }
  4007. #u13998 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 2px 2px 0px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u13998_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. visibility:hidden;
  4019. }
  4020. #u13999_img {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:75px;
  4026. height:44px;
  4027. }
  4028. #u13999 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:122px;
  4032. top:170px;
  4033. width:75px;
  4034. height:44px;
  4035. display:flex;
  4036. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. color:#606266;
  4041. }
  4042. #u13999 .text {
  4043. position:absolute;
  4044. align-self:center;
  4045. padding:2px 2px 2px 0px;
  4046. box-sizing:border-box;
  4047. width:100%;
  4048. }
  4049. #u13999_text {
  4050. border-width:0px;
  4051. word-wrap:break-word;
  4052. text-transform:none;
  4053. visibility:hidden;
  4054. }
  4055. #u14000_img {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:75px;
  4061. height:44px;
  4062. }
  4063. #u14000 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:197px;
  4067. top:170px;
  4068. width:75px;
  4069. height:44px;
  4070. display:flex;
  4071. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:12px;
  4075. color:#606266;
  4076. }
  4077. #u14000 .text {
  4078. position:absolute;
  4079. align-self:center;
  4080. padding:2px 2px 2px 0px;
  4081. box-sizing:border-box;
  4082. width:100%;
  4083. }
  4084. #u14000_text {
  4085. border-width:0px;
  4086. word-wrap:break-word;
  4087. text-transform:none;
  4088. visibility:hidden;
  4089. }
  4090. #u14001_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:75px;
  4096. height:44px;
  4097. }
  4098. #u14001 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:272px;
  4102. top:170px;
  4103. width:75px;
  4104. height:44px;
  4105. display:flex;
  4106. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:12px;
  4110. color:#606266;
  4111. }
  4112. #u14001 .text {
  4113. position:absolute;
  4114. align-self:center;
  4115. padding:2px 2px 2px 0px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u14001_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u14002_img {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:75px;
  4131. height:44px;
  4132. }
  4133. #u14002 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:347px;
  4137. top:170px;
  4138. width:75px;
  4139. height:44px;
  4140. display:flex;
  4141. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:12px;
  4145. color:#606266;
  4146. }
  4147. #u14002 .text {
  4148. position:absolute;
  4149. align-self:center;
  4150. padding:2px 2px 2px 0px;
  4151. box-sizing:border-box;
  4152. width:100%;
  4153. }
  4154. #u14002_text {
  4155. border-width:0px;
  4156. word-wrap:break-word;
  4157. text-transform:none;
  4158. visibility:hidden;
  4159. }
  4160. #u14003_img {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:75px;
  4166. height:44px;
  4167. }
  4168. #u14003 {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:422px;
  4172. top:170px;
  4173. width:75px;
  4174. height:44px;
  4175. display:flex;
  4176. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:12px;
  4180. color:#606266;
  4181. }
  4182. #u14003 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 0px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u14003_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u14004_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:95px;
  4201. height:44px;
  4202. }
  4203. #u14004 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:497px;
  4207. top:170px;
  4208. width:95px;
  4209. height:44px;
  4210. display:flex;
  4211. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4212. font-weight:400;
  4213. font-style:normal;
  4214. font-size:12px;
  4215. color:#606266;
  4216. }
  4217. #u14004 .text {
  4218. position:absolute;
  4219. align-self:center;
  4220. padding:2px 2px 2px 0px;
  4221. box-sizing:border-box;
  4222. width:100%;
  4223. }
  4224. #u14004_text {
  4225. border-width:0px;
  4226. word-wrap:break-word;
  4227. text-transform:none;
  4228. visibility:hidden;
  4229. }
  4230. #u14005_img {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:76px;
  4236. height:44px;
  4237. }
  4238. #u14005 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:592px;
  4242. top:170px;
  4243. width:76px;
  4244. height:44px;
  4245. display:flex;
  4246. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4247. font-weight:400;
  4248. font-style:normal;
  4249. font-size:12px;
  4250. color:#606266;
  4251. }
  4252. #u14005 .text {
  4253. position:absolute;
  4254. align-self:center;
  4255. padding:2px 2px 2px 0px;
  4256. box-sizing:border-box;
  4257. width:100%;
  4258. }
  4259. #u14005_text {
  4260. border-width:0px;
  4261. word-wrap:break-word;
  4262. text-transform:none;
  4263. visibility:hidden;
  4264. }
  4265. #u14006_img {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:75px;
  4271. height:44px;
  4272. }
  4273. #u14006 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:668px;
  4277. top:170px;
  4278. width:75px;
  4279. height:44px;
  4280. display:flex;
  4281. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4282. font-weight:400;
  4283. font-style:normal;
  4284. font-size:12px;
  4285. color:#606266;
  4286. }
  4287. #u14006 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:2px 2px 2px 0px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u14006_text {
  4295. border-width:0px;
  4296. word-wrap:break-word;
  4297. text-transform:none;
  4298. visibility:hidden;
  4299. }
  4300. #u14007_img {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:75px;
  4306. height:44px;
  4307. }
  4308. #u14007 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:743px;
  4312. top:170px;
  4313. width:75px;
  4314. height:44px;
  4315. display:flex;
  4316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4317. font-weight:400;
  4318. font-style:normal;
  4319. font-size:12px;
  4320. color:#606266;
  4321. }
  4322. #u14007 .text {
  4323. position:absolute;
  4324. align-self:center;
  4325. padding:2px 2px 2px 0px;
  4326. box-sizing:border-box;
  4327. width:100%;
  4328. }
  4329. #u14007_text {
  4330. border-width:0px;
  4331. word-wrap:break-word;
  4332. text-transform:none;
  4333. visibility:hidden;
  4334. }
  4335. #u14008_img {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:75px;
  4341. height:44px;
  4342. }
  4343. #u14008 {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:818px;
  4347. top:170px;
  4348. width:75px;
  4349. height:44px;
  4350. display:flex;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:12px;
  4355. color:#D9001B;
  4356. }
  4357. #u14008 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 0px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u14008_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. }
  4369. #u14009_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:75px;
  4375. height:44px;
  4376. }
  4377. #u14009 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:893px;
  4381. top:170px;
  4382. width:75px;
  4383. height:44px;
  4384. display:flex;
  4385. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. font-size:12px;
  4389. color:#606266;
  4390. }
  4391. #u14009 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 0px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u14009_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u14010_img {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:76px;
  4410. height:44px;
  4411. }
  4412. #u14010 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:968px;
  4416. top:170px;
  4417. width:76px;
  4418. height:44px;
  4419. display:flex;
  4420. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:12px;
  4424. color:#606266;
  4425. }
  4426. #u14010 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:2px 2px 2px 0px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u14010_text {
  4434. border-width:0px;
  4435. word-wrap:break-word;
  4436. text-transform:none;
  4437. visibility:hidden;
  4438. }
  4439. #u14011_img {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:76px;
  4445. height:44px;
  4446. }
  4447. #u14011 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:1044px;
  4451. top:170px;
  4452. width:76px;
  4453. height:44px;
  4454. display:flex;
  4455. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. color:#606266;
  4460. }
  4461. #u14011 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 0px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u14011_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u14012_img {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:99px;
  4480. height:44px;
  4481. }
  4482. #u14012 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:1120px;
  4486. top:170px;
  4487. width:99px;
  4488. height:44px;
  4489. display:flex;
  4490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4491. font-weight:400;
  4492. font-style:normal;
  4493. font-size:12px;
  4494. color:#AAAAAA;
  4495. line-height:40px;
  4496. }
  4497. #u14012 .text {
  4498. position:absolute;
  4499. align-self:center;
  4500. padding:2px 2px 2px 0px;
  4501. box-sizing:border-box;
  4502. width:100%;
  4503. }
  4504. #u14012_text {
  4505. border-width:0px;
  4506. word-wrap:break-word;
  4507. text-transform:none;
  4508. }
  4509. #u14013_img {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:47px;
  4515. height:38px;
  4516. }
  4517. #u14013 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:214px;
  4522. width:47px;
  4523. height:38px;
  4524. display:flex;
  4525. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:12px;
  4529. color:#606266;
  4530. }
  4531. #u14013 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u14013_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u14014_img {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:75px;
  4550. height:38px;
  4551. }
  4552. #u14014 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:47px;
  4556. top:214px;
  4557. width:75px;
  4558. height:38px;
  4559. display:flex;
  4560. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:12px;
  4564. color:#606266;
  4565. }
  4566. #u14014 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 0px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u14014_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u14015_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:75px;
  4585. height:38px;
  4586. }
  4587. #u14015 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:122px;
  4591. top:214px;
  4592. width:75px;
  4593. height:38px;
  4594. display:flex;
  4595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:12px;
  4599. color:#606266;
  4600. }
  4601. #u14015 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 2px 2px 0px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u14015_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u14016_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:75px;
  4620. height:38px;
  4621. }
  4622. #u14016 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:197px;
  4626. top:214px;
  4627. width:75px;
  4628. height:38px;
  4629. display:flex;
  4630. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:12px;
  4634. color:#606266;
  4635. }
  4636. #u14016 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:2px 2px 2px 0px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u14016_text {
  4644. border-width:0px;
  4645. word-wrap:break-word;
  4646. text-transform:none;
  4647. visibility:hidden;
  4648. }
  4649. #u14017_img {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:75px;
  4655. height:38px;
  4656. }
  4657. #u14017 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:272px;
  4661. top:214px;
  4662. width:75px;
  4663. height:38px;
  4664. display:flex;
  4665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:12px;
  4669. color:#606266;
  4670. }
  4671. #u14017 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 0px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u14017_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. visibility:hidden;
  4683. }
  4684. #u14018_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:75px;
  4690. height:38px;
  4691. }
  4692. #u14018 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:347px;
  4696. top:214px;
  4697. width:75px;
  4698. height:38px;
  4699. display:flex;
  4700. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:12px;
  4704. color:#606266;
  4705. }
  4706. #u14018 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u14018_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u14019_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:75px;
  4725. height:38px;
  4726. }
  4727. #u14019 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:422px;
  4731. top:214px;
  4732. width:75px;
  4733. height:38px;
  4734. display:flex;
  4735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:12px;
  4739. color:#606266;
  4740. }
  4741. #u14019 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 0px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u14019_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u14020_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:95px;
  4760. height:38px;
  4761. }
  4762. #u14020 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:497px;
  4766. top:214px;
  4767. width:95px;
  4768. height:38px;
  4769. display:flex;
  4770. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:12px;
  4774. color:#606266;
  4775. }
  4776. #u14020 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 0px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u14020_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. visibility:hidden;
  4788. }
  4789. #u14021_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:76px;
  4795. height:38px;
  4796. }
  4797. #u14021 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:592px;
  4801. top:214px;
  4802. width:76px;
  4803. height:38px;
  4804. display:flex;
  4805. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:12px;
  4809. color:#606266;
  4810. }
  4811. #u14021 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 0px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u14021_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. visibility:hidden;
  4823. }
  4824. #u14022_img {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:75px;
  4830. height:38px;
  4831. }
  4832. #u14022 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:668px;
  4836. top:214px;
  4837. width:75px;
  4838. height:38px;
  4839. display:flex;
  4840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:12px;
  4844. color:#606266;
  4845. }
  4846. #u14022 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u14022_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u14023_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:75px;
  4865. height:38px;
  4866. }
  4867. #u14023 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:743px;
  4871. top:214px;
  4872. width:75px;
  4873. height:38px;
  4874. display:flex;
  4875. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#606266;
  4880. }
  4881. #u14023 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 0px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u14023_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u14024_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:75px;
  4900. height:38px;
  4901. }
  4902. #u14024 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:818px;
  4906. top:214px;
  4907. width:75px;
  4908. height:38px;
  4909. display:flex;
  4910. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. color:#606266;
  4915. }
  4916. #u14024 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u14024_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u14025_img {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:75px;
  4935. height:38px;
  4936. }
  4937. #u14025 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:893px;
  4941. top:214px;
  4942. width:75px;
  4943. height:38px;
  4944. display:flex;
  4945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:12px;
  4949. color:#606266;
  4950. }
  4951. #u14025 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 0px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u14025_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. visibility:hidden;
  4963. }
  4964. #u14026_img {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:76px;
  4970. height:38px;
  4971. }
  4972. #u14026 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:968px;
  4976. top:214px;
  4977. width:76px;
  4978. height:38px;
  4979. display:flex;
  4980. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:12px;
  4984. color:#606266;
  4985. }
  4986. #u14026 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:2px 2px 2px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u14026_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. visibility:hidden;
  4998. }
  4999. #u14027_img {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:76px;
  5005. height:38px;
  5006. }
  5007. #u14027 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:1044px;
  5011. top:214px;
  5012. width:76px;
  5013. height:38px;
  5014. display:flex;
  5015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:12px;
  5019. color:#606266;
  5020. }
  5021. #u14027 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 0px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u14027_text {
  5029. border-width:0px;
  5030. word-wrap:break-word;
  5031. text-transform:none;
  5032. visibility:hidden;
  5033. }
  5034. #u14028_img {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:99px;
  5040. height:38px;
  5041. }
  5042. #u14028 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:1120px;
  5046. top:214px;
  5047. width:99px;
  5048. height:38px;
  5049. display:flex;
  5050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:12px;
  5054. color:#606266;
  5055. }
  5056. #u14028 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 0px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u14028_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. visibility:hidden;
  5068. }
  5069. #u14029_img {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:47px;
  5075. height:38px;
  5076. }
  5077. #u14029 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:252px;
  5082. width:47px;
  5083. height:38px;
  5084. display:flex;
  5085. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:12px;
  5089. color:#606266;
  5090. }
  5091. #u14029 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 0px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u14029_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u14030_img {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:75px;
  5110. height:38px;
  5111. }
  5112. #u14030 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:47px;
  5116. top:252px;
  5117. width:75px;
  5118. height:38px;
  5119. display:flex;
  5120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. color:#606266;
  5125. }
  5126. #u14030 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 2px 2px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u14030_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. visibility:hidden;
  5138. }
  5139. #u14031_img {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:75px;
  5145. height:38px;
  5146. }
  5147. #u14031 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:122px;
  5151. top:252px;
  5152. width:75px;
  5153. height:38px;
  5154. display:flex;
  5155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:12px;
  5159. color:#606266;
  5160. }
  5161. #u14031 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u14031_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. visibility:hidden;
  5173. }
  5174. #u14032_img {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:75px;
  5180. height:38px;
  5181. }
  5182. #u14032 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:197px;
  5186. top:252px;
  5187. width:75px;
  5188. height:38px;
  5189. display:flex;
  5190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. color:#606266;
  5195. }
  5196. #u14032 .text {
  5197. position:absolute;
  5198. align-self:center;
  5199. padding:2px 2px 2px 0px;
  5200. box-sizing:border-box;
  5201. width:100%;
  5202. }
  5203. #u14032_text {
  5204. border-width:0px;
  5205. word-wrap:break-word;
  5206. text-transform:none;
  5207. visibility:hidden;
  5208. }
  5209. #u14033_img {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:75px;
  5215. height:38px;
  5216. }
  5217. #u14033 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:272px;
  5221. top:252px;
  5222. width:75px;
  5223. height:38px;
  5224. display:flex;
  5225. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:12px;
  5229. color:#606266;
  5230. }
  5231. #u14033 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 2px 2px 0px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u14033_text {
  5239. border-width:0px;
  5240. word-wrap:break-word;
  5241. text-transform:none;
  5242. visibility:hidden;
  5243. }
  5244. #u14034_img {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:75px;
  5250. height:38px;
  5251. }
  5252. #u14034 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:347px;
  5256. top:252px;
  5257. width:75px;
  5258. height:38px;
  5259. display:flex;
  5260. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:12px;
  5264. color:#606266;
  5265. }
  5266. #u14034 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 0px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u14034_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u14035_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:75px;
  5285. height:38px;
  5286. }
  5287. #u14035 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:422px;
  5291. top:252px;
  5292. width:75px;
  5293. height:38px;
  5294. display:flex;
  5295. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:12px;
  5299. color:#606266;
  5300. }
  5301. #u14035 .text {
  5302. position:absolute;
  5303. align-self:center;
  5304. padding:2px 2px 2px 0px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u14035_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. visibility:hidden;
  5313. }
  5314. #u14036_img {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:95px;
  5320. height:38px;
  5321. }
  5322. #u14036 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:497px;
  5326. top:252px;
  5327. width:95px;
  5328. height:38px;
  5329. display:flex;
  5330. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:12px;
  5334. color:#606266;
  5335. }
  5336. #u14036 .text {
  5337. position:absolute;
  5338. align-self:center;
  5339. padding:2px 2px 2px 0px;
  5340. box-sizing:border-box;
  5341. width:100%;
  5342. }
  5343. #u14036_text {
  5344. border-width:0px;
  5345. word-wrap:break-word;
  5346. text-transform:none;
  5347. visibility:hidden;
  5348. }
  5349. #u14037_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:76px;
  5355. height:38px;
  5356. }
  5357. #u14037 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:592px;
  5361. top:252px;
  5362. width:76px;
  5363. height:38px;
  5364. display:flex;
  5365. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5366. font-weight:400;
  5367. font-style:normal;
  5368. font-size:12px;
  5369. color:#606266;
  5370. }
  5371. #u14037 .text {
  5372. position:absolute;
  5373. align-self:center;
  5374. padding:2px 2px 2px 0px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u14037_text {
  5379. border-width:0px;
  5380. word-wrap:break-word;
  5381. text-transform:none;
  5382. visibility:hidden;
  5383. }
  5384. #u14038_img {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:75px;
  5390. height:38px;
  5391. }
  5392. #u14038 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:668px;
  5396. top:252px;
  5397. width:75px;
  5398. height:38px;
  5399. display:flex;
  5400. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:12px;
  5404. color:#606266;
  5405. }
  5406. #u14038 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u14038_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. visibility:hidden;
  5418. }
  5419. #u14039_img {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:75px;
  5425. height:38px;
  5426. }
  5427. #u14039 {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:743px;
  5431. top:252px;
  5432. width:75px;
  5433. height:38px;
  5434. display:flex;
  5435. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5436. font-weight:400;
  5437. font-style:normal;
  5438. font-size:12px;
  5439. color:#606266;
  5440. }
  5441. #u14039 .text {
  5442. position:absolute;
  5443. align-self:center;
  5444. padding:2px 2px 2px 0px;
  5445. box-sizing:border-box;
  5446. width:100%;
  5447. }
  5448. #u14039_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u14040_img {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:75px;
  5460. height:38px;
  5461. }
  5462. #u14040 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:818px;
  5466. top:252px;
  5467. width:75px;
  5468. height:38px;
  5469. display:flex;
  5470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. font-size:12px;
  5474. color:#606266;
  5475. }
  5476. #u14040 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:2px 2px 2px 0px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u14040_text {
  5484. border-width:0px;
  5485. word-wrap:break-word;
  5486. text-transform:none;
  5487. visibility:hidden;
  5488. }
  5489. #u14041_img {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:75px;
  5495. height:38px;
  5496. }
  5497. #u14041 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:893px;
  5501. top:252px;
  5502. width:75px;
  5503. height:38px;
  5504. display:flex;
  5505. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:12px;
  5509. color:#606266;
  5510. }
  5511. #u14041 .text {
  5512. position:absolute;
  5513. align-self:center;
  5514. padding:2px 2px 2px 0px;
  5515. box-sizing:border-box;
  5516. width:100%;
  5517. }
  5518. #u14041_text {
  5519. border-width:0px;
  5520. word-wrap:break-word;
  5521. text-transform:none;
  5522. visibility:hidden;
  5523. }
  5524. #u14042_img {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:76px;
  5530. height:38px;
  5531. }
  5532. #u14042 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:968px;
  5536. top:252px;
  5537. width:76px;
  5538. height:38px;
  5539. display:flex;
  5540. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:12px;
  5544. color:#606266;
  5545. }
  5546. #u14042 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 0px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u14042_text {
  5554. border-width:0px;
  5555. word-wrap:break-word;
  5556. text-transform:none;
  5557. visibility:hidden;
  5558. }
  5559. #u14043_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:76px;
  5565. height:38px;
  5566. }
  5567. #u14043 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:1044px;
  5571. top:252px;
  5572. width:76px;
  5573. height:38px;
  5574. display:flex;
  5575. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:12px;
  5579. color:#606266;
  5580. }
  5581. #u14043 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 2px 2px 0px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u14043_text {
  5589. border-width:0px;
  5590. word-wrap:break-word;
  5591. text-transform:none;
  5592. visibility:hidden;
  5593. }
  5594. #u14044_img {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:99px;
  5600. height:38px;
  5601. }
  5602. #u14044 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:1120px;
  5606. top:252px;
  5607. width:99px;
  5608. height:38px;
  5609. display:flex;
  5610. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5611. font-weight:400;
  5612. font-style:normal;
  5613. font-size:12px;
  5614. color:#606266;
  5615. }
  5616. #u14044 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:2px 2px 2px 0px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u14044_text {
  5624. border-width:0px;
  5625. word-wrap:break-word;
  5626. text-transform:none;
  5627. visibility:hidden;
  5628. }
  5629. #u14045_img {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:47px;
  5635. height:38px;
  5636. }
  5637. #u14045 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:290px;
  5642. width:47px;
  5643. height:38px;
  5644. display:flex;
  5645. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:12px;
  5649. color:#606266;
  5650. }
  5651. #u14045 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 0px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u14045_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. visibility:hidden;
  5663. }
  5664. #u14046_img {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:75px;
  5670. height:38px;
  5671. }
  5672. #u14046 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:47px;
  5676. top:290px;
  5677. width:75px;
  5678. height:38px;
  5679. display:flex;
  5680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:12px;
  5684. color:#606266;
  5685. }
  5686. #u14046 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 0px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u14046_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u14047_img {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:75px;
  5705. height:38px;
  5706. }
  5707. #u14047 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:122px;
  5711. top:290px;
  5712. width:75px;
  5713. height:38px;
  5714. display:flex;
  5715. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:12px;
  5719. color:#606266;
  5720. }
  5721. #u14047 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 0px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u14047_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u14048_img {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:75px;
  5740. height:38px;
  5741. }
  5742. #u14048 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:197px;
  5746. top:290px;
  5747. width:75px;
  5748. height:38px;
  5749. display:flex;
  5750. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:12px;
  5754. color:#606266;
  5755. }
  5756. #u14048 .text {
  5757. position:absolute;
  5758. align-self:center;
  5759. padding:2px 2px 2px 0px;
  5760. box-sizing:border-box;
  5761. width:100%;
  5762. }
  5763. #u14048_text {
  5764. border-width:0px;
  5765. word-wrap:break-word;
  5766. text-transform:none;
  5767. visibility:hidden;
  5768. }
  5769. #u14049_img {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:75px;
  5775. height:38px;
  5776. }
  5777. #u14049 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:272px;
  5781. top:290px;
  5782. width:75px;
  5783. height:38px;
  5784. display:flex;
  5785. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:12px;
  5789. color:#606266;
  5790. }
  5791. #u14049 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u14049_text {
  5799. border-width:0px;
  5800. word-wrap:break-word;
  5801. text-transform:none;
  5802. visibility:hidden;
  5803. }
  5804. #u14050_img {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:75px;
  5810. height:38px;
  5811. }
  5812. #u14050 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:347px;
  5816. top:290px;
  5817. width:75px;
  5818. height:38px;
  5819. display:flex;
  5820. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:12px;
  5824. color:#606266;
  5825. }
  5826. #u14050 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 0px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u14050_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. visibility:hidden;
  5838. }
  5839. #u14051_img {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:75px;
  5845. height:38px;
  5846. }
  5847. #u14051 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:422px;
  5851. top:290px;
  5852. width:75px;
  5853. height:38px;
  5854. display:flex;
  5855. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:12px;
  5859. color:#606266;
  5860. }
  5861. #u14051 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 0px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u14051_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. visibility:hidden;
  5873. }
  5874. #u14052_img {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:95px;
  5880. height:38px;
  5881. }
  5882. #u14052 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:497px;
  5886. top:290px;
  5887. width:95px;
  5888. height:38px;
  5889. display:flex;
  5890. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:12px;
  5894. color:#606266;
  5895. }
  5896. #u14052 .text {
  5897. position:absolute;
  5898. align-self:center;
  5899. padding:2px 2px 2px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u14052_text {
  5904. border-width:0px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. visibility:hidden;
  5908. }
  5909. #u14053_img {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:76px;
  5915. height:38px;
  5916. }
  5917. #u14053 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:592px;
  5921. top:290px;
  5922. width:76px;
  5923. height:38px;
  5924. display:flex;
  5925. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:12px;
  5929. color:#606266;
  5930. }
  5931. #u14053 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 0px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u14053_text {
  5939. border-width:0px;
  5940. word-wrap:break-word;
  5941. text-transform:none;
  5942. visibility:hidden;
  5943. }
  5944. #u14054_img {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:75px;
  5950. height:38px;
  5951. }
  5952. #u14054 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:668px;
  5956. top:290px;
  5957. width:75px;
  5958. height:38px;
  5959. display:flex;
  5960. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5961. font-weight:400;
  5962. font-style:normal;
  5963. font-size:12px;
  5964. color:#606266;
  5965. }
  5966. #u14054 .text {
  5967. position:absolute;
  5968. align-self:center;
  5969. padding:2px 2px 2px 0px;
  5970. box-sizing:border-box;
  5971. width:100%;
  5972. }
  5973. #u14054_text {
  5974. border-width:0px;
  5975. word-wrap:break-word;
  5976. text-transform:none;
  5977. visibility:hidden;
  5978. }
  5979. #u14055_img {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:75px;
  5985. height:38px;
  5986. }
  5987. #u14055 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:743px;
  5991. top:290px;
  5992. width:75px;
  5993. height:38px;
  5994. display:flex;
  5995. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:12px;
  5999. color:#606266;
  6000. }
  6001. #u14055 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 0px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u14055_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. visibility:hidden;
  6013. }
  6014. #u14056_img {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:75px;
  6020. height:38px;
  6021. }
  6022. #u14056 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:818px;
  6026. top:290px;
  6027. width:75px;
  6028. height:38px;
  6029. display:flex;
  6030. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:12px;
  6034. color:#606266;
  6035. }
  6036. #u14056 .text {
  6037. position:absolute;
  6038. align-self:center;
  6039. padding:2px 2px 2px 0px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u14056_text {
  6044. border-width:0px;
  6045. word-wrap:break-word;
  6046. text-transform:none;
  6047. visibility:hidden;
  6048. }
  6049. #u14057_img {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:75px;
  6055. height:38px;
  6056. }
  6057. #u14057 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:893px;
  6061. top:290px;
  6062. width:75px;
  6063. height:38px;
  6064. display:flex;
  6065. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. color:#606266;
  6070. }
  6071. #u14057 .text {
  6072. position:absolute;
  6073. align-self:center;
  6074. padding:2px 2px 2px 0px;
  6075. box-sizing:border-box;
  6076. width:100%;
  6077. }
  6078. #u14057_text {
  6079. border-width:0px;
  6080. word-wrap:break-word;
  6081. text-transform:none;
  6082. visibility:hidden;
  6083. }
  6084. #u14058_img {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:0px;
  6088. top:0px;
  6089. width:76px;
  6090. height:38px;
  6091. }
  6092. #u14058 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:968px;
  6096. top:290px;
  6097. width:76px;
  6098. height:38px;
  6099. display:flex;
  6100. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:12px;
  6104. color:#606266;
  6105. }
  6106. #u14058 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:2px 2px 2px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u14058_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. visibility:hidden;
  6118. }
  6119. #u14059_img {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:76px;
  6125. height:38px;
  6126. }
  6127. #u14059 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:1044px;
  6131. top:290px;
  6132. width:76px;
  6133. height:38px;
  6134. display:flex;
  6135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:12px;
  6139. color:#606266;
  6140. }
  6141. #u14059 .text {
  6142. position:absolute;
  6143. align-self:center;
  6144. padding:2px 2px 2px 0px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u14059_text {
  6149. border-width:0px;
  6150. word-wrap:break-word;
  6151. text-transform:none;
  6152. visibility:hidden;
  6153. }
  6154. #u14060_img {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:99px;
  6160. height:38px;
  6161. }
  6162. #u14060 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:1120px;
  6166. top:290px;
  6167. width:99px;
  6168. height:38px;
  6169. display:flex;
  6170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:12px;
  6174. color:#606266;
  6175. }
  6176. #u14060 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 2px 2px 0px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u14060_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. visibility:hidden;
  6188. }
  6189. #u14061 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:0px;
  6195. height:0px;
  6196. }
  6197. #u14062_div {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:60px;
  6203. height:30px;
  6204. background:inherit;
  6205. background-color:rgba(24, 144, 255, 1);
  6206. border:none;
  6207. border-radius:4px;
  6208. -moz-box-shadow:none;
  6209. -webkit-box-shadow:none;
  6210. box-shadow:none;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:14px;
  6215. color:#FFFFFF;
  6216. }
  6217. #u14062 {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:350px;
  6221. top:194px;
  6222. width:60px;
  6223. height:30px;
  6224. display:flex;
  6225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6226. font-weight:400;
  6227. font-style:normal;
  6228. font-size:14px;
  6229. color:#FFFFFF;
  6230. }
  6231. #u14062 .text {
  6232. position:absolute;
  6233. align-self:center;
  6234. padding:2px 2px 2px 2px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u14062_text {
  6239. border-width:0px;
  6240. word-wrap:break-word;
  6241. text-transform:none;
  6242. }
  6243. #u14063_div {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:60px;
  6249. height:30px;
  6250. background:inherit;
  6251. background-color:rgba(255, 255, 255, 1);
  6252. box-sizing:border-box;
  6253. border-width:1px;
  6254. border-style:solid;
  6255. border-color:rgba(170, 170, 170, 1);
  6256. border-radius:4px;
  6257. -moz-box-shadow:none;
  6258. -webkit-box-shadow:none;
  6259. box-shadow:none;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:14px;
  6264. }
  6265. #u14063 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:420px;
  6269. top:194px;
  6270. width:60px;
  6271. height:30px;
  6272. display:flex;
  6273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:14px;
  6277. }
  6278. #u14063 .text {
  6279. position:absolute;
  6280. align-self:center;
  6281. padding:2px 2px 2px 2px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u14063_text {
  6286. border-width:0px;
  6287. word-wrap:break-word;
  6288. text-transform:none;
  6289. }
  6290. #u14064 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:0px;
  6296. height:0px;
  6297. }
  6298. #u14065_div {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:140px;
  6304. height:30px;
  6305. background:inherit;
  6306. background-color:rgba(255, 255, 255, 1);
  6307. box-sizing:border-box;
  6308. border-width:1px;
  6309. border-style:solid;
  6310. border-color:rgba(215, 215, 215, 1);
  6311. border-radius:4px;
  6312. -moz-box-shadow:none;
  6313. -webkit-box-shadow:none;
  6314. box-shadow:none;
  6315. font-size:14px;
  6316. }
  6317. #u14065 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:650px;
  6321. top:156px;
  6322. width:140px;
  6323. height:30px;
  6324. display:flex;
  6325. font-size:14px;
  6326. }
  6327. #u14065 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:2px 2px 2px 2px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u14065_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u14066_input {
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:134px;
  6345. height:23px;
  6346. padding:2px 2px 2px 2px;
  6347. font-family:'ArialMT', 'Arial', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:14px;
  6351. letter-spacing:normal;
  6352. color:#AAAAAA;
  6353. vertical-align:none;
  6354. text-align:left;
  6355. text-transform:none;
  6356. background-color:transparent;
  6357. border-color:transparent;
  6358. }
  6359. #u14066_input.disabled {
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:134px;
  6364. height:23px;
  6365. padding:2px 2px 2px 2px;
  6366. font-family:'ArialMT', 'Arial', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:14px;
  6370. letter-spacing:normal;
  6371. color:#AAAAAA;
  6372. vertical-align:none;
  6373. text-align:left;
  6374. text-transform:none;
  6375. background-color:transparent;
  6376. border-color:transparent;
  6377. }
  6378. #u14066_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:134px;
  6384. height:23px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 1);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-size:14px;
  6393. color:#AAAAAA;
  6394. }
  6395. #u14066 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:654px;
  6399. top:158px;
  6400. width:134px;
  6401. height:23px;
  6402. display:flex;
  6403. font-size:14px;
  6404. color:#AAAAAA;
  6405. }
  6406. #u14066 .text {
  6407. position:absolute;
  6408. align-self:flex-start;
  6409. padding:2px 2px 2px 2px;
  6410. box-sizing:border-box;
  6411. width:100%;
  6412. }
  6413. #u14066_div.disabled {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:134px;
  6419. height:23px;
  6420. background:inherit;
  6421. background-color:rgba(240, 240, 240, 1);
  6422. border:none;
  6423. border-radius:0px;
  6424. -moz-box-shadow:none;
  6425. -webkit-box-shadow:none;
  6426. box-shadow:none;
  6427. font-size:14px;
  6428. color:#AAAAAA;
  6429. }
  6430. #u14066.disabled {
  6431. }
  6432. .u14066_input_option {
  6433. font-size:14px;
  6434. }
  6435. #u14067 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:0px;
  6441. height:0px;
  6442. }
  6443. #u14068_div {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:140px;
  6449. height:30px;
  6450. background:inherit;
  6451. background-color:rgba(255, 255, 255, 1);
  6452. box-sizing:border-box;
  6453. border-width:1px;
  6454. border-style:solid;
  6455. border-color:rgba(201, 201, 201, 1);
  6456. border-radius:4px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. font-family:'Microsoft YaHei', sans-serif;
  6461. font-weight:400;
  6462. font-style:normal;
  6463. font-size:14px;
  6464. color:#CCCCCC;
  6465. text-align:left;
  6466. }
  6467. #u14068 {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:800px;
  6471. top:155px;
  6472. width:140px;
  6473. height:30px;
  6474. display:flex;
  6475. font-family:'Microsoft YaHei', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:14px;
  6479. color:#CCCCCC;
  6480. text-align:left;
  6481. }
  6482. #u14068 .text {
  6483. position:absolute;
  6484. align-self:center;
  6485. padding:2px 8px 2px 8px;
  6486. box-sizing:border-box;
  6487. width:100%;
  6488. }
  6489. #u14068_text {
  6490. border-width:0px;
  6491. word-wrap:break-word;
  6492. text-transform:none;
  6493. visibility:hidden;
  6494. }
  6495. #u14069_input {
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:127px;
  6500. height:25px;
  6501. padding:2px 2px 2px 2px;
  6502. font-family:'Microsoft YaHei', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:10px;
  6506. letter-spacing:normal;
  6507. color:#000000;
  6508. vertical-align:none;
  6509. text-align:left;
  6510. text-transform:none;
  6511. background-color:transparent;
  6512. border-color:transparent;
  6513. }
  6514. #u14069_input.disabled {
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:127px;
  6519. height:25px;
  6520. padding:2px 2px 2px 2px;
  6521. font-family:'Microsoft YaHei', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:10px;
  6525. letter-spacing:normal;
  6526. color:#000000;
  6527. vertical-align:none;
  6528. text-align:left;
  6529. text-transform:none;
  6530. background-color:transparent;
  6531. border-color:transparent;
  6532. }
  6533. #u14069_div {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:0px;
  6537. top:0px;
  6538. width:127px;
  6539. height:25px;
  6540. background:inherit;
  6541. background-color:rgba(255, 255, 255, 1);
  6542. border:none;
  6543. border-radius:0px;
  6544. -moz-box-shadow:none;
  6545. -webkit-box-shadow:none;
  6546. box-shadow:none;
  6547. font-family:'Microsoft YaHei', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:10px;
  6551. }
  6552. #u14069 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:808px;
  6556. top:156px;
  6557. width:127px;
  6558. height:25px;
  6559. display:flex;
  6560. font-family:'Microsoft YaHei', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:10px;
  6564. }
  6565. #u14069 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:2px 2px 2px 2px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u14069_div.disabled {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:127px;
  6578. height:25px;
  6579. background:inherit;
  6580. background-color:rgba(240, 240, 240, 1);
  6581. border:none;
  6582. border-radius:0px;
  6583. -moz-box-shadow:none;
  6584. -webkit-box-shadow:none;
  6585. box-shadow:none;
  6586. font-family:'Microsoft YaHei', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:10px;
  6590. }
  6591. #u14069.disabled {
  6592. }
  6593. #u14070 {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:0px;
  6599. height:0px;
  6600. }
  6601. #u14071_div {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:0px;
  6605. top:0px;
  6606. width:140px;
  6607. height:30px;
  6608. background:inherit;
  6609. background-color:rgba(255, 255, 255, 1);
  6610. box-sizing:border-box;
  6611. border-width:1px;
  6612. border-style:solid;
  6613. border-color:rgba(215, 215, 215, 1);
  6614. border-radius:4px;
  6615. -moz-box-shadow:none;
  6616. -webkit-box-shadow:none;
  6617. box-shadow:none;
  6618. font-size:12px;
  6619. }
  6620. #u14071 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:950px;
  6624. top:155px;
  6625. width:140px;
  6626. height:30px;
  6627. display:flex;
  6628. font-size:12px;
  6629. }
  6630. #u14071 .text {
  6631. position:absolute;
  6632. align-self:center;
  6633. padding:2px 2px 2px 2px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u14071_text {
  6638. border-width:0px;
  6639. word-wrap:break-word;
  6640. text-transform:none;
  6641. visibility:hidden;
  6642. }
  6643. #u14072_input {
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:134px;
  6648. height:23px;
  6649. padding:2px 2px 2px 2px;
  6650. font-family:'ArialMT', 'Arial', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:12px;
  6654. letter-spacing:normal;
  6655. color:#AAAAAA;
  6656. vertical-align:none;
  6657. text-align:left;
  6658. text-transform:none;
  6659. background-color:transparent;
  6660. border-color:transparent;
  6661. }
  6662. #u14072_input.disabled {
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:134px;
  6667. height:23px;
  6668. padding:2px 2px 2px 2px;
  6669. font-family:'ArialMT', 'Arial', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:12px;
  6673. letter-spacing:normal;
  6674. color:#AAAAAA;
  6675. vertical-align:none;
  6676. text-align:left;
  6677. text-transform:none;
  6678. background-color:transparent;
  6679. border-color:transparent;
  6680. }
  6681. #u14072_div {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:134px;
  6687. height:23px;
  6688. background:inherit;
  6689. background-color:rgba(255, 255, 255, 1);
  6690. border:none;
  6691. border-radius:0px;
  6692. -moz-box-shadow:none;
  6693. -webkit-box-shadow:none;
  6694. box-shadow:none;
  6695. font-size:12px;
  6696. color:#AAAAAA;
  6697. }
  6698. #u14072 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:954px;
  6702. top:157px;
  6703. width:134px;
  6704. height:23px;
  6705. display:flex;
  6706. font-size:12px;
  6707. color:#AAAAAA;
  6708. }
  6709. #u14072 .text {
  6710. position:absolute;
  6711. align-self:flex-start;
  6712. padding:2px 2px 2px 2px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u14072_div.disabled {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:134px;
  6722. height:23px;
  6723. background:inherit;
  6724. background-color:rgba(240, 240, 240, 1);
  6725. border:none;
  6726. border-radius:0px;
  6727. -moz-box-shadow:none;
  6728. -webkit-box-shadow:none;
  6729. box-shadow:none;
  6730. font-size:12px;
  6731. color:#AAAAAA;
  6732. }
  6733. #u14072.disabled {
  6734. }
  6735. .u14072_input_option {
  6736. font-size:12px;
  6737. }
  6738. #u14073 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:0px;
  6744. height:0px;
  6745. }
  6746. #u14074_div {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:140px;
  6752. height:30px;
  6753. background:inherit;
  6754. background-color:rgba(255, 255, 255, 1);
  6755. box-sizing:border-box;
  6756. border-width:1px;
  6757. border-style:solid;
  6758. border-color:rgba(201, 201, 201, 1);
  6759. border-radius:4px;
  6760. -moz-box-shadow:none;
  6761. -webkit-box-shadow:none;
  6762. box-shadow:none;
  6763. font-family:'Microsoft YaHei', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:14px;
  6767. color:#CCCCCC;
  6768. text-align:left;
  6769. }
  6770. #u14074 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:1250px;
  6774. top:155px;
  6775. width:140px;
  6776. height:30px;
  6777. display:flex;
  6778. font-family:'Microsoft YaHei', sans-serif;
  6779. font-weight:400;
  6780. font-style:normal;
  6781. font-size:14px;
  6782. color:#CCCCCC;
  6783. text-align:left;
  6784. }
  6785. #u14074 .text {
  6786. position:absolute;
  6787. align-self:center;
  6788. padding:2px 8px 2px 8px;
  6789. box-sizing:border-box;
  6790. width:100%;
  6791. }
  6792. #u14074_text {
  6793. border-width:0px;
  6794. word-wrap:break-word;
  6795. text-transform:none;
  6796. visibility:hidden;
  6797. }
  6798. #u14075_input {
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:127px;
  6803. height:25px;
  6804. padding:2px 2px 2px 2px;
  6805. font-family:'Microsoft YaHei', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:10px;
  6809. letter-spacing:normal;
  6810. color:#000000;
  6811. vertical-align:none;
  6812. text-align:left;
  6813. text-transform:none;
  6814. background-color:transparent;
  6815. border-color:transparent;
  6816. }
  6817. #u14075_input.disabled {
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:127px;
  6822. height:25px;
  6823. padding:2px 2px 2px 2px;
  6824. font-family:'Microsoft YaHei', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:10px;
  6828. letter-spacing:normal;
  6829. color:#000000;
  6830. vertical-align:none;
  6831. text-align:left;
  6832. text-transform:none;
  6833. background-color:transparent;
  6834. border-color:transparent;
  6835. }
  6836. #u14075_div {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:127px;
  6842. height:25px;
  6843. background:inherit;
  6844. background-color:rgba(255, 255, 255, 1);
  6845. border:none;
  6846. border-radius:0px;
  6847. -moz-box-shadow:none;
  6848. -webkit-box-shadow:none;
  6849. box-shadow:none;
  6850. font-family:'Microsoft YaHei', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:10px;
  6854. }
  6855. #u14075 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:1258px;
  6859. top:156px;
  6860. width:127px;
  6861. height:25px;
  6862. display:flex;
  6863. font-family:'Microsoft YaHei', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:10px;
  6867. }
  6868. #u14075 .text {
  6869. position:absolute;
  6870. align-self:center;
  6871. padding:2px 2px 2px 2px;
  6872. box-sizing:border-box;
  6873. width:100%;
  6874. }
  6875. #u14075_div.disabled {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:127px;
  6881. height:25px;
  6882. background:inherit;
  6883. background-color:rgba(240, 240, 240, 1);
  6884. border:none;
  6885. border-radius:0px;
  6886. -moz-box-shadow:none;
  6887. -webkit-box-shadow:none;
  6888. box-shadow:none;
  6889. font-family:'Microsoft YaHei', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. font-size:10px;
  6893. }
  6894. #u14075.disabled {
  6895. }
  6896. #u14076 {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:0px;
  6902. height:0px;
  6903. }
  6904. #u14077_div {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:0px;
  6908. top:0px;
  6909. width:140px;
  6910. height:30px;
  6911. background:inherit;
  6912. background-color:rgba(255, 255, 255, 1);
  6913. box-sizing:border-box;
  6914. border-width:1px;
  6915. border-style:solid;
  6916. border-color:rgba(215, 215, 215, 1);
  6917. border-radius:4px;
  6918. -moz-box-shadow:none;
  6919. -webkit-box-shadow:none;
  6920. box-shadow:none;
  6921. font-size:12px;
  6922. }
  6923. #u14077 {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:1100px;
  6927. top:155px;
  6928. width:140px;
  6929. height:30px;
  6930. display:flex;
  6931. font-size:12px;
  6932. }
  6933. #u14077 .text {
  6934. position:absolute;
  6935. align-self:center;
  6936. padding:2px 2px 2px 2px;
  6937. box-sizing:border-box;
  6938. width:100%;
  6939. }
  6940. #u14077_text {
  6941. border-width:0px;
  6942. word-wrap:break-word;
  6943. text-transform:none;
  6944. visibility:hidden;
  6945. }
  6946. #u14078_input {
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:134px;
  6951. height:23px;
  6952. padding:2px 2px 2px 2px;
  6953. font-family:'ArialMT', 'Arial', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:12px;
  6957. letter-spacing:normal;
  6958. color:#AAAAAA;
  6959. vertical-align:none;
  6960. text-align:left;
  6961. text-transform:none;
  6962. background-color:transparent;
  6963. border-color:transparent;
  6964. }
  6965. #u14078_input.disabled {
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:134px;
  6970. height:23px;
  6971. padding:2px 2px 2px 2px;
  6972. font-family:'ArialMT', 'Arial', sans-serif;
  6973. font-weight:400;
  6974. font-style:normal;
  6975. font-size:12px;
  6976. letter-spacing:normal;
  6977. color:#AAAAAA;
  6978. vertical-align:none;
  6979. text-align:left;
  6980. text-transform:none;
  6981. background-color:transparent;
  6982. border-color:transparent;
  6983. }
  6984. #u14078_div {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:134px;
  6990. height:23px;
  6991. background:inherit;
  6992. background-color:rgba(255, 255, 255, 1);
  6993. border:none;
  6994. border-radius:0px;
  6995. -moz-box-shadow:none;
  6996. -webkit-box-shadow:none;
  6997. box-shadow:none;
  6998. font-size:12px;
  6999. color:#AAAAAA;
  7000. }
  7001. #u14078 {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:1104px;
  7005. top:157px;
  7006. width:134px;
  7007. height:23px;
  7008. display:flex;
  7009. font-size:12px;
  7010. color:#AAAAAA;
  7011. }
  7012. #u14078 .text {
  7013. position:absolute;
  7014. align-self:flex-start;
  7015. padding:2px 2px 2px 2px;
  7016. box-sizing:border-box;
  7017. width:100%;
  7018. }
  7019. #u14078_div.disabled {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:134px;
  7025. height:23px;
  7026. background:inherit;
  7027. background-color:rgba(240, 240, 240, 1);
  7028. border:none;
  7029. border-radius:0px;
  7030. -moz-box-shadow:none;
  7031. -webkit-box-shadow:none;
  7032. box-shadow:none;
  7033. font-size:12px;
  7034. color:#AAAAAA;
  7035. }
  7036. #u14078.disabled {
  7037. }
  7038. .u14078_input_option {
  7039. font-size:12px;
  7040. }
  7041. #u14079_div {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:0px;
  7045. top:0px;
  7046. width:60px;
  7047. height:30px;
  7048. background:inherit;
  7049. background-color:rgba(255, 255, 255, 1);
  7050. box-sizing:border-box;
  7051. border-width:1px;
  7052. border-style:solid;
  7053. border-color:rgba(170, 170, 170, 1);
  7054. border-radius:4px;
  7055. -moz-box-shadow:none;
  7056. -webkit-box-shadow:none;
  7057. box-shadow:none;
  7058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:14px;
  7062. }
  7063. #u14079 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:1508px;
  7067. top:60px;
  7068. width:60px;
  7069. height:30px;
  7070. display:flex;
  7071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:14px;
  7075. }
  7076. #u14079 .text {
  7077. position:absolute;
  7078. align-self:center;
  7079. padding:2px 2px 2px 2px;
  7080. box-sizing:border-box;
  7081. width:100%;
  7082. }
  7083. #u14079_text {
  7084. border-width:0px;
  7085. word-wrap:break-word;
  7086. text-transform:none;
  7087. }
  7088. #u14080 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:0px;
  7092. top:0px;
  7093. width:0px;
  7094. height:0px;
  7095. }
  7096. #u14081_div {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:140px;
  7102. height:30px;
  7103. background:inherit;
  7104. background-color:rgba(255, 255, 255, 1);
  7105. box-sizing:border-box;
  7106. border-width:1px;
  7107. border-style:solid;
  7108. border-color:rgba(215, 215, 215, 1);
  7109. border-radius:4px;
  7110. -moz-box-shadow:none;
  7111. -webkit-box-shadow:none;
  7112. box-shadow:none;
  7113. font-size:12px;
  7114. }
  7115. #u14081 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:1400px;
  7119. top:155px;
  7120. width:140px;
  7121. height:30px;
  7122. display:flex;
  7123. font-size:12px;
  7124. }
  7125. #u14081 .text {
  7126. position:absolute;
  7127. align-self:center;
  7128. padding:2px 2px 2px 2px;
  7129. box-sizing:border-box;
  7130. width:100%;
  7131. }
  7132. #u14081_text {
  7133. border-width:0px;
  7134. word-wrap:break-word;
  7135. text-transform:none;
  7136. visibility:hidden;
  7137. }
  7138. #u14082_input {
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:134px;
  7143. height:23px;
  7144. padding:2px 2px 2px 2px;
  7145. font-family:'ArialMT', 'Arial', sans-serif;
  7146. font-weight:400;
  7147. font-style:normal;
  7148. font-size:12px;
  7149. letter-spacing:normal;
  7150. color:#AAAAAA;
  7151. vertical-align:none;
  7152. text-align:left;
  7153. text-transform:none;
  7154. background-color:transparent;
  7155. border-color:transparent;
  7156. }
  7157. #u14082_input.disabled {
  7158. position:absolute;
  7159. left:0px;
  7160. top:0px;
  7161. width:134px;
  7162. height:23px;
  7163. padding:2px 2px 2px 2px;
  7164. font-family:'ArialMT', 'Arial', sans-serif;
  7165. font-weight:400;
  7166. font-style:normal;
  7167. font-size:12px;
  7168. letter-spacing:normal;
  7169. color:#AAAAAA;
  7170. vertical-align:none;
  7171. text-align:left;
  7172. text-transform:none;
  7173. background-color:transparent;
  7174. border-color:transparent;
  7175. }
  7176. #u14082_div {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:134px;
  7182. height:23px;
  7183. background:inherit;
  7184. background-color:rgba(255, 255, 255, 1);
  7185. border:none;
  7186. border-radius:0px;
  7187. -moz-box-shadow:none;
  7188. -webkit-box-shadow:none;
  7189. box-shadow:none;
  7190. font-size:12px;
  7191. color:#AAAAAA;
  7192. }
  7193. #u14082 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:1404px;
  7197. top:157px;
  7198. width:134px;
  7199. height:23px;
  7200. display:flex;
  7201. font-size:12px;
  7202. color:#AAAAAA;
  7203. }
  7204. #u14082 .text {
  7205. position:absolute;
  7206. align-self:flex-start;
  7207. padding:2px 2px 2px 2px;
  7208. box-sizing:border-box;
  7209. width:100%;
  7210. }
  7211. #u14082_div.disabled {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:134px;
  7217. height:23px;
  7218. background:inherit;
  7219. background-color:rgba(240, 240, 240, 1);
  7220. border:none;
  7221. border-radius:0px;
  7222. -moz-box-shadow:none;
  7223. -webkit-box-shadow:none;
  7224. box-shadow:none;
  7225. font-size:12px;
  7226. color:#AAAAAA;
  7227. }
  7228. #u14082.disabled {
  7229. }
  7230. .u14082_input_option {
  7231. font-size:12px;
  7232. }
  7233. #u14083 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:0px;
  7237. top:0px;
  7238. width:0px;
  7239. height:0px;
  7240. }
  7241. #u14084_div {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:140px;
  7247. height:30px;
  7248. background:inherit;
  7249. background-color:rgba(255, 255, 255, 1);
  7250. box-sizing:border-box;
  7251. border-width:1px;
  7252. border-style:solid;
  7253. border-color:rgba(201, 201, 201, 1);
  7254. border-radius:4px;
  7255. -moz-box-shadow:none;
  7256. -webkit-box-shadow:none;
  7257. box-shadow:none;
  7258. font-family:'Microsoft YaHei', sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:14px;
  7262. color:#CCCCCC;
  7263. text-align:left;
  7264. }
  7265. #u14084 {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:500px;
  7269. top:155px;
  7270. width:140px;
  7271. height:30px;
  7272. display:flex;
  7273. font-family:'Microsoft YaHei', sans-serif;
  7274. font-weight:400;
  7275. font-style:normal;
  7276. font-size:14px;
  7277. color:#CCCCCC;
  7278. text-align:left;
  7279. }
  7280. #u14084 .text {
  7281. position:absolute;
  7282. align-self:center;
  7283. padding:2px 8px 2px 8px;
  7284. box-sizing:border-box;
  7285. width:100%;
  7286. }
  7287. #u14084_text {
  7288. border-width:0px;
  7289. word-wrap:break-word;
  7290. text-transform:none;
  7291. visibility:hidden;
  7292. }
  7293. #u14085_input {
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:127px;
  7298. height:25px;
  7299. padding:2px 2px 2px 2px;
  7300. font-family:'Microsoft YaHei', sans-serif;
  7301. font-weight:400;
  7302. font-style:normal;
  7303. font-size:10px;
  7304. letter-spacing:normal;
  7305. color:#000000;
  7306. vertical-align:none;
  7307. text-align:left;
  7308. text-transform:none;
  7309. background-color:transparent;
  7310. border-color:transparent;
  7311. }
  7312. #u14085_input.disabled {
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:127px;
  7317. height:25px;
  7318. padding:2px 2px 2px 2px;
  7319. font-family:'Microsoft YaHei', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:10px;
  7323. letter-spacing:normal;
  7324. color:#000000;
  7325. vertical-align:none;
  7326. text-align:left;
  7327. text-transform:none;
  7328. background-color:transparent;
  7329. border-color:transparent;
  7330. }
  7331. #u14085_div {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:127px;
  7337. height:25px;
  7338. background:inherit;
  7339. background-color:rgba(255, 255, 255, 1);
  7340. border:none;
  7341. border-radius:0px;
  7342. -moz-box-shadow:none;
  7343. -webkit-box-shadow:none;
  7344. box-shadow:none;
  7345. font-family:'Microsoft YaHei', sans-serif;
  7346. font-weight:400;
  7347. font-style:normal;
  7348. font-size:10px;
  7349. }
  7350. #u14085 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:508px;
  7354. top:156px;
  7355. width:127px;
  7356. height:25px;
  7357. display:flex;
  7358. font-family:'Microsoft YaHei', sans-serif;
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:10px;
  7362. }
  7363. #u14085 .text {
  7364. position:absolute;
  7365. align-self:center;
  7366. padding:2px 2px 2px 2px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u14085_div.disabled {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:127px;
  7376. height:25px;
  7377. background:inherit;
  7378. background-color:rgba(240, 240, 240, 1);
  7379. border:none;
  7380. border-radius:0px;
  7381. -moz-box-shadow:none;
  7382. -webkit-box-shadow:none;
  7383. box-shadow:none;
  7384. font-family:'Microsoft YaHei', sans-serif;
  7385. font-weight:400;
  7386. font-style:normal;
  7387. font-size:10px;
  7388. }
  7389. #u14085.disabled {
  7390. }
  7391. #u14087 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:0px;
  7397. height:0px;
  7398. }
  7399. #u14088_div {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:200px;
  7405. height:1190px;
  7406. background:inherit;
  7407. background-color:rgba(255, 255, 255, 1);
  7408. border:none;
  7409. border-radius:0px;
  7410. -moz-box-shadow:none;
  7411. -webkit-box-shadow:none;
  7412. box-shadow:none;
  7413. }
  7414. #u14088 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:120px;
  7418. top:50px;
  7419. width:200px;
  7420. height:1190px;
  7421. display:flex;
  7422. }
  7423. #u14088 .text {
  7424. position:absolute;
  7425. align-self:center;
  7426. padding:2px 2px 2px 2px;
  7427. box-sizing:border-box;
  7428. width:100%;
  7429. }
  7430. #u14088_text {
  7431. border-width:0px;
  7432. word-wrap:break-word;
  7433. text-transform:none;
  7434. visibility:hidden;
  7435. }
  7436. #u14089_div {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:200px;
  7442. height:60px;
  7443. background:inherit;
  7444. background-color:rgba(224, 231, 247, 1);
  7445. border:none;
  7446. border-radius:0px;
  7447. -moz-box-shadow:none;
  7448. -webkit-box-shadow:none;
  7449. box-shadow:none;
  7450. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7451. font-weight:500;
  7452. font-style:normal;
  7453. font-size:18px;
  7454. }
  7455. #u14089 {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:120px;
  7459. top:50px;
  7460. width:200px;
  7461. height:60px;
  7462. display:flex;
  7463. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7464. font-weight:500;
  7465. font-style:normal;
  7466. font-size:18px;
  7467. }
  7468. #u14089 .text {
  7469. position:absolute;
  7470. align-self:center;
  7471. padding:0px 0px 0px 20px;
  7472. box-sizing:border-box;
  7473. width:100%;
  7474. }
  7475. #u14089_text {
  7476. border-width:0px;
  7477. word-wrap:break-word;
  7478. text-transform:none;
  7479. }
  7480. #u14090_div {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:0px;
  7484. top:0px;
  7485. width:65px;
  7486. height:22px;
  7487. background:inherit;
  7488. background-color:rgba(255, 255, 255, 0);
  7489. border:none;
  7490. border-radius:0px;
  7491. -moz-box-shadow:none;
  7492. -webkit-box-shadow:none;
  7493. box-shadow:none;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:16px;
  7498. }
  7499. #u14090 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:145px;
  7503. top:576px;
  7504. width:65px;
  7505. height:22px;
  7506. display:flex;
  7507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7508. font-weight:400;
  7509. font-style:normal;
  7510. font-size:16px;
  7511. }
  7512. #u14090 .text {
  7513. position:absolute;
  7514. align-self:flex-start;
  7515. padding:0px 0px 0px 0px;
  7516. box-sizing:border-box;
  7517. width:100%;
  7518. }
  7519. #u14090_text {
  7520. border-width:0px;
  7521. white-space:nowrap;
  7522. text-transform:none;
  7523. }
  7524. #u14091_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:49px;
  7530. height:17px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 0);
  7533. border:none;
  7534. border-radius:0px;
  7535. -moz-box-shadow:none;
  7536. -webkit-box-shadow:none;
  7537. box-shadow:none;
  7538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:12px;
  7542. color:#AAAAAA;
  7543. }
  7544. #u14091 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:143px;
  7548. top:539px;
  7549. width:49px;
  7550. height:17px;
  7551. display:flex;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:12px;
  7556. color:#AAAAAA;
  7557. }
  7558. #u14091 .text {
  7559. position:absolute;
  7560. align-self:flex-start;
  7561. padding:0px 0px 0px 0px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u14091_text {
  7566. border-width:0px;
  7567. white-space:nowrap;
  7568. text-transform:none;
  7569. }
  7570. #u14092_div {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:49px;
  7576. height:17px;
  7577. background:inherit;
  7578. background-color:rgba(255, 255, 255, 0);
  7579. border:none;
  7580. border-radius:0px;
  7581. -moz-box-shadow:none;
  7582. -webkit-box-shadow:none;
  7583. box-shadow:none;
  7584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:12px;
  7588. color:#AAAAAA;
  7589. }
  7590. #u14092 {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:144px;
  7594. top:131px;
  7595. width:49px;
  7596. height:17px;
  7597. display:flex;
  7598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7599. font-weight:400;
  7600. font-style:normal;
  7601. font-size:12px;
  7602. color:#AAAAAA;
  7603. }
  7604. #u14092 .text {
  7605. position:absolute;
  7606. align-self:flex-start;
  7607. padding:0px 0px 0px 0px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u14092_text {
  7612. border-width:0px;
  7613. white-space:nowrap;
  7614. text-transform:none;
  7615. }
  7616. #u14093_div {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:65px;
  7622. height:22px;
  7623. background:inherit;
  7624. background-color:rgba(255, 255, 255, 0);
  7625. border:none;
  7626. border-radius:0px;
  7627. -moz-box-shadow:none;
  7628. -webkit-box-shadow:none;
  7629. box-shadow:none;
  7630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:16px;
  7634. }
  7635. #u14093 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:146px;
  7639. top:168px;
  7640. width:65px;
  7641. height:22px;
  7642. display:flex;
  7643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:16px;
  7647. }
  7648. #u14093 .text {
  7649. position:absolute;
  7650. align-self:flex-start;
  7651. padding:0px 0px 0px 0px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u14093_text {
  7656. border-width:0px;
  7657. white-space:nowrap;
  7658. text-transform:none;
  7659. }
  7660. #u14094_img {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:201px;
  7666. height:2px;
  7667. }
  7668. #u14094 {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:120px;
  7672. top:518px;
  7673. width:200px;
  7674. height:1px;
  7675. display:flex;
  7676. }
  7677. #u14094 .text {
  7678. position:absolute;
  7679. align-self:center;
  7680. padding:2px 2px 2px 2px;
  7681. box-sizing:border-box;
  7682. width:100%;
  7683. }
  7684. #u14094_text {
  7685. border-width:0px;
  7686. word-wrap:break-word;
  7687. text-transform:none;
  7688. visibility:hidden;
  7689. }
  7690. #u14095_div {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:0px;
  7694. top:0px;
  7695. width:65px;
  7696. height:22px;
  7697. background:inherit;
  7698. background-color:rgba(255, 255, 255, 0);
  7699. border:none;
  7700. border-radius:0px;
  7701. -moz-box-shadow:none;
  7702. -webkit-box-shadow:none;
  7703. box-shadow:none;
  7704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7705. font-weight:400;
  7706. font-style:normal;
  7707. font-size:16px;
  7708. }
  7709. #u14095 {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:145px;
  7713. top:618px;
  7714. width:65px;
  7715. height:22px;
  7716. display:flex;
  7717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7718. font-weight:400;
  7719. font-style:normal;
  7720. font-size:16px;
  7721. }
  7722. #u14095 .text {
  7723. position:absolute;
  7724. align-self:flex-start;
  7725. padding:0px 0px 0px 0px;
  7726. box-sizing:border-box;
  7727. width:100%;
  7728. }
  7729. #u14095_text {
  7730. border-width:0px;
  7731. white-space:nowrap;
  7732. text-transform:none;
  7733. }
  7734. #u14096_div {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:49px;
  7740. height:17px;
  7741. background:inherit;
  7742. background-color:rgba(255, 255, 255, 0);
  7743. border:none;
  7744. border-radius:0px;
  7745. -moz-box-shadow:none;
  7746. -webkit-box-shadow:none;
  7747. box-shadow:none;
  7748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:12px;
  7752. color:#AAAAAA;
  7753. }
  7754. #u14096 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:144px;
  7758. top:355px;
  7759. width:49px;
  7760. height:17px;
  7761. display:flex;
  7762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:12px;
  7766. color:#AAAAAA;
  7767. }
  7768. #u14096 .text {
  7769. position:absolute;
  7770. align-self:flex-start;
  7771. padding:0px 0px 0px 0px;
  7772. box-sizing:border-box;
  7773. width:100%;
  7774. }
  7775. #u14096_text {
  7776. border-width:0px;
  7777. white-space:nowrap;
  7778. text-transform:none;
  7779. }
  7780. #u14097_img {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:201px;
  7786. height:2px;
  7787. }
  7788. #u14097 {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:121px;
  7792. top:334px;
  7793. width:200px;
  7794. height:1px;
  7795. display:flex;
  7796. }
  7797. #u14097 .text {
  7798. position:absolute;
  7799. align-self:center;
  7800. padding:2px 2px 2px 2px;
  7801. box-sizing:border-box;
  7802. width:100%;
  7803. }
  7804. #u14097_text {
  7805. border-width:0px;
  7806. word-wrap:break-word;
  7807. text-transform:none;
  7808. visibility:hidden;
  7809. }
  7810. #u14098_div {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:65px;
  7816. height:22px;
  7817. background:inherit;
  7818. background-color:rgba(255, 255, 255, 0);
  7819. border:none;
  7820. border-radius:0px;
  7821. -moz-box-shadow:none;
  7822. -webkit-box-shadow:none;
  7823. box-shadow:none;
  7824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:16px;
  7828. }
  7829. #u14098 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:146px;
  7833. top:392px;
  7834. width:65px;
  7835. height:22px;
  7836. display:flex;
  7837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:16px;
  7841. }
  7842. #u14098 .text {
  7843. position:absolute;
  7844. align-self:flex-start;
  7845. padding:0px 0px 0px 0px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u14098_text {
  7850. border-width:0px;
  7851. white-space:nowrap;
  7852. text-transform:none;
  7853. }
  7854. #u14099_div {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:65px;
  7860. height:22px;
  7861. background:inherit;
  7862. background-color:rgba(255, 255, 255, 0);
  7863. border:none;
  7864. border-radius:0px;
  7865. -moz-box-shadow:none;
  7866. -webkit-box-shadow:none;
  7867. box-shadow:none;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:16px;
  7872. }
  7873. #u14099 {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:146px;
  7877. top:434px;
  7878. width:65px;
  7879. height:22px;
  7880. display:flex;
  7881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7882. font-weight:400;
  7883. font-style:normal;
  7884. font-size:16px;
  7885. }
  7886. #u14099 .text {
  7887. position:absolute;
  7888. align-self:flex-start;
  7889. padding:0px 0px 0px 0px;
  7890. box-sizing:border-box;
  7891. width:100%;
  7892. }
  7893. #u14099_text {
  7894. border-width:0px;
  7895. white-space:nowrap;
  7896. text-transform:none;
  7897. }
  7898. #u14100_div {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:0px;
  7902. top:0px;
  7903. width:65px;
  7904. height:22px;
  7905. background:inherit;
  7906. background-color:rgba(255, 255, 255, 0);
  7907. border:none;
  7908. border-radius:0px;
  7909. -moz-box-shadow:none;
  7910. -webkit-box-shadow:none;
  7911. box-shadow:none;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:16px;
  7916. }
  7917. #u14100 {
  7918. border-width:0px;
  7919. position:absolute;
  7920. left:145px;
  7921. top:926px;
  7922. width:65px;
  7923. height:22px;
  7924. display:flex;
  7925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7926. font-weight:400;
  7927. font-style:normal;
  7928. font-size:16px;
  7929. }
  7930. #u14100 .text {
  7931. position:absolute;
  7932. align-self:flex-start;
  7933. padding:0px 0px 0px 0px;
  7934. box-sizing:border-box;
  7935. width:100%;
  7936. }
  7937. #u14100_text {
  7938. border-width:0px;
  7939. white-space:nowrap;
  7940. text-transform:none;
  7941. }
  7942. #u14101_div {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:97px;
  7948. height:22px;
  7949. background:inherit;
  7950. background-color:rgba(255, 255, 255, 0);
  7951. border:none;
  7952. border-radius:0px;
  7953. -moz-box-shadow:none;
  7954. -webkit-box-shadow:none;
  7955. box-shadow:none;
  7956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7957. font-weight:400;
  7958. font-style:normal;
  7959. font-size:16px;
  7960. }
  7961. #u14101 {
  7962. border-width:0px;
  7963. position:absolute;
  7964. left:145px;
  7965. top:718px;
  7966. width:97px;
  7967. height:22px;
  7968. display:flex;
  7969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:16px;
  7973. }
  7974. #u14101 .text {
  7975. position:absolute;
  7976. align-self:flex-start;
  7977. padding:0px 0px 0px 0px;
  7978. box-sizing:border-box;
  7979. width:100%;
  7980. }
  7981. #u14101_text {
  7982. border-width:0px;
  7983. white-space:nowrap;
  7984. text-transform:none;
  7985. }
  7986. #u14102_div {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:49px;
  7992. height:17px;
  7993. background:inherit;
  7994. background-color:rgba(255, 255, 255, 0);
  7995. border:none;
  7996. border-radius:0px;
  7997. -moz-box-shadow:none;
  7998. -webkit-box-shadow:none;
  7999. box-shadow:none;
  8000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:12px;
  8004. color:#AAAAAA;
  8005. }
  8006. #u14102 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:143px;
  8010. top:681px;
  8011. width:49px;
  8012. height:17px;
  8013. display:flex;
  8014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8015. font-weight:400;
  8016. font-style:normal;
  8017. font-size:12px;
  8018. color:#AAAAAA;
  8019. }
  8020. #u14102 .text {
  8021. position:absolute;
  8022. align-self:flex-start;
  8023. padding:0px 0px 0px 0px;
  8024. box-sizing:border-box;
  8025. width:100%;
  8026. }
  8027. #u14102_text {
  8028. border-width:0px;
  8029. white-space:nowrap;
  8030. text-transform:none;
  8031. }
  8032. #u14103_img {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:201px;
  8038. height:2px;
  8039. }
  8040. #u14103 {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:120px;
  8044. top:660px;
  8045. width:200px;
  8046. height:1px;
  8047. display:flex;
  8048. }
  8049. #u14103 .text {
  8050. position:absolute;
  8051. align-self:center;
  8052. padding:2px 2px 2px 2px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u14103_text {
  8057. border-width:0px;
  8058. word-wrap:break-word;
  8059. text-transform:none;
  8060. visibility:hidden;
  8061. }
  8062. #u14104_div {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:0px;
  8066. top:0px;
  8067. width:97px;
  8068. height:22px;
  8069. background:inherit;
  8070. background-color:rgba(255, 255, 255, 0);
  8071. border:none;
  8072. border-radius:0px;
  8073. -moz-box-shadow:none;
  8074. -webkit-box-shadow:none;
  8075. box-shadow:none;
  8076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8077. font-weight:400;
  8078. font-style:normal;
  8079. font-size:16px;
  8080. }
  8081. #u14104 {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:145px;
  8085. top:800px;
  8086. width:97px;
  8087. height:22px;
  8088. display:flex;
  8089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8090. font-weight:400;
  8091. font-style:normal;
  8092. font-size:16px;
  8093. }
  8094. #u14104 .text {
  8095. position:absolute;
  8096. align-self:flex-start;
  8097. padding:0px 0px 0px 0px;
  8098. box-sizing:border-box;
  8099. width:100%;
  8100. }
  8101. #u14104_text {
  8102. border-width:0px;
  8103. white-space:nowrap;
  8104. text-transform:none;
  8105. }
  8106. #u14105_div {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:0px;
  8110. top:0px;
  8111. width:97px;
  8112. height:22px;
  8113. background:inherit;
  8114. background-color:rgba(255, 255, 255, 0);
  8115. border:none;
  8116. border-radius:0px;
  8117. -moz-box-shadow:none;
  8118. -webkit-box-shadow:none;
  8119. box-shadow:none;
  8120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:16px;
  8124. }
  8125. #u14105 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:145px;
  8129. top:842px;
  8130. width:97px;
  8131. height:22px;
  8132. display:flex;
  8133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8134. font-weight:400;
  8135. font-style:normal;
  8136. font-size:16px;
  8137. }
  8138. #u14105 .text {
  8139. position:absolute;
  8140. align-self:flex-start;
  8141. padding:0px 0px 0px 0px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u14105_text {
  8146. border-width:0px;
  8147. white-space:nowrap;
  8148. text-transform:none;
  8149. }
  8150. #u14106_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:65px;
  8156. height:22px;
  8157. background:inherit;
  8158. background-color:rgba(255, 255, 255, 0);
  8159. border:none;
  8160. border-radius:0px;
  8161. -moz-box-shadow:none;
  8162. -webkit-box-shadow:none;
  8163. box-shadow:none;
  8164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8165. font-weight:400;
  8166. font-style:normal;
  8167. font-size:16px;
  8168. }
  8169. #u14106 {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:145px;
  8173. top:1026px;
  8174. width:65px;
  8175. height:22px;
  8176. display:flex;
  8177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8178. font-weight:400;
  8179. font-style:normal;
  8180. font-size:16px;
  8181. }
  8182. #u14106 .text {
  8183. position:absolute;
  8184. align-self:flex-start;
  8185. padding:0px 0px 0px 0px;
  8186. box-sizing:border-box;
  8187. width:100%;
  8188. }
  8189. #u14106_text {
  8190. border-width:0px;
  8191. white-space:nowrap;
  8192. text-transform:none;
  8193. }
  8194. #u14107_div {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:0px;
  8198. top:0px;
  8199. width:49px;
  8200. height:17px;
  8201. background:inherit;
  8202. background-color:rgba(255, 255, 255, 0);
  8203. border:none;
  8204. border-radius:0px;
  8205. -moz-box-shadow:none;
  8206. -webkit-box-shadow:none;
  8207. box-shadow:none;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:12px;
  8212. color:#AAAAAA;
  8213. }
  8214. #u14107 {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:143px;
  8218. top:989px;
  8219. width:49px;
  8220. height:17px;
  8221. display:flex;
  8222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8223. font-weight:400;
  8224. font-style:normal;
  8225. font-size:12px;
  8226. color:#AAAAAA;
  8227. }
  8228. #u14107 .text {
  8229. position:absolute;
  8230. align-self:flex-start;
  8231. padding:0px 0px 0px 0px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u14107_text {
  8236. border-width:0px;
  8237. white-space:nowrap;
  8238. text-transform:none;
  8239. }
  8240. #u14108_img {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:201px;
  8246. height:2px;
  8247. }
  8248. #u14108 {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:120px;
  8252. top:968px;
  8253. width:200px;
  8254. height:1px;
  8255. display:flex;
  8256. }
  8257. #u14108 .text {
  8258. position:absolute;
  8259. align-self:center;
  8260. padding:2px 2px 2px 2px;
  8261. box-sizing:border-box;
  8262. width:100%;
  8263. }
  8264. #u14108_text {
  8265. border-width:0px;
  8266. word-wrap:break-word;
  8267. text-transform:none;
  8268. visibility:hidden;
  8269. }
  8270. #u14109_div {
  8271. border-width:0px;
  8272. position:absolute;
  8273. left:0px;
  8274. top:0px;
  8275. width:65px;
  8276. height:22px;
  8277. background:inherit;
  8278. background-color:rgba(255, 255, 255, 0);
  8279. border:none;
  8280. border-radius:0px;
  8281. -moz-box-shadow:none;
  8282. -webkit-box-shadow:none;
  8283. box-shadow:none;
  8284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8285. font-weight:400;
  8286. font-style:normal;
  8287. font-size:16px;
  8288. }
  8289. #u14109 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:145px;
  8293. top:1068px;
  8294. width:65px;
  8295. height:22px;
  8296. display:flex;
  8297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8298. font-weight:400;
  8299. font-style:normal;
  8300. font-size:16px;
  8301. }
  8302. #u14109 .text {
  8303. position:absolute;
  8304. align-self:flex-start;
  8305. padding:0px 0px 0px 0px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u14109_text {
  8310. border-width:0px;
  8311. white-space:nowrap;
  8312. text-transform:none;
  8313. }
  8314. #u14110_div {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:0px;
  8318. top:0px;
  8319. width:97px;
  8320. height:22px;
  8321. background:inherit;
  8322. background-color:rgba(255, 255, 255, 0);
  8323. border:none;
  8324. border-radius:0px;
  8325. -moz-box-shadow:none;
  8326. -webkit-box-shadow:none;
  8327. box-shadow:none;
  8328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8329. font-weight:400;
  8330. font-style:normal;
  8331. font-size:16px;
  8332. }
  8333. #u14110 {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:145px;
  8337. top:884px;
  8338. width:97px;
  8339. height:22px;
  8340. display:flex;
  8341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8342. font-weight:400;
  8343. font-style:normal;
  8344. font-size:16px;
  8345. }
  8346. #u14110 .text {
  8347. position:absolute;
  8348. align-self:flex-start;
  8349. padding:0px 0px 0px 0px;
  8350. box-sizing:border-box;
  8351. width:100%;
  8352. }
  8353. #u14110_text {
  8354. border-width:0px;
  8355. white-space:nowrap;
  8356. text-transform:none;
  8357. }
  8358. #u14111_div {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:0px;
  8362. top:0px;
  8363. width:81px;
  8364. height:22px;
  8365. background:inherit;
  8366. background-color:rgba(255, 255, 255, 0);
  8367. border:none;
  8368. border-radius:0px;
  8369. -moz-box-shadow:none;
  8370. -webkit-box-shadow:none;
  8371. box-shadow:none;
  8372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8373. font-weight:400;
  8374. font-style:normal;
  8375. font-size:16px;
  8376. }
  8377. #u14111 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:146px;
  8381. top:476px;
  8382. width:81px;
  8383. height:22px;
  8384. display:flex;
  8385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:16px;
  8389. }
  8390. #u14111 .text {
  8391. position:absolute;
  8392. align-self:flex-start;
  8393. padding:0px 0px 0px 0px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u14111_text {
  8398. border-width:0px;
  8399. white-space:nowrap;
  8400. text-transform:none;
  8401. }
  8402. #u14112_div {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:97px;
  8408. height:22px;
  8409. background:inherit;
  8410. background-color:rgba(255, 255, 255, 0);
  8411. border:none;
  8412. border-radius:0px;
  8413. -moz-box-shadow:none;
  8414. -webkit-box-shadow:none;
  8415. box-shadow:none;
  8416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:16px;
  8420. }
  8421. #u14112 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:145px;
  8425. top:760px;
  8426. width:97px;
  8427. height:22px;
  8428. display:flex;
  8429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:16px;
  8433. }
  8434. #u14112 .text {
  8435. position:absolute;
  8436. align-self:flex-start;
  8437. padding:0px 0px 0px 0px;
  8438. box-sizing:border-box;
  8439. width:100%;
  8440. }
  8441. #u14112_text {
  8442. border-width:0px;
  8443. white-space:nowrap;
  8444. text-transform:none;
  8445. }
  8446. #u14113_div {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:65px;
  8452. height:22px;
  8453. background:inherit;
  8454. background-color:rgba(255, 255, 255, 0);
  8455. border:none;
  8456. border-radius:0px;
  8457. -moz-box-shadow:none;
  8458. -webkit-box-shadow:none;
  8459. box-shadow:none;
  8460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8461. font-weight:400;
  8462. font-style:normal;
  8463. font-size:16px;
  8464. }
  8465. #u14113 {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:145px;
  8469. top:210px;
  8470. width:65px;
  8471. height:22px;
  8472. display:flex;
  8473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8474. font-weight:400;
  8475. font-style:normal;
  8476. font-size:16px;
  8477. }
  8478. #u14113 .text {
  8479. position:absolute;
  8480. align-self:flex-start;
  8481. padding:0px 0px 0px 0px;
  8482. box-sizing:border-box;
  8483. width:100%;
  8484. }
  8485. #u14113_text {
  8486. border-width:0px;
  8487. white-space:nowrap;
  8488. text-transform:none;
  8489. }
  8490. #u14114_div {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:81px;
  8496. height:22px;
  8497. background:inherit;
  8498. background-color:rgba(255, 255, 255, 0);
  8499. border:none;
  8500. border-radius:0px;
  8501. -moz-box-shadow:none;
  8502. -webkit-box-shadow:none;
  8503. box-shadow:none;
  8504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8505. font-weight:400;
  8506. font-style:normal;
  8507. font-size:16px;
  8508. }
  8509. #u14114 {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:146px;
  8513. top:252px;
  8514. width:81px;
  8515. height:22px;
  8516. display:flex;
  8517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8518. font-weight:400;
  8519. font-style:normal;
  8520. font-size:16px;
  8521. }
  8522. #u14114 .text {
  8523. position:absolute;
  8524. align-self:flex-start;
  8525. padding:0px 0px 0px 0px;
  8526. box-sizing:border-box;
  8527. width:100%;
  8528. }
  8529. #u14114_text {
  8530. border-width:0px;
  8531. white-space:nowrap;
  8532. text-transform:none;
  8533. }
  8534. #u14115_div {
  8535. border-width:0px;
  8536. position:absolute;
  8537. left:0px;
  8538. top:0px;
  8539. width:65px;
  8540. height:22px;
  8541. background:inherit;
  8542. background-color:rgba(255, 255, 255, 0);
  8543. border:none;
  8544. border-radius:0px;
  8545. -moz-box-shadow:none;
  8546. -webkit-box-shadow:none;
  8547. box-shadow:none;
  8548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8549. font-weight:400;
  8550. font-style:normal;
  8551. font-size:16px;
  8552. }
  8553. #u14115 {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:146px;
  8557. top:294px;
  8558. width:65px;
  8559. height:22px;
  8560. display:flex;
  8561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:16px;
  8565. }
  8566. #u14115 .text {
  8567. position:absolute;
  8568. align-self:flex-start;
  8569. padding:0px 0px 0px 0px;
  8570. box-sizing:border-box;
  8571. width:100%;
  8572. }
  8573. #u14115_text {
  8574. border-width:0px;
  8575. white-space:nowrap;
  8576. text-transform:none;
  8577. }
  8578. #u14116_div {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:693px;
  8584. height:30px;
  8585. background:inherit;
  8586. background-color:rgba(255, 255, 255, 0);
  8587. border:none;
  8588. border-left:0px;
  8589. border-top:0px;
  8590. border-right:0px;
  8591. border-radius:0px;
  8592. border-bottom-right-radius:0px;
  8593. border-bottom-left-radius:0px;
  8594. -moz-box-shadow:none;
  8595. -webkit-box-shadow:none;
  8596. box-shadow:none;
  8597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8598. font-weight:400;
  8599. font-style:normal;
  8600. font-size:14px;
  8601. color:#7F7F7F;
  8602. line-height:30px;
  8603. }
  8604. #u14116 {
  8605. border-width:0px;
  8606. position:absolute;
  8607. left:352px;
  8608. top:105px;
  8609. width:693px;
  8610. height:30px;
  8611. display:flex;
  8612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8613. font-weight:400;
  8614. font-style:normal;
  8615. font-size:14px;
  8616. color:#7F7F7F;
  8617. line-height:30px;
  8618. }
  8619. #u14116 .text {
  8620. position:absolute;
  8621. align-self:center;
  8622. padding:0px 0px 0px 0px;
  8623. box-sizing:border-box;
  8624. width:100%;
  8625. }
  8626. #u14116_text {
  8627. border-width:0px;
  8628. white-space:nowrap;
  8629. text-transform:none;
  8630. }
  8631. #u14117_div {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:0px;
  8635. top:0px;
  8636. width:91px;
  8637. height:50px;
  8638. background:inherit;
  8639. background-color:rgba(255, 255, 255, 0);
  8640. border:none;
  8641. border-left:0px;
  8642. border-top:0px;
  8643. border-right:0px;
  8644. border-radius:0px;
  8645. border-bottom-right-radius:0px;
  8646. border-bottom-left-radius:0px;
  8647. -moz-box-shadow:none;
  8648. -webkit-box-shadow:none;
  8649. box-shadow:none;
  8650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8651. font-weight:400;
  8652. font-style:normal;
  8653. font-size:18px;
  8654. }
  8655. #u14117 {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:350px;
  8659. top:50px;
  8660. width:91px;
  8661. height:50px;
  8662. display:flex;
  8663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8664. font-weight:400;
  8665. font-style:normal;
  8666. font-size:18px;
  8667. }
  8668. #u14117 .text {
  8669. position:absolute;
  8670. align-self:center;
  8671. padding:0px 0px 0px 0px;
  8672. box-sizing:border-box;
  8673. width:100%;
  8674. }
  8675. #u14117_text {
  8676. border-width:0px;
  8677. white-space:nowrap;
  8678. text-transform:none;
  8679. }
  8680. #u14118 {
  8681. border-width:0px;
  8682. position:absolute;
  8683. left:0px;
  8684. top:0px;
  8685. width:0px;
  8686. height:0px;
  8687. }
  8688. #u14119_div {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:140px;
  8694. height:30px;
  8695. background:inherit;
  8696. background-color:rgba(255, 255, 255, 1);
  8697. box-sizing:border-box;
  8698. border-width:1px;
  8699. border-style:solid;
  8700. border-color:rgba(215, 215, 215, 1);
  8701. border-radius:4px;
  8702. -moz-box-shadow:none;
  8703. -webkit-box-shadow:none;
  8704. box-shadow:none;
  8705. font-size:12px;
  8706. }
  8707. #u14119 {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:350px;
  8711. top:155px;
  8712. width:140px;
  8713. height:30px;
  8714. display:flex;
  8715. font-size:12px;
  8716. }
  8717. #u14119 .text {
  8718. position:absolute;
  8719. align-self:center;
  8720. padding:2px 2px 2px 2px;
  8721. box-sizing:border-box;
  8722. width:100%;
  8723. }
  8724. #u14119_text {
  8725. border-width:0px;
  8726. word-wrap:break-word;
  8727. text-transform:none;
  8728. visibility:hidden;
  8729. }
  8730. #u14120_input {
  8731. position:absolute;
  8732. left:0px;
  8733. top:0px;
  8734. width:134px;
  8735. height:23px;
  8736. padding:2px 2px 2px 2px;
  8737. font-family:'ArialMT', 'Arial', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:12px;
  8741. letter-spacing:normal;
  8742. color:#AAAAAA;
  8743. vertical-align:none;
  8744. text-align:left;
  8745. text-transform:none;
  8746. background-color:transparent;
  8747. border-color:transparent;
  8748. }
  8749. #u14120_input.disabled {
  8750. position:absolute;
  8751. left:0px;
  8752. top:0px;
  8753. width:134px;
  8754. height:23px;
  8755. padding:2px 2px 2px 2px;
  8756. font-family:'ArialMT', 'Arial', sans-serif;
  8757. font-weight:400;
  8758. font-style:normal;
  8759. font-size:12px;
  8760. letter-spacing:normal;
  8761. color:#AAAAAA;
  8762. vertical-align:none;
  8763. text-align:left;
  8764. text-transform:none;
  8765. background-color:transparent;
  8766. border-color:transparent;
  8767. }
  8768. #u14120_div {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:134px;
  8774. height:23px;
  8775. background:inherit;
  8776. background-color:rgba(255, 255, 255, 1);
  8777. border:none;
  8778. border-radius:0px;
  8779. -moz-box-shadow:none;
  8780. -webkit-box-shadow:none;
  8781. box-shadow:none;
  8782. font-size:12px;
  8783. color:#AAAAAA;
  8784. }
  8785. #u14120 {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:354px;
  8789. top:157px;
  8790. width:134px;
  8791. height:23px;
  8792. display:flex;
  8793. font-size:12px;
  8794. color:#AAAAAA;
  8795. }
  8796. #u14120 .text {
  8797. position:absolute;
  8798. align-self:flex-start;
  8799. padding:2px 2px 2px 2px;
  8800. box-sizing:border-box;
  8801. width:100%;
  8802. }
  8803. #u14120_div.disabled {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:134px;
  8809. height:23px;
  8810. background:inherit;
  8811. background-color:rgba(240, 240, 240, 1);
  8812. border:none;
  8813. border-radius:0px;
  8814. -moz-box-shadow:none;
  8815. -webkit-box-shadow:none;
  8816. box-shadow:none;
  8817. font-size:12px;
  8818. color:#AAAAAA;
  8819. }
  8820. #u14120.disabled {
  8821. }
  8822. .u14120_input_option {
  8823. font-size:12px;
  8824. }
  8825. #u14121_div {
  8826. border-width:0px;
  8827. position:absolute;
  8828. left:0px;
  8829. top:0px;
  8830. width:60px;
  8831. height:30px;
  8832. background:inherit;
  8833. background-color:rgba(255, 255, 255, 1);
  8834. box-sizing:border-box;
  8835. border-width:1px;
  8836. border-style:solid;
  8837. border-color:rgba(170, 170, 170, 1);
  8838. border-radius:4px;
  8839. -moz-box-shadow:none;
  8840. -webkit-box-shadow:none;
  8841. box-shadow:none;
  8842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:14px;
  8846. }
  8847. #u14121 {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:350px;
  8851. top:244px;
  8852. width:60px;
  8853. height:30px;
  8854. display:flex;
  8855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8856. font-weight:400;
  8857. font-style:normal;
  8858. font-size:14px;
  8859. }
  8860. #u14121 .text {
  8861. position:absolute;
  8862. align-self:center;
  8863. padding:2px 2px 2px 2px;
  8864. box-sizing:border-box;
  8865. width:100%;
  8866. }
  8867. #u14121_text {
  8868. border-width:0px;
  8869. word-wrap:break-word;
  8870. text-transform:none;
  8871. }
  8872. #u14122 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:0px;
  8878. height:0px;
  8879. }
  8880. #u14123 {
  8881. border-width:0px;
  8882. position:absolute;
  8883. left:0px;
  8884. top:0px;
  8885. width:0px;
  8886. height:0px;
  8887. }
  8888. #u14124_div {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:0px;
  8892. top:0px;
  8893. width:380px;
  8894. height:160px;
  8895. background:inherit;
  8896. background-color:rgba(255, 255, 255, 1);
  8897. box-sizing:border-box;
  8898. border-width:1px;
  8899. border-style:solid;
  8900. border-color:rgba(242, 242, 242, 1);
  8901. border-radius:4px;
  8902. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8903. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8904. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8905. font-family:'Microsoft YaHei', sans-serif;
  8906. font-weight:400;
  8907. font-style:normal;
  8908. }
  8909. #u14124 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:808px;
  8913. top:906px;
  8914. width:380px;
  8915. height:160px;
  8916. display:flex;
  8917. font-family:'Microsoft YaHei', sans-serif;
  8918. font-weight:400;
  8919. font-style:normal;
  8920. }
  8921. #u14124 .text {
  8922. position:absolute;
  8923. align-self:center;
  8924. padding:2px 2px 2px 2px;
  8925. box-sizing:border-box;
  8926. width:100%;
  8927. }
  8928. #u14124_text {
  8929. border-width:0px;
  8930. word-wrap:break-word;
  8931. text-transform:none;
  8932. visibility:hidden;
  8933. }
  8934. #u14125_div {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:127px;
  8940. height:21px;
  8941. background:inherit;
  8942. background-color:rgba(255, 255, 255, 0);
  8943. border:none;
  8944. border-radius:0px;
  8945. -moz-box-shadow:none;
  8946. -webkit-box-shadow:none;
  8947. box-shadow:none;
  8948. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8949. font-weight:650;
  8950. font-style:normal;
  8951. font-size:18px;
  8952. color:#000000;
  8953. line-height:22px;
  8954. }
  8955. #u14125 {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:868px;
  8959. top:931px;
  8960. width:127px;
  8961. height:21px;
  8962. display:flex;
  8963. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8964. font-weight:650;
  8965. font-style:normal;
  8966. font-size:18px;
  8967. color:#000000;
  8968. line-height:22px;
  8969. }
  8970. #u14125 .text {
  8971. position:absolute;
  8972. align-self:flex-start;
  8973. padding:0px 0px 0px 0px;
  8974. box-sizing:border-box;
  8975. width:100%;
  8976. }
  8977. #u14125_text {
  8978. border-width:0px;
  8979. white-space:nowrap;
  8980. text-transform:none;
  8981. }
  8982. #u14126_div {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:0px;
  8986. top:0px;
  8987. width:61px;
  8988. height:32px;
  8989. background:inherit;
  8990. background-color:rgba(24, 144, 255, 1);
  8991. border:none;
  8992. border-radius:4px;
  8993. -moz-box-shadow:none;
  8994. -webkit-box-shadow:none;
  8995. box-shadow:none;
  8996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8997. font-weight:400;
  8998. font-style:normal;
  8999. font-size:14px;
  9000. color:#FFFFFF;
  9001. }
  9002. #u14126 {
  9003. border-width:0px;
  9004. position:absolute;
  9005. left:1107px;
  9006. top:1018px;
  9007. width:61px;
  9008. height:32px;
  9009. display:flex;
  9010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9011. font-weight:400;
  9012. font-style:normal;
  9013. font-size:14px;
  9014. color:#FFFFFF;
  9015. }
  9016. #u14126 .text {
  9017. position:absolute;
  9018. align-self:center;
  9019. padding:2px 16px 2px 16px;
  9020. box-sizing:border-box;
  9021. width:100%;
  9022. }
  9023. #u14126_text {
  9024. border-width:0px;
  9025. white-space:nowrap;
  9026. text-transform:none;
  9027. }
  9028. #u14127_img {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:0px;
  9032. top:0px;
  9033. width:20px;
  9034. height:20px;
  9035. }
  9036. #u14127 {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:837px;
  9040. top:935px;
  9041. width:20px;
  9042. height:20px;
  9043. display:flex;
  9044. }
  9045. #u14127 .text {
  9046. position:absolute;
  9047. align-self:center;
  9048. padding:2px 2px 2px 2px;
  9049. box-sizing:border-box;
  9050. width:100%;
  9051. }
  9052. #u14127_text {
  9053. border-width:0px;
  9054. word-wrap:break-word;
  9055. text-transform:none;
  9056. visibility:hidden;
  9057. }
  9058. #u14128_div {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:0px;
  9062. top:0px;
  9063. width:300px;
  9064. height:44px;
  9065. background:inherit;
  9066. background-color:rgba(255, 255, 255, 0);
  9067. border:none;
  9068. border-radius:0px;
  9069. -moz-box-shadow:none;
  9070. -webkit-box-shadow:none;
  9071. box-shadow:none;
  9072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9073. font-weight:400;
  9074. font-style:normal;
  9075. font-size:14px;
  9076. color:#7F7F7F;
  9077. line-height:22px;
  9078. }
  9079. #u14128 {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:868px;
  9083. top:965px;
  9084. width:300px;
  9085. height:44px;
  9086. display:flex;
  9087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9088. font-weight:400;
  9089. font-style:normal;
  9090. font-size:14px;
  9091. color:#7F7F7F;
  9092. line-height:22px;
  9093. }
  9094. #u14128 .text {
  9095. position:absolute;
  9096. align-self:flex-start;
  9097. padding:0px 0px 0px 0px;
  9098. box-sizing:border-box;
  9099. width:100%;
  9100. }
  9101. #u14128_text {
  9102. border-width:0px;
  9103. word-wrap:break-word;
  9104. text-transform:none;
  9105. }
  9106. #u14129_div {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:0px;
  9110. top:0px;
  9111. width:66px;
  9112. height:32px;
  9113. background:inherit;
  9114. background-color:rgba(255, 255, 255, 1);
  9115. box-sizing:border-box;
  9116. border-width:1px;
  9117. border-style:solid;
  9118. border-color:rgba(217, 217, 217, 1);
  9119. border-radius:4px;
  9120. -moz-box-shadow:none;
  9121. -webkit-box-shadow:none;
  9122. box-shadow:none;
  9123. font-family:'Microsoft YaHei', sans-serif;
  9124. font-weight:400;
  9125. font-style:normal;
  9126. font-size:14px;
  9127. color:rgba(0, 0, 0, 0.647058823529412);
  9128. line-height:21px;
  9129. }
  9130. #u14129 {
  9131. border-width:0px;
  9132. position:absolute;
  9133. left:1024px;
  9134. top:1018px;
  9135. width:66px;
  9136. height:32px;
  9137. display:flex;
  9138. font-family:'Microsoft YaHei', sans-serif;
  9139. font-weight:400;
  9140. font-style:normal;
  9141. font-size:14px;
  9142. color:rgba(0, 0, 0, 0.647058823529412);
  9143. line-height:21px;
  9144. }
  9145. #u14129 .text {
  9146. position:absolute;
  9147. align-self:center;
  9148. padding:2px 16px 2px 16px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u14129_text {
  9153. border-width:0px;
  9154. white-space:nowrap;
  9155. text-transform:none;
  9156. }
  9157. #u14130 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:0px;
  9163. height:0px;
  9164. }
  9165. #u14131 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:0px;
  9169. top:0px;
  9170. width:0px;
  9171. height:0px;
  9172. }
  9173. #u14132_div {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:380px;
  9179. height:160px;
  9180. background:inherit;
  9181. background-color:rgba(255, 255, 255, 1);
  9182. box-sizing:border-box;
  9183. border-width:1px;
  9184. border-style:solid;
  9185. border-color:rgba(242, 242, 242, 1);
  9186. border-radius:4px;
  9187. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9188. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9189. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9190. font-family:'Microsoft YaHei', sans-serif;
  9191. font-weight:400;
  9192. font-style:normal;
  9193. }
  9194. #u14132 {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:808px;
  9198. top:468px;
  9199. width:380px;
  9200. height:160px;
  9201. display:flex;
  9202. font-family:'Microsoft YaHei', sans-serif;
  9203. font-weight:400;
  9204. font-style:normal;
  9205. }
  9206. #u14132 .text {
  9207. position:absolute;
  9208. align-self:center;
  9209. padding:2px 2px 2px 2px;
  9210. box-sizing:border-box;
  9211. width:100%;
  9212. }
  9213. #u14132_text {
  9214. border-width:0px;
  9215. word-wrap:break-word;
  9216. text-transform:none;
  9217. visibility:hidden;
  9218. }
  9219. #u14133_div {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:127px;
  9225. height:21px;
  9226. background:inherit;
  9227. background-color:rgba(255, 255, 255, 0);
  9228. border:none;
  9229. border-radius:0px;
  9230. -moz-box-shadow:none;
  9231. -webkit-box-shadow:none;
  9232. box-shadow:none;
  9233. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9234. font-weight:650;
  9235. font-style:normal;
  9236. font-size:18px;
  9237. color:#000000;
  9238. line-height:22px;
  9239. }
  9240. #u14133 {
  9241. border-width:0px;
  9242. position:absolute;
  9243. left:868px;
  9244. top:493px;
  9245. width:127px;
  9246. height:21px;
  9247. display:flex;
  9248. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9249. font-weight:650;
  9250. font-style:normal;
  9251. font-size:18px;
  9252. color:#000000;
  9253. line-height:22px;
  9254. }
  9255. #u14133 .text {
  9256. position:absolute;
  9257. align-self:flex-start;
  9258. padding:0px 0px 0px 0px;
  9259. box-sizing:border-box;
  9260. width:100%;
  9261. }
  9262. #u14133_text {
  9263. border-width:0px;
  9264. white-space:nowrap;
  9265. text-transform:none;
  9266. }
  9267. #u14134_div {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:0px;
  9271. top:0px;
  9272. width:61px;
  9273. height:32px;
  9274. background:inherit;
  9275. background-color:rgba(24, 144, 255, 1);
  9276. border:none;
  9277. border-radius:4px;
  9278. -moz-box-shadow:none;
  9279. -webkit-box-shadow:none;
  9280. box-shadow:none;
  9281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9282. font-weight:400;
  9283. font-style:normal;
  9284. font-size:14px;
  9285. color:#FFFFFF;
  9286. }
  9287. #u14134 {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:1107px;
  9291. top:580px;
  9292. width:61px;
  9293. height:32px;
  9294. display:flex;
  9295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9296. font-weight:400;
  9297. font-style:normal;
  9298. font-size:14px;
  9299. color:#FFFFFF;
  9300. }
  9301. #u14134 .text {
  9302. position:absolute;
  9303. align-self:center;
  9304. padding:2px 16px 2px 16px;
  9305. box-sizing:border-box;
  9306. width:100%;
  9307. }
  9308. #u14134_text {
  9309. border-width:0px;
  9310. white-space:nowrap;
  9311. text-transform:none;
  9312. }
  9313. #u14135_img {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:20px;
  9319. height:20px;
  9320. }
  9321. #u14135 {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:837px;
  9325. top:497px;
  9326. width:20px;
  9327. height:20px;
  9328. display:flex;
  9329. }
  9330. #u14135 .text {
  9331. position:absolute;
  9332. align-self:center;
  9333. padding:2px 2px 2px 2px;
  9334. box-sizing:border-box;
  9335. width:100%;
  9336. }
  9337. #u14135_text {
  9338. border-width:0px;
  9339. word-wrap:break-word;
  9340. text-transform:none;
  9341. visibility:hidden;
  9342. }
  9343. #u14136_div {
  9344. border-width:0px;
  9345. position:absolute;
  9346. left:0px;
  9347. top:0px;
  9348. width:300px;
  9349. height:44px;
  9350. background:inherit;
  9351. background-color:rgba(255, 255, 255, 0);
  9352. border:none;
  9353. border-radius:0px;
  9354. -moz-box-shadow:none;
  9355. -webkit-box-shadow:none;
  9356. box-shadow:none;
  9357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9358. font-weight:400;
  9359. font-style:normal;
  9360. font-size:14px;
  9361. color:#7F7F7F;
  9362. line-height:22px;
  9363. }
  9364. #u14136 {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:868px;
  9368. top:527px;
  9369. width:300px;
  9370. height:44px;
  9371. display:flex;
  9372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9373. font-weight:400;
  9374. font-style:normal;
  9375. font-size:14px;
  9376. color:#7F7F7F;
  9377. line-height:22px;
  9378. }
  9379. #u14136 .text {
  9380. position:absolute;
  9381. align-self:flex-start;
  9382. padding:0px 0px 0px 0px;
  9383. box-sizing:border-box;
  9384. width:100%;
  9385. }
  9386. #u14136_text {
  9387. border-width:0px;
  9388. word-wrap:break-word;
  9389. text-transform:none;
  9390. }
  9391. #u14137_div {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:0px;
  9395. top:0px;
  9396. width:66px;
  9397. height:32px;
  9398. background:inherit;
  9399. background-color:rgba(255, 255, 255, 1);
  9400. box-sizing:border-box;
  9401. border-width:1px;
  9402. border-style:solid;
  9403. border-color:rgba(217, 217, 217, 1);
  9404. border-radius:4px;
  9405. -moz-box-shadow:none;
  9406. -webkit-box-shadow:none;
  9407. box-shadow:none;
  9408. font-family:'Microsoft YaHei', sans-serif;
  9409. font-weight:400;
  9410. font-style:normal;
  9411. font-size:14px;
  9412. color:rgba(0, 0, 0, 0.647058823529412);
  9413. line-height:21px;
  9414. }
  9415. #u14137 {
  9416. border-width:0px;
  9417. position:absolute;
  9418. left:1024px;
  9419. top:580px;
  9420. width:66px;
  9421. height:32px;
  9422. display:flex;
  9423. font-family:'Microsoft YaHei', sans-serif;
  9424. font-weight:400;
  9425. font-style:normal;
  9426. font-size:14px;
  9427. color:rgba(0, 0, 0, 0.647058823529412);
  9428. line-height:21px;
  9429. }
  9430. #u14137 .text {
  9431. position:absolute;
  9432. align-self:center;
  9433. padding:2px 16px 2px 16px;
  9434. box-sizing:border-box;
  9435. width:100%;
  9436. }
  9437. #u14137_text {
  9438. border-width:0px;
  9439. white-space:nowrap;
  9440. text-transform:none;
  9441. }
  9442. #u14138 {
  9443. border-width:0px;
  9444. position:absolute;
  9445. left:0px;
  9446. top:0px;
  9447. width:0px;
  9448. height:0px;
  9449. }
  9450. #u14139 {
  9451. border-width:0px;
  9452. position:absolute;
  9453. left:0px;
  9454. top:0px;
  9455. width:0px;
  9456. height:0px;
  9457. }
  9458. #u14140_div {
  9459. border-width:0px;
  9460. position:absolute;
  9461. left:0px;
  9462. top:0px;
  9463. width:380px;
  9464. height:240px;
  9465. background:inherit;
  9466. background-color:rgba(255, 255, 255, 1);
  9467. box-sizing:border-box;
  9468. border-width:1px;
  9469. border-style:solid;
  9470. border-color:rgba(242, 242, 242, 1);
  9471. border-radius:4px;
  9472. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9473. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9474. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9475. font-family:'Microsoft YaHei', sans-serif;
  9476. font-weight:400;
  9477. font-style:normal;
  9478. }
  9479. #u14140 {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:808px;
  9483. top:646px;
  9484. width:380px;
  9485. height:240px;
  9486. display:flex;
  9487. font-family:'Microsoft YaHei', sans-serif;
  9488. font-weight:400;
  9489. font-style:normal;
  9490. }
  9491. #u14140 .text {
  9492. position:absolute;
  9493. align-self:center;
  9494. padding:2px 2px 2px 2px;
  9495. box-sizing:border-box;
  9496. width:100%;
  9497. }
  9498. #u14140_text {
  9499. border-width:0px;
  9500. word-wrap:break-word;
  9501. text-transform:none;
  9502. visibility:hidden;
  9503. }
  9504. #u14141_div {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:0px;
  9508. top:0px;
  9509. width:127px;
  9510. height:21px;
  9511. background:inherit;
  9512. background-color:rgba(255, 255, 255, 0);
  9513. border:none;
  9514. border-radius:0px;
  9515. -moz-box-shadow:none;
  9516. -webkit-box-shadow:none;
  9517. box-shadow:none;
  9518. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9519. font-weight:650;
  9520. font-style:normal;
  9521. font-size:18px;
  9522. color:#000000;
  9523. line-height:22px;
  9524. }
  9525. #u14141 {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:868px;
  9529. top:671px;
  9530. width:127px;
  9531. height:21px;
  9532. display:flex;
  9533. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9534. font-weight:650;
  9535. font-style:normal;
  9536. font-size:18px;
  9537. color:#000000;
  9538. line-height:22px;
  9539. }
  9540. #u14141 .text {
  9541. position:absolute;
  9542. align-self:flex-start;
  9543. padding:0px 0px 0px 0px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u14141_text {
  9548. border-width:0px;
  9549. white-space:nowrap;
  9550. text-transform:none;
  9551. }
  9552. #u14142_div {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:0px;
  9556. top:0px;
  9557. width:61px;
  9558. height:32px;
  9559. background:inherit;
  9560. background-color:rgba(24, 144, 255, 1);
  9561. border:none;
  9562. border-radius:4px;
  9563. -moz-box-shadow:none;
  9564. -webkit-box-shadow:none;
  9565. box-shadow:none;
  9566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9567. font-weight:400;
  9568. font-style:normal;
  9569. font-size:14px;
  9570. color:#FFFFFF;
  9571. }
  9572. #u14142 {
  9573. border-width:0px;
  9574. position:absolute;
  9575. left:1107px;
  9576. top:836px;
  9577. width:61px;
  9578. height:32px;
  9579. display:flex;
  9580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9581. font-weight:400;
  9582. font-style:normal;
  9583. font-size:14px;
  9584. color:#FFFFFF;
  9585. }
  9586. #u14142 .text {
  9587. position:absolute;
  9588. align-self:center;
  9589. padding:2px 16px 2px 16px;
  9590. box-sizing:border-box;
  9591. width:100%;
  9592. }
  9593. #u14142_text {
  9594. border-width:0px;
  9595. white-space:nowrap;
  9596. text-transform:none;
  9597. }
  9598. #u14143_img {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:0px;
  9602. top:0px;
  9603. width:20px;
  9604. height:20px;
  9605. }
  9606. #u14143 {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:837px;
  9610. top:675px;
  9611. width:20px;
  9612. height:20px;
  9613. display:flex;
  9614. }
  9615. #u14143 .text {
  9616. position:absolute;
  9617. align-self:center;
  9618. padding:2px 2px 2px 2px;
  9619. box-sizing:border-box;
  9620. width:100%;
  9621. }
  9622. #u14143_text {
  9623. border-width:0px;
  9624. word-wrap:break-word;
  9625. text-transform:none;
  9626. visibility:hidden;
  9627. }
  9628. #u14144_div {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:0px;
  9632. top:0px;
  9633. width:300px;
  9634. height:22px;
  9635. background:inherit;
  9636. background-color:rgba(255, 255, 255, 0);
  9637. border:none;
  9638. border-radius:0px;
  9639. -moz-box-shadow:none;
  9640. -webkit-box-shadow:none;
  9641. box-shadow:none;
  9642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9643. font-weight:400;
  9644. font-style:normal;
  9645. font-size:14px;
  9646. color:#7F7F7F;
  9647. line-height:22px;
  9648. }
  9649. #u14144 {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:868px;
  9653. top:705px;
  9654. width:300px;
  9655. height:22px;
  9656. display:flex;
  9657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9658. font-weight:400;
  9659. font-style:normal;
  9660. font-size:14px;
  9661. color:#7F7F7F;
  9662. line-height:22px;
  9663. }
  9664. #u14144 .text {
  9665. position:absolute;
  9666. align-self:flex-start;
  9667. padding:0px 0px 0px 0px;
  9668. box-sizing:border-box;
  9669. width:100%;
  9670. }
  9671. #u14144_text {
  9672. border-width:0px;
  9673. word-wrap:break-word;
  9674. text-transform:none;
  9675. }
  9676. #u14145_div {
  9677. border-width:0px;
  9678. position:absolute;
  9679. left:0px;
  9680. top:0px;
  9681. width:66px;
  9682. height:32px;
  9683. background:inherit;
  9684. background-color:rgba(255, 255, 255, 1);
  9685. box-sizing:border-box;
  9686. border-width:1px;
  9687. border-style:solid;
  9688. border-color:rgba(217, 217, 217, 1);
  9689. border-radius:4px;
  9690. -moz-box-shadow:none;
  9691. -webkit-box-shadow:none;
  9692. box-shadow:none;
  9693. font-family:'Microsoft YaHei', sans-serif;
  9694. font-weight:400;
  9695. font-style:normal;
  9696. font-size:14px;
  9697. color:rgba(0, 0, 0, 0.647058823529412);
  9698. line-height:21px;
  9699. }
  9700. #u14145 {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:1024px;
  9704. top:836px;
  9705. width:66px;
  9706. height:32px;
  9707. display:flex;
  9708. font-family:'Microsoft YaHei', sans-serif;
  9709. font-weight:400;
  9710. font-style:normal;
  9711. font-size:14px;
  9712. color:rgba(0, 0, 0, 0.647058823529412);
  9713. line-height:21px;
  9714. }
  9715. #u14145 .text {
  9716. position:absolute;
  9717. align-self:center;
  9718. padding:2px 16px 2px 16px;
  9719. box-sizing:border-box;
  9720. width:100%;
  9721. }
  9722. #u14145_text {
  9723. border-width:0px;
  9724. white-space:nowrap;
  9725. text-transform:none;
  9726. }
  9727. #u14146 {
  9728. border-width:0px;
  9729. position:absolute;
  9730. left:0px;
  9731. top:0px;
  9732. width:0px;
  9733. height:0px;
  9734. }
  9735. #u14147_div {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:0px;
  9739. top:0px;
  9740. width:300px;
  9741. height:80px;
  9742. background:inherit;
  9743. background-color:rgba(255, 255, 255, 1);
  9744. box-sizing:border-box;
  9745. border-width:1px;
  9746. border-style:solid;
  9747. border-color:rgba(201, 201, 201, 1);
  9748. border-radius:4px;
  9749. -moz-box-shadow:none;
  9750. -webkit-box-shadow:none;
  9751. box-shadow:none;
  9752. font-family:'Microsoft YaHei', sans-serif;
  9753. font-weight:400;
  9754. font-style:normal;
  9755. font-size:14px;
  9756. color:#CCCCCC;
  9757. text-align:left;
  9758. }
  9759. #u14147 {
  9760. border-width:0px;
  9761. position:absolute;
  9762. left:868px;
  9763. top:746px;
  9764. width:300px;
  9765. height:80px;
  9766. display:flex;
  9767. font-family:'Microsoft YaHei', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:14px;
  9771. color:#CCCCCC;
  9772. text-align:left;
  9773. }
  9774. #u14147 .text {
  9775. position:absolute;
  9776. align-self:center;
  9777. padding:2px 8px 2px 8px;
  9778. box-sizing:border-box;
  9779. width:100%;
  9780. }
  9781. #u14147_text {
  9782. border-width:0px;
  9783. word-wrap:break-word;
  9784. text-transform:none;
  9785. visibility:hidden;
  9786. }
  9787. #u14148_input {
  9788. position:absolute;
  9789. left:0px;
  9790. top:0px;
  9791. width:288px;
  9792. height:70px;
  9793. padding:2px 2px 2px 2px;
  9794. font-family:'ArialMT', 'Arial', sans-serif;
  9795. font-weight:400;
  9796. font-style:normal;
  9797. font-size:14px;
  9798. letter-spacing:normal;
  9799. color:#000000;
  9800. vertical-align:none;
  9801. text-align:left;
  9802. text-transform:none;
  9803. background-color:transparent;
  9804. border-color:transparent;
  9805. resize:none;
  9806. }
  9807. #u14148_input.disabled {
  9808. position:absolute;
  9809. left:0px;
  9810. top:0px;
  9811. width:288px;
  9812. height:70px;
  9813. padding:2px 2px 2px 2px;
  9814. font-family:'ArialMT', 'Arial', sans-serif;
  9815. font-weight:400;
  9816. font-style:normal;
  9817. font-size:14px;
  9818. letter-spacing:normal;
  9819. color:#000000;
  9820. vertical-align:none;
  9821. text-align:left;
  9822. text-transform:none;
  9823. background-color:transparent;
  9824. border-color:transparent;
  9825. resize:none;
  9826. }
  9827. #u14148_div {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:0px;
  9831. top:0px;
  9832. width:288px;
  9833. height:70px;
  9834. background:inherit;
  9835. background-color:rgba(255, 255, 255, 1);
  9836. border:none;
  9837. border-radius:0px;
  9838. -moz-box-shadow:none;
  9839. -webkit-box-shadow:none;
  9840. box-shadow:none;
  9841. font-size:14px;
  9842. }
  9843. #u14148 {
  9844. border-width:0px;
  9845. position:absolute;
  9846. left:874px;
  9847. top:751px;
  9848. width:288px;
  9849. height:70px;
  9850. display:flex;
  9851. font-size:14px;
  9852. }
  9853. #u14148 .text {
  9854. position:absolute;
  9855. align-self:flex-start;
  9856. padding:2px 2px 2px 2px;
  9857. box-sizing:border-box;
  9858. width:100%;
  9859. }
  9860. #u14148_div.disabled {
  9861. border-width:0px;
  9862. position:absolute;
  9863. left:0px;
  9864. top:0px;
  9865. width:288px;
  9866. height:70px;
  9867. background:inherit;
  9868. background-color:rgba(240, 240, 240, 1);
  9869. border:none;
  9870. border-radius:0px;
  9871. -moz-box-shadow:none;
  9872. -webkit-box-shadow:none;
  9873. box-shadow:none;
  9874. font-size:14px;
  9875. }
  9876. #u14148.disabled {
  9877. }
  9878. #u14149 {
  9879. border-width:0px;
  9880. position:absolute;
  9881. left:0px;
  9882. top:0px;
  9883. width:0px;
  9884. height:0px;
  9885. }
  9886. #u14150_img {
  9887. border-width:0px;
  9888. position:absolute;
  9889. left:0px;
  9890. top:0px;
  9891. width:10px;
  9892. height:10px;
  9893. }
  9894. #u14150 {
  9895. border-width:0px;
  9896. position:absolute;
  9897. left:1220px;
  9898. top:472px;
  9899. width:10px;
  9900. height:10px;
  9901. display:flex;
  9902. }
  9903. #u14150 .text {
  9904. position:absolute;
  9905. align-self:center;
  9906. padding:2px 2px 2px 2px;
  9907. box-sizing:border-box;
  9908. width:100%;
  9909. }
  9910. #u14150_text {
  9911. border-width:0px;
  9912. word-wrap:break-word;
  9913. text-transform:none;
  9914. visibility:hidden;
  9915. }
  9916. #u14151_div {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:0px;
  9920. top:0px;
  9921. width:145px;
  9922. height:32px;
  9923. background:inherit;
  9924. background-color:rgba(51, 51, 51, 1);
  9925. border:none;
  9926. border-radius:82px;
  9927. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9928. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9929. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9931. font-weight:400;
  9932. font-style:normal;
  9933. font-size:14px;
  9934. color:#FFFFFF;
  9935. }
  9936. #u14151 {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:1215px;
  9940. top:436px;
  9941. width:145px;
  9942. height:32px;
  9943. display:flex;
  9944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9945. font-weight:400;
  9946. font-style:normal;
  9947. font-size:14px;
  9948. color:#FFFFFF;
  9949. }
  9950. #u14151 .text {
  9951. position:absolute;
  9952. align-self:center;
  9953. padding:2px 16px 2px 16px;
  9954. box-sizing:border-box;
  9955. width:100%;
  9956. }
  9957. #u14151_text {
  9958. border-width:0px;
  9959. white-space:nowrap;
  9960. text-transform:none;
  9961. }