styles.css 211 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2620px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u15529_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. #u15529 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u15529 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u15529_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u15530_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. #u15530 {
  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. #u15530 .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. #u15530_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u15531_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. #u15531 {
  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. #u15531 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u15531_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u15532 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u15533_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u15533 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u15533 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u15533_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u15534_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. #u15534 {
  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. #u15534 .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. #u15534_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u15535_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. #u15535 {
  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. #u15535 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u15535_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u15536 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u15537_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. #u15537 {
  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. #u15537 .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. #u15537_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u15538_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u15538 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u15538 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u15538_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u15539 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u15540_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. #u15540 {
  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. #u15540 .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. #u15540_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u15541_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u15541 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u15541 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u15541_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u15542 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u15543_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. #u15543 {
  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. #u15543 .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. #u15543_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u15544_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u15544 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u15544 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u15544_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u15545 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u15546_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. #u15546 {
  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. #u15546 .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. #u15546_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u15547_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u15547 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u15547 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u15547_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u15548 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u15549_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. #u15549 {
  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. #u15549 .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. #u15549_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u15550_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u15550 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u15550 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u15550_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u15551 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u15552_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. #u15552 {
  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. #u15552 .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. #u15552_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u15553_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u15553 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u15553 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u15553_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u15554 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u15555_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. #u15555 {
  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. #u15555 .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. #u15555_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u15556_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u15556 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u15556 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u15556_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u15557 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u15558_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. #u15558 {
  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. #u15558 .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. #u15558_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u15559_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u15559 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u15559 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u15559_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u15560 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u15561_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. #u15561 {
  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. #u15561 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u15561_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u15562_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u15562 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u15562 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u15562_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u15563 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u15564_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. #u15564 {
  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. #u15564 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u15564_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u15565_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u15565 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u15565 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u15565_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u15566 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u15567_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. #u15567 {
  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. #u15567 .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. #u15567_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u15568_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u15568 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u15568 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u15568_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u15569 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u15570_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. #u15570_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. #u15570_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. #u15570 {
  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. #u15570 .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. #u15570_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. #u15570.disabled {
  1276. }
  1277. .u15570_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u15571_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u15571 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u15571 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u15571_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u15572_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. #u15572 {
  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. #u15572 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u15572_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u15573_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u15573 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u15573 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u15573_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u15574 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u15575_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. #u15575 {
  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. #u15575 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u15575_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u15576_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u15576 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u15576 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u15576_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u15577_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u15577 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u15577 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u15577_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u15578_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u15578 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u15578 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u15578_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u15579_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u15579 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u15579 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u15579_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u15580 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u15581_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. #u15581 {
  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. #u15581 .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. #u15581_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u15582_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u15582 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u15582 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u15582_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u15583_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1259px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u15583 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:330px;
  1661. top:50px;
  1662. width:1259px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u15583 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u15583_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u15584 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:350px;
  1683. top:272px;
  1684. width:1211px;
  1685. height:313px;
  1686. }
  1687. #u15585_img {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:163px;
  1693. height:35px;
  1694. }
  1695. #u15585 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:163px;
  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. #u15585 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 0px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u15585_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. }
  1721. #u15586_img {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:96px;
  1727. height:35px;
  1728. }
  1729. #u15586 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:163px;
  1733. top:0px;
  1734. width:96px;
  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. #u15586 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u15586_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. }
  1755. #u15587_img {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:96px;
  1761. height:35px;
  1762. }
  1763. #u15587 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:259px;
  1767. top:0px;
  1768. width:96px;
  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. #u15587 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:2px 2px 2px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u15587_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. }
  1789. #u15588_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:96px;
  1795. height:35px;
  1796. }
  1797. #u15588 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:355px;
  1801. top:0px;
  1802. width:96px;
  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. #u15588 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 0px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u15588_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u15589_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:100px;
  1829. height:35px;
  1830. }
  1831. #u15589 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:451px;
  1835. top:0px;
  1836. width:100px;
  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. #u15589 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u15589_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u15590_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:96px;
  1863. height:35px;
  1864. }
  1865. #u15590 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:551px;
  1869. top:0px;
  1870. width:96px;
  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. #u15590 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u15590_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u15591_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:96px;
  1897. height:35px;
  1898. }
  1899. #u15591 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:647px;
  1903. top:0px;
  1904. width:96px;
  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. #u15591 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u15591_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u15592_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:96px;
  1931. height:35px;
  1932. }
  1933. #u15592 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:743px;
  1937. top:0px;
  1938. width:96px;
  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. #u15592 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u15592_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u15593_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:96px;
  1965. height:35px;
  1966. }
  1967. #u15593 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:839px;
  1971. top:0px;
  1972. width:96px;
  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. #u15593 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u15593_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u15594_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:96px;
  1999. height:35px;
  2000. }
  2001. #u15594 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:935px;
  2005. top:0px;
  2006. width:96px;
  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. #u15594 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u15594_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u15595_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:96px;
  2033. height:35px;
  2034. }
  2035. #u15595 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:1031px;
  2039. top:0px;
  2040. width:96px;
  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. #u15595 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u15595_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. }
  2061. #u15596_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:84px;
  2067. height:35px;
  2068. }
  2069. #u15596 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:1127px;
  2073. top:0px;
  2074. width:84px;
  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. #u15596 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u15596_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u15597_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:163px;
  2101. height:44px;
  2102. }
  2103. #u15597 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:35px;
  2108. width:163px;
  2109. height:44px;
  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:#333333;
  2116. line-height:40px;
  2117. }
  2118. #u15597 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u15597_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u15598_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:96px;
  2136. height:44px;
  2137. }
  2138. #u15598 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:163px;
  2142. top:35px;
  2143. width:96px;
  2144. height:44px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:12px;
  2150. color:#333333;
  2151. line-height:40px;
  2152. }
  2153. #u15598 .text {
  2154. position:absolute;
  2155. align-self:center;
  2156. padding:2px 2px 2px 0px;
  2157. box-sizing:border-box;
  2158. width:100%;
  2159. }
  2160. #u15598_text {
  2161. border-width:0px;
  2162. word-wrap:break-word;
  2163. text-transform:none;
  2164. visibility:hidden;
  2165. }
  2166. #u15599_img {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:96px;
  2172. height:44px;
  2173. }
  2174. #u15599 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:259px;
  2178. top:35px;
  2179. width:96px;
  2180. height:44px;
  2181. display:flex;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:12px;
  2186. color:#333333;
  2187. line-height:40px;
  2188. }
  2189. #u15599 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u15599_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u15600_img {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:96px;
  2207. height:44px;
  2208. }
  2209. #u15600 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:355px;
  2213. top:35px;
  2214. width:96px;
  2215. height:44px;
  2216. display:flex;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:12px;
  2221. color:#333333;
  2222. line-height:40px;
  2223. }
  2224. #u15600 .text {
  2225. position:absolute;
  2226. align-self:center;
  2227. padding:2px 2px 2px 0px;
  2228. box-sizing:border-box;
  2229. width:100%;
  2230. }
  2231. #u15600_text {
  2232. border-width:0px;
  2233. word-wrap:break-word;
  2234. text-transform:none;
  2235. visibility:hidden;
  2236. }
  2237. #u15601_img {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:100px;
  2243. height:44px;
  2244. }
  2245. #u15601 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:451px;
  2249. top:35px;
  2250. width:100px;
  2251. height:44px;
  2252. display:flex;
  2253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:12px;
  2257. color:#333333;
  2258. line-height:40px;
  2259. }
  2260. #u15601 .text {
  2261. position:absolute;
  2262. align-self:center;
  2263. padding:2px 2px 2px 0px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u15601_text {
  2268. border-width:0px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. visibility:hidden;
  2272. }
  2273. #u15602_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:96px;
  2279. height:44px;
  2280. }
  2281. #u15602 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:551px;
  2285. top:35px;
  2286. width:96px;
  2287. height:44px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:12px;
  2293. }
  2294. #u15602 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 2px 2px 0px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u15602_text {
  2302. border-width:0px;
  2303. word-wrap:break-word;
  2304. text-transform:none;
  2305. }
  2306. #u15603_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:96px;
  2312. height:44px;
  2313. }
  2314. #u15603 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:647px;
  2318. top:35px;
  2319. width:96px;
  2320. height:44px;
  2321. display:flex;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. color:#606266;
  2327. }
  2328. #u15603 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u15603_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u15604_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:96px;
  2347. height:44px;
  2348. }
  2349. #u15604 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:743px;
  2353. top:35px;
  2354. width:96px;
  2355. height:44px;
  2356. display:flex;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:12px;
  2361. color:#333333;
  2362. }
  2363. #u15604 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u15604_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u15605_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:96px;
  2382. height:44px;
  2383. }
  2384. #u15605 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:839px;
  2388. top:35px;
  2389. width:96px;
  2390. height:44px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. color:#333333;
  2397. }
  2398. #u15605 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:2px 2px 2px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u15605_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. visibility:hidden;
  2410. }
  2411. #u15606_img {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:96px;
  2417. height:44px;
  2418. }
  2419. #u15606 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:935px;
  2423. top:35px;
  2424. width:96px;
  2425. height:44px;
  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. }
  2433. #u15606 .text {
  2434. position:absolute;
  2435. align-self:center;
  2436. padding:2px 2px 2px 0px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u15606_text {
  2441. border-width:0px;
  2442. word-wrap:break-word;
  2443. text-transform:none;
  2444. }
  2445. #u15607_img {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:96px;
  2451. height:44px;
  2452. }
  2453. #u15607 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:1031px;
  2457. top:35px;
  2458. width:96px;
  2459. height:44px;
  2460. display:flex;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. color:#333333;
  2466. }
  2467. #u15607 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u15607_text {
  2475. border-width:0px;
  2476. word-wrap:break-word;
  2477. text-transform:none;
  2478. visibility:hidden;
  2479. }
  2480. #u15608_img {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:84px;
  2486. height:44px;
  2487. }
  2488. #u15608 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:1127px;
  2492. top:35px;
  2493. width:84px;
  2494. height:44px;
  2495. display:flex;
  2496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. font-size:12px;
  2500. color:#298FFF;
  2501. line-height:35px;
  2502. }
  2503. #u15608 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u15608_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. }
  2515. #u15609_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:163px;
  2521. height:44px;
  2522. }
  2523. #u15609 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:79px;
  2528. width:163px;
  2529. height:44px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. color:#333333;
  2536. line-height:40px;
  2537. }
  2538. #u15609 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 0px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u15609_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u15610_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:96px;
  2556. height:44px;
  2557. }
  2558. #u15610 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:163px;
  2562. top:79px;
  2563. width:96px;
  2564. height:44px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. color:#333333;
  2571. line-height:40px;
  2572. }
  2573. #u15610 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u15610_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. visibility:hidden;
  2585. }
  2586. #u15611_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:96px;
  2592. height:44px;
  2593. }
  2594. #u15611 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:259px;
  2598. top:79px;
  2599. width:96px;
  2600. height:44px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:12px;
  2606. color:#333333;
  2607. line-height:40px;
  2608. }
  2609. #u15611 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u15611_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u15612_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:96px;
  2628. height:44px;
  2629. }
  2630. #u15612 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:355px;
  2634. top:79px;
  2635. width:96px;
  2636. height:44px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. color:#333333;
  2643. line-height:40px;
  2644. }
  2645. #u15612 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u15612_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u15613_img {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:100px;
  2664. height:44px;
  2665. }
  2666. #u15613 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:451px;
  2670. top:79px;
  2671. width:100px;
  2672. height:44px;
  2673. display:flex;
  2674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:12px;
  2678. color:#333333;
  2679. line-height:40px;
  2680. }
  2681. #u15613 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 2px 2px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u15613_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. visibility:hidden;
  2693. }
  2694. #u15614_img {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:96px;
  2700. height:44px;
  2701. }
  2702. #u15614 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:551px;
  2706. top:79px;
  2707. width:96px;
  2708. height:44px;
  2709. display:flex;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:12px;
  2714. }
  2715. #u15614 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 0px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u15614_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u15615_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:96px;
  2734. height:44px;
  2735. }
  2736. #u15615 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:647px;
  2740. top:79px;
  2741. width:96px;
  2742. height:44px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:12px;
  2748. color:#606266;
  2749. }
  2750. #u15615 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u15615_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u15616_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:96px;
  2769. height:44px;
  2770. }
  2771. #u15616 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:743px;
  2775. top:79px;
  2776. width:96px;
  2777. height:44px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. color:#333333;
  2784. }
  2785. #u15616 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 0px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u15616_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. visibility:hidden;
  2797. }
  2798. #u15617_img {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:96px;
  2804. height:44px;
  2805. }
  2806. #u15617 {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:839px;
  2810. top:79px;
  2811. width:96px;
  2812. height:44px;
  2813. display:flex;
  2814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:12px;
  2818. color:#333333;
  2819. }
  2820. #u15617 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 0px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u15617_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u15618_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:96px;
  2839. height:44px;
  2840. }
  2841. #u15618 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:935px;
  2845. top:79px;
  2846. width:96px;
  2847. height:44px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:12px;
  2853. color:#333333;
  2854. }
  2855. #u15618 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 0px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u15618_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. visibility:hidden;
  2867. }
  2868. #u15619_img {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:96px;
  2874. height:44px;
  2875. }
  2876. #u15619 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:1031px;
  2880. top:79px;
  2881. width:96px;
  2882. height:44px;
  2883. display:flex;
  2884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2885. font-weight:400;
  2886. font-style:normal;
  2887. font-size:12px;
  2888. color:#333333;
  2889. }
  2890. #u15619 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 0px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u15619_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. visibility:hidden;
  2902. }
  2903. #u15620_img {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:84px;
  2909. height:44px;
  2910. }
  2911. #u15620 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:1127px;
  2915. top:79px;
  2916. width:84px;
  2917. height:44px;
  2918. display:flex;
  2919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:12px;
  2923. color:#1890FF;
  2924. }
  2925. #u15620 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 0px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u15620_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u15621_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:163px;
  2944. height:38px;
  2945. }
  2946. #u15621 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:123px;
  2951. width:163px;
  2952. height:38px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. color:#333333;
  2959. line-height:40px;
  2960. }
  2961. #u15621 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u15621_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u15622_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:96px;
  2980. height:38px;
  2981. }
  2982. #u15622 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:163px;
  2986. top:123px;
  2987. width:96px;
  2988. height:38px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. color:#333333;
  2995. line-height:40px;
  2996. }
  2997. #u15622 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 0px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u15622_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u15623_img {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:96px;
  3016. height:38px;
  3017. }
  3018. #u15623 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:259px;
  3022. top:123px;
  3023. width:96px;
  3024. height:38px;
  3025. display:flex;
  3026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3027. font-weight:400;
  3028. font-style:normal;
  3029. font-size:12px;
  3030. color:#333333;
  3031. line-height:40px;
  3032. }
  3033. #u15623 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 2px 2px 0px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u15623_text {
  3041. border-width:0px;
  3042. word-wrap:break-word;
  3043. text-transform:none;
  3044. visibility:hidden;
  3045. }
  3046. #u15624_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:96px;
  3052. height:38px;
  3053. }
  3054. #u15624 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:355px;
  3058. top:123px;
  3059. width:96px;
  3060. height:38px;
  3061. display:flex;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. color:#333333;
  3067. line-height:40px;
  3068. }
  3069. #u15624 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 2px 2px 0px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u15624_text {
  3077. border-width:0px;
  3078. word-wrap:break-word;
  3079. text-transform:none;
  3080. visibility:hidden;
  3081. }
  3082. #u15625_img {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:100px;
  3088. height:38px;
  3089. }
  3090. #u15625 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:451px;
  3094. top:123px;
  3095. width:100px;
  3096. height:38px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:12px;
  3102. color:#333333;
  3103. line-height:40px;
  3104. }
  3105. #u15625 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 2px 2px 0px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u15625_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u15626_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:96px;
  3124. height:38px;
  3125. }
  3126. #u15626 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:551px;
  3130. top:123px;
  3131. width:96px;
  3132. height:38px;
  3133. display:flex;
  3134. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. color:#606266;
  3139. }
  3140. #u15626 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u15626_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u15627_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:96px;
  3159. height:38px;
  3160. }
  3161. #u15627 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:647px;
  3165. top:123px;
  3166. width:96px;
  3167. height:38px;
  3168. display:flex;
  3169. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:12px;
  3173. color:#606266;
  3174. }
  3175. #u15627 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:2px 2px 2px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u15627_text {
  3183. border-width:0px;
  3184. word-wrap:break-word;
  3185. text-transform:none;
  3186. visibility:hidden;
  3187. }
  3188. #u15628_img {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:96px;
  3194. height:38px;
  3195. }
  3196. #u15628 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:743px;
  3200. top:123px;
  3201. width:96px;
  3202. height:38px;
  3203. display:flex;
  3204. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. color:#606266;
  3209. }
  3210. #u15628 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:2px 2px 2px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u15628_text {
  3218. border-width:0px;
  3219. word-wrap:break-word;
  3220. text-transform:none;
  3221. visibility:hidden;
  3222. }
  3223. #u15629_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:96px;
  3229. height:38px;
  3230. }
  3231. #u15629 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:839px;
  3235. top:123px;
  3236. width:96px;
  3237. height:38px;
  3238. display:flex;
  3239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:12px;
  3243. color:#606266;
  3244. }
  3245. #u15629 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 0px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u15629_text {
  3253. border-width:0px;
  3254. word-wrap:break-word;
  3255. text-transform:none;
  3256. visibility:hidden;
  3257. }
  3258. #u15630_img {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:96px;
  3264. height:38px;
  3265. }
  3266. #u15630 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:935px;
  3270. top:123px;
  3271. width:96px;
  3272. height:38px;
  3273. display:flex;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:12px;
  3278. color:#606266;
  3279. }
  3280. #u15630 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 0px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u15630_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. visibility:hidden;
  3292. }
  3293. #u15631_img {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:96px;
  3299. height:38px;
  3300. }
  3301. #u15631 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:1031px;
  3305. top:123px;
  3306. width:96px;
  3307. height:38px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:12px;
  3313. color:#606266;
  3314. }
  3315. #u15631 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u15631_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. visibility:hidden;
  3327. }
  3328. #u15632_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:84px;
  3334. height:38px;
  3335. }
  3336. #u15632 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:1127px;
  3340. top:123px;
  3341. width:84px;
  3342. height:38px;
  3343. display:flex;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:12px;
  3348. color:#1890FF;
  3349. }
  3350. #u15632 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 0px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u15632_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. visibility:hidden;
  3362. }
  3363. #u15633_img {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:163px;
  3369. height:38px;
  3370. }
  3371. #u15633 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:161px;
  3376. width:163px;
  3377. height:38px;
  3378. display:flex;
  3379. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:12px;
  3383. color:#606266;
  3384. }
  3385. #u15633 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 0px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u15633_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u15634_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:96px;
  3404. height:38px;
  3405. }
  3406. #u15634 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:163px;
  3410. top:161px;
  3411. width:96px;
  3412. height:38px;
  3413. display:flex;
  3414. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:12px;
  3418. color:#606266;
  3419. }
  3420. #u15634 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 2px 2px 0px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u15634_text {
  3428. border-width:0px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. visibility:hidden;
  3432. }
  3433. #u15635_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:96px;
  3439. height:38px;
  3440. }
  3441. #u15635 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:259px;
  3445. top:161px;
  3446. width:96px;
  3447. height:38px;
  3448. display:flex;
  3449. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:12px;
  3453. color:#606266;
  3454. }
  3455. #u15635 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u15635_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u15636_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:96px;
  3474. height:38px;
  3475. }
  3476. #u15636 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:355px;
  3480. top:161px;
  3481. width:96px;
  3482. height:38px;
  3483. display:flex;
  3484. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. color:#606266;
  3489. }
  3490. #u15636 .text {
  3491. position:absolute;
  3492. align-self:center;
  3493. padding:2px 2px 2px 0px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u15636_text {
  3498. border-width:0px;
  3499. word-wrap:break-word;
  3500. text-transform:none;
  3501. visibility:hidden;
  3502. }
  3503. #u15637_img {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:100px;
  3509. height:38px;
  3510. }
  3511. #u15637 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:451px;
  3515. top:161px;
  3516. width:100px;
  3517. height:38px;
  3518. display:flex;
  3519. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:12px;
  3523. color:#606266;
  3524. }
  3525. #u15637 .text {
  3526. position:absolute;
  3527. align-self:center;
  3528. padding:2px 2px 2px 0px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u15637_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. visibility:hidden;
  3537. }
  3538. #u15638_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:96px;
  3544. height:38px;
  3545. }
  3546. #u15638 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:551px;
  3550. top:161px;
  3551. width:96px;
  3552. height:38px;
  3553. display:flex;
  3554. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:12px;
  3558. color:#606266;
  3559. }
  3560. #u15638 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 2px 2px 0px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u15638_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. visibility:hidden;
  3572. }
  3573. #u15639_img {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:96px;
  3579. height:38px;
  3580. }
  3581. #u15639 {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:647px;
  3585. top:161px;
  3586. width:96px;
  3587. height:38px;
  3588. display:flex;
  3589. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:12px;
  3593. color:#606266;
  3594. }
  3595. #u15639 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 0px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u15639_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u15640_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:96px;
  3614. height:38px;
  3615. }
  3616. #u15640 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:743px;
  3620. top:161px;
  3621. width:96px;
  3622. height:38px;
  3623. display:flex;
  3624. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:12px;
  3628. color:#606266;
  3629. }
  3630. #u15640 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 0px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u15640_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u15641_img {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:96px;
  3649. height:38px;
  3650. }
  3651. #u15641 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:839px;
  3655. top:161px;
  3656. width:96px;
  3657. height:38px;
  3658. display:flex;
  3659. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:12px;
  3663. color:#606266;
  3664. }
  3665. #u15641 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 0px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u15641_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. visibility:hidden;
  3677. }
  3678. #u15642_img {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:96px;
  3684. height:38px;
  3685. }
  3686. #u15642 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:935px;
  3690. top:161px;
  3691. width:96px;
  3692. height:38px;
  3693. display:flex;
  3694. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:12px;
  3698. color:#606266;
  3699. }
  3700. #u15642 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 0px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u15642_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u15643_img {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:96px;
  3719. height:38px;
  3720. }
  3721. #u15643 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:1031px;
  3725. top:161px;
  3726. width:96px;
  3727. height:38px;
  3728. display:flex;
  3729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:12px;
  3733. color:#606266;
  3734. }
  3735. #u15643 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u15643_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u15644_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:84px;
  3754. height:38px;
  3755. }
  3756. #u15644 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:1127px;
  3760. top:161px;
  3761. width:84px;
  3762. height:38px;
  3763. display:flex;
  3764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. color:#606266;
  3769. }
  3770. #u15644 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u15644_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u15645_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:163px;
  3789. height:38px;
  3790. }
  3791. #u15645 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:199px;
  3796. width:163px;
  3797. height:38px;
  3798. display:flex;
  3799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#606266;
  3804. }
  3805. #u15645 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u15645_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u15646_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:96px;
  3824. height:38px;
  3825. }
  3826. #u15646 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:163px;
  3830. top:199px;
  3831. width:96px;
  3832. height:38px;
  3833. display:flex;
  3834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. color:#606266;
  3839. }
  3840. #u15646 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u15646_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u15647_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:96px;
  3859. height:38px;
  3860. }
  3861. #u15647 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:259px;
  3865. top:199px;
  3866. width:96px;
  3867. height:38px;
  3868. display:flex;
  3869. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#606266;
  3874. }
  3875. #u15647 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u15647_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u15648_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:96px;
  3894. height:38px;
  3895. }
  3896. #u15648 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:355px;
  3900. top:199px;
  3901. width:96px;
  3902. height:38px;
  3903. display:flex;
  3904. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#606266;
  3909. }
  3910. #u15648 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u15648_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u15649_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:100px;
  3929. height:38px;
  3930. }
  3931. #u15649 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:451px;
  3935. top:199px;
  3936. width:100px;
  3937. height:38px;
  3938. display:flex;
  3939. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. color:#606266;
  3944. }
  3945. #u15649 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u15649_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u15650_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:96px;
  3964. height:38px;
  3965. }
  3966. #u15650 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:551px;
  3970. top:199px;
  3971. width:96px;
  3972. height:38px;
  3973. display:flex;
  3974. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. color:#606266;
  3979. }
  3980. #u15650 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u15650_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u15651_img {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:96px;
  3999. height:38px;
  4000. }
  4001. #u15651 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:647px;
  4005. top:199px;
  4006. width:96px;
  4007. height:38px;
  4008. display:flex;
  4009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:12px;
  4013. color:#606266;
  4014. }
  4015. #u15651 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u15651_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u15652_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:96px;
  4034. height:38px;
  4035. }
  4036. #u15652 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:743px;
  4040. top:199px;
  4041. width:96px;
  4042. height:38px;
  4043. display:flex;
  4044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:#606266;
  4049. }
  4050. #u15652 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u15652_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u15653_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:96px;
  4069. height:38px;
  4070. }
  4071. #u15653 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:839px;
  4075. top:199px;
  4076. width:96px;
  4077. height:38px;
  4078. display:flex;
  4079. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:#606266;
  4084. }
  4085. #u15653 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 0px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u15653_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u15654_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:96px;
  4104. height:38px;
  4105. }
  4106. #u15654 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:935px;
  4110. top:199px;
  4111. width:96px;
  4112. height:38px;
  4113. display:flex;
  4114. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u15654 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u15654_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u15655_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:96px;
  4139. height:38px;
  4140. }
  4141. #u15655 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:1031px;
  4145. top:199px;
  4146. width:96px;
  4147. height:38px;
  4148. display:flex;
  4149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u15655 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u15655_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u15656_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:84px;
  4174. height:38px;
  4175. }
  4176. #u15656 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:1127px;
  4180. top:199px;
  4181. width:84px;
  4182. height:38px;
  4183. display:flex;
  4184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4185. font-weight:400;
  4186. font-style:normal;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u15656 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u15656_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u15657_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:163px;
  4209. height:38px;
  4210. }
  4211. #u15657 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:237px;
  4216. width:163px;
  4217. height:38px;
  4218. display:flex;
  4219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#606266;
  4224. }
  4225. #u15657 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u15657_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u15658_img {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:96px;
  4244. height:38px;
  4245. }
  4246. #u15658 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:163px;
  4250. top:237px;
  4251. width:96px;
  4252. height:38px;
  4253. display:flex;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u15658 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u15658_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u15659_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:96px;
  4279. height:38px;
  4280. }
  4281. #u15659 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:259px;
  4285. top:237px;
  4286. width:96px;
  4287. height:38px;
  4288. display:flex;
  4289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:12px;
  4293. color:#606266;
  4294. }
  4295. #u15659 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u15659_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u15660_img {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:96px;
  4314. height:38px;
  4315. }
  4316. #u15660 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:355px;
  4320. top:237px;
  4321. width:96px;
  4322. height:38px;
  4323. display:flex;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u15660 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u15660_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u15661_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:100px;
  4349. height:38px;
  4350. }
  4351. #u15661 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:451px;
  4355. top:237px;
  4356. width:100px;
  4357. height:38px;
  4358. display:flex;
  4359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. color:#606266;
  4364. }
  4365. #u15661 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u15661_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u15662_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:96px;
  4384. height:38px;
  4385. }
  4386. #u15662 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:551px;
  4390. top:237px;
  4391. width:96px;
  4392. height:38px;
  4393. display:flex;
  4394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:12px;
  4398. color:#606266;
  4399. }
  4400. #u15662 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u15662_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u15663_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:96px;
  4419. height:38px;
  4420. }
  4421. #u15663 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:647px;
  4425. top:237px;
  4426. width:96px;
  4427. height:38px;
  4428. display:flex;
  4429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#606266;
  4434. }
  4435. #u15663 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 0px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u15663_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u15664_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:96px;
  4454. height:38px;
  4455. }
  4456. #u15664 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:743px;
  4460. top:237px;
  4461. width:96px;
  4462. height:38px;
  4463. display:flex;
  4464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. color:#606266;
  4469. }
  4470. #u15664 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 0px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u15664_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u15665_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:96px;
  4489. height:38px;
  4490. }
  4491. #u15665 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:839px;
  4495. top:237px;
  4496. width:96px;
  4497. height:38px;
  4498. display:flex;
  4499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. color:#606266;
  4504. }
  4505. #u15665 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u15665_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u15666_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:96px;
  4524. height:38px;
  4525. }
  4526. #u15666 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:935px;
  4530. top:237px;
  4531. width:96px;
  4532. height:38px;
  4533. display:flex;
  4534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. color:#606266;
  4539. }
  4540. #u15666 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u15666_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u15667_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:96px;
  4559. height:38px;
  4560. }
  4561. #u15667 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:1031px;
  4565. top:237px;
  4566. width:96px;
  4567. height:38px;
  4568. display:flex;
  4569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#606266;
  4574. }
  4575. #u15667 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u15667_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u15668_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:84px;
  4594. height:38px;
  4595. }
  4596. #u15668 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:1127px;
  4600. top:237px;
  4601. width:84px;
  4602. height:38px;
  4603. display:flex;
  4604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#606266;
  4609. }
  4610. #u15668 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u15668_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u15669_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:163px;
  4629. height:38px;
  4630. }
  4631. #u15669 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:275px;
  4636. width:163px;
  4637. height:38px;
  4638. display:flex;
  4639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#606266;
  4644. }
  4645. #u15669 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u15669_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u15670_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:96px;
  4664. height:38px;
  4665. }
  4666. #u15670 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:163px;
  4670. top:275px;
  4671. width:96px;
  4672. height:38px;
  4673. display:flex;
  4674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#606266;
  4679. }
  4680. #u15670 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u15670_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u15671_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:96px;
  4699. height:38px;
  4700. }
  4701. #u15671 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:259px;
  4705. top:275px;
  4706. width:96px;
  4707. height:38px;
  4708. display:flex;
  4709. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. color:#606266;
  4714. }
  4715. #u15671 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u15671_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u15672_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:96px;
  4734. height:38px;
  4735. }
  4736. #u15672 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:355px;
  4740. top:275px;
  4741. width:96px;
  4742. height:38px;
  4743. display:flex;
  4744. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:12px;
  4748. color:#606266;
  4749. }
  4750. #u15672 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 0px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u15672_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. visibility:hidden;
  4762. }
  4763. #u15673_img {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:100px;
  4769. height:38px;
  4770. }
  4771. #u15673 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:451px;
  4775. top:275px;
  4776. width:100px;
  4777. height:38px;
  4778. display:flex;
  4779. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:12px;
  4783. color:#606266;
  4784. }
  4785. #u15673 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:2px 2px 2px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u15673_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. visibility:hidden;
  4797. }
  4798. #u15674_img {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:96px;
  4804. height:38px;
  4805. }
  4806. #u15674 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:551px;
  4810. top:275px;
  4811. width:96px;
  4812. height:38px;
  4813. display:flex;
  4814. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:12px;
  4818. color:#606266;
  4819. }
  4820. #u15674 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 0px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u15674_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u15675_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:96px;
  4839. height:38px;
  4840. }
  4841. #u15675 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:647px;
  4845. top:275px;
  4846. width:96px;
  4847. height:38px;
  4848. display:flex;
  4849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. color:#606266;
  4854. }
  4855. #u15675 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u15675_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. visibility:hidden;
  4867. }
  4868. #u15676_img {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:96px;
  4874. height:38px;
  4875. }
  4876. #u15676 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:743px;
  4880. top:275px;
  4881. width:96px;
  4882. height:38px;
  4883. display:flex;
  4884. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:12px;
  4888. color:#606266;
  4889. }
  4890. #u15676 .text {
  4891. position:absolute;
  4892. align-self:center;
  4893. padding:2px 2px 2px 0px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u15676_text {
  4898. border-width:0px;
  4899. word-wrap:break-word;
  4900. text-transform:none;
  4901. visibility:hidden;
  4902. }
  4903. #u15677_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:96px;
  4909. height:38px;
  4910. }
  4911. #u15677 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:839px;
  4915. top:275px;
  4916. width:96px;
  4917. height:38px;
  4918. display:flex;
  4919. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:12px;
  4923. color:#606266;
  4924. }
  4925. #u15677 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:2px 2px 2px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u15677_text {
  4933. border-width:0px;
  4934. word-wrap:break-word;
  4935. text-transform:none;
  4936. visibility:hidden;
  4937. }
  4938. #u15678_img {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:96px;
  4944. height:38px;
  4945. }
  4946. #u15678 {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:935px;
  4950. top:275px;
  4951. width:96px;
  4952. height:38px;
  4953. display:flex;
  4954. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. font-size:12px;
  4958. color:#606266;
  4959. }
  4960. #u15678 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 0px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u15678_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u15679_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:96px;
  4979. height:38px;
  4980. }
  4981. #u15679 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:1031px;
  4985. top:275px;
  4986. width:96px;
  4987. height:38px;
  4988. display:flex;
  4989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#606266;
  4994. }
  4995. #u15679 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u15679_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u15680_img {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:84px;
  5014. height:38px;
  5015. }
  5016. #u15680 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:1127px;
  5020. top:275px;
  5021. width:84px;
  5022. height:38px;
  5023. display:flex;
  5024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:12px;
  5028. color:#606266;
  5029. }
  5030. #u15680 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 0px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u15680_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u15681_div {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:60px;
  5049. height:30px;
  5050. background:inherit;
  5051. background-color:rgba(24, 144, 255, 1);
  5052. border:none;
  5053. border-radius:4px;
  5054. -moz-box-shadow:none;
  5055. -webkit-box-shadow:none;
  5056. box-shadow:none;
  5057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:14px;
  5061. color:#FFFFFF;
  5062. }
  5063. #u15681 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:350px;
  5067. top:232px;
  5068. width:60px;
  5069. height:30px;
  5070. display:flex;
  5071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5072. font-weight:400;
  5073. font-style:normal;
  5074. font-size:14px;
  5075. color:#FFFFFF;
  5076. }
  5077. #u15681 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 2px 2px 2px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u15681_text {
  5085. border-width:0px;
  5086. word-wrap:break-word;
  5087. text-transform:none;
  5088. }
  5089. #u15682_div {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:73px;
  5095. height:50px;
  5096. background:inherit;
  5097. background-color:rgba(255, 255, 255, 0);
  5098. border:none;
  5099. border-left:0px;
  5100. border-top:0px;
  5101. border-right:0px;
  5102. border-radius:0px;
  5103. border-bottom-right-radius:0px;
  5104. border-bottom-left-radius:0px;
  5105. -moz-box-shadow:none;
  5106. -webkit-box-shadow:none;
  5107. box-shadow:none;
  5108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5109. font-weight:400;
  5110. font-style:normal;
  5111. font-size:18px;
  5112. }
  5113. #u15682 {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:349px;
  5117. top:52px;
  5118. width:73px;
  5119. height:50px;
  5120. display:flex;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:18px;
  5125. }
  5126. #u15682 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:0px 0px 0px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u15682_text {
  5134. border-width:0px;
  5135. white-space:nowrap;
  5136. text-transform:none;
  5137. }
  5138. #u15683 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:0px;
  5144. height:0px;
  5145. }
  5146. #u15684_div {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:80px;
  5152. height:100px;
  5153. background:inherit;
  5154. background-color:rgba(255, 255, 255, 1);
  5155. box-sizing:border-box;
  5156. border-width:1px;
  5157. border-style:solid;
  5158. border-color:rgba(242, 242, 242, 1);
  5159. border-radius:4px;
  5160. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5161. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5162. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:14px;
  5167. text-align:left;
  5168. }
  5169. #u15684 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:1461px;
  5173. top:338px;
  5174. width:80px;
  5175. height:100px;
  5176. display:flex;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:14px;
  5181. text-align:left;
  5182. }
  5183. #u15684 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 2px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u15684_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u15685_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:66px;
  5202. height:40px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 1);
  5205. box-sizing:border-box;
  5206. border-width:1px;
  5207. border-style:solid;
  5208. border-color:rgba(215, 215, 215, 1);
  5209. border-left:0px;
  5210. border-top:0px;
  5211. border-right:0px;
  5212. border-radius:0px;
  5213. border-bottom-right-radius:0px;
  5214. border-bottom-left-radius:0px;
  5215. -moz-box-shadow:none;
  5216. -webkit-box-shadow:none;
  5217. box-shadow:none;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:14px;
  5222. }
  5223. #u15685 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:1467px;
  5227. top:348px;
  5228. width:66px;
  5229. height:40px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:14px;
  5235. }
  5236. #u15685 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 2px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u15685_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. }
  5248. #u15686_div {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:66px;
  5254. height:40px;
  5255. background:inherit;
  5256. background-color:rgba(255, 255, 255, 1);
  5257. border:none;
  5258. border-left:0px;
  5259. border-top:0px;
  5260. border-right:0px;
  5261. border-radius:0px;
  5262. border-bottom-right-radius:0px;
  5263. border-bottom-left-radius:0px;
  5264. -moz-box-shadow:none;
  5265. -webkit-box-shadow:none;
  5266. box-shadow:none;
  5267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:14px;
  5271. }
  5272. #u15686 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:1467px;
  5276. top:388px;
  5277. width:66px;
  5278. height:40px;
  5279. display:flex;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:14px;
  5284. }
  5285. #u15686 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:2px 2px 2px 2px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u15686_text {
  5293. border-width:0px;
  5294. word-wrap:break-word;
  5295. text-transform:none;
  5296. }
  5297. #u15687 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:0px;
  5303. height:0px;
  5304. }
  5305. #u15688_div {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:400px;
  5311. height:160px;
  5312. background:inherit;
  5313. background-color:rgba(255, 255, 255, 1);
  5314. box-sizing:border-box;
  5315. border-width:1px;
  5316. border-style:solid;
  5317. border-color:rgba(204, 204, 204, 1);
  5318. border-radius:0px;
  5319. -moz-box-shadow:none;
  5320. -webkit-box-shadow:none;
  5321. box-shadow:none;
  5322. font-family:'Microsoft YaHei', sans-serif;
  5323. font-weight:400;
  5324. font-style:normal;
  5325. }
  5326. #u15688 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:685px;
  5330. top:543px;
  5331. width:400px;
  5332. height:160px;
  5333. display:flex;
  5334. font-family:'Microsoft YaHei', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. }
  5338. #u15688 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 2px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u15688_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. visibility:hidden;
  5350. }
  5351. #u15689_div {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:127px;
  5357. height:21px;
  5358. background:inherit;
  5359. background-color:rgba(255, 255, 255, 0);
  5360. border:none;
  5361. border-radius:0px;
  5362. -moz-box-shadow:none;
  5363. -webkit-box-shadow:none;
  5364. box-shadow:none;
  5365. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5366. font-weight:650;
  5367. font-style:normal;
  5368. font-size:18px;
  5369. color:#000000;
  5370. line-height:22px;
  5371. }
  5372. #u15689 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:735px;
  5376. top:568px;
  5377. width:127px;
  5378. height:21px;
  5379. display:flex;
  5380. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5381. font-weight:650;
  5382. font-style:normal;
  5383. font-size:18px;
  5384. color:#000000;
  5385. line-height:22px;
  5386. }
  5387. #u15689 .text {
  5388. position:absolute;
  5389. align-self:flex-start;
  5390. padding:0px 0px 0px 0px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u15689_text {
  5395. border-width:0px;
  5396. white-space:nowrap;
  5397. text-transform:none;
  5398. }
  5399. #u15690_div {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:61px;
  5405. height:32px;
  5406. background:inherit;
  5407. background-color:rgba(24, 144, 255, 1);
  5408. border:none;
  5409. border-radius:4px;
  5410. -moz-box-shadow:none;
  5411. -webkit-box-shadow:none;
  5412. box-shadow:none;
  5413. font-family:'Microsoft YaHei', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:14px;
  5417. color:#FFFFFF;
  5418. }
  5419. #u15690 {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:1004px;
  5423. top:651px;
  5424. width:61px;
  5425. height:32px;
  5426. display:flex;
  5427. font-family:'Microsoft YaHei', sans-serif;
  5428. font-weight:400;
  5429. font-style:normal;
  5430. font-size:14px;
  5431. color:#FFFFFF;
  5432. }
  5433. #u15690 .text {
  5434. position:absolute;
  5435. align-self:center;
  5436. padding:2px 16px 2px 16px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u15690_text {
  5441. border-width:0px;
  5442. white-space:nowrap;
  5443. text-transform:none;
  5444. }
  5445. #u15691_div {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:66px;
  5451. height:32px;
  5452. background:inherit;
  5453. background-color:rgba(255, 255, 255, 1);
  5454. box-sizing:border-box;
  5455. border-width:1px;
  5456. border-style:solid;
  5457. border-color:rgba(217, 217, 217, 1);
  5458. border-radius:4px;
  5459. -moz-box-shadow:none;
  5460. -webkit-box-shadow:none;
  5461. box-shadow:none;
  5462. font-family:'Microsoft YaHei', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. color:rgba(0, 0, 0, 0.647058823529412);
  5467. line-height:21px;
  5468. }
  5469. #u15691 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:922px;
  5473. top:651px;
  5474. width:66px;
  5475. height:32px;
  5476. display:flex;
  5477. font-family:'Microsoft YaHei', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:14px;
  5481. color:rgba(0, 0, 0, 0.647058823529412);
  5482. line-height:21px;
  5483. }
  5484. #u15691 .text {
  5485. position:absolute;
  5486. align-self:center;
  5487. padding:2px 16px 2px 16px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u15691_text {
  5492. border-width:0px;
  5493. white-space:nowrap;
  5494. text-transform:none;
  5495. }
  5496. #u15692_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:24px;
  5502. height:24px;
  5503. }
  5504. #u15692 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:699px;
  5508. top:566px;
  5509. width:24px;
  5510. height:24px;
  5511. display:flex;
  5512. font-family:'Microsoft YaHei', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. font-size:52px;
  5516. color:#FAAD14;
  5517. }
  5518. #u15692 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 2px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u15692_text {
  5526. border-width:0px;
  5527. word-wrap:break-word;
  5528. text-transform:none;
  5529. visibility:hidden;
  5530. }
  5531. #u15693_div {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:326px;
  5537. height:22px;
  5538. background:inherit;
  5539. background-color:rgba(255, 255, 255, 0);
  5540. border:none;
  5541. border-radius:0px;
  5542. -moz-box-shadow:none;
  5543. -webkit-box-shadow:none;
  5544. box-shadow:none;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:12px;
  5549. color:#7F7F7F;
  5550. line-height:22px;
  5551. }
  5552. #u15693 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:735px;
  5556. top:600px;
  5557. width:326px;
  5558. height:22px;
  5559. display:flex;
  5560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:12px;
  5564. color:#7F7F7F;
  5565. line-height:22px;
  5566. }
  5567. #u15693 .text {
  5568. position:absolute;
  5569. align-self:flex-start;
  5570. padding:0px 0px 0px 0px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u15693_text {
  5575. border-width:0px;
  5576. word-wrap:break-word;
  5577. text-transform:none;
  5578. }
  5579. #u15694 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:0px;
  5585. height:0px;
  5586. }
  5587. #u15695_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:400px;
  5593. height:160px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 1);
  5596. box-sizing:border-box;
  5597. border-width:1px;
  5598. border-style:solid;
  5599. border-color:rgba(204, 204, 204, 1);
  5600. border-radius:0px;
  5601. -moz-box-shadow:none;
  5602. -webkit-box-shadow:none;
  5603. box-shadow:none;
  5604. font-family:'Microsoft YaHei', sans-serif;
  5605. font-weight:400;
  5606. font-style:normal;
  5607. }
  5608. #u15695 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:1104px;
  5612. top:543px;
  5613. width:400px;
  5614. height:160px;
  5615. display:flex;
  5616. font-family:'Microsoft YaHei', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. }
  5620. #u15695 .text {
  5621. position:absolute;
  5622. align-self:center;
  5623. padding:2px 2px 2px 2px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u15695_text {
  5628. border-width:0px;
  5629. word-wrap:break-word;
  5630. text-transform:none;
  5631. visibility:hidden;
  5632. }
  5633. #u15696_div {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:127px;
  5639. height:21px;
  5640. background:inherit;
  5641. background-color:rgba(255, 255, 255, 0);
  5642. border:none;
  5643. border-radius:0px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5648. font-weight:650;
  5649. font-style:normal;
  5650. font-size:18px;
  5651. color:#000000;
  5652. line-height:22px;
  5653. }
  5654. #u15696 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:1164px;
  5658. top:578px;
  5659. width:127px;
  5660. height:21px;
  5661. display:flex;
  5662. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5663. font-weight:650;
  5664. font-style:normal;
  5665. font-size:18px;
  5666. color:#000000;
  5667. line-height:22px;
  5668. }
  5669. #u15696 .text {
  5670. position:absolute;
  5671. align-self:flex-start;
  5672. padding:0px 0px 0px 0px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u15696_text {
  5677. border-width:0px;
  5678. white-space:nowrap;
  5679. text-transform:none;
  5680. }
  5681. #u15697_div {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:61px;
  5687. height:32px;
  5688. background:inherit;
  5689. background-color:rgba(24, 144, 255, 1);
  5690. border:none;
  5691. border-radius:4px;
  5692. -moz-box-shadow:none;
  5693. -webkit-box-shadow:none;
  5694. box-shadow:none;
  5695. font-family:'Microsoft YaHei', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:14px;
  5699. color:#FFFFFF;
  5700. }
  5701. #u15697 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:1423px;
  5705. top:648px;
  5706. width:61px;
  5707. height:32px;
  5708. display:flex;
  5709. font-family:'Microsoft YaHei', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:14px;
  5713. color:#FFFFFF;
  5714. }
  5715. #u15697 .text {
  5716. position:absolute;
  5717. align-self:center;
  5718. padding:2px 16px 2px 16px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u15697_text {
  5723. border-width:0px;
  5724. white-space:nowrap;
  5725. text-transform:none;
  5726. }
  5727. #u15698_div {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:0px;
  5732. width:66px;
  5733. height:32px;
  5734. background:inherit;
  5735. background-color:rgba(255, 255, 255, 1);
  5736. box-sizing:border-box;
  5737. border-width:1px;
  5738. border-style:solid;
  5739. border-color:rgba(217, 217, 217, 1);
  5740. border-radius:4px;
  5741. -moz-box-shadow:none;
  5742. -webkit-box-shadow:none;
  5743. box-shadow:none;
  5744. font-family:'Microsoft YaHei', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:14px;
  5748. color:rgba(0, 0, 0, 0.647058823529412);
  5749. line-height:21px;
  5750. }
  5751. #u15698 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:1341px;
  5755. top:648px;
  5756. width:66px;
  5757. height:32px;
  5758. display:flex;
  5759. font-family:'Microsoft YaHei', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:14px;
  5763. color:rgba(0, 0, 0, 0.647058823529412);
  5764. line-height:21px;
  5765. }
  5766. #u15698 .text {
  5767. position:absolute;
  5768. align-self:center;
  5769. padding:2px 16px 2px 16px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u15698_text {
  5774. border-width:0px;
  5775. white-space:nowrap;
  5776. text-transform:none;
  5777. }
  5778. #u15699_div {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:241px;
  5784. height:22px;
  5785. background:inherit;
  5786. background-color:rgba(255, 255, 255, 0);
  5787. border:none;
  5788. border-radius:0px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:12px;
  5796. color:#7F7F7F;
  5797. line-height:22px;
  5798. }
  5799. #u15699 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:1164px;
  5803. top:610px;
  5804. width:241px;
  5805. height:22px;
  5806. display:flex;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:12px;
  5811. color:#7F7F7F;
  5812. line-height:22px;
  5813. }
  5814. #u15699 .text {
  5815. position:absolute;
  5816. align-self:flex-start;
  5817. padding:0px 0px 0px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u15699_text {
  5822. border-width:0px;
  5823. white-space:nowrap;
  5824. text-transform:none;
  5825. }
  5826. #u15700_img {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:24px;
  5832. height:24px;
  5833. }
  5834. #u15700 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:1128px;
  5838. top:578px;
  5839. width:24px;
  5840. height:24px;
  5841. display:flex;
  5842. }
  5843. #u15700 .text {
  5844. position:absolute;
  5845. align-self:center;
  5846. padding:2px 2px 2px 2px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u15700_text {
  5851. border-width:0px;
  5852. word-wrap:break-word;
  5853. text-transform:none;
  5854. visibility:hidden;
  5855. }
  5856. #u15702 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:0px;
  5862. height:0px;
  5863. }
  5864. #u15703_div {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:200px;
  5870. height:1190px;
  5871. background:inherit;
  5872. background-color:rgba(255, 255, 255, 1);
  5873. border:none;
  5874. border-radius:0px;
  5875. -moz-box-shadow:none;
  5876. -webkit-box-shadow:none;
  5877. box-shadow:none;
  5878. }
  5879. #u15703 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:120px;
  5883. top:50px;
  5884. width:200px;
  5885. height:1190px;
  5886. display:flex;
  5887. }
  5888. #u15703 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:2px 2px 2px 2px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u15703_text {
  5896. border-width:0px;
  5897. word-wrap:break-word;
  5898. text-transform:none;
  5899. visibility:hidden;
  5900. }
  5901. #u15704_div {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:200px;
  5907. height:60px;
  5908. background:inherit;
  5909. background-color:rgba(224, 231, 247, 1);
  5910. border:none;
  5911. border-radius:0px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5916. font-weight:500;
  5917. font-style:normal;
  5918. font-size:18px;
  5919. }
  5920. #u15704 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:120px;
  5924. top:50px;
  5925. width:200px;
  5926. height:60px;
  5927. display:flex;
  5928. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5929. font-weight:500;
  5930. font-style:normal;
  5931. font-size:18px;
  5932. }
  5933. #u15704 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:0px 0px 0px 20px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u15704_text {
  5941. border-width:0px;
  5942. word-wrap:break-word;
  5943. text-transform:none;
  5944. }
  5945. #u15705_div {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:65px;
  5951. height:22px;
  5952. background:inherit;
  5953. background-color:rgba(255, 255, 255, 0);
  5954. border:none;
  5955. border-radius:0px;
  5956. -moz-box-shadow:none;
  5957. -webkit-box-shadow:none;
  5958. box-shadow:none;
  5959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:16px;
  5963. }
  5964. #u15705 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:145px;
  5968. top:576px;
  5969. width:65px;
  5970. height:22px;
  5971. display:flex;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:16px;
  5976. }
  5977. #u15705 .text {
  5978. position:absolute;
  5979. align-self:flex-start;
  5980. padding:0px 0px 0px 0px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u15705_text {
  5985. border-width:0px;
  5986. white-space:nowrap;
  5987. text-transform:none;
  5988. }
  5989. #u15706_div {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:49px;
  5995. height:17px;
  5996. background:inherit;
  5997. background-color:rgba(255, 255, 255, 0);
  5998. border:none;
  5999. border-radius:0px;
  6000. -moz-box-shadow:none;
  6001. -webkit-box-shadow:none;
  6002. box-shadow:none;
  6003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6004. font-weight:400;
  6005. font-style:normal;
  6006. font-size:12px;
  6007. color:#AAAAAA;
  6008. }
  6009. #u15706 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:143px;
  6013. top:539px;
  6014. width:49px;
  6015. height:17px;
  6016. display:flex;
  6017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6018. font-weight:400;
  6019. font-style:normal;
  6020. font-size:12px;
  6021. color:#AAAAAA;
  6022. }
  6023. #u15706 .text {
  6024. position:absolute;
  6025. align-self:flex-start;
  6026. padding:0px 0px 0px 0px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u15706_text {
  6031. border-width:0px;
  6032. white-space:nowrap;
  6033. text-transform:none;
  6034. }
  6035. #u15707_div {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:49px;
  6041. height:17px;
  6042. background:inherit;
  6043. background-color:rgba(255, 255, 255, 0);
  6044. border:none;
  6045. border-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:12px;
  6053. color:#AAAAAA;
  6054. }
  6055. #u15707 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:144px;
  6059. top:131px;
  6060. width:49px;
  6061. height:17px;
  6062. display:flex;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:12px;
  6067. color:#AAAAAA;
  6068. }
  6069. #u15707 .text {
  6070. position:absolute;
  6071. align-self:flex-start;
  6072. padding:0px 0px 0px 0px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u15707_text {
  6077. border-width:0px;
  6078. white-space:nowrap;
  6079. text-transform:none;
  6080. }
  6081. #u15708_div {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:65px;
  6087. height:22px;
  6088. background:inherit;
  6089. background-color:rgba(255, 255, 255, 0);
  6090. border:none;
  6091. border-radius:0px;
  6092. -moz-box-shadow:none;
  6093. -webkit-box-shadow:none;
  6094. box-shadow:none;
  6095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:16px;
  6099. }
  6100. #u15708 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:146px;
  6104. top:168px;
  6105. width:65px;
  6106. height:22px;
  6107. display:flex;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:16px;
  6112. }
  6113. #u15708 .text {
  6114. position:absolute;
  6115. align-self:flex-start;
  6116. padding:0px 0px 0px 0px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u15708_text {
  6121. border-width:0px;
  6122. white-space:nowrap;
  6123. text-transform:none;
  6124. }
  6125. #u15709_img {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:201px;
  6131. height:2px;
  6132. }
  6133. #u15709 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:120px;
  6137. top:518px;
  6138. width:200px;
  6139. height:1px;
  6140. display:flex;
  6141. }
  6142. #u15709 .text {
  6143. position:absolute;
  6144. align-self:center;
  6145. padding:2px 2px 2px 2px;
  6146. box-sizing:border-box;
  6147. width:100%;
  6148. }
  6149. #u15709_text {
  6150. border-width:0px;
  6151. word-wrap:break-word;
  6152. text-transform:none;
  6153. visibility:hidden;
  6154. }
  6155. #u15710_div {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:65px;
  6161. height:22px;
  6162. background:inherit;
  6163. background-color:rgba(255, 255, 255, 0);
  6164. border:none;
  6165. border-radius:0px;
  6166. -moz-box-shadow:none;
  6167. -webkit-box-shadow:none;
  6168. box-shadow:none;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:16px;
  6173. }
  6174. #u15710 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:145px;
  6178. top:618px;
  6179. width:65px;
  6180. height:22px;
  6181. display:flex;
  6182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:16px;
  6186. }
  6187. #u15710 .text {
  6188. position:absolute;
  6189. align-self:flex-start;
  6190. padding:0px 0px 0px 0px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u15710_text {
  6195. border-width:0px;
  6196. white-space:nowrap;
  6197. text-transform:none;
  6198. }
  6199. #u15711_div {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:49px;
  6205. height:17px;
  6206. background:inherit;
  6207. background-color:rgba(255, 255, 255, 0);
  6208. border:none;
  6209. border-radius:0px;
  6210. -moz-box-shadow:none;
  6211. -webkit-box-shadow:none;
  6212. box-shadow:none;
  6213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6214. font-weight:400;
  6215. font-style:normal;
  6216. font-size:12px;
  6217. color:#AAAAAA;
  6218. }
  6219. #u15711 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:144px;
  6223. top:355px;
  6224. width:49px;
  6225. height:17px;
  6226. display:flex;
  6227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:12px;
  6231. color:#AAAAAA;
  6232. }
  6233. #u15711 .text {
  6234. position:absolute;
  6235. align-self:flex-start;
  6236. padding:0px 0px 0px 0px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u15711_text {
  6241. border-width:0px;
  6242. white-space:nowrap;
  6243. text-transform:none;
  6244. }
  6245. #u15712_img {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:201px;
  6251. height:2px;
  6252. }
  6253. #u15712 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:121px;
  6257. top:334px;
  6258. width:200px;
  6259. height:1px;
  6260. display:flex;
  6261. }
  6262. #u15712 .text {
  6263. position:absolute;
  6264. align-self:center;
  6265. padding:2px 2px 2px 2px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u15712_text {
  6270. border-width:0px;
  6271. word-wrap:break-word;
  6272. text-transform:none;
  6273. visibility:hidden;
  6274. }
  6275. #u15713_div {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:65px;
  6281. height:22px;
  6282. background:inherit;
  6283. background-color:rgba(255, 255, 255, 0);
  6284. border:none;
  6285. border-radius:0px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:16px;
  6293. }
  6294. #u15713 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:146px;
  6298. top:392px;
  6299. width:65px;
  6300. height:22px;
  6301. display:flex;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:16px;
  6306. }
  6307. #u15713 .text {
  6308. position:absolute;
  6309. align-self:flex-start;
  6310. padding:0px 0px 0px 0px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u15713_text {
  6315. border-width:0px;
  6316. white-space:nowrap;
  6317. text-transform:none;
  6318. }
  6319. #u15714_div {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:65px;
  6325. height:22px;
  6326. background:inherit;
  6327. background-color:rgba(255, 255, 255, 0);
  6328. border:none;
  6329. border-radius:0px;
  6330. -moz-box-shadow:none;
  6331. -webkit-box-shadow:none;
  6332. box-shadow:none;
  6333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6334. font-weight:400;
  6335. font-style:normal;
  6336. font-size:16px;
  6337. }
  6338. #u15714 {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:146px;
  6342. top:434px;
  6343. width:65px;
  6344. height:22px;
  6345. display:flex;
  6346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:16px;
  6350. }
  6351. #u15714 .text {
  6352. position:absolute;
  6353. align-self:flex-start;
  6354. padding:0px 0px 0px 0px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u15714_text {
  6359. border-width:0px;
  6360. white-space:nowrap;
  6361. text-transform:none;
  6362. }
  6363. #u15715_div {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:65px;
  6369. height:22px;
  6370. background:inherit;
  6371. background-color:rgba(255, 255, 255, 0);
  6372. border:none;
  6373. border-radius:0px;
  6374. -moz-box-shadow:none;
  6375. -webkit-box-shadow:none;
  6376. box-shadow:none;
  6377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:16px;
  6381. }
  6382. #u15715 {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:145px;
  6386. top:926px;
  6387. width:65px;
  6388. height:22px;
  6389. display:flex;
  6390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6391. font-weight:400;
  6392. font-style:normal;
  6393. font-size:16px;
  6394. }
  6395. #u15715 .text {
  6396. position:absolute;
  6397. align-self:flex-start;
  6398. padding:0px 0px 0px 0px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u15715_text {
  6403. border-width:0px;
  6404. white-space:nowrap;
  6405. text-transform:none;
  6406. }
  6407. #u15716_div {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:97px;
  6413. height:22px;
  6414. background:inherit;
  6415. background-color:rgba(255, 255, 255, 0);
  6416. border:none;
  6417. border-radius:0px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:16px;
  6425. }
  6426. #u15716 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:145px;
  6430. top:718px;
  6431. width:97px;
  6432. height:22px;
  6433. display:flex;
  6434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:16px;
  6438. }
  6439. #u15716 .text {
  6440. position:absolute;
  6441. align-self:flex-start;
  6442. padding:0px 0px 0px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u15716_text {
  6447. border-width:0px;
  6448. white-space:nowrap;
  6449. text-transform:none;
  6450. }
  6451. #u15717_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:49px;
  6457. height:17px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:12px;
  6469. color:#AAAAAA;
  6470. }
  6471. #u15717 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:143px;
  6475. top:681px;
  6476. width:49px;
  6477. height:17px;
  6478. display:flex;
  6479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:12px;
  6483. color:#AAAAAA;
  6484. }
  6485. #u15717 .text {
  6486. position:absolute;
  6487. align-self:flex-start;
  6488. padding:0px 0px 0px 0px;
  6489. box-sizing:border-box;
  6490. width:100%;
  6491. }
  6492. #u15717_text {
  6493. border-width:0px;
  6494. white-space:nowrap;
  6495. text-transform:none;
  6496. }
  6497. #u15718_img {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:201px;
  6503. height:2px;
  6504. }
  6505. #u15718 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:120px;
  6509. top:660px;
  6510. width:200px;
  6511. height:1px;
  6512. display:flex;
  6513. }
  6514. #u15718 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u15718_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u15719_div {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:97px;
  6533. height:22px;
  6534. background:inherit;
  6535. background-color:rgba(255, 255, 255, 0);
  6536. border:none;
  6537. border-radius:0px;
  6538. -moz-box-shadow:none;
  6539. -webkit-box-shadow:none;
  6540. box-shadow:none;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:16px;
  6545. }
  6546. #u15719 {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:145px;
  6550. top:800px;
  6551. width:97px;
  6552. height:22px;
  6553. display:flex;
  6554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. font-size:16px;
  6558. }
  6559. #u15719 .text {
  6560. position:absolute;
  6561. align-self:flex-start;
  6562. padding:0px 0px 0px 0px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u15719_text {
  6567. border-width:0px;
  6568. white-space:nowrap;
  6569. text-transform:none;
  6570. }
  6571. #u15720_div {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:97px;
  6577. height:22px;
  6578. background:inherit;
  6579. background-color:rgba(255, 255, 255, 0);
  6580. border:none;
  6581. border-radius:0px;
  6582. -moz-box-shadow:none;
  6583. -webkit-box-shadow:none;
  6584. box-shadow:none;
  6585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6586. font-weight:400;
  6587. font-style:normal;
  6588. font-size:16px;
  6589. }
  6590. #u15720 {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:145px;
  6594. top:842px;
  6595. width:97px;
  6596. height:22px;
  6597. display:flex;
  6598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:16px;
  6602. }
  6603. #u15720 .text {
  6604. position:absolute;
  6605. align-self:flex-start;
  6606. padding:0px 0px 0px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u15720_text {
  6611. border-width:0px;
  6612. white-space:nowrap;
  6613. text-transform:none;
  6614. }
  6615. #u15721_div {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:65px;
  6621. height:22px;
  6622. background:inherit;
  6623. background-color:rgba(255, 255, 255, 0);
  6624. border:none;
  6625. border-radius:0px;
  6626. -moz-box-shadow:none;
  6627. -webkit-box-shadow:none;
  6628. box-shadow:none;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:16px;
  6633. }
  6634. #u15721 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:145px;
  6638. top:1026px;
  6639. width:65px;
  6640. height:22px;
  6641. display:flex;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:16px;
  6646. }
  6647. #u15721 .text {
  6648. position:absolute;
  6649. align-self:flex-start;
  6650. padding:0px 0px 0px 0px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u15721_text {
  6655. border-width:0px;
  6656. white-space:nowrap;
  6657. text-transform:none;
  6658. }
  6659. #u15722_div {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:49px;
  6665. height:17px;
  6666. background:inherit;
  6667. background-color:rgba(255, 255, 255, 0);
  6668. border:none;
  6669. border-radius:0px;
  6670. -moz-box-shadow:none;
  6671. -webkit-box-shadow:none;
  6672. box-shadow:none;
  6673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6674. font-weight:400;
  6675. font-style:normal;
  6676. font-size:12px;
  6677. color:#AAAAAA;
  6678. }
  6679. #u15722 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:143px;
  6683. top:989px;
  6684. width:49px;
  6685. height:17px;
  6686. display:flex;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:12px;
  6691. color:#AAAAAA;
  6692. }
  6693. #u15722 .text {
  6694. position:absolute;
  6695. align-self:flex-start;
  6696. padding:0px 0px 0px 0px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u15722_text {
  6701. border-width:0px;
  6702. white-space:nowrap;
  6703. text-transform:none;
  6704. }
  6705. #u15723_img {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:201px;
  6711. height:2px;
  6712. }
  6713. #u15723 {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:120px;
  6717. top:968px;
  6718. width:200px;
  6719. height:1px;
  6720. display:flex;
  6721. }
  6722. #u15723 .text {
  6723. position:absolute;
  6724. align-self:center;
  6725. padding:2px 2px 2px 2px;
  6726. box-sizing:border-box;
  6727. width:100%;
  6728. }
  6729. #u15723_text {
  6730. border-width:0px;
  6731. word-wrap:break-word;
  6732. text-transform:none;
  6733. visibility:hidden;
  6734. }
  6735. #u15724_div {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:65px;
  6741. height:22px;
  6742. background:inherit;
  6743. background-color:rgba(255, 255, 255, 0);
  6744. border:none;
  6745. border-radius:0px;
  6746. -moz-box-shadow:none;
  6747. -webkit-box-shadow:none;
  6748. box-shadow:none;
  6749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6750. font-weight:400;
  6751. font-style:normal;
  6752. font-size:16px;
  6753. }
  6754. #u15724 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:145px;
  6758. top:1068px;
  6759. width:65px;
  6760. height:22px;
  6761. display:flex;
  6762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6763. font-weight:400;
  6764. font-style:normal;
  6765. font-size:16px;
  6766. }
  6767. #u15724 .text {
  6768. position:absolute;
  6769. align-self:flex-start;
  6770. padding:0px 0px 0px 0px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u15724_text {
  6775. border-width:0px;
  6776. white-space:nowrap;
  6777. text-transform:none;
  6778. }
  6779. #u15725_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:97px;
  6785. height:22px;
  6786. background:inherit;
  6787. background-color:rgba(255, 255, 255, 0);
  6788. border:none;
  6789. border-radius:0px;
  6790. -moz-box-shadow:none;
  6791. -webkit-box-shadow:none;
  6792. box-shadow:none;
  6793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6794. font-weight:400;
  6795. font-style:normal;
  6796. font-size:16px;
  6797. }
  6798. #u15725 {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:145px;
  6802. top:884px;
  6803. width:97px;
  6804. height:22px;
  6805. display:flex;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:16px;
  6810. }
  6811. #u15725 .text {
  6812. position:absolute;
  6813. align-self:flex-start;
  6814. padding:0px 0px 0px 0px;
  6815. box-sizing:border-box;
  6816. width:100%;
  6817. }
  6818. #u15725_text {
  6819. border-width:0px;
  6820. white-space:nowrap;
  6821. text-transform:none;
  6822. }
  6823. #u15726_div {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:81px;
  6829. height:22px;
  6830. background:inherit;
  6831. background-color:rgba(255, 255, 255, 0);
  6832. border:none;
  6833. border-radius:0px;
  6834. -moz-box-shadow:none;
  6835. -webkit-box-shadow:none;
  6836. box-shadow:none;
  6837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:16px;
  6841. }
  6842. #u15726 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:146px;
  6846. top:476px;
  6847. width:81px;
  6848. height:22px;
  6849. display:flex;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:16px;
  6854. }
  6855. #u15726 .text {
  6856. position:absolute;
  6857. align-self:flex-start;
  6858. padding:0px 0px 0px 0px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u15726_text {
  6863. border-width:0px;
  6864. white-space:nowrap;
  6865. text-transform:none;
  6866. }
  6867. #u15727_div {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:97px;
  6873. height:22px;
  6874. background:inherit;
  6875. background-color:rgba(255, 255, 255, 0);
  6876. border:none;
  6877. border-radius:0px;
  6878. -moz-box-shadow:none;
  6879. -webkit-box-shadow:none;
  6880. box-shadow:none;
  6881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:16px;
  6885. }
  6886. #u15727 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:145px;
  6890. top:760px;
  6891. width:97px;
  6892. height:22px;
  6893. display:flex;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:16px;
  6898. }
  6899. #u15727 .text {
  6900. position:absolute;
  6901. align-self:flex-start;
  6902. padding:0px 0px 0px 0px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u15727_text {
  6907. border-width:0px;
  6908. white-space:nowrap;
  6909. text-transform:none;
  6910. }
  6911. #u15728_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:65px;
  6917. height:22px;
  6918. background:inherit;
  6919. background-color:rgba(255, 255, 255, 0);
  6920. border:none;
  6921. border-radius:0px;
  6922. -moz-box-shadow:none;
  6923. -webkit-box-shadow:none;
  6924. box-shadow:none;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. font-size:16px;
  6929. }
  6930. #u15728 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:145px;
  6934. top:210px;
  6935. width:65px;
  6936. height:22px;
  6937. display:flex;
  6938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6939. font-weight:400;
  6940. font-style:normal;
  6941. font-size:16px;
  6942. }
  6943. #u15728 .text {
  6944. position:absolute;
  6945. align-self:flex-start;
  6946. padding:0px 0px 0px 0px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u15728_text {
  6951. border-width:0px;
  6952. white-space:nowrap;
  6953. text-transform:none;
  6954. }
  6955. #u15729_div {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:81px;
  6961. height:22px;
  6962. background:inherit;
  6963. background-color:rgba(255, 255, 255, 0);
  6964. border:none;
  6965. border-radius:0px;
  6966. -moz-box-shadow:none;
  6967. -webkit-box-shadow:none;
  6968. box-shadow:none;
  6969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6970. font-weight:400;
  6971. font-style:normal;
  6972. font-size:16px;
  6973. }
  6974. #u15729 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:146px;
  6978. top:252px;
  6979. width:81px;
  6980. height:22px;
  6981. display:flex;
  6982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:16px;
  6986. }
  6987. #u15729 .text {
  6988. position:absolute;
  6989. align-self:flex-start;
  6990. padding:0px 0px 0px 0px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u15729_text {
  6995. border-width:0px;
  6996. white-space:nowrap;
  6997. text-transform:none;
  6998. }
  6999. #u15730_div {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:65px;
  7005. height:22px;
  7006. background:inherit;
  7007. background-color:rgba(255, 255, 255, 0);
  7008. border:none;
  7009. border-radius:0px;
  7010. -moz-box-shadow:none;
  7011. -webkit-box-shadow:none;
  7012. box-shadow:none;
  7013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:16px;
  7017. }
  7018. #u15730 {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:146px;
  7022. top:294px;
  7023. width:65px;
  7024. height:22px;
  7025. display:flex;
  7026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7027. font-weight:400;
  7028. font-style:normal;
  7029. font-size:16px;
  7030. }
  7031. #u15730 .text {
  7032. position:absolute;
  7033. align-self:flex-start;
  7034. padding:0px 0px 0px 0px;
  7035. box-sizing:border-box;
  7036. width:100%;
  7037. }
  7038. #u15730_text {
  7039. border-width:0px;
  7040. white-space:nowrap;
  7041. text-transform:none;
  7042. }
  7043. #u15731_div {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:407px;
  7049. height:20px;
  7050. background:inherit;
  7051. background-color:rgba(255, 255, 255, 0);
  7052. border:none;
  7053. border-left:0px;
  7054. border-top:0px;
  7055. border-right:0px;
  7056. border-radius:0px;
  7057. border-bottom-right-radius:0px;
  7058. border-bottom-left-radius:0px;
  7059. -moz-box-shadow:none;
  7060. -webkit-box-shadow:none;
  7061. box-shadow:none;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:14px;
  7066. color:#7F7F7F;
  7067. }
  7068. #u15731 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:352px;
  7072. top:100px;
  7073. width:407px;
  7074. height:20px;
  7075. display:flex;
  7076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7077. font-weight:400;
  7078. font-style:normal;
  7079. font-size:14px;
  7080. color:#7F7F7F;
  7081. }
  7082. #u15731 .text {
  7083. position:absolute;
  7084. align-self:center;
  7085. padding:0px 0px 0px 0px;
  7086. box-sizing:border-box;
  7087. width:100%;
  7088. }
  7089. #u15731_text {
  7090. border-width:0px;
  7091. white-space:nowrap;
  7092. text-transform:none;
  7093. }
  7094. #u15732_div {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:0px;
  7098. top:0px;
  7099. width:55px;
  7100. height:30px;
  7101. background:inherit;
  7102. background-color:rgba(255, 255, 255, 1);
  7103. box-sizing:border-box;
  7104. border-width:1px;
  7105. border-style:solid;
  7106. border-color:rgba(170, 170, 170, 1);
  7107. border-radius:4px;
  7108. -moz-box-shadow:none;
  7109. -webkit-box-shadow:none;
  7110. box-shadow:none;
  7111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:12px;
  7115. color:#555555;
  7116. }
  7117. #u15732 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:489px;
  7121. top:232px;
  7122. width:55px;
  7123. height:30px;
  7124. display:flex;
  7125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7126. font-weight:400;
  7127. font-style:normal;
  7128. font-size:12px;
  7129. color:#555555;
  7130. }
  7131. #u15732 .text {
  7132. position:absolute;
  7133. align-self:center;
  7134. padding:5px 15px 5px 15px;
  7135. box-sizing:border-box;
  7136. width:100%;
  7137. }
  7138. #u15732_text {
  7139. border-width:0px;
  7140. white-space:nowrap;
  7141. text-transform:none;
  7142. }
  7143. #u15733_div {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:59px;
  7149. height:30px;
  7150. background:inherit;
  7151. background-color:rgba(255, 255, 255, 1);
  7152. box-sizing:border-box;
  7153. border-width:1px;
  7154. border-style:solid;
  7155. border-color:rgba(170, 170, 170, 1);
  7156. border-radius:4px;
  7157. -moz-box-shadow:none;
  7158. -webkit-box-shadow:none;
  7159. box-shadow:none;
  7160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7161. font-weight:400;
  7162. font-style:normal;
  7163. font-size:14px;
  7164. color:#555555;
  7165. }
  7166. #u15733 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:420px;
  7170. top:232px;
  7171. width:59px;
  7172. height:30px;
  7173. display:flex;
  7174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7175. font-weight:400;
  7176. font-style:normal;
  7177. font-size:14px;
  7178. color:#555555;
  7179. }
  7180. #u15733 .text {
  7181. position:absolute;
  7182. align-self:center;
  7183. padding:5px 15px 5px 15px;
  7184. box-sizing:border-box;
  7185. width:100%;
  7186. }
  7187. #u15733_text {
  7188. border-width:0px;
  7189. white-space:nowrap;
  7190. text-transform:none;
  7191. }
  7192. #u15734 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:0px;
  7198. height:0px;
  7199. }
  7200. #u15735_div {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:60px;
  7206. height:30px;
  7207. background:inherit;
  7208. background-color:rgba(24, 144, 255, 1);
  7209. border:none;
  7210. border-radius:4px;
  7211. -moz-box-shadow:none;
  7212. -webkit-box-shadow:none;
  7213. box-shadow:none;
  7214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:14px;
  7218. color:#FFFFFF;
  7219. }
  7220. #u15735 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:350px;
  7224. top:183px;
  7225. width:60px;
  7226. height:30px;
  7227. display:flex;
  7228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:14px;
  7232. color:#FFFFFF;
  7233. }
  7234. #u15735 .text {
  7235. position:absolute;
  7236. align-self:center;
  7237. padding:2px 2px 2px 2px;
  7238. box-sizing:border-box;
  7239. width:100%;
  7240. }
  7241. #u15735_text {
  7242. border-width:0px;
  7243. word-wrap:break-word;
  7244. text-transform:none;
  7245. }
  7246. #u15736_div {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:0px;
  7250. top:0px;
  7251. width:60px;
  7252. height:30px;
  7253. background:inherit;
  7254. background-color:rgba(255, 255, 255, 1);
  7255. box-sizing:border-box;
  7256. border-width:1px;
  7257. border-style:solid;
  7258. border-color:rgba(170, 170, 170, 1);
  7259. border-radius:4px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:14px;
  7267. }
  7268. #u15736 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:420px;
  7272. top:183px;
  7273. width:60px;
  7274. height:30px;
  7275. display:flex;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:14px;
  7280. }
  7281. #u15736 .text {
  7282. position:absolute;
  7283. align-self:center;
  7284. padding:2px 2px 2px 2px;
  7285. box-sizing:border-box;
  7286. width:100%;
  7287. }
  7288. #u15736_text {
  7289. border-width:0px;
  7290. word-wrap:break-word;
  7291. text-transform:none;
  7292. }
  7293. #u15737 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:0px;
  7299. height:0px;
  7300. }
  7301. #u15738_div {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:140px;
  7307. height:30px;
  7308. background:inherit;
  7309. background-color:rgba(255, 255, 255, 1);
  7310. box-sizing:border-box;
  7311. border-width:1px;
  7312. border-style:solid;
  7313. border-color:rgba(201, 201, 201, 1);
  7314. border-radius:4px;
  7315. -moz-box-shadow:none;
  7316. -webkit-box-shadow:none;
  7317. box-shadow:none;
  7318. font-family:'Microsoft YaHei', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:14px;
  7322. color:#CCCCCC;
  7323. text-align:left;
  7324. }
  7325. #u15738 {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:800px;
  7329. top:143px;
  7330. width:140px;
  7331. height:30px;
  7332. display:flex;
  7333. font-family:'Microsoft YaHei', sans-serif;
  7334. font-weight:400;
  7335. font-style:normal;
  7336. font-size:14px;
  7337. color:#CCCCCC;
  7338. text-align:left;
  7339. }
  7340. #u15738 .text {
  7341. position:absolute;
  7342. align-self:center;
  7343. padding:2px 8px 2px 8px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u15738_text {
  7348. border-width:0px;
  7349. word-wrap:break-word;
  7350. text-transform:none;
  7351. visibility:hidden;
  7352. }
  7353. #u15739_input {
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:127px;
  7358. height:25px;
  7359. padding:2px 2px 2px 2px;
  7360. font-family:'Microsoft YaHei', sans-serif;
  7361. font-weight:400;
  7362. font-style:normal;
  7363. font-size:10px;
  7364. letter-spacing:normal;
  7365. color:#000000;
  7366. vertical-align:none;
  7367. text-align:left;
  7368. text-transform:none;
  7369. background-color:transparent;
  7370. border-color:transparent;
  7371. }
  7372. #u15739_input.disabled {
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:127px;
  7377. height:25px;
  7378. padding:2px 2px 2px 2px;
  7379. font-family:'Microsoft YaHei', sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:10px;
  7383. letter-spacing:normal;
  7384. color:#000000;
  7385. vertical-align:none;
  7386. text-align:left;
  7387. text-transform:none;
  7388. background-color:transparent;
  7389. border-color:transparent;
  7390. }
  7391. #u15739_div {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:127px;
  7397. height:25px;
  7398. background:inherit;
  7399. background-color:rgba(255, 255, 255, 1);
  7400. border:none;
  7401. border-radius:0px;
  7402. -moz-box-shadow:none;
  7403. -webkit-box-shadow:none;
  7404. box-shadow:none;
  7405. font-family:'Microsoft YaHei', sans-serif;
  7406. font-weight:400;
  7407. font-style:normal;
  7408. font-size:10px;
  7409. }
  7410. #u15739 {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:808px;
  7414. top:144px;
  7415. width:127px;
  7416. height:25px;
  7417. display:flex;
  7418. font-family:'Microsoft YaHei', sans-serif;
  7419. font-weight:400;
  7420. font-style:normal;
  7421. font-size:10px;
  7422. }
  7423. #u15739 .text {
  7424. position:absolute;
  7425. align-self:center;
  7426. padding:2px 2px 2px 2px;
  7427. box-sizing:border-box;
  7428. width:100%;
  7429. }
  7430. #u15739_div.disabled {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:127px;
  7436. height:25px;
  7437. background:inherit;
  7438. background-color:rgba(240, 240, 240, 1);
  7439. border:none;
  7440. border-radius:0px;
  7441. -moz-box-shadow:none;
  7442. -webkit-box-shadow:none;
  7443. box-shadow:none;
  7444. font-family:'Microsoft YaHei', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:10px;
  7448. }
  7449. #u15739.disabled {
  7450. }
  7451. #u15740 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:0px;
  7457. height:0px;
  7458. }
  7459. #u15741_div {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:0px;
  7463. top:0px;
  7464. width:140px;
  7465. height:30px;
  7466. background:inherit;
  7467. background-color:rgba(255, 255, 255, 1);
  7468. box-sizing:border-box;
  7469. border-width:1px;
  7470. border-style:solid;
  7471. border-color:rgba(201, 201, 201, 1);
  7472. border-radius:4px;
  7473. -moz-box-shadow:none;
  7474. -webkit-box-shadow:none;
  7475. box-shadow:none;
  7476. font-family:'Microsoft YaHei', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. font-size:14px;
  7480. color:#CCCCCC;
  7481. text-align:left;
  7482. }
  7483. #u15741 {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:950px;
  7487. top:143px;
  7488. width:140px;
  7489. height:30px;
  7490. display:flex;
  7491. font-family:'Microsoft YaHei', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. font-size:14px;
  7495. color:#CCCCCC;
  7496. text-align:left;
  7497. }
  7498. #u15741 .text {
  7499. position:absolute;
  7500. align-self:center;
  7501. padding:2px 8px 2px 8px;
  7502. box-sizing:border-box;
  7503. width:100%;
  7504. }
  7505. #u15741_text {
  7506. border-width:0px;
  7507. word-wrap:break-word;
  7508. text-transform:none;
  7509. visibility:hidden;
  7510. }
  7511. #u15742_input {
  7512. position:absolute;
  7513. left:0px;
  7514. top:0px;
  7515. width:127px;
  7516. height:25px;
  7517. padding:2px 2px 2px 2px;
  7518. font-family:'Microsoft YaHei', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:10px;
  7522. letter-spacing:normal;
  7523. color:#000000;
  7524. vertical-align:none;
  7525. text-align:left;
  7526. text-transform:none;
  7527. background-color:transparent;
  7528. border-color:transparent;
  7529. }
  7530. #u15742_input.disabled {
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:127px;
  7535. height:25px;
  7536. padding:2px 2px 2px 2px;
  7537. font-family:'Microsoft YaHei', sans-serif;
  7538. font-weight:400;
  7539. font-style:normal;
  7540. font-size:10px;
  7541. letter-spacing:normal;
  7542. color:#000000;
  7543. vertical-align:none;
  7544. text-align:left;
  7545. text-transform:none;
  7546. background-color:transparent;
  7547. border-color:transparent;
  7548. }
  7549. #u15742_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:127px;
  7555. height:25px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 1);
  7558. border:none;
  7559. border-radius:0px;
  7560. -moz-box-shadow:none;
  7561. -webkit-box-shadow:none;
  7562. box-shadow:none;
  7563. font-family:'Microsoft YaHei', sans-serif;
  7564. font-weight:400;
  7565. font-style:normal;
  7566. font-size:10px;
  7567. }
  7568. #u15742 {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:958px;
  7572. top:144px;
  7573. width:127px;
  7574. height:25px;
  7575. display:flex;
  7576. font-family:'Microsoft YaHei', sans-serif;
  7577. font-weight:400;
  7578. font-style:normal;
  7579. font-size:10px;
  7580. }
  7581. #u15742 .text {
  7582. position:absolute;
  7583. align-self:center;
  7584. padding:2px 2px 2px 2px;
  7585. box-sizing:border-box;
  7586. width:100%;
  7587. }
  7588. #u15742_div.disabled {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:0px;
  7592. top:0px;
  7593. width:127px;
  7594. height:25px;
  7595. background:inherit;
  7596. background-color:rgba(240, 240, 240, 1);
  7597. border:none;
  7598. border-radius:0px;
  7599. -moz-box-shadow:none;
  7600. -webkit-box-shadow:none;
  7601. box-shadow:none;
  7602. font-family:'Microsoft YaHei', sans-serif;
  7603. font-weight:400;
  7604. font-style:normal;
  7605. font-size:10px;
  7606. }
  7607. #u15742.disabled {
  7608. }
  7609. #u15743 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:0px;
  7615. height:0px;
  7616. }
  7617. #u15744_div {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:140px;
  7623. height:30px;
  7624. background:inherit;
  7625. background-color:rgba(255, 255, 255, 1);
  7626. box-sizing:border-box;
  7627. border-width:1px;
  7628. border-style:solid;
  7629. border-color:rgba(201, 201, 201, 1);
  7630. border-radius:4px;
  7631. -moz-box-shadow:none;
  7632. -webkit-box-shadow:none;
  7633. box-shadow:none;
  7634. font-family:'Microsoft YaHei', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:14px;
  7638. color:#CCCCCC;
  7639. text-align:left;
  7640. }
  7641. #u15744 {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:1250px;
  7645. top:143px;
  7646. width:140px;
  7647. height:30px;
  7648. display:flex;
  7649. font-family:'Microsoft YaHei', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:14px;
  7653. color:#CCCCCC;
  7654. text-align:left;
  7655. }
  7656. #u15744 .text {
  7657. position:absolute;
  7658. align-self:center;
  7659. padding:2px 8px 2px 8px;
  7660. box-sizing:border-box;
  7661. width:100%;
  7662. }
  7663. #u15744_text {
  7664. border-width:0px;
  7665. word-wrap:break-word;
  7666. text-transform:none;
  7667. visibility:hidden;
  7668. }
  7669. #u15745_input {
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:127px;
  7674. height:25px;
  7675. padding:2px 2px 2px 2px;
  7676. font-family:'Microsoft YaHei', sans-serif;
  7677. font-weight:400;
  7678. font-style:normal;
  7679. font-size:10px;
  7680. letter-spacing:normal;
  7681. color:#000000;
  7682. vertical-align:none;
  7683. text-align:left;
  7684. text-transform:none;
  7685. background-color:transparent;
  7686. border-color:transparent;
  7687. }
  7688. #u15745_input.disabled {
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:127px;
  7693. height:25px;
  7694. padding:2px 2px 2px 2px;
  7695. font-family:'Microsoft YaHei', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:10px;
  7699. letter-spacing:normal;
  7700. color:#000000;
  7701. vertical-align:none;
  7702. text-align:left;
  7703. text-transform:none;
  7704. background-color:transparent;
  7705. border-color:transparent;
  7706. }
  7707. #u15745_div {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:127px;
  7713. height:25px;
  7714. background:inherit;
  7715. background-color:rgba(255, 255, 255, 1);
  7716. border:none;
  7717. border-radius:0px;
  7718. -moz-box-shadow:none;
  7719. -webkit-box-shadow:none;
  7720. box-shadow:none;
  7721. font-family:'Microsoft YaHei', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:10px;
  7725. }
  7726. #u15745 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:1258px;
  7730. top:144px;
  7731. width:127px;
  7732. height:25px;
  7733. display:flex;
  7734. font-family:'Microsoft YaHei', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:10px;
  7738. }
  7739. #u15745 .text {
  7740. position:absolute;
  7741. align-self:center;
  7742. padding:2px 2px 2px 2px;
  7743. box-sizing:border-box;
  7744. width:100%;
  7745. }
  7746. #u15745_div.disabled {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:127px;
  7752. height:25px;
  7753. background:inherit;
  7754. background-color:rgba(240, 240, 240, 1);
  7755. border:none;
  7756. border-radius:0px;
  7757. -moz-box-shadow:none;
  7758. -webkit-box-shadow:none;
  7759. box-shadow:none;
  7760. font-family:'Microsoft YaHei', sans-serif;
  7761. font-weight:400;
  7762. font-style:normal;
  7763. font-size:10px;
  7764. }
  7765. #u15745.disabled {
  7766. }
  7767. #u15746 {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:0px;
  7771. top:0px;
  7772. width:0px;
  7773. height:0px;
  7774. }
  7775. #u15747_div {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:140px;
  7781. height:30px;
  7782. background:inherit;
  7783. background-color:rgba(255, 255, 255, 1);
  7784. box-sizing:border-box;
  7785. border-width:1px;
  7786. border-style:solid;
  7787. border-color:rgba(215, 215, 215, 1);
  7788. border-radius:4px;
  7789. -moz-box-shadow:none;
  7790. -webkit-box-shadow:none;
  7791. box-shadow:none;
  7792. font-size:14px;
  7793. }
  7794. #u15747 {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:1100px;
  7798. top:143px;
  7799. width:140px;
  7800. height:30px;
  7801. display:flex;
  7802. font-size:14px;
  7803. }
  7804. #u15747 .text {
  7805. position:absolute;
  7806. align-self:center;
  7807. padding:2px 2px 2px 2px;
  7808. box-sizing:border-box;
  7809. width:100%;
  7810. }
  7811. #u15747_text {
  7812. border-width:0px;
  7813. word-wrap:break-word;
  7814. text-transform:none;
  7815. visibility:hidden;
  7816. }
  7817. #u15748_input {
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:134px;
  7822. height:23px;
  7823. padding:2px 2px 2px 2px;
  7824. font-family:'ArialMT', 'Arial', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:14px;
  7828. letter-spacing:normal;
  7829. color:#AAAAAA;
  7830. vertical-align:none;
  7831. text-align:left;
  7832. text-transform:none;
  7833. background-color:transparent;
  7834. border-color:transparent;
  7835. }
  7836. #u15748_input.disabled {
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:134px;
  7841. height:23px;
  7842. padding:2px 2px 2px 2px;
  7843. font-family:'ArialMT', 'Arial', sans-serif;
  7844. font-weight:400;
  7845. font-style:normal;
  7846. font-size:14px;
  7847. letter-spacing:normal;
  7848. color:#AAAAAA;
  7849. vertical-align:none;
  7850. text-align:left;
  7851. text-transform:none;
  7852. background-color:transparent;
  7853. border-color:transparent;
  7854. }
  7855. #u15748_div {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:134px;
  7861. height:23px;
  7862. background:inherit;
  7863. background-color:rgba(255, 255, 255, 1);
  7864. border:none;
  7865. border-radius:0px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. font-size:14px;
  7870. color:#AAAAAA;
  7871. }
  7872. #u15748 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:1104px;
  7876. top:145px;
  7877. width:134px;
  7878. height:23px;
  7879. display:flex;
  7880. font-size:14px;
  7881. color:#AAAAAA;
  7882. }
  7883. #u15748 .text {
  7884. position:absolute;
  7885. align-self:flex-start;
  7886. padding:2px 2px 2px 2px;
  7887. box-sizing:border-box;
  7888. width:100%;
  7889. }
  7890. #u15748_div.disabled {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:0px;
  7894. top:0px;
  7895. width:134px;
  7896. height:23px;
  7897. background:inherit;
  7898. background-color:rgba(240, 240, 240, 1);
  7899. border:none;
  7900. border-radius:0px;
  7901. -moz-box-shadow:none;
  7902. -webkit-box-shadow:none;
  7903. box-shadow:none;
  7904. font-size:14px;
  7905. color:#AAAAAA;
  7906. }
  7907. #u15748.disabled {
  7908. }
  7909. .u15748_input_option {
  7910. font-size:14px;
  7911. }
  7912. #u15749 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:0px;
  7916. top:0px;
  7917. width:0px;
  7918. height:0px;
  7919. }
  7920. #u15750_div {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:140px;
  7926. height:30px;
  7927. background:inherit;
  7928. background-color:rgba(255, 255, 255, 1);
  7929. box-sizing:border-box;
  7930. border-width:1px;
  7931. border-style:solid;
  7932. border-color:rgba(215, 215, 215, 1);
  7933. border-radius:4px;
  7934. -moz-box-shadow:none;
  7935. -webkit-box-shadow:none;
  7936. box-shadow:none;
  7937. font-size:14px;
  7938. }
  7939. #u15750 {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:350px;
  7943. top:143px;
  7944. width:140px;
  7945. height:30px;
  7946. display:flex;
  7947. font-size:14px;
  7948. }
  7949. #u15750 .text {
  7950. position:absolute;
  7951. align-self:center;
  7952. padding:2px 2px 2px 2px;
  7953. box-sizing:border-box;
  7954. width:100%;
  7955. }
  7956. #u15750_text {
  7957. border-width:0px;
  7958. word-wrap:break-word;
  7959. text-transform:none;
  7960. visibility:hidden;
  7961. }
  7962. #u15751_input {
  7963. position:absolute;
  7964. left:0px;
  7965. top:0px;
  7966. width:134px;
  7967. height:23px;
  7968. padding:2px 2px 2px 2px;
  7969. font-family:'ArialMT', 'Arial', sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:14px;
  7973. letter-spacing:normal;
  7974. color:#AAAAAA;
  7975. vertical-align:none;
  7976. text-align:left;
  7977. text-transform:none;
  7978. background-color:transparent;
  7979. border-color:transparent;
  7980. }
  7981. #u15751_input.disabled {
  7982. position:absolute;
  7983. left:0px;
  7984. top:0px;
  7985. width:134px;
  7986. height:23px;
  7987. padding:2px 2px 2px 2px;
  7988. font-family:'ArialMT', 'Arial', sans-serif;
  7989. font-weight:400;
  7990. font-style:normal;
  7991. font-size:14px;
  7992. letter-spacing:normal;
  7993. color:#AAAAAA;
  7994. vertical-align:none;
  7995. text-align:left;
  7996. text-transform:none;
  7997. background-color:transparent;
  7998. border-color:transparent;
  7999. }
  8000. #u15751_div {
  8001. border-width:0px;
  8002. position:absolute;
  8003. left:0px;
  8004. top:0px;
  8005. width:134px;
  8006. height:23px;
  8007. background:inherit;
  8008. background-color:rgba(255, 255, 255, 1);
  8009. border:none;
  8010. border-radius:0px;
  8011. -moz-box-shadow:none;
  8012. -webkit-box-shadow:none;
  8013. box-shadow:none;
  8014. font-size:14px;
  8015. color:#AAAAAA;
  8016. }
  8017. #u15751 {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:354px;
  8021. top:145px;
  8022. width:134px;
  8023. height:23px;
  8024. display:flex;
  8025. font-size:14px;
  8026. color:#AAAAAA;
  8027. }
  8028. #u15751 .text {
  8029. position:absolute;
  8030. align-self:flex-start;
  8031. padding:2px 2px 2px 2px;
  8032. box-sizing:border-box;
  8033. width:100%;
  8034. }
  8035. #u15751_div.disabled {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:134px;
  8041. height:23px;
  8042. background:inherit;
  8043. background-color:rgba(240, 240, 240, 1);
  8044. border:none;
  8045. border-radius:0px;
  8046. -moz-box-shadow:none;
  8047. -webkit-box-shadow:none;
  8048. box-shadow:none;
  8049. font-size:14px;
  8050. color:#AAAAAA;
  8051. }
  8052. #u15751.disabled {
  8053. }
  8054. .u15751_input_option {
  8055. font-size:14px;
  8056. }
  8057. #u15752_div {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:680px;
  8063. height:44px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 0);
  8066. border:none;
  8067. border-top:0px;
  8068. border-right:0px;
  8069. border-bottom:0px;
  8070. border-radius:0px;
  8071. border-top-left-radius:0px;
  8072. border-bottom-left-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:12px;
  8080. color:#D9001B;
  8081. }
  8082. #u15752 {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:685px;
  8086. top:490px;
  8087. width:680px;
  8088. height:44px;
  8089. display:flex;
  8090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:12px;
  8094. color:#D9001B;
  8095. }
  8096. #u15752 .text {
  8097. position:absolute;
  8098. align-self:center;
  8099. padding:5px 0px 5px 0px;
  8100. box-sizing:border-box;
  8101. width:100%;
  8102. }
  8103. #u15752_text {
  8104. border-width:0px;
  8105. white-space:nowrap;
  8106. text-transform:none;
  8107. }
  8108. #u15753 {
  8109. border-width:0px;
  8110. position:absolute;
  8111. left:0px;
  8112. top:0px;
  8113. width:0px;
  8114. height:0px;
  8115. }
  8116. #u15754_div {
  8117. border-width:0px;
  8118. position:absolute;
  8119. left:0px;
  8120. top:0px;
  8121. width:140px;
  8122. height:30px;
  8123. background:inherit;
  8124. background-color:rgba(255, 255, 255, 1);
  8125. box-sizing:border-box;
  8126. border-width:1px;
  8127. border-style:solid;
  8128. border-color:rgba(215, 215, 215, 1);
  8129. border-radius:4px;
  8130. -moz-box-shadow:none;
  8131. -webkit-box-shadow:none;
  8132. box-shadow:none;
  8133. font-size:14px;
  8134. }
  8135. #u15754 {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:648px;
  8139. top:145px;
  8140. width:140px;
  8141. height:30px;
  8142. display:flex;
  8143. font-size:14px;
  8144. }
  8145. #u15754 .text {
  8146. position:absolute;
  8147. align-self:center;
  8148. padding:2px 2px 2px 2px;
  8149. box-sizing:border-box;
  8150. width:100%;
  8151. }
  8152. #u15754_text {
  8153. border-width:0px;
  8154. word-wrap:break-word;
  8155. text-transform:none;
  8156. visibility:hidden;
  8157. }
  8158. #u15755_input {
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:134px;
  8163. height:23px;
  8164. padding:2px 2px 2px 2px;
  8165. font-family:'ArialMT', 'Arial', sans-serif;
  8166. font-weight:400;
  8167. font-style:normal;
  8168. font-size:14px;
  8169. letter-spacing:normal;
  8170. color:#AAAAAA;
  8171. vertical-align:none;
  8172. text-align:left;
  8173. text-transform:none;
  8174. background-color:transparent;
  8175. border-color:transparent;
  8176. }
  8177. #u15755_input.disabled {
  8178. position:absolute;
  8179. left:0px;
  8180. top:0px;
  8181. width:134px;
  8182. height:23px;
  8183. padding:2px 2px 2px 2px;
  8184. font-family:'ArialMT', 'Arial', sans-serif;
  8185. font-weight:400;
  8186. font-style:normal;
  8187. font-size:14px;
  8188. letter-spacing:normal;
  8189. color:#AAAAAA;
  8190. vertical-align:none;
  8191. text-align:left;
  8192. text-transform:none;
  8193. background-color:transparent;
  8194. border-color:transparent;
  8195. }
  8196. #u15755_div {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:0px;
  8200. top:0px;
  8201. width:134px;
  8202. height:23px;
  8203. background:inherit;
  8204. background-color:rgba(255, 255, 255, 1);
  8205. border:none;
  8206. border-radius:0px;
  8207. -moz-box-shadow:none;
  8208. -webkit-box-shadow:none;
  8209. box-shadow:none;
  8210. font-size:14px;
  8211. color:#AAAAAA;
  8212. }
  8213. #u15755 {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:652px;
  8217. top:147px;
  8218. width:134px;
  8219. height:23px;
  8220. display:flex;
  8221. font-size:14px;
  8222. color:#AAAAAA;
  8223. }
  8224. #u15755 .text {
  8225. position:absolute;
  8226. align-self:flex-start;
  8227. padding:2px 2px 2px 2px;
  8228. box-sizing:border-box;
  8229. width:100%;
  8230. }
  8231. #u15755_div.disabled {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:0px;
  8235. top:0px;
  8236. width:134px;
  8237. height:23px;
  8238. background:inherit;
  8239. background-color:rgba(240, 240, 240, 1);
  8240. border:none;
  8241. border-radius:0px;
  8242. -moz-box-shadow:none;
  8243. -webkit-box-shadow:none;
  8244. box-shadow:none;
  8245. font-size:14px;
  8246. color:#AAAAAA;
  8247. }
  8248. #u15755.disabled {
  8249. }
  8250. .u15755_input_option {
  8251. font-size:14px;
  8252. }
  8253. #u15756 {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:0px;
  8257. top:0px;
  8258. width:0px;
  8259. height:0px;
  8260. }
  8261. #u15757_div {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:0px;
  8265. top:0px;
  8266. width:140px;
  8267. height:30px;
  8268. background:inherit;
  8269. background-color:rgba(255, 255, 255, 1);
  8270. box-sizing:border-box;
  8271. border-width:1px;
  8272. border-style:solid;
  8273. border-color:rgba(215, 215, 215, 1);
  8274. border-radius:4px;
  8275. -moz-box-shadow:none;
  8276. -webkit-box-shadow:none;
  8277. box-shadow:none;
  8278. font-size:14px;
  8279. }
  8280. #u15757 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:498px;
  8284. top:145px;
  8285. width:140px;
  8286. height:30px;
  8287. display:flex;
  8288. font-size:14px;
  8289. }
  8290. #u15757 .text {
  8291. position:absolute;
  8292. align-self:center;
  8293. padding:2px 2px 2px 2px;
  8294. box-sizing:border-box;
  8295. width:100%;
  8296. }
  8297. #u15757_text {
  8298. border-width:0px;
  8299. word-wrap:break-word;
  8300. text-transform:none;
  8301. visibility:hidden;
  8302. }
  8303. #u15758_input {
  8304. position:absolute;
  8305. left:0px;
  8306. top:0px;
  8307. width:134px;
  8308. height:23px;
  8309. padding:2px 2px 2px 2px;
  8310. font-family:'ArialMT', 'Arial', sans-serif;
  8311. font-weight:400;
  8312. font-style:normal;
  8313. font-size:14px;
  8314. letter-spacing:normal;
  8315. color:#AAAAAA;
  8316. vertical-align:none;
  8317. text-align:left;
  8318. text-transform:none;
  8319. background-color:transparent;
  8320. border-color:transparent;
  8321. }
  8322. #u15758_input.disabled {
  8323. position:absolute;
  8324. left:0px;
  8325. top:0px;
  8326. width:134px;
  8327. height:23px;
  8328. padding:2px 2px 2px 2px;
  8329. font-family:'ArialMT', 'Arial', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:14px;
  8333. letter-spacing:normal;
  8334. color:#AAAAAA;
  8335. vertical-align:none;
  8336. text-align:left;
  8337. text-transform:none;
  8338. background-color:transparent;
  8339. border-color:transparent;
  8340. }
  8341. #u15758_div {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:134px;
  8347. height:23px;
  8348. background:inherit;
  8349. background-color:rgba(255, 255, 255, 1);
  8350. border:none;
  8351. border-radius:0px;
  8352. -moz-box-shadow:none;
  8353. -webkit-box-shadow:none;
  8354. box-shadow:none;
  8355. font-size:14px;
  8356. color:#AAAAAA;
  8357. }
  8358. #u15758 {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:502px;
  8362. top:147px;
  8363. width:134px;
  8364. height:23px;
  8365. display:flex;
  8366. font-size:14px;
  8367. color:#AAAAAA;
  8368. }
  8369. #u15758 .text {
  8370. position:absolute;
  8371. align-self:flex-start;
  8372. padding:2px 2px 2px 2px;
  8373. box-sizing:border-box;
  8374. width:100%;
  8375. }
  8376. #u15758_div.disabled {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:134px;
  8382. height:23px;
  8383. background:inherit;
  8384. background-color:rgba(240, 240, 240, 1);
  8385. border:none;
  8386. border-radius:0px;
  8387. -moz-box-shadow:none;
  8388. -webkit-box-shadow:none;
  8389. box-shadow:none;
  8390. font-size:14px;
  8391. color:#AAAAAA;
  8392. }
  8393. #u15758.disabled {
  8394. }
  8395. .u15758_input_option {
  8396. font-size:14px;
  8397. }
  8398. #u15759_div {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:115px;
  8404. height:30px;
  8405. background:inherit;
  8406. background-color:rgba(255, 255, 255, 1);
  8407. border:none;
  8408. border-radius:4px;
  8409. -moz-box-shadow:none;
  8410. -webkit-box-shadow:none;
  8411. box-shadow:none;
  8412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8413. font-weight:400;
  8414. font-style:normal;
  8415. font-size:12px;
  8416. text-decoration:underline ;
  8417. color:#298FFF;
  8418. }
  8419. #u15759 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:1446px;
  8423. top:232px;
  8424. width:115px;
  8425. height:30px;
  8426. display:flex;
  8427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8428. font-weight:400;
  8429. font-style:normal;
  8430. font-size:12px;
  8431. text-decoration:underline ;
  8432. color:#298FFF;
  8433. }
  8434. #u15759 .text {
  8435. position:absolute;
  8436. align-self:center;
  8437. padding:5px 15px 5px 15px;
  8438. box-sizing:border-box;
  8439. width:100%;
  8440. }
  8441. #u15759_text {
  8442. border-width:0px;
  8443. white-space:nowrap;
  8444. text-transform:none;
  8445. }
  8446. #u15760 {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:0px;
  8452. height:0px;
  8453. }
  8454. #u15761_div {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:0px;
  8458. top:0px;
  8459. width:140px;
  8460. height:30px;
  8461. background:inherit;
  8462. background-color:rgba(255, 255, 255, 1);
  8463. box-sizing:border-box;
  8464. border-width:1px;
  8465. border-style:solid;
  8466. border-color:rgba(215, 215, 215, 1);
  8467. border-radius:4px;
  8468. -moz-box-shadow:none;
  8469. -webkit-box-shadow:none;
  8470. box-shadow:none;
  8471. font-size:14px;
  8472. }
  8473. #u15761 {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:1400px;
  8477. top:143px;
  8478. width:140px;
  8479. height:30px;
  8480. display:flex;
  8481. font-size:14px;
  8482. }
  8483. #u15761 .text {
  8484. position:absolute;
  8485. align-self:center;
  8486. padding:2px 2px 2px 2px;
  8487. box-sizing:border-box;
  8488. width:100%;
  8489. }
  8490. #u15761_text {
  8491. border-width:0px;
  8492. word-wrap:break-word;
  8493. text-transform:none;
  8494. visibility:hidden;
  8495. }
  8496. #u15762_input {
  8497. position:absolute;
  8498. left:0px;
  8499. top:0px;
  8500. width:134px;
  8501. height:23px;
  8502. padding:2px 2px 2px 2px;
  8503. font-family:'ArialMT', 'Arial', sans-serif;
  8504. font-weight:400;
  8505. font-style:normal;
  8506. font-size:14px;
  8507. letter-spacing:normal;
  8508. color:#AAAAAA;
  8509. vertical-align:none;
  8510. text-align:left;
  8511. text-transform:none;
  8512. background-color:transparent;
  8513. border-color:transparent;
  8514. }
  8515. #u15762_input.disabled {
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:134px;
  8520. height:23px;
  8521. padding:2px 2px 2px 2px;
  8522. font-family:'ArialMT', 'Arial', sans-serif;
  8523. font-weight:400;
  8524. font-style:normal;
  8525. font-size:14px;
  8526. letter-spacing:normal;
  8527. color:#AAAAAA;
  8528. vertical-align:none;
  8529. text-align:left;
  8530. text-transform:none;
  8531. background-color:transparent;
  8532. border-color:transparent;
  8533. }
  8534. #u15762_div {
  8535. border-width:0px;
  8536. position:absolute;
  8537. left:0px;
  8538. top:0px;
  8539. width:134px;
  8540. height:23px;
  8541. background:inherit;
  8542. background-color:rgba(255, 255, 255, 1);
  8543. border:none;
  8544. border-radius:0px;
  8545. -moz-box-shadow:none;
  8546. -webkit-box-shadow:none;
  8547. box-shadow:none;
  8548. font-size:14px;
  8549. color:#AAAAAA;
  8550. }
  8551. #u15762 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:1404px;
  8555. top:145px;
  8556. width:134px;
  8557. height:23px;
  8558. display:flex;
  8559. font-size:14px;
  8560. color:#AAAAAA;
  8561. }
  8562. #u15762 .text {
  8563. position:absolute;
  8564. align-self:flex-start;
  8565. padding:2px 2px 2px 2px;
  8566. box-sizing:border-box;
  8567. width:100%;
  8568. }
  8569. #u15762_div.disabled {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:0px;
  8573. top:0px;
  8574. width:134px;
  8575. height:23px;
  8576. background:inherit;
  8577. background-color:rgba(240, 240, 240, 1);
  8578. border:none;
  8579. border-radius:0px;
  8580. -moz-box-shadow:none;
  8581. -webkit-box-shadow:none;
  8582. box-shadow:none;
  8583. font-size:14px;
  8584. color:#AAAAAA;
  8585. }
  8586. #u15762.disabled {
  8587. }
  8588. .u15762_input_option {
  8589. font-size:14px;
  8590. }
  8591. #u15763 {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:0px;
  8597. height:0px;
  8598. }
  8599. #u15764_div {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:0px;
  8603. top:0px;
  8604. width:1000px;
  8605. height:1196px;
  8606. background:inherit;
  8607. background-color:rgba(255, 255, 255, 1);
  8608. box-sizing:border-box;
  8609. border-width:1px;
  8610. border-style:solid;
  8611. border-color:rgba(215, 215, 215, 1);
  8612. border-radius:0px;
  8613. -moz-box-shadow:none;
  8614. -webkit-box-shadow:none;
  8615. box-shadow:none;
  8616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8617. font-weight:400;
  8618. font-style:normal;
  8619. font-size:14px;
  8620. color:#AAAAAA;
  8621. text-align:center;
  8622. line-height:30px;
  8623. }
  8624. #u15764 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:1620px;
  8628. top:47px;
  8629. width:1000px;
  8630. height:1196px;
  8631. display:flex;
  8632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:14px;
  8636. color:#AAAAAA;
  8637. text-align:center;
  8638. line-height:30px;
  8639. }
  8640. #u15764 .text {
  8641. position:absolute;
  8642. align-self:center;
  8643. padding:5px 10px 5px 10px;
  8644. box-sizing:border-box;
  8645. width:100%;
  8646. }
  8647. #u15764_text {
  8648. border-width:0px;
  8649. word-wrap:break-word;
  8650. text-transform:none;
  8651. visibility:hidden;
  8652. }
  8653. #u15765_div {
  8654. border-width:0px;
  8655. position:absolute;
  8656. left:0px;
  8657. top:0px;
  8658. width:137px;
  8659. height:35px;
  8660. background:inherit;
  8661. background-color:rgba(255, 255, 255, 0);
  8662. border:none;
  8663. border-top:0px;
  8664. border-right:0px;
  8665. border-bottom:0px;
  8666. border-radius:0px;
  8667. border-top-left-radius:0px;
  8668. border-bottom-left-radius:0px;
  8669. -moz-box-shadow:none;
  8670. -webkit-box-shadow:none;
  8671. box-shadow:none;
  8672. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8673. font-weight:500;
  8674. font-style:normal;
  8675. font-size:18px;
  8676. }
  8677. #u15765 {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:1640px;
  8681. top:65px;
  8682. width:137px;
  8683. height:35px;
  8684. display:flex;
  8685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8686. font-weight:500;
  8687. font-style:normal;
  8688. font-size:18px;
  8689. }
  8690. #u15765 .text {
  8691. position:absolute;
  8692. align-self:center;
  8693. padding:5px 10px 5px 0px;
  8694. box-sizing:border-box;
  8695. width:100%;
  8696. }
  8697. #u15765_text {
  8698. border-width:0px;
  8699. white-space:nowrap;
  8700. text-transform:none;
  8701. }
  8702. #u15766 {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:0px;
  8706. top:0px;
  8707. width:0px;
  8708. height:0px;
  8709. }
  8710. #u15767_div {
  8711. border-width:0px;
  8712. position:absolute;
  8713. left:0px;
  8714. top:0px;
  8715. width:40px;
  8716. height:40px;
  8717. background:inherit;
  8718. background-color:rgba(255, 255, 255, 0);
  8719. border:none;
  8720. border-top:0px;
  8721. border-right:0px;
  8722. border-bottom:0px;
  8723. border-radius:0px;
  8724. border-top-left-radius:0px;
  8725. border-bottom-left-radius:0px;
  8726. -moz-box-shadow:none;
  8727. -webkit-box-shadow:none;
  8728. box-shadow:none;
  8729. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8730. font-weight:500;
  8731. font-style:normal;
  8732. font-size:18px;
  8733. text-align:center;
  8734. }
  8735. #u15767 {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:2580px;
  8739. top:47px;
  8740. width:40px;
  8741. height:40px;
  8742. display:flex;
  8743. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8744. font-weight:500;
  8745. font-style:normal;
  8746. font-size:18px;
  8747. text-align:center;
  8748. }
  8749. #u15767 .text {
  8750. position:absolute;
  8751. align-self:center;
  8752. padding:5px 10px 5px 0px;
  8753. box-sizing:border-box;
  8754. width:100%;
  8755. }
  8756. #u15767_text {
  8757. border-width:0px;
  8758. word-wrap:break-word;
  8759. text-transform:none;
  8760. }
  8761. #u15768_img {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:0px;
  8765. top:0px;
  8766. width:13px;
  8767. height:13px;
  8768. }
  8769. #u15768 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:2568px;
  8773. top:63px;
  8774. width:13px;
  8775. height:13px;
  8776. display:flex;
  8777. }
  8778. #u15768 .text {
  8779. position:absolute;
  8780. align-self:center;
  8781. padding:2px 2px 2px 2px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u15768_text {
  8786. border-width:0px;
  8787. word-wrap:break-word;
  8788. text-transform:none;
  8789. visibility:hidden;
  8790. }
  8791. #u15769 {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:0px;
  8797. height:0px;
  8798. }
  8799. #u15770_div {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:1000px;
  8805. height:50px;
  8806. background:inherit;
  8807. background-color:rgba(255, 255, 255, 1);
  8808. box-sizing:border-box;
  8809. border-width:1px;
  8810. border-style:solid;
  8811. border-color:rgba(215, 215, 215, 1);
  8812. border-radius:0px;
  8813. -moz-box-shadow:none;
  8814. -webkit-box-shadow:none;
  8815. box-shadow:none;
  8816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8817. font-weight:400;
  8818. font-style:normal;
  8819. font-size:14px;
  8820. color:#AAAAAA;
  8821. text-align:center;
  8822. line-height:30px;
  8823. }
  8824. #u15770 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:1620px;
  8828. top:1193px;
  8829. width:1000px;
  8830. height:50px;
  8831. display:flex;
  8832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:14px;
  8836. color:#AAAAAA;
  8837. text-align:center;
  8838. line-height:30px;
  8839. }
  8840. #u15770 .text {
  8841. position:absolute;
  8842. align-self:center;
  8843. padding:5px 10px 5px 10px;
  8844. box-sizing:border-box;
  8845. width:100%;
  8846. }
  8847. #u15770_text {
  8848. border-width:0px;
  8849. word-wrap:break-word;
  8850. text-transform:none;
  8851. visibility:hidden;
  8852. }
  8853. #u15771_div {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:0px;
  8857. top:0px;
  8858. width:80px;
  8859. height:30px;
  8860. background:inherit;
  8861. background-color:rgba(255, 255, 255, 1);
  8862. box-sizing:border-box;
  8863. border-width:1px;
  8864. border-style:solid;
  8865. border-color:rgba(121, 121, 121, 1);
  8866. border-radius:4px;
  8867. -moz-box-shadow:none;
  8868. -webkit-box-shadow:none;
  8869. box-shadow:none;
  8870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8871. font-weight:400;
  8872. font-style:normal;
  8873. font-size:14px;
  8874. }
  8875. #u15771 {
  8876. border-width:0px;
  8877. position:absolute;
  8878. left:2520px;
  8879. top:1203px;
  8880. width:80px;
  8881. height:30px;
  8882. display:flex;
  8883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8884. font-weight:400;
  8885. font-style:normal;
  8886. font-size:14px;
  8887. }
  8888. #u15771 .text {
  8889. position:absolute;
  8890. align-self:center;
  8891. padding:2px 2px 2px 2px;
  8892. box-sizing:border-box;
  8893. width:100%;
  8894. }
  8895. #u15771_text {
  8896. border-width:0px;
  8897. word-wrap:break-word;
  8898. text-transform:none;
  8899. }
  8900. #u15772 {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:1640px;
  8904. top:170px;
  8905. width:960px;
  8906. height:213px;
  8907. }
  8908. #u15773_img {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:0px;
  8912. top:0px;
  8913. width:59px;
  8914. height:30px;
  8915. }
  8916. #u15773 {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:0px;
  8920. top:0px;
  8921. width:59px;
  8922. height:30px;
  8923. display:flex;
  8924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8925. font-weight:400;
  8926. font-style:normal;
  8927. color:#FFFFFF;
  8928. }
  8929. #u15773 .text {
  8930. position:absolute;
  8931. align-self:center;
  8932. padding:2px 2px 2px 2px;
  8933. box-sizing:border-box;
  8934. width:100%;
  8935. }
  8936. #u15773_text {
  8937. border-width:0px;
  8938. word-wrap:break-word;
  8939. text-transform:none;
  8940. }
  8941. #u15774_img {
  8942. border-width:0px;
  8943. position:absolute;
  8944. left:0px;
  8945. top:0px;
  8946. width:113px;
  8947. height:30px;
  8948. }
  8949. #u15774 {
  8950. border-width:0px;
  8951. position:absolute;
  8952. left:59px;
  8953. top:0px;
  8954. width:113px;
  8955. height:30px;
  8956. display:flex;
  8957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8958. font-weight:400;
  8959. font-style:normal;
  8960. color:#FFFFFF;
  8961. }
  8962. #u15774 .text {
  8963. position:absolute;
  8964. align-self:center;
  8965. padding:2px 2px 2px 2px;
  8966. box-sizing:border-box;
  8967. width:100%;
  8968. }
  8969. #u15774_text {
  8970. border-width:0px;
  8971. word-wrap:break-word;
  8972. text-transform:none;
  8973. }
  8974. #u15775_img {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:113px;
  8980. height:30px;
  8981. }
  8982. #u15775 {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:172px;
  8986. top:0px;
  8987. width:113px;
  8988. height:30px;
  8989. display:flex;
  8990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8991. font-weight:400;
  8992. font-style:normal;
  8993. color:#FFFFFF;
  8994. }
  8995. #u15775 .text {
  8996. position:absolute;
  8997. align-self:center;
  8998. padding:2px 2px 2px 2px;
  8999. box-sizing:border-box;
  9000. width:100%;
  9001. }
  9002. #u15775_text {
  9003. border-width:0px;
  9004. word-wrap:break-word;
  9005. text-transform:none;
  9006. }
  9007. #u15776_img {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:0px;
  9011. top:0px;
  9012. width:113px;
  9013. height:30px;
  9014. }
  9015. #u15776 {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:285px;
  9019. top:0px;
  9020. width:113px;
  9021. height:30px;
  9022. display:flex;
  9023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9024. font-weight:400;
  9025. font-style:normal;
  9026. color:#FFFFFF;
  9027. }
  9028. #u15776 .text {
  9029. position:absolute;
  9030. align-self:center;
  9031. padding:2px 2px 2px 2px;
  9032. box-sizing:border-box;
  9033. width:100%;
  9034. }
  9035. #u15776_text {
  9036. border-width:0px;
  9037. word-wrap:break-word;
  9038. text-transform:none;
  9039. }
  9040. #u15777_img {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:113px;
  9046. height:30px;
  9047. }
  9048. #u15777 {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:398px;
  9052. top:0px;
  9053. width:113px;
  9054. height:30px;
  9055. display:flex;
  9056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9057. font-weight:400;
  9058. font-style:normal;
  9059. color:#FFFFFF;
  9060. }
  9061. #u15777 .text {
  9062. position:absolute;
  9063. align-self:center;
  9064. padding:2px 2px 2px 2px;
  9065. box-sizing:border-box;
  9066. width:100%;
  9067. }
  9068. #u15777_text {
  9069. border-width:0px;
  9070. word-wrap:break-word;
  9071. text-transform:none;
  9072. }
  9073. #u15778_img {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:0px;
  9077. top:0px;
  9078. width:113px;
  9079. height:30px;
  9080. }
  9081. #u15778 {
  9082. border-width:0px;
  9083. position:absolute;
  9084. left:511px;
  9085. top:0px;
  9086. width:113px;
  9087. height:30px;
  9088. display:flex;
  9089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9090. font-weight:400;
  9091. font-style:normal;
  9092. color:#FFFFFF;
  9093. }
  9094. #u15778 .text {
  9095. position:absolute;
  9096. align-self:center;
  9097. padding:2px 2px 2px 2px;
  9098. box-sizing:border-box;
  9099. width:100%;
  9100. }
  9101. #u15778_text {
  9102. border-width:0px;
  9103. word-wrap:break-word;
  9104. text-transform:none;
  9105. }
  9106. #u15779_img {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:0px;
  9110. top:0px;
  9111. width:113px;
  9112. height:30px;
  9113. }
  9114. #u15779 {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:624px;
  9118. top:0px;
  9119. width:113px;
  9120. height:30px;
  9121. display:flex;
  9122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9123. font-weight:400;
  9124. font-style:normal;
  9125. color:#FFFFFF;
  9126. }
  9127. #u15779 .text {
  9128. position:absolute;
  9129. align-self:center;
  9130. padding:2px 2px 2px 2px;
  9131. box-sizing:border-box;
  9132. width:100%;
  9133. }
  9134. #u15779_text {
  9135. border-width:0px;
  9136. word-wrap:break-word;
  9137. text-transform:none;
  9138. }
  9139. #u15780_img {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:0px;
  9143. top:0px;
  9144. width:113px;
  9145. height:30px;
  9146. }
  9147. #u15780 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:737px;
  9151. top:0px;
  9152. width:113px;
  9153. height:30px;
  9154. display:flex;
  9155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9156. font-weight:400;
  9157. font-style:normal;
  9158. color:#FFFFFF;
  9159. }
  9160. #u15780 .text {
  9161. position:absolute;
  9162. align-self:center;
  9163. padding:2px 2px 2px 2px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u15780_text {
  9168. border-width:0px;
  9169. word-wrap:break-word;
  9170. text-transform:none;
  9171. }
  9172. #u15781_img {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:0px;
  9176. top:0px;
  9177. width:110px;
  9178. height:30px;
  9179. }
  9180. #u15781 {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:850px;
  9184. top:0px;
  9185. width:110px;
  9186. height:30px;
  9187. display:flex;
  9188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9189. font-weight:400;
  9190. font-style:normal;
  9191. color:#FFFFFF;
  9192. }
  9193. #u15781 .text {
  9194. position:absolute;
  9195. align-self:center;
  9196. padding:2px 2px 2px 2px;
  9197. box-sizing:border-box;
  9198. width:100%;
  9199. }
  9200. #u15781_text {
  9201. border-width:0px;
  9202. word-wrap:break-word;
  9203. text-transform:none;
  9204. }
  9205. #u15782_img {
  9206. border-width:0px;
  9207. position:absolute;
  9208. left:0px;
  9209. top:0px;
  9210. width:59px;
  9211. height:40px;
  9212. }
  9213. #u15782 {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:30px;
  9218. width:59px;
  9219. height:40px;
  9220. display:flex;
  9221. }
  9222. #u15782 .text {
  9223. position:absolute;
  9224. align-self:center;
  9225. padding:2px 2px 2px 2px;
  9226. box-sizing:border-box;
  9227. width:100%;
  9228. }
  9229. #u15782_text {
  9230. border-width:0px;
  9231. word-wrap:break-word;
  9232. text-transform:none;
  9233. }
  9234. #u15783_img {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:0px;
  9238. top:0px;
  9239. width:113px;
  9240. height:40px;
  9241. }
  9242. #u15783 {
  9243. border-width:0px;
  9244. position:absolute;
  9245. left:59px;
  9246. top:30px;
  9247. width:113px;
  9248. height:40px;
  9249. display:flex;
  9250. }
  9251. #u15783 .text {
  9252. position:absolute;
  9253. align-self:center;
  9254. padding:2px 2px 2px 2px;
  9255. box-sizing:border-box;
  9256. width:100%;
  9257. }
  9258. #u15783_text {
  9259. border-width:0px;
  9260. word-wrap:break-word;
  9261. text-transform:none;
  9262. }
  9263. #u15784_img {
  9264. border-width:0px;
  9265. position:absolute;
  9266. left:0px;
  9267. top:0px;
  9268. width:113px;
  9269. height:40px;
  9270. }
  9271. #u15784 {
  9272. border-width:0px;
  9273. position:absolute;
  9274. left:172px;
  9275. top:30px;
  9276. width:113px;
  9277. height:40px;
  9278. display:flex;
  9279. }
  9280. #u15784 .text {
  9281. position:absolute;
  9282. align-self:center;
  9283. padding:2px 2px 2px 2px;
  9284. box-sizing:border-box;
  9285. width:100%;
  9286. }
  9287. #u15784_text {
  9288. border-width:0px;
  9289. word-wrap:break-word;
  9290. text-transform:none;
  9291. }
  9292. #u15785_img {
  9293. border-width:0px;
  9294. position:absolute;
  9295. left:0px;
  9296. top:0px;
  9297. width:113px;
  9298. height:40px;
  9299. }
  9300. #u15785 {
  9301. border-width:0px;
  9302. position:absolute;
  9303. left:285px;
  9304. top:30px;
  9305. width:113px;
  9306. height:40px;
  9307. display:flex;
  9308. }
  9309. #u15785 .text {
  9310. position:absolute;
  9311. align-self:center;
  9312. padding:2px 2px 2px 2px;
  9313. box-sizing:border-box;
  9314. width:100%;
  9315. }
  9316. #u15785_text {
  9317. border-width:0px;
  9318. word-wrap:break-word;
  9319. text-transform:none;
  9320. }
  9321. #u15786_img {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:0px;
  9325. top:0px;
  9326. width:113px;
  9327. height:40px;
  9328. }
  9329. #u15786 {
  9330. border-width:0px;
  9331. position:absolute;
  9332. left:398px;
  9333. top:30px;
  9334. width:113px;
  9335. height:40px;
  9336. display:flex;
  9337. }
  9338. #u15786 .text {
  9339. position:absolute;
  9340. align-self:center;
  9341. padding:2px 2px 2px 2px;
  9342. box-sizing:border-box;
  9343. width:100%;
  9344. }
  9345. #u15786_text {
  9346. border-width:0px;
  9347. word-wrap:break-word;
  9348. text-transform:none;
  9349. visibility:hidden;
  9350. }
  9351. #u15787_img {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:0px;
  9355. top:0px;
  9356. width:113px;
  9357. height:40px;
  9358. }
  9359. #u15787 {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:511px;
  9363. top:30px;
  9364. width:113px;
  9365. height:40px;
  9366. display:flex;
  9367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9368. font-weight:400;
  9369. font-style:normal;
  9370. }
  9371. #u15787 .text {
  9372. position:absolute;
  9373. align-self:center;
  9374. padding:2px 2px 2px 2px;
  9375. box-sizing:border-box;
  9376. width:100%;
  9377. }
  9378. #u15787_text {
  9379. border-width:0px;
  9380. word-wrap:break-word;
  9381. text-transform:none;
  9382. }
  9383. #u15788_img {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:113px;
  9389. height:40px;
  9390. }
  9391. #u15788 {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:624px;
  9395. top:30px;
  9396. width:113px;
  9397. height:40px;
  9398. display:flex;
  9399. }
  9400. #u15788 .text {
  9401. position:absolute;
  9402. align-self:center;
  9403. padding:2px 2px 2px 2px;
  9404. box-sizing:border-box;
  9405. width:100%;
  9406. }
  9407. #u15788_text {
  9408. border-width:0px;
  9409. word-wrap:break-word;
  9410. text-transform:none;
  9411. }
  9412. #u15789_img {
  9413. border-width:0px;
  9414. position:absolute;
  9415. left:0px;
  9416. top:0px;
  9417. width:113px;
  9418. height:40px;
  9419. }
  9420. #u15789 {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:737px;
  9424. top:30px;
  9425. width:113px;
  9426. height:40px;
  9427. display:flex;
  9428. }
  9429. #u15789 .text {
  9430. position:absolute;
  9431. align-self:center;
  9432. padding:2px 2px 2px 2px;
  9433. box-sizing:border-box;
  9434. width:100%;
  9435. }
  9436. #u15789_text {
  9437. border-width:0px;
  9438. word-wrap:break-word;
  9439. text-transform:none;
  9440. }
  9441. #u15790_img {
  9442. border-width:0px;
  9443. position:absolute;
  9444. left:0px;
  9445. top:0px;
  9446. width:110px;
  9447. height:40px;
  9448. }
  9449. #u15790 {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:850px;
  9453. top:30px;
  9454. width:110px;
  9455. height:40px;
  9456. display:flex;
  9457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9458. font-weight:400;
  9459. font-style:normal;
  9460. color:#298FFF;
  9461. }
  9462. #u15790 .text {
  9463. position:absolute;
  9464. align-self:center;
  9465. padding:2px 2px 2px 2px;
  9466. box-sizing:border-box;
  9467. width:100%;
  9468. }
  9469. #u15790_text {
  9470. border-width:0px;
  9471. word-wrap:break-word;
  9472. text-transform:none;
  9473. }
  9474. #u15791_img {
  9475. border-width:0px;
  9476. position:absolute;
  9477. left:0px;
  9478. top:0px;
  9479. width:59px;
  9480. height:30px;
  9481. }
  9482. #u15791 {
  9483. border-width:0px;
  9484. position:absolute;
  9485. left:0px;
  9486. top:70px;
  9487. width:59px;
  9488. height:30px;
  9489. display:flex;
  9490. }
  9491. #u15791 .text {
  9492. position:absolute;
  9493. align-self:center;
  9494. padding:2px 2px 2px 2px;
  9495. box-sizing:border-box;
  9496. width:100%;
  9497. }
  9498. #u15791_text {
  9499. border-width:0px;
  9500. word-wrap:break-word;
  9501. text-transform:none;
  9502. }
  9503. #u15792_img {
  9504. border-width:0px;
  9505. position:absolute;
  9506. left:0px;
  9507. top:0px;
  9508. width:113px;
  9509. height:30px;
  9510. }
  9511. #u15792 {
  9512. border-width:0px;
  9513. position:absolute;
  9514. left:59px;
  9515. top:70px;
  9516. width:113px;
  9517. height:30px;
  9518. display:flex;
  9519. }
  9520. #u15792 .text {
  9521. position:absolute;
  9522. align-self:center;
  9523. padding:2px 2px 2px 2px;
  9524. box-sizing:border-box;
  9525. width:100%;
  9526. }
  9527. #u15792_text {
  9528. border-width:0px;
  9529. word-wrap:break-word;
  9530. text-transform:none;
  9531. visibility:hidden;
  9532. }
  9533. #u15793_img {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:0px;
  9537. top:0px;
  9538. width:113px;
  9539. height:30px;
  9540. }
  9541. #u15793 {
  9542. border-width:0px;
  9543. position:absolute;
  9544. left:172px;
  9545. top:70px;
  9546. width:113px;
  9547. height:30px;
  9548. display:flex;
  9549. }
  9550. #u15793 .text {
  9551. position:absolute;
  9552. align-self:center;
  9553. padding:2px 2px 2px 2px;
  9554. box-sizing:border-box;
  9555. width:100%;
  9556. }
  9557. #u15793_text {
  9558. border-width:0px;
  9559. word-wrap:break-word;
  9560. text-transform:none;
  9561. visibility:hidden;
  9562. }
  9563. #u15794_img {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:0px;
  9567. top:0px;
  9568. width:113px;
  9569. height:30px;
  9570. }
  9571. #u15794 {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:285px;
  9575. top:70px;
  9576. width:113px;
  9577. height:30px;
  9578. display:flex;
  9579. }
  9580. #u15794 .text {
  9581. position:absolute;
  9582. align-self:center;
  9583. padding:2px 2px 2px 2px;
  9584. box-sizing:border-box;
  9585. width:100%;
  9586. }
  9587. #u15794_text {
  9588. border-width:0px;
  9589. word-wrap:break-word;
  9590. text-transform:none;
  9591. visibility:hidden;
  9592. }
  9593. #u15795_img {
  9594. border-width:0px;
  9595. position:absolute;
  9596. left:0px;
  9597. top:0px;
  9598. width:113px;
  9599. height:30px;
  9600. }
  9601. #u15795 {
  9602. border-width:0px;
  9603. position:absolute;
  9604. left:398px;
  9605. top:70px;
  9606. width:113px;
  9607. height:30px;
  9608. display:flex;
  9609. }
  9610. #u15795 .text {
  9611. position:absolute;
  9612. align-self:center;
  9613. padding:2px 2px 2px 2px;
  9614. box-sizing:border-box;
  9615. width:100%;
  9616. }
  9617. #u15795_text {
  9618. border-width:0px;
  9619. word-wrap:break-word;
  9620. text-transform:none;
  9621. visibility:hidden;
  9622. }
  9623. #u15796_img {
  9624. border-width:0px;
  9625. position:absolute;
  9626. left:0px;
  9627. top:0px;
  9628. width:113px;
  9629. height:30px;
  9630. }
  9631. #u15796 {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:511px;
  9635. top:70px;
  9636. width:113px;
  9637. height:30px;
  9638. display:flex;
  9639. }
  9640. #u15796 .text {
  9641. position:absolute;
  9642. align-self:center;
  9643. padding:2px 2px 2px 2px;
  9644. box-sizing:border-box;
  9645. width:100%;
  9646. }
  9647. #u15796_text {
  9648. border-width:0px;
  9649. word-wrap:break-word;
  9650. text-transform:none;
  9651. visibility:hidden;
  9652. }
  9653. #u15797_img {
  9654. border-width:0px;
  9655. position:absolute;
  9656. left:0px;
  9657. top:0px;
  9658. width:113px;
  9659. height:30px;
  9660. }
  9661. #u15797 {
  9662. border-width:0px;
  9663. position:absolute;
  9664. left:624px;
  9665. top:70px;
  9666. width:113px;
  9667. height:30px;
  9668. display:flex;
  9669. }
  9670. #u15797 .text {
  9671. position:absolute;
  9672. align-self:center;
  9673. padding:2px 2px 2px 2px;
  9674. box-sizing:border-box;
  9675. width:100%;
  9676. }
  9677. #u15797_text {
  9678. border-width:0px;
  9679. word-wrap:break-word;
  9680. text-transform:none;
  9681. visibility:hidden;
  9682. }
  9683. #u15798_img {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:0px;
  9687. top:0px;
  9688. width:113px;
  9689. height:30px;
  9690. }
  9691. #u15798 {
  9692. border-width:0px;
  9693. position:absolute;
  9694. left:737px;
  9695. top:70px;
  9696. width:113px;
  9697. height:30px;
  9698. display:flex;
  9699. }
  9700. #u15798 .text {
  9701. position:absolute;
  9702. align-self:center;
  9703. padding:2px 2px 2px 2px;
  9704. box-sizing:border-box;
  9705. width:100%;
  9706. }
  9707. #u15798_text {
  9708. border-width:0px;
  9709. word-wrap:break-word;
  9710. text-transform:none;
  9711. visibility:hidden;
  9712. }
  9713. #u15799_img {
  9714. border-width:0px;
  9715. position:absolute;
  9716. left:0px;
  9717. top:0px;
  9718. width:110px;
  9719. height:30px;
  9720. }
  9721. #u15799 {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:850px;
  9725. top:70px;
  9726. width:110px;
  9727. height:30px;
  9728. display:flex;
  9729. }
  9730. #u15799 .text {
  9731. position:absolute;
  9732. align-self:center;
  9733. padding:2px 2px 2px 2px;
  9734. box-sizing:border-box;
  9735. width:100%;
  9736. }
  9737. #u15799_text {
  9738. border-width:0px;
  9739. word-wrap:break-word;
  9740. text-transform:none;
  9741. visibility:hidden;
  9742. }
  9743. #u15800_img {
  9744. border-width:0px;
  9745. position:absolute;
  9746. left:0px;
  9747. top:0px;
  9748. width:59px;
  9749. height:30px;
  9750. }
  9751. #u15800 {
  9752. border-width:0px;
  9753. position:absolute;
  9754. left:0px;
  9755. top:100px;
  9756. width:59px;
  9757. height:30px;
  9758. display:flex;
  9759. }
  9760. #u15800 .text {
  9761. position:absolute;
  9762. align-self:center;
  9763. padding:2px 2px 2px 2px;
  9764. box-sizing:border-box;
  9765. width:100%;
  9766. }
  9767. #u15800_text {
  9768. border-width:0px;
  9769. word-wrap:break-word;
  9770. text-transform:none;
  9771. }
  9772. #u15801_img {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:0px;
  9776. top:0px;
  9777. width:113px;
  9778. height:30px;
  9779. }
  9780. #u15801 {
  9781. border-width:0px;
  9782. position:absolute;
  9783. left:59px;
  9784. top:100px;
  9785. width:113px;
  9786. height:30px;
  9787. display:flex;
  9788. }
  9789. #u15801 .text {
  9790. position:absolute;
  9791. align-self:center;
  9792. padding:2px 2px 2px 2px;
  9793. box-sizing:border-box;
  9794. width:100%;
  9795. }
  9796. #u15801_text {
  9797. border-width:0px;
  9798. word-wrap:break-word;
  9799. text-transform:none;
  9800. visibility:hidden;
  9801. }
  9802. #u15802_img {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:0px;
  9806. top:0px;
  9807. width:113px;
  9808. height:30px;
  9809. }
  9810. #u15802 {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:172px;
  9814. top:100px;
  9815. width:113px;
  9816. height:30px;
  9817. display:flex;
  9818. }
  9819. #u15802 .text {
  9820. position:absolute;
  9821. align-self:center;
  9822. padding:2px 2px 2px 2px;
  9823. box-sizing:border-box;
  9824. width:100%;
  9825. }
  9826. #u15802_text {
  9827. border-width:0px;
  9828. word-wrap:break-word;
  9829. text-transform:none;
  9830. visibility:hidden;
  9831. }
  9832. #u15803_img {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:0px;
  9836. top:0px;
  9837. width:113px;
  9838. height:30px;
  9839. }
  9840. #u15803 {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:285px;
  9844. top:100px;
  9845. width:113px;
  9846. height:30px;
  9847. display:flex;
  9848. }
  9849. #u15803 .text {
  9850. position:absolute;
  9851. align-self:center;
  9852. padding:2px 2px 2px 2px;
  9853. box-sizing:border-box;
  9854. width:100%;
  9855. }
  9856. #u15803_text {
  9857. border-width:0px;
  9858. word-wrap:break-word;
  9859. text-transform:none;
  9860. visibility:hidden;
  9861. }
  9862. #u15804_img {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:113px;
  9868. height:30px;
  9869. }
  9870. #u15804 {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:398px;
  9874. top:100px;
  9875. width:113px;
  9876. height:30px;
  9877. display:flex;
  9878. }
  9879. #u15804 .text {
  9880. position:absolute;
  9881. align-self:center;
  9882. padding:2px 2px 2px 2px;
  9883. box-sizing:border-box;
  9884. width:100%;
  9885. }
  9886. #u15804_text {
  9887. border-width:0px;
  9888. word-wrap:break-word;
  9889. text-transform:none;
  9890. visibility:hidden;
  9891. }
  9892. #u15805_img {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:0px;
  9896. top:0px;
  9897. width:113px;
  9898. height:30px;
  9899. }
  9900. #u15805 {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:511px;
  9904. top:100px;
  9905. width:113px;
  9906. height:30px;
  9907. display:flex;
  9908. }
  9909. #u15805 .text {
  9910. position:absolute;
  9911. align-self:center;
  9912. padding:2px 2px 2px 2px;
  9913. box-sizing:border-box;
  9914. width:100%;
  9915. }
  9916. #u15805_text {
  9917. border-width:0px;
  9918. word-wrap:break-word;
  9919. text-transform:none;
  9920. visibility:hidden;
  9921. }
  9922. #u15806_img {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:0px;
  9926. top:0px;
  9927. width:113px;
  9928. height:30px;
  9929. }
  9930. #u15806 {
  9931. border-width:0px;
  9932. position:absolute;
  9933. left:624px;
  9934. top:100px;
  9935. width:113px;
  9936. height:30px;
  9937. display:flex;
  9938. }
  9939. #u15806 .text {
  9940. position:absolute;
  9941. align-self:center;
  9942. padding:2px 2px 2px 2px;
  9943. box-sizing:border-box;
  9944. width:100%;
  9945. }
  9946. #u15806_text {
  9947. border-width:0px;
  9948. word-wrap:break-word;
  9949. text-transform:none;
  9950. visibility:hidden;
  9951. }
  9952. #u15807_img {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:0px;
  9956. top:0px;
  9957. width:113px;
  9958. height:30px;
  9959. }
  9960. #u15807 {
  9961. border-width:0px;
  9962. position:absolute;
  9963. left:737px;
  9964. top:100px;
  9965. width:113px;
  9966. height:30px;
  9967. display:flex;
  9968. }
  9969. #u15807 .text {
  9970. position:absolute;
  9971. align-self:center;
  9972. padding:2px 2px 2px 2px;
  9973. box-sizing:border-box;
  9974. width:100%;
  9975. }
  9976. #u15807_text {
  9977. border-width:0px;
  9978. word-wrap:break-word;
  9979. text-transform:none;
  9980. visibility:hidden;
  9981. }
  9982. #u15808_img {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:0px;
  9986. top:0px;
  9987. width:110px;
  9988. height:30px;
  9989. }
  9990. #u15808 {
  9991. border-width:0px;
  9992. position:absolute;
  9993. left:850px;
  9994. top:100px;
  9995. width:110px;
  9996. height:30px;
  9997. display:flex;
  9998. }
  9999. #u15808 .text {
  10000. position:absolute;
  10001. align-self:center;
  10002. padding:2px 2px 2px 2px;
  10003. box-sizing:border-box;
  10004. width:100%;
  10005. }
  10006. #u15808_text {
  10007. border-width:0px;
  10008. word-wrap:break-word;
  10009. text-transform:none;
  10010. visibility:hidden;
  10011. }
  10012. #u15809_img {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:0px;
  10016. top:0px;
  10017. width:59px;
  10018. height:30px;
  10019. }
  10020. #u15809 {
  10021. border-width:0px;
  10022. position:absolute;
  10023. left:0px;
  10024. top:130px;
  10025. width:59px;
  10026. height:30px;
  10027. display:flex;
  10028. }
  10029. #u15809 .text {
  10030. position:absolute;
  10031. align-self:center;
  10032. padding:2px 2px 2px 2px;
  10033. box-sizing:border-box;
  10034. width:100%;
  10035. }
  10036. #u15809_text {
  10037. border-width:0px;
  10038. word-wrap:break-word;
  10039. text-transform:none;
  10040. }
  10041. #u15810_img {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:0px;
  10045. top:0px;
  10046. width:113px;
  10047. height:30px;
  10048. }
  10049. #u15810 {
  10050. border-width:0px;
  10051. position:absolute;
  10052. left:59px;
  10053. top:130px;
  10054. width:113px;
  10055. height:30px;
  10056. display:flex;
  10057. }
  10058. #u15810 .text {
  10059. position:absolute;
  10060. align-self:center;
  10061. padding:2px 2px 2px 2px;
  10062. box-sizing:border-box;
  10063. width:100%;
  10064. }
  10065. #u15810_text {
  10066. border-width:0px;
  10067. word-wrap:break-word;
  10068. text-transform:none;
  10069. visibility:hidden;
  10070. }
  10071. #u15811_img {
  10072. border-width:0px;
  10073. position:absolute;
  10074. left:0px;
  10075. top:0px;
  10076. width:113px;
  10077. height:30px;
  10078. }
  10079. #u15811 {
  10080. border-width:0px;
  10081. position:absolute;
  10082. left:172px;
  10083. top:130px;
  10084. width:113px;
  10085. height:30px;
  10086. display:flex;
  10087. }
  10088. #u15811 .text {
  10089. position:absolute;
  10090. align-self:center;
  10091. padding:2px 2px 2px 2px;
  10092. box-sizing:border-box;
  10093. width:100%;
  10094. }
  10095. #u15811_text {
  10096. border-width:0px;
  10097. word-wrap:break-word;
  10098. text-transform:none;
  10099. visibility:hidden;
  10100. }
  10101. #u15812_img {
  10102. border-width:0px;
  10103. position:absolute;
  10104. left:0px;
  10105. top:0px;
  10106. width:113px;
  10107. height:30px;
  10108. }
  10109. #u15812 {
  10110. border-width:0px;
  10111. position:absolute;
  10112. left:285px;
  10113. top:130px;
  10114. width:113px;
  10115. height:30px;
  10116. display:flex;
  10117. }
  10118. #u15812 .text {
  10119. position:absolute;
  10120. align-self:center;
  10121. padding:2px 2px 2px 2px;
  10122. box-sizing:border-box;
  10123. width:100%;
  10124. }
  10125. #u15812_text {
  10126. border-width:0px;
  10127. word-wrap:break-word;
  10128. text-transform:none;
  10129. visibility:hidden;
  10130. }
  10131. #u15813_img {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:113px;
  10137. height:30px;
  10138. }
  10139. #u15813 {
  10140. border-width:0px;
  10141. position:absolute;
  10142. left:398px;
  10143. top:130px;
  10144. width:113px;
  10145. height:30px;
  10146. display:flex;
  10147. }
  10148. #u15813 .text {
  10149. position:absolute;
  10150. align-self:center;
  10151. padding:2px 2px 2px 2px;
  10152. box-sizing:border-box;
  10153. width:100%;
  10154. }
  10155. #u15813_text {
  10156. border-width:0px;
  10157. word-wrap:break-word;
  10158. text-transform:none;
  10159. visibility:hidden;
  10160. }
  10161. #u15814_img {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:0px;
  10165. top:0px;
  10166. width:113px;
  10167. height:30px;
  10168. }
  10169. #u15814 {
  10170. border-width:0px;
  10171. position:absolute;
  10172. left:511px;
  10173. top:130px;
  10174. width:113px;
  10175. height:30px;
  10176. display:flex;
  10177. }
  10178. #u15814 .text {
  10179. position:absolute;
  10180. align-self:center;
  10181. padding:2px 2px 2px 2px;
  10182. box-sizing:border-box;
  10183. width:100%;
  10184. }
  10185. #u15814_text {
  10186. border-width:0px;
  10187. word-wrap:break-word;
  10188. text-transform:none;
  10189. visibility:hidden;
  10190. }
  10191. #u15815_img {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:0px;
  10195. top:0px;
  10196. width:113px;
  10197. height:30px;
  10198. }
  10199. #u15815 {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:624px;
  10203. top:130px;
  10204. width:113px;
  10205. height:30px;
  10206. display:flex;
  10207. }
  10208. #u15815 .text {
  10209. position:absolute;
  10210. align-self:center;
  10211. padding:2px 2px 2px 2px;
  10212. box-sizing:border-box;
  10213. width:100%;
  10214. }
  10215. #u15815_text {
  10216. border-width:0px;
  10217. word-wrap:break-word;
  10218. text-transform:none;
  10219. visibility:hidden;
  10220. }
  10221. #u15816_img {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:0px;
  10225. top:0px;
  10226. width:113px;
  10227. height:30px;
  10228. }
  10229. #u15816 {
  10230. border-width:0px;
  10231. position:absolute;
  10232. left:737px;
  10233. top:130px;
  10234. width:113px;
  10235. height:30px;
  10236. display:flex;
  10237. }
  10238. #u15816 .text {
  10239. position:absolute;
  10240. align-self:center;
  10241. padding:2px 2px 2px 2px;
  10242. box-sizing:border-box;
  10243. width:100%;
  10244. }
  10245. #u15816_text {
  10246. border-width:0px;
  10247. word-wrap:break-word;
  10248. text-transform:none;
  10249. visibility:hidden;
  10250. }
  10251. #u15817_img {
  10252. border-width:0px;
  10253. position:absolute;
  10254. left:0px;
  10255. top:0px;
  10256. width:110px;
  10257. height:30px;
  10258. }
  10259. #u15817 {
  10260. border-width:0px;
  10261. position:absolute;
  10262. left:850px;
  10263. top:130px;
  10264. width:110px;
  10265. height:30px;
  10266. display:flex;
  10267. }
  10268. #u15817 .text {
  10269. position:absolute;
  10270. align-self:center;
  10271. padding:2px 2px 2px 2px;
  10272. box-sizing:border-box;
  10273. width:100%;
  10274. }
  10275. #u15817_text {
  10276. border-width:0px;
  10277. word-wrap:break-word;
  10278. text-transform:none;
  10279. visibility:hidden;
  10280. }
  10281. #u15818_img {
  10282. border-width:0px;
  10283. position:absolute;
  10284. left:0px;
  10285. top:0px;
  10286. width:59px;
  10287. height:30px;
  10288. }
  10289. #u15818 {
  10290. border-width:0px;
  10291. position:absolute;
  10292. left:0px;
  10293. top:160px;
  10294. width:59px;
  10295. height:30px;
  10296. display:flex;
  10297. }
  10298. #u15818 .text {
  10299. position:absolute;
  10300. align-self:center;
  10301. padding:2px 2px 2px 2px;
  10302. box-sizing:border-box;
  10303. width:100%;
  10304. }
  10305. #u15818_text {
  10306. border-width:0px;
  10307. word-wrap:break-word;
  10308. text-transform:none;
  10309. }
  10310. #u15819_img {
  10311. border-width:0px;
  10312. position:absolute;
  10313. left:0px;
  10314. top:0px;
  10315. width:113px;
  10316. height:30px;
  10317. }
  10318. #u15819 {
  10319. border-width:0px;
  10320. position:absolute;
  10321. left:59px;
  10322. top:160px;
  10323. width:113px;
  10324. height:30px;
  10325. display:flex;
  10326. }
  10327. #u15819 .text {
  10328. position:absolute;
  10329. align-self:center;
  10330. padding:2px 2px 2px 2px;
  10331. box-sizing:border-box;
  10332. width:100%;
  10333. }
  10334. #u15819_text {
  10335. border-width:0px;
  10336. word-wrap:break-word;
  10337. text-transform:none;
  10338. visibility:hidden;
  10339. }
  10340. #u15820_img {
  10341. border-width:0px;
  10342. position:absolute;
  10343. left:0px;
  10344. top:0px;
  10345. width:113px;
  10346. height:30px;
  10347. }
  10348. #u15820 {
  10349. border-width:0px;
  10350. position:absolute;
  10351. left:172px;
  10352. top:160px;
  10353. width:113px;
  10354. height:30px;
  10355. display:flex;
  10356. }
  10357. #u15820 .text {
  10358. position:absolute;
  10359. align-self:center;
  10360. padding:2px 2px 2px 2px;
  10361. box-sizing:border-box;
  10362. width:100%;
  10363. }
  10364. #u15820_text {
  10365. border-width:0px;
  10366. word-wrap:break-word;
  10367. text-transform:none;
  10368. visibility:hidden;
  10369. }
  10370. #u15821_img {
  10371. border-width:0px;
  10372. position:absolute;
  10373. left:0px;
  10374. top:0px;
  10375. width:113px;
  10376. height:30px;
  10377. }
  10378. #u15821 {
  10379. border-width:0px;
  10380. position:absolute;
  10381. left:285px;
  10382. top:160px;
  10383. width:113px;
  10384. height:30px;
  10385. display:flex;
  10386. }
  10387. #u15821 .text {
  10388. position:absolute;
  10389. align-self:center;
  10390. padding:2px 2px 2px 2px;
  10391. box-sizing:border-box;
  10392. width:100%;
  10393. }
  10394. #u15821_text {
  10395. border-width:0px;
  10396. word-wrap:break-word;
  10397. text-transform:none;
  10398. visibility:hidden;
  10399. }
  10400. #u15822_img {
  10401. border-width:0px;
  10402. position:absolute;
  10403. left:0px;
  10404. top:0px;
  10405. width:113px;
  10406. height:30px;
  10407. }
  10408. #u15822 {
  10409. border-width:0px;
  10410. position:absolute;
  10411. left:398px;
  10412. top:160px;
  10413. width:113px;
  10414. height:30px;
  10415. display:flex;
  10416. }
  10417. #u15822 .text {
  10418. position:absolute;
  10419. align-self:center;
  10420. padding:2px 2px 2px 2px;
  10421. box-sizing:border-box;
  10422. width:100%;
  10423. }
  10424. #u15822_text {
  10425. border-width:0px;
  10426. word-wrap:break-word;
  10427. text-transform:none;
  10428. visibility:hidden;
  10429. }
  10430. #u15823_img {
  10431. border-width:0px;
  10432. position:absolute;
  10433. left:0px;
  10434. top:0px;
  10435. width:113px;
  10436. height:30px;
  10437. }
  10438. #u15823 {
  10439. border-width:0px;
  10440. position:absolute;
  10441. left:511px;
  10442. top:160px;
  10443. width:113px;
  10444. height:30px;
  10445. display:flex;
  10446. }
  10447. #u15823 .text {
  10448. position:absolute;
  10449. align-self:center;
  10450. padding:2px 2px 2px 2px;
  10451. box-sizing:border-box;
  10452. width:100%;
  10453. }
  10454. #u15823_text {
  10455. border-width:0px;
  10456. word-wrap:break-word;
  10457. text-transform:none;
  10458. visibility:hidden;
  10459. }
  10460. #u15824_img {
  10461. border-width:0px;
  10462. position:absolute;
  10463. left:0px;
  10464. top:0px;
  10465. width:113px;
  10466. height:30px;
  10467. }
  10468. #u15824 {
  10469. border-width:0px;
  10470. position:absolute;
  10471. left:624px;
  10472. top:160px;
  10473. width:113px;
  10474. height:30px;
  10475. display:flex;
  10476. }
  10477. #u15824 .text {
  10478. position:absolute;
  10479. align-self:center;
  10480. padding:2px 2px 2px 2px;
  10481. box-sizing:border-box;
  10482. width:100%;
  10483. }
  10484. #u15824_text {
  10485. border-width:0px;
  10486. word-wrap:break-word;
  10487. text-transform:none;
  10488. visibility:hidden;
  10489. }
  10490. #u15825_img {
  10491. border-width:0px;
  10492. position:absolute;
  10493. left:0px;
  10494. top:0px;
  10495. width:113px;
  10496. height:30px;
  10497. }
  10498. #u15825 {
  10499. border-width:0px;
  10500. position:absolute;
  10501. left:737px;
  10502. top:160px;
  10503. width:113px;
  10504. height:30px;
  10505. display:flex;
  10506. }
  10507. #u15825 .text {
  10508. position:absolute;
  10509. align-self:center;
  10510. padding:2px 2px 2px 2px;
  10511. box-sizing:border-box;
  10512. width:100%;
  10513. }
  10514. #u15825_text {
  10515. border-width:0px;
  10516. word-wrap:break-word;
  10517. text-transform:none;
  10518. visibility:hidden;
  10519. }
  10520. #u15826_img {
  10521. border-width:0px;
  10522. position:absolute;
  10523. left:0px;
  10524. top:0px;
  10525. width:110px;
  10526. height:30px;
  10527. }
  10528. #u15826 {
  10529. border-width:0px;
  10530. position:absolute;
  10531. left:850px;
  10532. top:160px;
  10533. width:110px;
  10534. height:30px;
  10535. display:flex;
  10536. }
  10537. #u15826 .text {
  10538. position:absolute;
  10539. align-self:center;
  10540. padding:2px 2px 2px 2px;
  10541. box-sizing:border-box;
  10542. width:100%;
  10543. }
  10544. #u15826_text {
  10545. border-width:0px;
  10546. word-wrap:break-word;
  10547. text-transform:none;
  10548. visibility:hidden;
  10549. }
  10550. #u15827_img {
  10551. border-width:0px;
  10552. position:absolute;
  10553. left:0px;
  10554. top:0px;
  10555. width:59px;
  10556. height:23px;
  10557. }
  10558. #u15827 {
  10559. border-width:0px;
  10560. position:absolute;
  10561. left:0px;
  10562. top:190px;
  10563. width:59px;
  10564. height:23px;
  10565. display:flex;
  10566. }
  10567. #u15827 .text {
  10568. position:absolute;
  10569. align-self:center;
  10570. padding:2px 2px 2px 2px;
  10571. box-sizing:border-box;
  10572. width:100%;
  10573. }
  10574. #u15827_text {
  10575. border-width:0px;
  10576. word-wrap:break-word;
  10577. text-transform:none;
  10578. }
  10579. #u15828_img {
  10580. border-width:0px;
  10581. position:absolute;
  10582. left:0px;
  10583. top:0px;
  10584. width:113px;
  10585. height:23px;
  10586. }
  10587. #u15828 {
  10588. border-width:0px;
  10589. position:absolute;
  10590. left:59px;
  10591. top:190px;
  10592. width:113px;
  10593. height:23px;
  10594. display:flex;
  10595. }
  10596. #u15828 .text {
  10597. position:absolute;
  10598. align-self:center;
  10599. padding:2px 2px 2px 2px;
  10600. box-sizing:border-box;
  10601. width:100%;
  10602. }
  10603. #u15828_text {
  10604. border-width:0px;
  10605. word-wrap:break-word;
  10606. text-transform:none;
  10607. visibility:hidden;
  10608. }
  10609. #u15829_img {
  10610. border-width:0px;
  10611. position:absolute;
  10612. left:0px;
  10613. top:0px;
  10614. width:113px;
  10615. height:23px;
  10616. }
  10617. #u15829 {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:172px;
  10621. top:190px;
  10622. width:113px;
  10623. height:23px;
  10624. display:flex;
  10625. }
  10626. #u15829 .text {
  10627. position:absolute;
  10628. align-self:center;
  10629. padding:2px 2px 2px 2px;
  10630. box-sizing:border-box;
  10631. width:100%;
  10632. }
  10633. #u15829_text {
  10634. border-width:0px;
  10635. word-wrap:break-word;
  10636. text-transform:none;
  10637. visibility:hidden;
  10638. }
  10639. #u15830_img {
  10640. border-width:0px;
  10641. position:absolute;
  10642. left:0px;
  10643. top:0px;
  10644. width:113px;
  10645. height:23px;
  10646. }
  10647. #u15830 {
  10648. border-width:0px;
  10649. position:absolute;
  10650. left:285px;
  10651. top:190px;
  10652. width:113px;
  10653. height:23px;
  10654. display:flex;
  10655. }
  10656. #u15830 .text {
  10657. position:absolute;
  10658. align-self:center;
  10659. padding:2px 2px 2px 2px;
  10660. box-sizing:border-box;
  10661. width:100%;
  10662. }
  10663. #u15830_text {
  10664. border-width:0px;
  10665. word-wrap:break-word;
  10666. text-transform:none;
  10667. visibility:hidden;
  10668. }
  10669. #u15831_img {
  10670. border-width:0px;
  10671. position:absolute;
  10672. left:0px;
  10673. top:0px;
  10674. width:113px;
  10675. height:23px;
  10676. }
  10677. #u15831 {
  10678. border-width:0px;
  10679. position:absolute;
  10680. left:398px;
  10681. top:190px;
  10682. width:113px;
  10683. height:23px;
  10684. display:flex;
  10685. }
  10686. #u15831 .text {
  10687. position:absolute;
  10688. align-self:center;
  10689. padding:2px 2px 2px 2px;
  10690. box-sizing:border-box;
  10691. width:100%;
  10692. }
  10693. #u15831_text {
  10694. border-width:0px;
  10695. word-wrap:break-word;
  10696. text-transform:none;
  10697. visibility:hidden;
  10698. }
  10699. #u15832_img {
  10700. border-width:0px;
  10701. position:absolute;
  10702. left:0px;
  10703. top:0px;
  10704. width:113px;
  10705. height:23px;
  10706. }
  10707. #u15832 {
  10708. border-width:0px;
  10709. position:absolute;
  10710. left:511px;
  10711. top:190px;
  10712. width:113px;
  10713. height:23px;
  10714. display:flex;
  10715. }
  10716. #u15832 .text {
  10717. position:absolute;
  10718. align-self:center;
  10719. padding:2px 2px 2px 2px;
  10720. box-sizing:border-box;
  10721. width:100%;
  10722. }
  10723. #u15832_text {
  10724. border-width:0px;
  10725. word-wrap:break-word;
  10726. text-transform:none;
  10727. visibility:hidden;
  10728. }
  10729. #u15833_img {
  10730. border-width:0px;
  10731. position:absolute;
  10732. left:0px;
  10733. top:0px;
  10734. width:113px;
  10735. height:23px;
  10736. }
  10737. #u15833 {
  10738. border-width:0px;
  10739. position:absolute;
  10740. left:624px;
  10741. top:190px;
  10742. width:113px;
  10743. height:23px;
  10744. display:flex;
  10745. }
  10746. #u15833 .text {
  10747. position:absolute;
  10748. align-self:center;
  10749. padding:2px 2px 2px 2px;
  10750. box-sizing:border-box;
  10751. width:100%;
  10752. }
  10753. #u15833_text {
  10754. border-width:0px;
  10755. word-wrap:break-word;
  10756. text-transform:none;
  10757. visibility:hidden;
  10758. }
  10759. #u15834_img {
  10760. border-width:0px;
  10761. position:absolute;
  10762. left:0px;
  10763. top:0px;
  10764. width:113px;
  10765. height:23px;
  10766. }
  10767. #u15834 {
  10768. border-width:0px;
  10769. position:absolute;
  10770. left:737px;
  10771. top:190px;
  10772. width:113px;
  10773. height:23px;
  10774. display:flex;
  10775. }
  10776. #u15834 .text {
  10777. position:absolute;
  10778. align-self:center;
  10779. padding:2px 2px 2px 2px;
  10780. box-sizing:border-box;
  10781. width:100%;
  10782. }
  10783. #u15834_text {
  10784. border-width:0px;
  10785. word-wrap:break-word;
  10786. text-transform:none;
  10787. visibility:hidden;
  10788. }
  10789. #u15835_img {
  10790. border-width:0px;
  10791. position:absolute;
  10792. left:0px;
  10793. top:0px;
  10794. width:110px;
  10795. height:23px;
  10796. }
  10797. #u15835 {
  10798. border-width:0px;
  10799. position:absolute;
  10800. left:850px;
  10801. top:190px;
  10802. width:110px;
  10803. height:23px;
  10804. display:flex;
  10805. }
  10806. #u15835 .text {
  10807. position:absolute;
  10808. align-self:center;
  10809. padding:2px 2px 2px 2px;
  10810. box-sizing:border-box;
  10811. width:100%;
  10812. }
  10813. #u15835_text {
  10814. border-width:0px;
  10815. word-wrap:break-word;
  10816. text-transform:none;
  10817. visibility:hidden;
  10818. }
  10819. #u15836 {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:0px;
  10823. top:0px;
  10824. width:0px;
  10825. height:0px;
  10826. }
  10827. #u15837_div {
  10828. border-width:0px;
  10829. position:absolute;
  10830. left:0px;
  10831. top:0px;
  10832. width:120px;
  10833. height:30px;
  10834. background:inherit;
  10835. background-color:rgba(255, 255, 255, 1);
  10836. box-sizing:border-box;
  10837. border-width:1px;
  10838. border-style:solid;
  10839. border-color:rgba(201, 201, 201, 1);
  10840. border-radius:4px;
  10841. -moz-box-shadow:none;
  10842. -webkit-box-shadow:none;
  10843. box-shadow:none;
  10844. font-family:'Microsoft YaHei', sans-serif;
  10845. font-weight:400;
  10846. font-style:normal;
  10847. font-size:14px;
  10848. color:#CCCCCC;
  10849. text-align:left;
  10850. }
  10851. #u15837 {
  10852. border-width:0px;
  10853. position:absolute;
  10854. left:2160px;
  10855. top:120px;
  10856. width:120px;
  10857. height:30px;
  10858. display:flex;
  10859. font-family:'Microsoft YaHei', sans-serif;
  10860. font-weight:400;
  10861. font-style:normal;
  10862. font-size:14px;
  10863. color:#CCCCCC;
  10864. text-align:left;
  10865. }
  10866. #u15837 .text {
  10867. position:absolute;
  10868. align-self:center;
  10869. padding:2px 8px 2px 8px;
  10870. box-sizing:border-box;
  10871. width:100%;
  10872. }
  10873. #u15837_text {
  10874. border-width:0px;
  10875. word-wrap:break-word;
  10876. text-transform:none;
  10877. visibility:hidden;
  10878. }
  10879. #u15838_input {
  10880. position:absolute;
  10881. left:0px;
  10882. top:0px;
  10883. width:109px;
  10884. height:25px;
  10885. padding:2px 2px 2px 2px;
  10886. font-family:'Microsoft YaHei', sans-serif;
  10887. font-weight:400;
  10888. font-style:normal;
  10889. font-size:10px;
  10890. letter-spacing:normal;
  10891. color:#000000;
  10892. vertical-align:none;
  10893. text-align:left;
  10894. text-transform:none;
  10895. background-color:transparent;
  10896. border-color:transparent;
  10897. }
  10898. #u15838_input.disabled {
  10899. position:absolute;
  10900. left:0px;
  10901. top:0px;
  10902. width:109px;
  10903. height:25px;
  10904. padding:2px 2px 2px 2px;
  10905. font-family:'Microsoft YaHei', sans-serif;
  10906. font-weight:400;
  10907. font-style:normal;
  10908. font-size:10px;
  10909. letter-spacing:normal;
  10910. color:#000000;
  10911. vertical-align:none;
  10912. text-align:left;
  10913. text-transform:none;
  10914. background-color:transparent;
  10915. border-color:transparent;
  10916. }
  10917. #u15838_div {
  10918. border-width:0px;
  10919. position:absolute;
  10920. left:0px;
  10921. top:0px;
  10922. width:109px;
  10923. height:25px;
  10924. background:inherit;
  10925. background-color:rgba(255, 255, 255, 1);
  10926. border:none;
  10927. border-radius:0px;
  10928. -moz-box-shadow:none;
  10929. -webkit-box-shadow:none;
  10930. box-shadow:none;
  10931. font-family:'Microsoft YaHei', sans-serif;
  10932. font-weight:400;
  10933. font-style:normal;
  10934. font-size:10px;
  10935. }
  10936. #u15838 {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:2167px;
  10940. top:121px;
  10941. width:109px;
  10942. height:25px;
  10943. display:flex;
  10944. font-family:'Microsoft YaHei', sans-serif;
  10945. font-weight:400;
  10946. font-style:normal;
  10947. font-size:10px;
  10948. }
  10949. #u15838 .text {
  10950. position:absolute;
  10951. align-self:center;
  10952. padding:2px 2px 2px 2px;
  10953. box-sizing:border-box;
  10954. width:100%;
  10955. }
  10956. #u15838_div.disabled {
  10957. border-width:0px;
  10958. position:absolute;
  10959. left:0px;
  10960. top:0px;
  10961. width:109px;
  10962. height:25px;
  10963. background:inherit;
  10964. background-color:rgba(240, 240, 240, 1);
  10965. border:none;
  10966. border-radius:0px;
  10967. -moz-box-shadow:none;
  10968. -webkit-box-shadow:none;
  10969. box-shadow:none;
  10970. font-family:'Microsoft YaHei', sans-serif;
  10971. font-weight:400;
  10972. font-style:normal;
  10973. font-size:10px;
  10974. }
  10975. #u15838.disabled {
  10976. }
  10977. #u15839 {
  10978. border-width:0px;
  10979. position:absolute;
  10980. left:0px;
  10981. top:0px;
  10982. width:0px;
  10983. height:0px;
  10984. }
  10985. #u15840_div {
  10986. border-width:0px;
  10987. position:absolute;
  10988. left:0px;
  10989. top:0px;
  10990. width:120px;
  10991. height:30px;
  10992. background:inherit;
  10993. background-color:rgba(255, 255, 255, 1);
  10994. box-sizing:border-box;
  10995. border-width:1px;
  10996. border-style:solid;
  10997. border-color:rgba(201, 201, 201, 1);
  10998. border-radius:4px;
  10999. -moz-box-shadow:none;
  11000. -webkit-box-shadow:none;
  11001. box-shadow:none;
  11002. font-family:'Microsoft YaHei', sans-serif;
  11003. font-weight:400;
  11004. font-style:normal;
  11005. font-size:14px;
  11006. color:#CCCCCC;
  11007. text-align:left;
  11008. }
  11009. #u15840 {
  11010. border-width:0px;
  11011. position:absolute;
  11012. left:2290px;
  11013. top:120px;
  11014. width:120px;
  11015. height:30px;
  11016. display:flex;
  11017. font-family:'Microsoft YaHei', sans-serif;
  11018. font-weight:400;
  11019. font-style:normal;
  11020. font-size:14px;
  11021. color:#CCCCCC;
  11022. text-align:left;
  11023. }
  11024. #u15840 .text {
  11025. position:absolute;
  11026. align-self:center;
  11027. padding:2px 8px 2px 8px;
  11028. box-sizing:border-box;
  11029. width:100%;
  11030. }
  11031. #u15840_text {
  11032. border-width:0px;
  11033. word-wrap:break-word;
  11034. text-transform:none;
  11035. visibility:hidden;
  11036. }
  11037. #u15841_input {
  11038. position:absolute;
  11039. left:0px;
  11040. top:0px;
  11041. width:109px;
  11042. height:25px;
  11043. padding:2px 2px 2px 2px;
  11044. font-family:'Microsoft YaHei', sans-serif;
  11045. font-weight:400;
  11046. font-style:normal;
  11047. font-size:10px;
  11048. letter-spacing:normal;
  11049. color:#000000;
  11050. vertical-align:none;
  11051. text-align:left;
  11052. text-transform:none;
  11053. background-color:transparent;
  11054. border-color:transparent;
  11055. }
  11056. #u15841_input.disabled {
  11057. position:absolute;
  11058. left:0px;
  11059. top:0px;
  11060. width:109px;
  11061. height:25px;
  11062. padding:2px 2px 2px 2px;
  11063. font-family:'Microsoft YaHei', sans-serif;
  11064. font-weight:400;
  11065. font-style:normal;
  11066. font-size:10px;
  11067. letter-spacing:normal;
  11068. color:#000000;
  11069. vertical-align:none;
  11070. text-align:left;
  11071. text-transform:none;
  11072. background-color:transparent;
  11073. border-color:transparent;
  11074. }
  11075. #u15841_div {
  11076. border-width:0px;
  11077. position:absolute;
  11078. left:0px;
  11079. top:0px;
  11080. width:109px;
  11081. height:25px;
  11082. background:inherit;
  11083. background-color:rgba(255, 255, 255, 1);
  11084. border:none;
  11085. border-radius:0px;
  11086. -moz-box-shadow:none;
  11087. -webkit-box-shadow:none;
  11088. box-shadow:none;
  11089. font-family:'Microsoft YaHei', sans-serif;
  11090. font-weight:400;
  11091. font-style:normal;
  11092. font-size:10px;
  11093. }
  11094. #u15841 {
  11095. border-width:0px;
  11096. position:absolute;
  11097. left:2297px;
  11098. top:121px;
  11099. width:109px;
  11100. height:25px;
  11101. display:flex;
  11102. font-family:'Microsoft YaHei', sans-serif;
  11103. font-weight:400;
  11104. font-style:normal;
  11105. font-size:10px;
  11106. }
  11107. #u15841 .text {
  11108. position:absolute;
  11109. align-self:center;
  11110. padding:2px 2px 2px 2px;
  11111. box-sizing:border-box;
  11112. width:100%;
  11113. }
  11114. #u15841_div.disabled {
  11115. border-width:0px;
  11116. position:absolute;
  11117. left:0px;
  11118. top:0px;
  11119. width:109px;
  11120. height:25px;
  11121. background:inherit;
  11122. background-color:rgba(240, 240, 240, 1);
  11123. border:none;
  11124. border-radius:0px;
  11125. -moz-box-shadow:none;
  11126. -webkit-box-shadow:none;
  11127. box-shadow:none;
  11128. font-family:'Microsoft YaHei', sans-serif;
  11129. font-weight:400;
  11130. font-style:normal;
  11131. font-size:10px;
  11132. }
  11133. #u15841.disabled {
  11134. }
  11135. #u15842 {
  11136. border-width:0px;
  11137. position:absolute;
  11138. left:0px;
  11139. top:0px;
  11140. width:0px;
  11141. height:0px;
  11142. }
  11143. #u15843_div {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:0px;
  11147. top:0px;
  11148. width:60px;
  11149. height:30px;
  11150. background:inherit;
  11151. background-color:rgba(24, 144, 255, 1);
  11152. border:none;
  11153. border-radius:4px;
  11154. -moz-box-shadow:none;
  11155. -webkit-box-shadow:none;
  11156. box-shadow:none;
  11157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11158. font-weight:400;
  11159. font-style:normal;
  11160. font-size:14px;
  11161. color:#FFFFFF;
  11162. }
  11163. #u15843 {
  11164. border-width:0px;
  11165. position:absolute;
  11166. left:2420px;
  11167. top:120px;
  11168. width:60px;
  11169. height:30px;
  11170. display:flex;
  11171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11172. font-weight:400;
  11173. font-style:normal;
  11174. font-size:14px;
  11175. color:#FFFFFF;
  11176. }
  11177. #u15843 .text {
  11178. position:absolute;
  11179. align-self:center;
  11180. padding:2px 2px 2px 2px;
  11181. box-sizing:border-box;
  11182. width:100%;
  11183. }
  11184. #u15843_text {
  11185. border-width:0px;
  11186. word-wrap:break-word;
  11187. text-transform:none;
  11188. }
  11189. #u15844_div {
  11190. border-width:0px;
  11191. position:absolute;
  11192. left:0px;
  11193. top:0px;
  11194. width:60px;
  11195. height:30px;
  11196. background:inherit;
  11197. background-color:rgba(255, 255, 255, 1);
  11198. box-sizing:border-box;
  11199. border-width:1px;
  11200. border-style:solid;
  11201. border-color:rgba(170, 170, 170, 1);
  11202. border-radius:4px;
  11203. -moz-box-shadow:none;
  11204. -webkit-box-shadow:none;
  11205. box-shadow:none;
  11206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11207. font-weight:400;
  11208. font-style:normal;
  11209. font-size:14px;
  11210. }
  11211. #u15844 {
  11212. border-width:0px;
  11213. position:absolute;
  11214. left:2490px;
  11215. top:120px;
  11216. width:60px;
  11217. height:30px;
  11218. display:flex;
  11219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11220. font-weight:400;
  11221. font-style:normal;
  11222. font-size:14px;
  11223. }
  11224. #u15844 .text {
  11225. position:absolute;
  11226. align-self:center;
  11227. padding:2px 2px 2px 2px;
  11228. box-sizing:border-box;
  11229. width:100%;
  11230. }
  11231. #u15844_text {
  11232. border-width:0px;
  11233. word-wrap:break-word;
  11234. text-transform:none;
  11235. }
  11236. #u15845 {
  11237. border-width:0px;
  11238. position:absolute;
  11239. left:0px;
  11240. top:0px;
  11241. width:0px;
  11242. height:0px;
  11243. }
  11244. #u15846_div {
  11245. border-width:0px;
  11246. position:absolute;
  11247. left:0px;
  11248. top:0px;
  11249. width:120px;
  11250. height:30px;
  11251. background:inherit;
  11252. background-color:rgba(255, 255, 255, 1);
  11253. box-sizing:border-box;
  11254. border-width:1px;
  11255. border-style:solid;
  11256. border-color:rgba(215, 215, 215, 1);
  11257. border-radius:4px;
  11258. -moz-box-shadow:none;
  11259. -webkit-box-shadow:none;
  11260. box-shadow:none;
  11261. font-size:14px;
  11262. }
  11263. #u15846 {
  11264. border-width:0px;
  11265. position:absolute;
  11266. left:1900px;
  11267. top:120px;
  11268. width:120px;
  11269. height:30px;
  11270. display:flex;
  11271. font-size:14px;
  11272. }
  11273. #u15846 .text {
  11274. position:absolute;
  11275. align-self:center;
  11276. padding:2px 2px 2px 2px;
  11277. box-sizing:border-box;
  11278. width:100%;
  11279. }
  11280. #u15846_text {
  11281. border-width:0px;
  11282. word-wrap:break-word;
  11283. text-transform:none;
  11284. visibility:hidden;
  11285. }
  11286. #u15847_input {
  11287. position:absolute;
  11288. left:0px;
  11289. top:0px;
  11290. width:115px;
  11291. height:23px;
  11292. padding:2px 2px 2px 2px;
  11293. font-family:'ArialMT', 'Arial', sans-serif;
  11294. font-weight:400;
  11295. font-style:normal;
  11296. font-size:14px;
  11297. letter-spacing:normal;
  11298. color:#AAAAAA;
  11299. vertical-align:none;
  11300. text-align:left;
  11301. text-transform:none;
  11302. background-color:transparent;
  11303. border-color:transparent;
  11304. }
  11305. #u15847_input.disabled {
  11306. position:absolute;
  11307. left:0px;
  11308. top:0px;
  11309. width:115px;
  11310. height:23px;
  11311. padding:2px 2px 2px 2px;
  11312. font-family:'ArialMT', 'Arial', sans-serif;
  11313. font-weight:400;
  11314. font-style:normal;
  11315. font-size:14px;
  11316. letter-spacing:normal;
  11317. color:#AAAAAA;
  11318. vertical-align:none;
  11319. text-align:left;
  11320. text-transform:none;
  11321. background-color:transparent;
  11322. border-color:transparent;
  11323. }
  11324. #u15847_div {
  11325. border-width:0px;
  11326. position:absolute;
  11327. left:0px;
  11328. top:0px;
  11329. width:115px;
  11330. height:23px;
  11331. background:inherit;
  11332. background-color:rgba(255, 255, 255, 1);
  11333. border:none;
  11334. border-radius:0px;
  11335. -moz-box-shadow:none;
  11336. -webkit-box-shadow:none;
  11337. box-shadow:none;
  11338. font-size:14px;
  11339. color:#AAAAAA;
  11340. }
  11341. #u15847 {
  11342. border-width:0px;
  11343. position:absolute;
  11344. left:1903px;
  11345. top:122px;
  11346. width:115px;
  11347. height:23px;
  11348. display:flex;
  11349. font-size:14px;
  11350. color:#AAAAAA;
  11351. }
  11352. #u15847 .text {
  11353. position:absolute;
  11354. align-self:flex-start;
  11355. padding:2px 2px 2px 2px;
  11356. box-sizing:border-box;
  11357. width:100%;
  11358. }
  11359. #u15847_div.disabled {
  11360. border-width:0px;
  11361. position:absolute;
  11362. left:0px;
  11363. top:0px;
  11364. width:115px;
  11365. height:23px;
  11366. background:inherit;
  11367. background-color:rgba(240, 240, 240, 1);
  11368. border:none;
  11369. border-radius:0px;
  11370. -moz-box-shadow:none;
  11371. -webkit-box-shadow:none;
  11372. box-shadow:none;
  11373. font-size:14px;
  11374. color:#AAAAAA;
  11375. }
  11376. #u15847.disabled {
  11377. }
  11378. .u15847_input_option {
  11379. font-size:14px;
  11380. }
  11381. #u15848 {
  11382. border-width:0px;
  11383. position:absolute;
  11384. left:0px;
  11385. top:0px;
  11386. width:0px;
  11387. height:0px;
  11388. }
  11389. #u15849_div {
  11390. border-width:0px;
  11391. position:absolute;
  11392. left:0px;
  11393. top:0px;
  11394. width:120px;
  11395. height:30px;
  11396. background:inherit;
  11397. background-color:rgba(255, 255, 255, 1);
  11398. box-sizing:border-box;
  11399. border-width:1px;
  11400. border-style:solid;
  11401. border-color:rgba(215, 215, 215, 1);
  11402. border-radius:4px;
  11403. -moz-box-shadow:none;
  11404. -webkit-box-shadow:none;
  11405. box-shadow:none;
  11406. font-size:14px;
  11407. }
  11408. #u15849 {
  11409. border-width:0px;
  11410. position:absolute;
  11411. left:1770px;
  11412. top:120px;
  11413. width:120px;
  11414. height:30px;
  11415. display:flex;
  11416. font-size:14px;
  11417. }
  11418. #u15849 .text {
  11419. position:absolute;
  11420. align-self:center;
  11421. padding:2px 2px 2px 2px;
  11422. box-sizing:border-box;
  11423. width:100%;
  11424. }
  11425. #u15849_text {
  11426. border-width:0px;
  11427. word-wrap:break-word;
  11428. text-transform:none;
  11429. visibility:hidden;
  11430. }
  11431. #u15850_input {
  11432. position:absolute;
  11433. left:0px;
  11434. top:0px;
  11435. width:115px;
  11436. height:23px;
  11437. padding:2px 2px 2px 2px;
  11438. font-family:'ArialMT', 'Arial', sans-serif;
  11439. font-weight:400;
  11440. font-style:normal;
  11441. font-size:14px;
  11442. letter-spacing:normal;
  11443. color:#AAAAAA;
  11444. vertical-align:none;
  11445. text-align:left;
  11446. text-transform:none;
  11447. background-color:transparent;
  11448. border-color:transparent;
  11449. }
  11450. #u15850_input.disabled {
  11451. position:absolute;
  11452. left:0px;
  11453. top:0px;
  11454. width:115px;
  11455. height:23px;
  11456. padding:2px 2px 2px 2px;
  11457. font-family:'ArialMT', 'Arial', sans-serif;
  11458. font-weight:400;
  11459. font-style:normal;
  11460. font-size:14px;
  11461. letter-spacing:normal;
  11462. color:#AAAAAA;
  11463. vertical-align:none;
  11464. text-align:left;
  11465. text-transform:none;
  11466. background-color:transparent;
  11467. border-color:transparent;
  11468. }
  11469. #u15850_div {
  11470. border-width:0px;
  11471. position:absolute;
  11472. left:0px;
  11473. top:0px;
  11474. width:115px;
  11475. height:23px;
  11476. background:inherit;
  11477. background-color:rgba(255, 255, 255, 1);
  11478. border:none;
  11479. border-radius:0px;
  11480. -moz-box-shadow:none;
  11481. -webkit-box-shadow:none;
  11482. box-shadow:none;
  11483. font-size:14px;
  11484. color:#AAAAAA;
  11485. }
  11486. #u15850 {
  11487. border-width:0px;
  11488. position:absolute;
  11489. left:1773px;
  11490. top:122px;
  11491. width:115px;
  11492. height:23px;
  11493. display:flex;
  11494. font-size:14px;
  11495. color:#AAAAAA;
  11496. }
  11497. #u15850 .text {
  11498. position:absolute;
  11499. align-self:flex-start;
  11500. padding:2px 2px 2px 2px;
  11501. box-sizing:border-box;
  11502. width:100%;
  11503. }
  11504. #u15850_div.disabled {
  11505. border-width:0px;
  11506. position:absolute;
  11507. left:0px;
  11508. top:0px;
  11509. width:115px;
  11510. height:23px;
  11511. background:inherit;
  11512. background-color:rgba(240, 240, 240, 1);
  11513. border:none;
  11514. border-radius:0px;
  11515. -moz-box-shadow:none;
  11516. -webkit-box-shadow:none;
  11517. box-shadow:none;
  11518. font-size:14px;
  11519. color:#AAAAAA;
  11520. }
  11521. #u15850.disabled {
  11522. }
  11523. .u15850_input_option {
  11524. font-size:14px;
  11525. }
  11526. #u15851 {
  11527. border-width:0px;
  11528. position:absolute;
  11529. left:0px;
  11530. top:0px;
  11531. width:0px;
  11532. height:0px;
  11533. }
  11534. #u15852_div {
  11535. border-width:0px;
  11536. position:absolute;
  11537. left:0px;
  11538. top:0px;
  11539. width:120px;
  11540. height:30px;
  11541. background:inherit;
  11542. background-color:rgba(255, 255, 255, 1);
  11543. box-sizing:border-box;
  11544. border-width:1px;
  11545. border-style:solid;
  11546. border-color:rgba(215, 215, 215, 1);
  11547. border-radius:4px;
  11548. -moz-box-shadow:none;
  11549. -webkit-box-shadow:none;
  11550. box-shadow:none;
  11551. font-size:14px;
  11552. }
  11553. #u15852 {
  11554. border-width:0px;
  11555. position:absolute;
  11556. left:1640px;
  11557. top:120px;
  11558. width:120px;
  11559. height:30px;
  11560. display:flex;
  11561. font-size:14px;
  11562. }
  11563. #u15852 .text {
  11564. position:absolute;
  11565. align-self:center;
  11566. padding:2px 2px 2px 2px;
  11567. box-sizing:border-box;
  11568. width:100%;
  11569. }
  11570. #u15852_text {
  11571. border-width:0px;
  11572. word-wrap:break-word;
  11573. text-transform:none;
  11574. visibility:hidden;
  11575. }
  11576. #u15853_input {
  11577. position:absolute;
  11578. left:0px;
  11579. top:0px;
  11580. width:115px;
  11581. height:23px;
  11582. padding:2px 2px 2px 2px;
  11583. font-family:'ArialMT', 'Arial', sans-serif;
  11584. font-weight:400;
  11585. font-style:normal;
  11586. font-size:14px;
  11587. letter-spacing:normal;
  11588. color:#AAAAAA;
  11589. vertical-align:none;
  11590. text-align:left;
  11591. text-transform:none;
  11592. background-color:transparent;
  11593. border-color:transparent;
  11594. }
  11595. #u15853_input.disabled {
  11596. position:absolute;
  11597. left:0px;
  11598. top:0px;
  11599. width:115px;
  11600. height:23px;
  11601. padding:2px 2px 2px 2px;
  11602. font-family:'ArialMT', 'Arial', sans-serif;
  11603. font-weight:400;
  11604. font-style:normal;
  11605. font-size:14px;
  11606. letter-spacing:normal;
  11607. color:#AAAAAA;
  11608. vertical-align:none;
  11609. text-align:left;
  11610. text-transform:none;
  11611. background-color:transparent;
  11612. border-color:transparent;
  11613. }
  11614. #u15853_div {
  11615. border-width:0px;
  11616. position:absolute;
  11617. left:0px;
  11618. top:0px;
  11619. width:115px;
  11620. height:23px;
  11621. background:inherit;
  11622. background-color:rgba(255, 255, 255, 1);
  11623. border:none;
  11624. border-radius:0px;
  11625. -moz-box-shadow:none;
  11626. -webkit-box-shadow:none;
  11627. box-shadow:none;
  11628. font-size:14px;
  11629. color:#AAAAAA;
  11630. }
  11631. #u15853 {
  11632. border-width:0px;
  11633. position:absolute;
  11634. left:1643px;
  11635. top:122px;
  11636. width:115px;
  11637. height:23px;
  11638. display:flex;
  11639. font-size:14px;
  11640. color:#AAAAAA;
  11641. }
  11642. #u15853 .text {
  11643. position:absolute;
  11644. align-self:flex-start;
  11645. padding:2px 2px 2px 2px;
  11646. box-sizing:border-box;
  11647. width:100%;
  11648. }
  11649. #u15853_div.disabled {
  11650. border-width:0px;
  11651. position:absolute;
  11652. left:0px;
  11653. top:0px;
  11654. width:115px;
  11655. height:23px;
  11656. background:inherit;
  11657. background-color:rgba(240, 240, 240, 1);
  11658. border:none;
  11659. border-radius:0px;
  11660. -moz-box-shadow:none;
  11661. -webkit-box-shadow:none;
  11662. box-shadow:none;
  11663. font-size:14px;
  11664. color:#AAAAAA;
  11665. }
  11666. #u15853.disabled {
  11667. }
  11668. .u15853_input_option {
  11669. font-size:14px;
  11670. }
  11671. #u15854 {
  11672. border-width:0px;
  11673. position:absolute;
  11674. left:0px;
  11675. top:0px;
  11676. width:0px;
  11677. height:0px;
  11678. }
  11679. #u15855_div {
  11680. border-width:0px;
  11681. position:absolute;
  11682. left:0px;
  11683. top:0px;
  11684. width:120px;
  11685. height:30px;
  11686. background:inherit;
  11687. background-color:rgba(255, 255, 255, 1);
  11688. box-sizing:border-box;
  11689. border-width:1px;
  11690. border-style:solid;
  11691. border-color:rgba(201, 201, 201, 1);
  11692. border-radius:4px;
  11693. -moz-box-shadow:none;
  11694. -webkit-box-shadow:none;
  11695. box-shadow:none;
  11696. font-family:'Microsoft YaHei', sans-serif;
  11697. font-weight:400;
  11698. font-style:normal;
  11699. font-size:14px;
  11700. color:#CCCCCC;
  11701. text-align:left;
  11702. }
  11703. #u15855 {
  11704. border-width:0px;
  11705. position:absolute;
  11706. left:2030px;
  11707. top:120px;
  11708. width:120px;
  11709. height:30px;
  11710. display:flex;
  11711. font-family:'Microsoft YaHei', sans-serif;
  11712. font-weight:400;
  11713. font-style:normal;
  11714. font-size:14px;
  11715. color:#CCCCCC;
  11716. text-align:left;
  11717. }
  11718. #u15855 .text {
  11719. position:absolute;
  11720. align-self:center;
  11721. padding:2px 8px 2px 8px;
  11722. box-sizing:border-box;
  11723. width:100%;
  11724. }
  11725. #u15855_text {
  11726. border-width:0px;
  11727. word-wrap:break-word;
  11728. text-transform:none;
  11729. visibility:hidden;
  11730. }
  11731. #u15856_input {
  11732. position:absolute;
  11733. left:0px;
  11734. top:0px;
  11735. width:109px;
  11736. height:25px;
  11737. padding:2px 2px 2px 2px;
  11738. font-family:'Microsoft YaHei', sans-serif;
  11739. font-weight:400;
  11740. font-style:normal;
  11741. font-size:10px;
  11742. letter-spacing:normal;
  11743. color:#000000;
  11744. vertical-align:none;
  11745. text-align:left;
  11746. text-transform:none;
  11747. background-color:transparent;
  11748. border-color:transparent;
  11749. }
  11750. #u15856_input.disabled {
  11751. position:absolute;
  11752. left:0px;
  11753. top:0px;
  11754. width:109px;
  11755. height:25px;
  11756. padding:2px 2px 2px 2px;
  11757. font-family:'Microsoft YaHei', sans-serif;
  11758. font-weight:400;
  11759. font-style:normal;
  11760. font-size:10px;
  11761. letter-spacing:normal;
  11762. color:#000000;
  11763. vertical-align:none;
  11764. text-align:left;
  11765. text-transform:none;
  11766. background-color:transparent;
  11767. border-color:transparent;
  11768. }
  11769. #u15856_div {
  11770. border-width:0px;
  11771. position:absolute;
  11772. left:0px;
  11773. top:0px;
  11774. width:109px;
  11775. height:25px;
  11776. background:inherit;
  11777. background-color:rgba(255, 255, 255, 1);
  11778. border:none;
  11779. border-radius:0px;
  11780. -moz-box-shadow:none;
  11781. -webkit-box-shadow:none;
  11782. box-shadow:none;
  11783. font-family:'Microsoft YaHei', sans-serif;
  11784. font-weight:400;
  11785. font-style:normal;
  11786. font-size:10px;
  11787. }
  11788. #u15856 {
  11789. border-width:0px;
  11790. position:absolute;
  11791. left:2037px;
  11792. top:121px;
  11793. width:109px;
  11794. height:25px;
  11795. display:flex;
  11796. font-family:'Microsoft YaHei', sans-serif;
  11797. font-weight:400;
  11798. font-style:normal;
  11799. font-size:10px;
  11800. }
  11801. #u15856 .text {
  11802. position:absolute;
  11803. align-self:center;
  11804. padding:2px 2px 2px 2px;
  11805. box-sizing:border-box;
  11806. width:100%;
  11807. }
  11808. #u15856_div.disabled {
  11809. border-width:0px;
  11810. position:absolute;
  11811. left:0px;
  11812. top:0px;
  11813. width:109px;
  11814. height:25px;
  11815. background:inherit;
  11816. background-color:rgba(240, 240, 240, 1);
  11817. border:none;
  11818. border-radius:0px;
  11819. -moz-box-shadow:none;
  11820. -webkit-box-shadow:none;
  11821. box-shadow:none;
  11822. font-family:'Microsoft YaHei', sans-serif;
  11823. font-weight:400;
  11824. font-style:normal;
  11825. font-size:10px;
  11826. }
  11827. #u15856.disabled {
  11828. }
  11829. #u15857 {
  11830. border-width:0px;
  11831. position:absolute;
  11832. left:0px;
  11833. top:0px;
  11834. width:0px;
  11835. height:0px;
  11836. }
  11837. #u15858 {
  11838. border-width:0px;
  11839. position:absolute;
  11840. left:0px;
  11841. top:0px;
  11842. width:0px;
  11843. height:0px;
  11844. }
  11845. #u15859_div {
  11846. border-width:0px;
  11847. position:absolute;
  11848. left:0px;
  11849. top:0px;
  11850. width:380px;
  11851. height:160px;
  11852. background:inherit;
  11853. background-color:rgba(255, 255, 255, 1);
  11854. box-sizing:border-box;
  11855. border-width:1px;
  11856. border-style:solid;
  11857. border-color:rgba(242, 242, 242, 1);
  11858. border-radius:4px;
  11859. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11860. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11861. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11862. font-family:'Microsoft YaHei', sans-serif;
  11863. font-weight:400;
  11864. font-style:normal;
  11865. }
  11866. #u15859 {
  11867. border-width:0px;
  11868. position:absolute;
  11869. left:1955px;
  11870. top:368px;
  11871. width:380px;
  11872. height:160px;
  11873. display:flex;
  11874. font-family:'Microsoft YaHei', sans-serif;
  11875. font-weight:400;
  11876. font-style:normal;
  11877. }
  11878. #u15859 .text {
  11879. position:absolute;
  11880. align-self:center;
  11881. padding:2px 2px 2px 2px;
  11882. box-sizing:border-box;
  11883. width:100%;
  11884. }
  11885. #u15859_text {
  11886. border-width:0px;
  11887. word-wrap:break-word;
  11888. text-transform:none;
  11889. visibility:hidden;
  11890. }
  11891. #u15860_div {
  11892. border-width:0px;
  11893. position:absolute;
  11894. left:0px;
  11895. top:0px;
  11896. width:217px;
  11897. height:21px;
  11898. background:inherit;
  11899. background-color:rgba(255, 255, 255, 0);
  11900. border:none;
  11901. border-radius:0px;
  11902. -moz-box-shadow:none;
  11903. -webkit-box-shadow:none;
  11904. box-shadow:none;
  11905. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11906. font-weight:650;
  11907. font-style:normal;
  11908. font-size:18px;
  11909. color:#000000;
  11910. line-height:22px;
  11911. }
  11912. #u15860 {
  11913. border-width:0px;
  11914. position:absolute;
  11915. left:2015px;
  11916. top:393px;
  11917. width:217px;
  11918. height:21px;
  11919. display:flex;
  11920. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11921. font-weight:650;
  11922. font-style:normal;
  11923. font-size:18px;
  11924. color:#000000;
  11925. line-height:22px;
  11926. }
  11927. #u15860 .text {
  11928. position:absolute;
  11929. align-self:flex-start;
  11930. padding:0px 0px 0px 0px;
  11931. box-sizing:border-box;
  11932. width:100%;
  11933. }
  11934. #u15860_text {
  11935. border-width:0px;
  11936. white-space:nowrap;
  11937. text-transform:none;
  11938. }
  11939. #u15861_div {
  11940. border-width:0px;
  11941. position:absolute;
  11942. left:0px;
  11943. top:0px;
  11944. width:61px;
  11945. height:32px;
  11946. background:inherit;
  11947. background-color:rgba(24, 144, 255, 1);
  11948. border:none;
  11949. border-radius:4px;
  11950. -moz-box-shadow:none;
  11951. -webkit-box-shadow:none;
  11952. box-shadow:none;
  11953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11954. font-weight:400;
  11955. font-style:normal;
  11956. font-size:14px;
  11957. color:#FFFFFF;
  11958. }
  11959. #u15861 {
  11960. border-width:0px;
  11961. position:absolute;
  11962. left:2254px;
  11963. top:480px;
  11964. width:61px;
  11965. height:32px;
  11966. display:flex;
  11967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11968. font-weight:400;
  11969. font-style:normal;
  11970. font-size:14px;
  11971. color:#FFFFFF;
  11972. }
  11973. #u15861 .text {
  11974. position:absolute;
  11975. align-self:center;
  11976. padding:2px 16px 2px 16px;
  11977. box-sizing:border-box;
  11978. width:100%;
  11979. }
  11980. #u15861_text {
  11981. border-width:0px;
  11982. white-space:nowrap;
  11983. text-transform:none;
  11984. }
  11985. #u15862_img {
  11986. border-width:0px;
  11987. position:absolute;
  11988. left:0px;
  11989. top:0px;
  11990. width:20px;
  11991. height:20px;
  11992. }
  11993. #u15862 {
  11994. border-width:0px;
  11995. position:absolute;
  11996. left:1984px;
  11997. top:397px;
  11998. width:20px;
  11999. height:20px;
  12000. display:flex;
  12001. }
  12002. #u15862 .text {
  12003. position:absolute;
  12004. align-self:center;
  12005. padding:2px 2px 2px 2px;
  12006. box-sizing:border-box;
  12007. width:100%;
  12008. }
  12009. #u15862_text {
  12010. border-width:0px;
  12011. word-wrap:break-word;
  12012. text-transform:none;
  12013. visibility:hidden;
  12014. }
  12015. #u15863_div {
  12016. border-width:0px;
  12017. position:absolute;
  12018. left:0px;
  12019. top:0px;
  12020. width:300px;
  12021. height:44px;
  12022. background:inherit;
  12023. background-color:rgba(255, 255, 255, 0);
  12024. border:none;
  12025. border-radius:0px;
  12026. -moz-box-shadow:none;
  12027. -webkit-box-shadow:none;
  12028. box-shadow:none;
  12029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12030. font-weight:400;
  12031. font-style:normal;
  12032. font-size:14px;
  12033. color:#7F7F7F;
  12034. line-height:22px;
  12035. }
  12036. #u15863 {
  12037. border-width:0px;
  12038. position:absolute;
  12039. left:2015px;
  12040. top:427px;
  12041. width:300px;
  12042. height:44px;
  12043. display:flex;
  12044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12045. font-weight:400;
  12046. font-style:normal;
  12047. font-size:14px;
  12048. color:#7F7F7F;
  12049. line-height:22px;
  12050. }
  12051. #u15863 .text {
  12052. position:absolute;
  12053. align-self:flex-start;
  12054. padding:0px 0px 0px 0px;
  12055. box-sizing:border-box;
  12056. width:100%;
  12057. }
  12058. #u15863_text {
  12059. border-width:0px;
  12060. word-wrap:break-word;
  12061. text-transform:none;
  12062. }
  12063. #u15864_div {
  12064. border-width:0px;
  12065. position:absolute;
  12066. left:0px;
  12067. top:0px;
  12068. width:66px;
  12069. height:32px;
  12070. background:inherit;
  12071. background-color:rgba(255, 255, 255, 1);
  12072. box-sizing:border-box;
  12073. border-width:1px;
  12074. border-style:solid;
  12075. border-color:rgba(217, 217, 217, 1);
  12076. border-radius:4px;
  12077. -moz-box-shadow:none;
  12078. -webkit-box-shadow:none;
  12079. box-shadow:none;
  12080. font-family:'Microsoft YaHei', sans-serif;
  12081. font-weight:400;
  12082. font-style:normal;
  12083. font-size:14px;
  12084. color:rgba(0, 0, 0, 0.647058823529412);
  12085. line-height:21px;
  12086. }
  12087. #u15864 {
  12088. border-width:0px;
  12089. position:absolute;
  12090. left:2171px;
  12091. top:480px;
  12092. width:66px;
  12093. height:32px;
  12094. display:flex;
  12095. font-family:'Microsoft YaHei', sans-serif;
  12096. font-weight:400;
  12097. font-style:normal;
  12098. font-size:14px;
  12099. color:rgba(0, 0, 0, 0.647058823529412);
  12100. line-height:21px;
  12101. }
  12102. #u15864 .text {
  12103. position:absolute;
  12104. align-self:center;
  12105. padding:2px 16px 2px 16px;
  12106. box-sizing:border-box;
  12107. width:100%;
  12108. }
  12109. #u15864_text {
  12110. border-width:0px;
  12111. white-space:nowrap;
  12112. text-transform:none;
  12113. }