styles.css 224 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2276px;
  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. #u11805 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u11806_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:640px;
  33. height:1196px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u11806 {
  53. border-width:0px;
  54. position:absolute;
  55. left:1636px;
  56. top:100px;
  57. width:640px;
  58. height:1196px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u11806 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u11806_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u11807_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:137px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u11807 {
  106. border-width:0px;
  107. position:absolute;
  108. left:1656px;
  109. top:118px;
  110. width:137px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u11807 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u11807_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u11808 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u11809_div {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:40px;
  144. height:40px;
  145. background:inherit;
  146. background-color:rgba(255, 255, 255, 0);
  147. border:none;
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  158. font-weight:500;
  159. font-style:normal;
  160. font-size:18px;
  161. text-align:center;
  162. }
  163. #u11809 {
  164. border-width:0px;
  165. position:absolute;
  166. left:2236px;
  167. top:100px;
  168. width:40px;
  169. height:40px;
  170. display:flex;
  171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  172. font-weight:500;
  173. font-style:normal;
  174. font-size:18px;
  175. text-align:center;
  176. }
  177. #u11809 .text {
  178. position:absolute;
  179. align-self:center;
  180. padding:5px 10px 5px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u11809_text {
  185. border-width:0px;
  186. word-wrap:break-word;
  187. text-transform:none;
  188. }
  189. #u11810_img {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:13px;
  195. height:13px;
  196. }
  197. #u11810 {
  198. border-width:0px;
  199. position:absolute;
  200. left:2224px;
  201. top:116px;
  202. width:13px;
  203. height:13px;
  204. display:flex;
  205. }
  206. #u11810 .text {
  207. position:absolute;
  208. align-self:center;
  209. padding:2px 2px 2px 2px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u11810_text {
  214. border-width:0px;
  215. word-wrap:break-word;
  216. text-transform:none;
  217. visibility:hidden;
  218. }
  219. #u11811 {
  220. border-width:0px;
  221. position:absolute;
  222. left:0px;
  223. top:0px;
  224. width:0px;
  225. height:0px;
  226. }
  227. #u11812_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:640px;
  233. height:50px;
  234. background:inherit;
  235. background-color:rgba(255, 255, 255, 1);
  236. box-sizing:border-box;
  237. border-width:1px;
  238. border-style:solid;
  239. border-color:rgba(215, 215, 215, 1);
  240. border-radius:0px;
  241. -moz-box-shadow:none;
  242. -webkit-box-shadow:none;
  243. box-shadow:none;
  244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  245. font-weight:400;
  246. font-style:normal;
  247. font-size:14px;
  248. color:#AAAAAA;
  249. text-align:center;
  250. line-height:30px;
  251. }
  252. #u11812 {
  253. border-width:0px;
  254. position:absolute;
  255. left:1636px;
  256. top:1246px;
  257. width:640px;
  258. height:50px;
  259. display:flex;
  260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  261. font-weight:400;
  262. font-style:normal;
  263. font-size:14px;
  264. color:#AAAAAA;
  265. text-align:center;
  266. line-height:30px;
  267. }
  268. #u11812 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:5px 10px 5px 10px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u11812_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. visibility:hidden;
  280. }
  281. #u11813_div {
  282. border-width:0px;
  283. position:absolute;
  284. left:0px;
  285. top:0px;
  286. width:80px;
  287. height:30px;
  288. background:inherit;
  289. background-color:rgba(255, 255, 255, 1);
  290. box-sizing:border-box;
  291. border-width:1px;
  292. border-style:solid;
  293. border-color:rgba(121, 121, 121, 1);
  294. border-radius:4px;
  295. -moz-box-shadow:none;
  296. -webkit-box-shadow:none;
  297. box-shadow:none;
  298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  299. font-weight:400;
  300. font-style:normal;
  301. font-size:14px;
  302. }
  303. #u11813 {
  304. border-width:0px;
  305. position:absolute;
  306. left:2176px;
  307. top:1256px;
  308. width:80px;
  309. height:30px;
  310. display:flex;
  311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  312. font-weight:400;
  313. font-style:normal;
  314. font-size:14px;
  315. }
  316. #u11813 .text {
  317. position:absolute;
  318. align-self:center;
  319. padding:2px 2px 2px 2px;
  320. box-sizing:border-box;
  321. width:100%;
  322. }
  323. #u11813_text {
  324. border-width:0px;
  325. word-wrap:break-word;
  326. text-transform:none;
  327. }
  328. #u11814 {
  329. border-width:0px;
  330. position:absolute;
  331. left:1655px;
  332. top:212px;
  333. width:595px;
  334. height:213px;
  335. }
  336. #u11815_img {
  337. border-width:0px;
  338. position:absolute;
  339. left:0px;
  340. top:0px;
  341. width:54px;
  342. height:30px;
  343. }
  344. #u11815 {
  345. border-width:0px;
  346. position:absolute;
  347. left:0px;
  348. top:0px;
  349. width:54px;
  350. height:30px;
  351. display:flex;
  352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  353. font-weight:400;
  354. font-style:normal;
  355. color:#FFFFFF;
  356. }
  357. #u11815 .text {
  358. position:absolute;
  359. align-self:center;
  360. padding:2px 2px 2px 2px;
  361. box-sizing:border-box;
  362. width:100%;
  363. }
  364. #u11815_text {
  365. border-width:0px;
  366. word-wrap:break-word;
  367. text-transform:none;
  368. }
  369. #u11816_img {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:143px;
  375. height:30px;
  376. }
  377. #u11816 {
  378. border-width:0px;
  379. position:absolute;
  380. left:54px;
  381. top:0px;
  382. width:143px;
  383. height:30px;
  384. display:flex;
  385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  386. font-weight:400;
  387. font-style:normal;
  388. color:#FFFFFF;
  389. }
  390. #u11816 .text {
  391. position:absolute;
  392. align-self:center;
  393. padding:2px 2px 2px 2px;
  394. box-sizing:border-box;
  395. width:100%;
  396. }
  397. #u11816_text {
  398. border-width:0px;
  399. word-wrap:break-word;
  400. text-transform:none;
  401. }
  402. #u11817_img {
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:107px;
  408. height:30px;
  409. }
  410. #u11817 {
  411. border-width:0px;
  412. position:absolute;
  413. left:197px;
  414. top:0px;
  415. width:107px;
  416. height:30px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. }
  423. #u11817 .text {
  424. position:absolute;
  425. align-self:center;
  426. padding:2px 2px 2px 2px;
  427. box-sizing:border-box;
  428. width:100%;
  429. }
  430. #u11817_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. }
  435. #u11818_img {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:109px;
  441. height:30px;
  442. }
  443. #u11818 {
  444. border-width:0px;
  445. position:absolute;
  446. left:304px;
  447. top:0px;
  448. width:109px;
  449. height:30px;
  450. display:flex;
  451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  452. font-weight:400;
  453. font-style:normal;
  454. color:#FFFFFF;
  455. }
  456. #u11818 .text {
  457. position:absolute;
  458. align-self:center;
  459. padding:2px 2px 2px 2px;
  460. box-sizing:border-box;
  461. width:100%;
  462. }
  463. #u11818_text {
  464. border-width:0px;
  465. word-wrap:break-word;
  466. text-transform:none;
  467. }
  468. #u11819_img {
  469. border-width:0px;
  470. position:absolute;
  471. left:0px;
  472. top:0px;
  473. width:110px;
  474. height:30px;
  475. }
  476. #u11819 {
  477. border-width:0px;
  478. position:absolute;
  479. left:413px;
  480. top:0px;
  481. width:110px;
  482. height:30px;
  483. display:flex;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. color:#FFFFFF;
  488. }
  489. #u11819 .text {
  490. position:absolute;
  491. align-self:center;
  492. padding:2px 2px 2px 2px;
  493. box-sizing:border-box;
  494. width:100%;
  495. }
  496. #u11819_text {
  497. border-width:0px;
  498. word-wrap:break-word;
  499. text-transform:none;
  500. }
  501. #u11820_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:72px;
  507. height:30px;
  508. }
  509. #u11820 {
  510. border-width:0px;
  511. position:absolute;
  512. left:523px;
  513. top:0px;
  514. width:72px;
  515. height:30px;
  516. display:flex;
  517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  518. font-weight:400;
  519. font-style:normal;
  520. color:#FFFFFF;
  521. }
  522. #u11820 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u11820_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u11821_img {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:54px;
  540. height:40px;
  541. }
  542. #u11821 {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:30px;
  547. width:54px;
  548. height:40px;
  549. display:flex;
  550. }
  551. #u11821 .text {
  552. position:absolute;
  553. align-self:center;
  554. padding:2px 2px 2px 2px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u11821_text {
  559. border-width:0px;
  560. word-wrap:break-word;
  561. text-transform:none;
  562. }
  563. #u11822_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:143px;
  569. height:40px;
  570. }
  571. #u11822 {
  572. border-width:0px;
  573. position:absolute;
  574. left:54px;
  575. top:30px;
  576. width:143px;
  577. height:40px;
  578. display:flex;
  579. }
  580. #u11822 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u11822_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. }
  592. #u11823_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:107px;
  598. height:40px;
  599. }
  600. #u11823 {
  601. border-width:0px;
  602. position:absolute;
  603. left:197px;
  604. top:30px;
  605. width:107px;
  606. height:40px;
  607. display:flex;
  608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  609. font-weight:400;
  610. font-style:normal;
  611. }
  612. #u11823 .text {
  613. position:absolute;
  614. align-self:center;
  615. padding:2px 2px 2px 2px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u11823_text {
  620. border-width:0px;
  621. word-wrap:break-word;
  622. text-transform:none;
  623. }
  624. #u11824_img {
  625. border-width:0px;
  626. position:absolute;
  627. left:0px;
  628. top:0px;
  629. width:109px;
  630. height:40px;
  631. }
  632. #u11824 {
  633. border-width:0px;
  634. position:absolute;
  635. left:304px;
  636. top:30px;
  637. width:109px;
  638. height:40px;
  639. display:flex;
  640. }
  641. #u11824 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u11824_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u11825_img {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:110px;
  659. height:40px;
  660. }
  661. #u11825 {
  662. border-width:0px;
  663. position:absolute;
  664. left:413px;
  665. top:30px;
  666. width:110px;
  667. height:40px;
  668. display:flex;
  669. }
  670. #u11825 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u11825_text {
  678. border-width:0px;
  679. word-wrap:break-word;
  680. text-transform:none;
  681. }
  682. #u11826_img {
  683. border-width:0px;
  684. position:absolute;
  685. left:0px;
  686. top:0px;
  687. width:72px;
  688. height:40px;
  689. }
  690. #u11826 {
  691. border-width:0px;
  692. position:absolute;
  693. left:523px;
  694. top:30px;
  695. width:72px;
  696. height:40px;
  697. display:flex;
  698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  699. font-weight:400;
  700. font-style:normal;
  701. color:#298FFF;
  702. }
  703. #u11826 .text {
  704. position:absolute;
  705. align-self:center;
  706. padding:2px 2px 2px 2px;
  707. box-sizing:border-box;
  708. width:100%;
  709. }
  710. #u11826_text {
  711. border-width:0px;
  712. word-wrap:break-word;
  713. text-transform:none;
  714. }
  715. #u11827_img {
  716. border-width:0px;
  717. position:absolute;
  718. left:0px;
  719. top:0px;
  720. width:54px;
  721. height:30px;
  722. }
  723. #u11827 {
  724. border-width:0px;
  725. position:absolute;
  726. left:0px;
  727. top:70px;
  728. width:54px;
  729. height:30px;
  730. display:flex;
  731. }
  732. #u11827 .text {
  733. position:absolute;
  734. align-self:center;
  735. padding:2px 2px 2px 2px;
  736. box-sizing:border-box;
  737. width:100%;
  738. }
  739. #u11827_text {
  740. border-width:0px;
  741. word-wrap:break-word;
  742. text-transform:none;
  743. }
  744. #u11828_img {
  745. border-width:0px;
  746. position:absolute;
  747. left:0px;
  748. top:0px;
  749. width:143px;
  750. height:30px;
  751. }
  752. #u11828 {
  753. border-width:0px;
  754. position:absolute;
  755. left:54px;
  756. top:70px;
  757. width:143px;
  758. height:30px;
  759. display:flex;
  760. }
  761. #u11828 .text {
  762. position:absolute;
  763. align-self:center;
  764. padding:2px 2px 2px 2px;
  765. box-sizing:border-box;
  766. width:100%;
  767. }
  768. #u11828_text {
  769. border-width:0px;
  770. word-wrap:break-word;
  771. text-transform:none;
  772. visibility:hidden;
  773. }
  774. #u11829_img {
  775. border-width:0px;
  776. position:absolute;
  777. left:0px;
  778. top:0px;
  779. width:107px;
  780. height:30px;
  781. }
  782. #u11829 {
  783. border-width:0px;
  784. position:absolute;
  785. left:197px;
  786. top:70px;
  787. width:107px;
  788. height:30px;
  789. display:flex;
  790. }
  791. #u11829 .text {
  792. position:absolute;
  793. align-self:center;
  794. padding:2px 2px 2px 2px;
  795. box-sizing:border-box;
  796. width:100%;
  797. }
  798. #u11829_text {
  799. border-width:0px;
  800. word-wrap:break-word;
  801. text-transform:none;
  802. visibility:hidden;
  803. }
  804. #u11830_img {
  805. border-width:0px;
  806. position:absolute;
  807. left:0px;
  808. top:0px;
  809. width:109px;
  810. height:30px;
  811. }
  812. #u11830 {
  813. border-width:0px;
  814. position:absolute;
  815. left:304px;
  816. top:70px;
  817. width:109px;
  818. height:30px;
  819. display:flex;
  820. }
  821. #u11830 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:2px 2px 2px 2px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u11830_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. visibility:hidden;
  833. }
  834. #u11831_img {
  835. border-width:0px;
  836. position:absolute;
  837. left:0px;
  838. top:0px;
  839. width:110px;
  840. height:30px;
  841. }
  842. #u11831 {
  843. border-width:0px;
  844. position:absolute;
  845. left:413px;
  846. top:70px;
  847. width:110px;
  848. height:30px;
  849. display:flex;
  850. }
  851. #u11831 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u11831_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u11832_img {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:72px;
  870. height:30px;
  871. }
  872. #u11832 {
  873. border-width:0px;
  874. position:absolute;
  875. left:523px;
  876. top:70px;
  877. width:72px;
  878. height:30px;
  879. display:flex;
  880. }
  881. #u11832 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u11832_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u11833_img {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:54px;
  900. height:30px;
  901. }
  902. #u11833 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:100px;
  907. width:54px;
  908. height:30px;
  909. display:flex;
  910. }
  911. #u11833 .text {
  912. position:absolute;
  913. align-self:center;
  914. padding:2px 2px 2px 2px;
  915. box-sizing:border-box;
  916. width:100%;
  917. }
  918. #u11833_text {
  919. border-width:0px;
  920. word-wrap:break-word;
  921. text-transform:none;
  922. }
  923. #u11834_img {
  924. border-width:0px;
  925. position:absolute;
  926. left:0px;
  927. top:0px;
  928. width:143px;
  929. height:30px;
  930. }
  931. #u11834 {
  932. border-width:0px;
  933. position:absolute;
  934. left:54px;
  935. top:100px;
  936. width:143px;
  937. height:30px;
  938. display:flex;
  939. }
  940. #u11834 .text {
  941. position:absolute;
  942. align-self:center;
  943. padding:2px 2px 2px 2px;
  944. box-sizing:border-box;
  945. width:100%;
  946. }
  947. #u11834_text {
  948. border-width:0px;
  949. word-wrap:break-word;
  950. text-transform:none;
  951. visibility:hidden;
  952. }
  953. #u11835_img {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:107px;
  959. height:30px;
  960. }
  961. #u11835 {
  962. border-width:0px;
  963. position:absolute;
  964. left:197px;
  965. top:100px;
  966. width:107px;
  967. height:30px;
  968. display:flex;
  969. }
  970. #u11835 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u11835_text {
  978. border-width:0px;
  979. word-wrap:break-word;
  980. text-transform:none;
  981. visibility:hidden;
  982. }
  983. #u11836_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:109px;
  989. height:30px;
  990. }
  991. #u11836 {
  992. border-width:0px;
  993. position:absolute;
  994. left:304px;
  995. top:100px;
  996. width:109px;
  997. height:30px;
  998. display:flex;
  999. }
  1000. #u11836 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u11836_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u11837_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:110px;
  1019. height:30px;
  1020. }
  1021. #u11837 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:413px;
  1025. top:100px;
  1026. width:110px;
  1027. height:30px;
  1028. display:flex;
  1029. }
  1030. #u11837 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u11837_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u11838_img {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:72px;
  1049. height:30px;
  1050. }
  1051. #u11838 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:523px;
  1055. top:100px;
  1056. width:72px;
  1057. height:30px;
  1058. display:flex;
  1059. }
  1060. #u11838 .text {
  1061. position:absolute;
  1062. align-self:center;
  1063. padding:2px 2px 2px 2px;
  1064. box-sizing:border-box;
  1065. width:100%;
  1066. }
  1067. #u11838_text {
  1068. border-width:0px;
  1069. word-wrap:break-word;
  1070. text-transform:none;
  1071. visibility:hidden;
  1072. }
  1073. #u11839_img {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:0px;
  1077. top:0px;
  1078. width:54px;
  1079. height:30px;
  1080. }
  1081. #u11839 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:0px;
  1085. top:130px;
  1086. width:54px;
  1087. height:30px;
  1088. display:flex;
  1089. }
  1090. #u11839 .text {
  1091. position:absolute;
  1092. align-self:center;
  1093. padding:2px 2px 2px 2px;
  1094. box-sizing:border-box;
  1095. width:100%;
  1096. }
  1097. #u11839_text {
  1098. border-width:0px;
  1099. word-wrap:break-word;
  1100. text-transform:none;
  1101. }
  1102. #u11840_img {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:143px;
  1108. height:30px;
  1109. }
  1110. #u11840 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:54px;
  1114. top:130px;
  1115. width:143px;
  1116. height:30px;
  1117. display:flex;
  1118. }
  1119. #u11840 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 2px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u11840_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. visibility:hidden;
  1131. }
  1132. #u11841_img {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:107px;
  1138. height:30px;
  1139. }
  1140. #u11841 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:197px;
  1144. top:130px;
  1145. width:107px;
  1146. height:30px;
  1147. display:flex;
  1148. }
  1149. #u11841 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u11841_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u11842_img {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:109px;
  1168. height:30px;
  1169. }
  1170. #u11842 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:304px;
  1174. top:130px;
  1175. width:109px;
  1176. height:30px;
  1177. display:flex;
  1178. }
  1179. #u11842 .text {
  1180. position:absolute;
  1181. align-self:center;
  1182. padding:2px 2px 2px 2px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u11842_text {
  1187. border-width:0px;
  1188. word-wrap:break-word;
  1189. text-transform:none;
  1190. visibility:hidden;
  1191. }
  1192. #u11843_img {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:110px;
  1198. height:30px;
  1199. }
  1200. #u11843 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:413px;
  1204. top:130px;
  1205. width:110px;
  1206. height:30px;
  1207. display:flex;
  1208. }
  1209. #u11843 .text {
  1210. position:absolute;
  1211. align-self:center;
  1212. padding:2px 2px 2px 2px;
  1213. box-sizing:border-box;
  1214. width:100%;
  1215. }
  1216. #u11843_text {
  1217. border-width:0px;
  1218. word-wrap:break-word;
  1219. text-transform:none;
  1220. visibility:hidden;
  1221. }
  1222. #u11844_img {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:72px;
  1228. height:30px;
  1229. }
  1230. #u11844 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:523px;
  1234. top:130px;
  1235. width:72px;
  1236. height:30px;
  1237. display:flex;
  1238. }
  1239. #u11844 .text {
  1240. position:absolute;
  1241. align-self:center;
  1242. padding:2px 2px 2px 2px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u11844_text {
  1247. border-width:0px;
  1248. word-wrap:break-word;
  1249. text-transform:none;
  1250. visibility:hidden;
  1251. }
  1252. #u11845_img {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:54px;
  1258. height:30px;
  1259. }
  1260. #u11845 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:0px;
  1264. top:160px;
  1265. width:54px;
  1266. height:30px;
  1267. display:flex;
  1268. }
  1269. #u11845 .text {
  1270. position:absolute;
  1271. align-self:center;
  1272. padding:2px 2px 2px 2px;
  1273. box-sizing:border-box;
  1274. width:100%;
  1275. }
  1276. #u11845_text {
  1277. border-width:0px;
  1278. word-wrap:break-word;
  1279. text-transform:none;
  1280. }
  1281. #u11846_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:143px;
  1287. height:30px;
  1288. }
  1289. #u11846 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:54px;
  1293. top:160px;
  1294. width:143px;
  1295. height:30px;
  1296. display:flex;
  1297. }
  1298. #u11846 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u11846_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u11847_img {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:107px;
  1317. height:30px;
  1318. }
  1319. #u11847 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:197px;
  1323. top:160px;
  1324. width:107px;
  1325. height:30px;
  1326. display:flex;
  1327. }
  1328. #u11847 .text {
  1329. position:absolute;
  1330. align-self:center;
  1331. padding:2px 2px 2px 2px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u11847_text {
  1336. border-width:0px;
  1337. word-wrap:break-word;
  1338. text-transform:none;
  1339. visibility:hidden;
  1340. }
  1341. #u11848_img {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:109px;
  1347. height:30px;
  1348. }
  1349. #u11848 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:304px;
  1353. top:160px;
  1354. width:109px;
  1355. height:30px;
  1356. display:flex;
  1357. }
  1358. #u11848 .text {
  1359. position:absolute;
  1360. align-self:center;
  1361. padding:2px 2px 2px 2px;
  1362. box-sizing:border-box;
  1363. width:100%;
  1364. }
  1365. #u11848_text {
  1366. border-width:0px;
  1367. word-wrap:break-word;
  1368. text-transform:none;
  1369. visibility:hidden;
  1370. }
  1371. #u11849_img {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:110px;
  1377. height:30px;
  1378. }
  1379. #u11849 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:413px;
  1383. top:160px;
  1384. width:110px;
  1385. height:30px;
  1386. display:flex;
  1387. }
  1388. #u11849 .text {
  1389. position:absolute;
  1390. align-self:center;
  1391. padding:2px 2px 2px 2px;
  1392. box-sizing:border-box;
  1393. width:100%;
  1394. }
  1395. #u11849_text {
  1396. border-width:0px;
  1397. word-wrap:break-word;
  1398. text-transform:none;
  1399. visibility:hidden;
  1400. }
  1401. #u11850_img {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:0px;
  1405. top:0px;
  1406. width:72px;
  1407. height:30px;
  1408. }
  1409. #u11850 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:523px;
  1413. top:160px;
  1414. width:72px;
  1415. height:30px;
  1416. display:flex;
  1417. }
  1418. #u11850 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:2px 2px 2px 2px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u11850_text {
  1426. border-width:0px;
  1427. word-wrap:break-word;
  1428. text-transform:none;
  1429. visibility:hidden;
  1430. }
  1431. #u11851_img {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:54px;
  1437. height:23px;
  1438. }
  1439. #u11851 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:190px;
  1444. width:54px;
  1445. height:23px;
  1446. display:flex;
  1447. }
  1448. #u11851 .text {
  1449. position:absolute;
  1450. align-self:center;
  1451. padding:2px 2px 2px 2px;
  1452. box-sizing:border-box;
  1453. width:100%;
  1454. }
  1455. #u11851_text {
  1456. border-width:0px;
  1457. word-wrap:break-word;
  1458. text-transform:none;
  1459. }
  1460. #u11852_img {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:143px;
  1466. height:23px;
  1467. }
  1468. #u11852 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:54px;
  1472. top:190px;
  1473. width:143px;
  1474. height:23px;
  1475. display:flex;
  1476. }
  1477. #u11852 .text {
  1478. position:absolute;
  1479. align-self:center;
  1480. padding:2px 2px 2px 2px;
  1481. box-sizing:border-box;
  1482. width:100%;
  1483. }
  1484. #u11852_text {
  1485. border-width:0px;
  1486. word-wrap:break-word;
  1487. text-transform:none;
  1488. visibility:hidden;
  1489. }
  1490. #u11853_img {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:107px;
  1496. height:23px;
  1497. }
  1498. #u11853 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:197px;
  1502. top:190px;
  1503. width:107px;
  1504. height:23px;
  1505. display:flex;
  1506. }
  1507. #u11853 .text {
  1508. position:absolute;
  1509. align-self:center;
  1510. padding:2px 2px 2px 2px;
  1511. box-sizing:border-box;
  1512. width:100%;
  1513. }
  1514. #u11853_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u11854_img {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:109px;
  1526. height:23px;
  1527. }
  1528. #u11854 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:304px;
  1532. top:190px;
  1533. width:109px;
  1534. height:23px;
  1535. display:flex;
  1536. }
  1537. #u11854 .text {
  1538. position:absolute;
  1539. align-self:center;
  1540. padding:2px 2px 2px 2px;
  1541. box-sizing:border-box;
  1542. width:100%;
  1543. }
  1544. #u11854_text {
  1545. border-width:0px;
  1546. word-wrap:break-word;
  1547. text-transform:none;
  1548. visibility:hidden;
  1549. }
  1550. #u11855_img {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:110px;
  1556. height:23px;
  1557. }
  1558. #u11855 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:413px;
  1562. top:190px;
  1563. width:110px;
  1564. height:23px;
  1565. display:flex;
  1566. }
  1567. #u11855 .text {
  1568. position:absolute;
  1569. align-self:center;
  1570. padding:2px 2px 2px 2px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u11855_text {
  1575. border-width:0px;
  1576. word-wrap:break-word;
  1577. text-transform:none;
  1578. visibility:hidden;
  1579. }
  1580. #u11856_img {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:72px;
  1586. height:23px;
  1587. }
  1588. #u11856 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:523px;
  1592. top:190px;
  1593. width:72px;
  1594. height:23px;
  1595. display:flex;
  1596. }
  1597. #u11856 .text {
  1598. position:absolute;
  1599. align-self:center;
  1600. padding:2px 2px 2px 2px;
  1601. box-sizing:border-box;
  1602. width:100%;
  1603. }
  1604. #u11856_text {
  1605. border-width:0px;
  1606. word-wrap:break-word;
  1607. text-transform:none;
  1608. visibility:hidden;
  1609. }
  1610. #u11857 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:0px;
  1614. top:0px;
  1615. width:0px;
  1616. height:0px;
  1617. }
  1618. #u11858_div {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:140px;
  1624. height:30px;
  1625. background:inherit;
  1626. background-color:rgba(255, 255, 255, 1);
  1627. box-sizing:border-box;
  1628. border-width:1px;
  1629. border-style:solid;
  1630. border-color:rgba(201, 201, 201, 1);
  1631. border-radius:4px;
  1632. -moz-box-shadow:none;
  1633. -webkit-box-shadow:none;
  1634. box-shadow:none;
  1635. font-family:'Microsoft YaHei', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:14px;
  1639. color:#CCCCCC;
  1640. text-align:left;
  1641. }
  1642. #u11858 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:1806px;
  1646. top:163px;
  1647. width:140px;
  1648. height:30px;
  1649. display:flex;
  1650. font-family:'Microsoft YaHei', sans-serif;
  1651. font-weight:400;
  1652. font-style:normal;
  1653. font-size:14px;
  1654. color:#CCCCCC;
  1655. text-align:left;
  1656. }
  1657. #u11858 .text {
  1658. position:absolute;
  1659. align-self:center;
  1660. padding:2px 8px 2px 8px;
  1661. box-sizing:border-box;
  1662. width:100%;
  1663. }
  1664. #u11858_text {
  1665. border-width:0px;
  1666. word-wrap:break-word;
  1667. text-transform:none;
  1668. visibility:hidden;
  1669. }
  1670. #u11859_input {
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:127px;
  1675. height:25px;
  1676. padding:2px 2px 2px 2px;
  1677. font-family:'Microsoft YaHei', sans-serif;
  1678. font-weight:400;
  1679. font-style:normal;
  1680. font-size:10px;
  1681. letter-spacing:normal;
  1682. color:#000000;
  1683. vertical-align:none;
  1684. text-align:left;
  1685. text-transform:none;
  1686. background-color:transparent;
  1687. border-color:transparent;
  1688. }
  1689. #u11859_input.disabled {
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:127px;
  1694. height:25px;
  1695. padding:2px 2px 2px 2px;
  1696. font-family:'Microsoft YaHei', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:10px;
  1700. letter-spacing:normal;
  1701. color:#000000;
  1702. vertical-align:none;
  1703. text-align:left;
  1704. text-transform:none;
  1705. background-color:transparent;
  1706. border-color:transparent;
  1707. }
  1708. #u11859_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:127px;
  1714. height:25px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 1);
  1717. border:none;
  1718. border-radius:0px;
  1719. -moz-box-shadow:none;
  1720. -webkit-box-shadow:none;
  1721. box-shadow:none;
  1722. font-family:'Microsoft YaHei', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:10px;
  1726. }
  1727. #u11859 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:1814px;
  1731. top:164px;
  1732. width:127px;
  1733. height:25px;
  1734. display:flex;
  1735. font-family:'Microsoft YaHei', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:10px;
  1739. }
  1740. #u11859 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u11859_div.disabled {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:127px;
  1753. height:25px;
  1754. background:inherit;
  1755. background-color:rgba(240, 240, 240, 1);
  1756. border:none;
  1757. border-radius:0px;
  1758. -moz-box-shadow:none;
  1759. -webkit-box-shadow:none;
  1760. box-shadow:none;
  1761. font-family:'Microsoft YaHei', sans-serif;
  1762. font-weight:400;
  1763. font-style:normal;
  1764. font-size:10px;
  1765. }
  1766. #u11859.disabled {
  1767. }
  1768. #u11860 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:0px;
  1774. height:0px;
  1775. }
  1776. #u11861_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:140px;
  1782. height:30px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 1);
  1785. box-sizing:border-box;
  1786. border-width:1px;
  1787. border-style:solid;
  1788. border-color:rgba(201, 201, 201, 1);
  1789. border-radius:4px;
  1790. -moz-box-shadow:none;
  1791. -webkit-box-shadow:none;
  1792. box-shadow:none;
  1793. font-family:'Microsoft YaHei', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. color:#CCCCCC;
  1798. text-align:left;
  1799. }
  1800. #u11861 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:1956px;
  1804. top:163px;
  1805. width:140px;
  1806. height:30px;
  1807. display:flex;
  1808. font-family:'Microsoft YaHei', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. color:#CCCCCC;
  1813. text-align:left;
  1814. }
  1815. #u11861 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 8px 2px 8px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u11861_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. visibility:hidden;
  1827. }
  1828. #u11862_input {
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:127px;
  1833. height:25px;
  1834. padding:2px 2px 2px 2px;
  1835. font-family:'Microsoft YaHei', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:10px;
  1839. letter-spacing:normal;
  1840. color:#000000;
  1841. vertical-align:none;
  1842. text-align:left;
  1843. text-transform:none;
  1844. background-color:transparent;
  1845. border-color:transparent;
  1846. }
  1847. #u11862_input.disabled {
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:127px;
  1852. height:25px;
  1853. padding:2px 2px 2px 2px;
  1854. font-family:'Microsoft YaHei', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:10px;
  1858. letter-spacing:normal;
  1859. color:#000000;
  1860. vertical-align:none;
  1861. text-align:left;
  1862. text-transform:none;
  1863. background-color:transparent;
  1864. border-color:transparent;
  1865. }
  1866. #u11862_div {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:127px;
  1872. height:25px;
  1873. background:inherit;
  1874. background-color:rgba(255, 255, 255, 1);
  1875. border:none;
  1876. border-radius:0px;
  1877. -moz-box-shadow:none;
  1878. -webkit-box-shadow:none;
  1879. box-shadow:none;
  1880. font-family:'Microsoft YaHei', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:10px;
  1884. }
  1885. #u11862 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:1964px;
  1889. top:164px;
  1890. width:127px;
  1891. height:25px;
  1892. display:flex;
  1893. font-family:'Microsoft YaHei', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:10px;
  1897. }
  1898. #u11862 .text {
  1899. position:absolute;
  1900. align-self:center;
  1901. padding:2px 2px 2px 2px;
  1902. box-sizing:border-box;
  1903. width:100%;
  1904. }
  1905. #u11862_div.disabled {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:127px;
  1911. height:25px;
  1912. background:inherit;
  1913. background-color:rgba(240, 240, 240, 1);
  1914. border:none;
  1915. border-radius:0px;
  1916. -moz-box-shadow:none;
  1917. -webkit-box-shadow:none;
  1918. box-shadow:none;
  1919. font-family:'Microsoft YaHei', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:10px;
  1923. }
  1924. #u11862.disabled {
  1925. }
  1926. #u11863 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:0px;
  1932. height:0px;
  1933. }
  1934. #u11864_div {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:60px;
  1940. height:30px;
  1941. background:inherit;
  1942. background-color:rgba(24, 144, 255, 1);
  1943. border:none;
  1944. border-radius:4px;
  1945. -moz-box-shadow:none;
  1946. -webkit-box-shadow:none;
  1947. box-shadow:none;
  1948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1949. font-weight:400;
  1950. font-style:normal;
  1951. font-size:14px;
  1952. color:#FFFFFF;
  1953. }
  1954. #u11864 {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:2106px;
  1958. top:162px;
  1959. width:60px;
  1960. height:30px;
  1961. display:flex;
  1962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1963. font-weight:400;
  1964. font-style:normal;
  1965. font-size:14px;
  1966. color:#FFFFFF;
  1967. }
  1968. #u11864 .text {
  1969. position:absolute;
  1970. align-self:center;
  1971. padding:2px 2px 2px 2px;
  1972. box-sizing:border-box;
  1973. width:100%;
  1974. }
  1975. #u11864_text {
  1976. border-width:0px;
  1977. word-wrap:break-word;
  1978. text-transform:none;
  1979. }
  1980. #u11865_div {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:60px;
  1986. height:30px;
  1987. background:inherit;
  1988. background-color:rgba(255, 255, 255, 1);
  1989. box-sizing:border-box;
  1990. border-width:1px;
  1991. border-style:solid;
  1992. border-color:rgba(170, 170, 170, 1);
  1993. border-radius:4px;
  1994. -moz-box-shadow:none;
  1995. -webkit-box-shadow:none;
  1996. box-shadow:none;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:14px;
  2001. }
  2002. #u11865 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:2176px;
  2006. top:162px;
  2007. width:60px;
  2008. height:30px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:14px;
  2014. }
  2015. #u11865 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 2px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u11865_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u11866 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:0px;
  2033. height:0px;
  2034. }
  2035. #u11867_div {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:140px;
  2041. height:30px;
  2042. background:inherit;
  2043. background-color:rgba(255, 255, 255, 1);
  2044. box-sizing:border-box;
  2045. border-width:1px;
  2046. border-style:solid;
  2047. border-color:rgba(215, 215, 215, 1);
  2048. border-radius:4px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-size:14px;
  2053. }
  2054. #u11867 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:1656px;
  2058. top:162px;
  2059. width:140px;
  2060. height:30px;
  2061. display:flex;
  2062. font-size:14px;
  2063. }
  2064. #u11867 .text {
  2065. position:absolute;
  2066. align-self:center;
  2067. padding:2px 2px 2px 2px;
  2068. box-sizing:border-box;
  2069. width:100%;
  2070. }
  2071. #u11867_text {
  2072. border-width:0px;
  2073. word-wrap:break-word;
  2074. text-transform:none;
  2075. visibility:hidden;
  2076. }
  2077. #u11868_input {
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:134px;
  2082. height:23px;
  2083. padding:2px 2px 2px 2px;
  2084. font-family:'ArialMT', 'Arial', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:14px;
  2088. letter-spacing:normal;
  2089. color:#AAAAAA;
  2090. vertical-align:none;
  2091. text-align:left;
  2092. text-transform:none;
  2093. background-color:transparent;
  2094. border-color:transparent;
  2095. }
  2096. #u11868_input.disabled {
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:134px;
  2101. height:23px;
  2102. padding:2px 2px 2px 2px;
  2103. font-family:'ArialMT', 'Arial', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:14px;
  2107. letter-spacing:normal;
  2108. color:#AAAAAA;
  2109. vertical-align:none;
  2110. text-align:left;
  2111. text-transform:none;
  2112. background-color:transparent;
  2113. border-color:transparent;
  2114. }
  2115. #u11868_div {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:134px;
  2121. height:23px;
  2122. background:inherit;
  2123. background-color:rgba(255, 255, 255, 1);
  2124. border:none;
  2125. border-radius:0px;
  2126. -moz-box-shadow:none;
  2127. -webkit-box-shadow:none;
  2128. box-shadow:none;
  2129. font-size:14px;
  2130. color:#AAAAAA;
  2131. }
  2132. #u11868 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:1660px;
  2136. top:164px;
  2137. width:134px;
  2138. height:23px;
  2139. display:flex;
  2140. font-size:14px;
  2141. color:#AAAAAA;
  2142. }
  2143. #u11868 .text {
  2144. position:absolute;
  2145. align-self:flex-start;
  2146. padding:2px 2px 2px 2px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u11868_div.disabled {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:134px;
  2156. height:23px;
  2157. background:inherit;
  2158. background-color:rgba(240, 240, 240, 1);
  2159. border:none;
  2160. border-radius:0px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. font-size:14px;
  2165. color:#AAAAAA;
  2166. }
  2167. #u11868.disabled {
  2168. }
  2169. .u11868_input_option {
  2170. font-size:14px;
  2171. }
  2172. #u11870_div {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:1480px;
  2178. height:1200px;
  2179. background:inherit;
  2180. background-color:rgba(242, 242, 242, 1);
  2181. border:none;
  2182. border-radius:0px;
  2183. -moz-box-shadow:none;
  2184. -webkit-box-shadow:none;
  2185. box-shadow:none;
  2186. }
  2187. #u11870 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:120px;
  2191. top:50px;
  2192. width:1480px;
  2193. height:1200px;
  2194. display:flex;
  2195. }
  2196. #u11870 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u11870_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. visibility:hidden;
  2208. }
  2209. #u11871_div {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:129px;
  2215. height:22px;
  2216. background:inherit;
  2217. background-color:rgba(255, 255, 255, 0);
  2218. border:none;
  2219. border-radius:0px;
  2220. -moz-box-shadow:none;
  2221. -webkit-box-shadow:none;
  2222. box-shadow:none;
  2223. font-size:16px;
  2224. color:#FFFFFF;
  2225. }
  2226. #u11871 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:49px;
  2230. top:14px;
  2231. width:129px;
  2232. height:22px;
  2233. display:flex;
  2234. font-size:16px;
  2235. color:#FFFFFF;
  2236. }
  2237. #u11871 .text {
  2238. position:absolute;
  2239. align-self:flex-start;
  2240. padding:0px 0px 0px 0px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u11871_text {
  2245. border-width:0px;
  2246. white-space:nowrap;
  2247. text-transform:none;
  2248. }
  2249. #u11872_div {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:1600px;
  2255. height:50px;
  2256. background:inherit;
  2257. background-color:rgba(30, 42, 68, 1);
  2258. border:none;
  2259. border-radius:0px;
  2260. -moz-box-shadow:none;
  2261. -webkit-box-shadow:none;
  2262. box-shadow:none;
  2263. color:#AFB3B6;
  2264. }
  2265. #u11872 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:1600px;
  2271. height:50px;
  2272. display:flex;
  2273. color:#AFB3B6;
  2274. }
  2275. #u11872 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 2px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u11872_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. visibility:hidden;
  2287. }
  2288. #u11873 {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:0px;
  2294. height:0px;
  2295. }
  2296. #u11874_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:31px;
  2302. height:31px;
  2303. }
  2304. #u11874 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:19px;
  2308. top:10px;
  2309. width:31px;
  2310. height:31px;
  2311. display:flex;
  2312. }
  2313. #u11874 .text {
  2314. position:absolute;
  2315. align-self:center;
  2316. padding:2px 2px 2px 2px;
  2317. box-sizing:border-box;
  2318. width:100%;
  2319. }
  2320. #u11874_text {
  2321. border-width:0px;
  2322. word-wrap:break-word;
  2323. text-transform:none;
  2324. }
  2325. #u11875_div {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:161px;
  2331. height:22px;
  2332. background:inherit;
  2333. background-color:rgba(255, 255, 255, 0);
  2334. border:none;
  2335. border-radius:0px;
  2336. -moz-box-shadow:none;
  2337. -webkit-box-shadow:none;
  2338. box-shadow:none;
  2339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2340. font-weight:400;
  2341. font-style:normal;
  2342. font-size:16px;
  2343. color:#FFFFFF;
  2344. }
  2345. #u11875 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:62px;
  2349. top:14px;
  2350. width:161px;
  2351. height:22px;
  2352. display:flex;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:16px;
  2357. color:#FFFFFF;
  2358. }
  2359. #u11875 .text {
  2360. position:absolute;
  2361. align-self:flex-start;
  2362. padding:0px 0px 0px 0px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u11875_text {
  2367. border-width:0px;
  2368. white-space:nowrap;
  2369. text-transform:none;
  2370. }
  2371. #u11876_div {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:120px;
  2377. height:1200px;
  2378. background:inherit;
  2379. background-color:rgba(30, 42, 68, 1);
  2380. border:none;
  2381. border-radius:0px;
  2382. -moz-box-shadow:none;
  2383. -webkit-box-shadow:none;
  2384. box-shadow:none;
  2385. color:#AFB3B6;
  2386. }
  2387. #u11876 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:47px;
  2392. width:120px;
  2393. height:1200px;
  2394. display:flex;
  2395. color:#AFB3B6;
  2396. }
  2397. #u11876 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u11876_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u11877 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:0px;
  2416. height:0px;
  2417. }
  2418. #u11878_div {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:33px;
  2424. height:22px;
  2425. background:inherit;
  2426. background-color:rgba(255, 255, 255, 0);
  2427. border:none;
  2428. border-radius:0px;
  2429. -moz-box-shadow:none;
  2430. -webkit-box-shadow:none;
  2431. box-shadow:none;
  2432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2433. font-weight:400;
  2434. font-style:normal;
  2435. font-size:16px;
  2436. color:#FFFFFF;
  2437. }
  2438. #u11878 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:39px;
  2442. top:171px;
  2443. width:33px;
  2444. height:22px;
  2445. display:flex;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:16px;
  2450. color:#FFFFFF;
  2451. }
  2452. #u11878 .text {
  2453. position:absolute;
  2454. align-self:flex-start;
  2455. padding:0px 0px 0px 0px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u11878_text {
  2460. border-width:0px;
  2461. white-space:nowrap;
  2462. text-transform:none;
  2463. }
  2464. #u11879_img {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:14px;
  2470. height:14px;
  2471. }
  2472. #u11879 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:20px;
  2476. top:175px;
  2477. width:14px;
  2478. height:14px;
  2479. display:flex;
  2480. }
  2481. #u11879 .text {
  2482. position:absolute;
  2483. align-self:center;
  2484. padding:2px 2px 2px 2px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u11879_text {
  2489. border-width:0px;
  2490. word-wrap:break-word;
  2491. text-transform:none;
  2492. visibility:hidden;
  2493. }
  2494. #u11880 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:0px;
  2500. height:0px;
  2501. }
  2502. #u11881_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:33px;
  2508. height:22px;
  2509. background:inherit;
  2510. background-color:rgba(255, 255, 255, 0);
  2511. border:none;
  2512. border-radius:0px;
  2513. -moz-box-shadow:none;
  2514. -webkit-box-shadow:none;
  2515. box-shadow:none;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:16px;
  2520. color:#FFFFFF;
  2521. }
  2522. #u11881 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:39px;
  2526. top:381px;
  2527. width:33px;
  2528. height:22px;
  2529. display:flex;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:16px;
  2534. color:#FFFFFF;
  2535. }
  2536. #u11881 .text {
  2537. position:absolute;
  2538. align-self:flex-start;
  2539. padding:0px 0px 0px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u11881_text {
  2544. border-width:0px;
  2545. white-space:nowrap;
  2546. text-transform:none;
  2547. }
  2548. #u11882_img {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:14px;
  2554. height:14px;
  2555. }
  2556. #u11882 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:20px;
  2560. top:385px;
  2561. width:14px;
  2562. height:14px;
  2563. display:flex;
  2564. }
  2565. #u11882 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 2px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u11882_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. visibility:hidden;
  2577. }
  2578. #u11883 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:0px;
  2584. height:0px;
  2585. }
  2586. #u11884_div {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:49px;
  2592. height:22px;
  2593. background:inherit;
  2594. background-color:rgba(255, 255, 255, 0);
  2595. border:none;
  2596. border-radius:0px;
  2597. -moz-box-shadow:none;
  2598. -webkit-box-shadow:none;
  2599. box-shadow:none;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:16px;
  2604. color:#FFFFFF;
  2605. }
  2606. #u11884 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:39px;
  2610. top:133px;
  2611. width:49px;
  2612. height:22px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:16px;
  2618. color:#FFFFFF;
  2619. }
  2620. #u11884 .text {
  2621. position:absolute;
  2622. align-self:flex-start;
  2623. padding:0px 0px 0px 0px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u11884_text {
  2628. border-width:0px;
  2629. white-space:nowrap;
  2630. text-transform:none;
  2631. }
  2632. #u11885_img {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:14px;
  2638. height:14px;
  2639. }
  2640. #u11885 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:20px;
  2644. top:137px;
  2645. width:14px;
  2646. height:14px;
  2647. display:flex;
  2648. }
  2649. #u11885 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 2px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u11885_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. visibility:hidden;
  2661. }
  2662. #u11886 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:0px;
  2666. top:0px;
  2667. width:0px;
  2668. height:0px;
  2669. }
  2670. #u11887_div {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:33px;
  2676. height:22px;
  2677. background:inherit;
  2678. background-color:rgba(255, 255, 255, 0);
  2679. border:none;
  2680. border-radius:0px;
  2681. -moz-box-shadow:none;
  2682. -webkit-box-shadow:none;
  2683. box-shadow:none;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:16px;
  2688. color:#FFFFFF;
  2689. }
  2690. #u11887 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:39px;
  2694. top:423px;
  2695. width:33px;
  2696. height:22px;
  2697. display:flex;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:16px;
  2702. color:#FFFFFF;
  2703. }
  2704. #u11887 .text {
  2705. position:absolute;
  2706. align-self:flex-start;
  2707. padding:0px 0px 0px 0px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u11887_text {
  2712. border-width:0px;
  2713. white-space:nowrap;
  2714. text-transform:none;
  2715. }
  2716. #u11888_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:14px;
  2722. height:14px;
  2723. }
  2724. #u11888 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:20px;
  2728. top:427px;
  2729. width:14px;
  2730. height:14px;
  2731. display:flex;
  2732. }
  2733. #u11888 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 2px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u11888_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. visibility:hidden;
  2745. }
  2746. #u11889 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:0px;
  2752. height:0px;
  2753. }
  2754. #u11890_div {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:33px;
  2760. height:22px;
  2761. background:inherit;
  2762. background-color:rgba(255, 255, 255, 0);
  2763. border:none;
  2764. border-radius:0px;
  2765. -moz-box-shadow:none;
  2766. -webkit-box-shadow:none;
  2767. box-shadow:none;
  2768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2769. font-weight:400;
  2770. font-style:normal;
  2771. font-size:16px;
  2772. color:#FFFFFF;
  2773. }
  2774. #u11890 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:39px;
  2778. top:297px;
  2779. width:33px;
  2780. height:22px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:16px;
  2786. color:#FFFFFF;
  2787. }
  2788. #u11890 .text {
  2789. position:absolute;
  2790. align-self:flex-start;
  2791. padding:0px 0px 0px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u11890_text {
  2796. border-width:0px;
  2797. white-space:nowrap;
  2798. text-transform:none;
  2799. }
  2800. #u11891_img {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:14px;
  2806. height:14px;
  2807. }
  2808. #u11891 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:20px;
  2812. top:301px;
  2813. width:14px;
  2814. height:14px;
  2815. display:flex;
  2816. }
  2817. #u11891 .text {
  2818. position:absolute;
  2819. align-self:center;
  2820. padding:2px 2px 2px 2px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u11891_text {
  2825. border-width:0px;
  2826. word-wrap:break-word;
  2827. text-transform:none;
  2828. visibility:hidden;
  2829. }
  2830. #u11892 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:0px;
  2836. height:0px;
  2837. }
  2838. #u11893_div {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:33px;
  2844. height:22px;
  2845. background:inherit;
  2846. background-color:rgba(255, 255, 255, 0);
  2847. border:none;
  2848. border-radius:0px;
  2849. -moz-box-shadow:none;
  2850. -webkit-box-shadow:none;
  2851. box-shadow:none;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:16px;
  2856. color:#FFFFFF;
  2857. }
  2858. #u11893 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:39px;
  2862. top:213px;
  2863. width:33px;
  2864. height:22px;
  2865. display:flex;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:16px;
  2870. color:#FFFFFF;
  2871. }
  2872. #u11893 .text {
  2873. position:absolute;
  2874. align-self:flex-start;
  2875. padding:0px 0px 0px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u11893_text {
  2880. border-width:0px;
  2881. white-space:nowrap;
  2882. text-transform:none;
  2883. }
  2884. #u11894_img {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:14px;
  2890. height:14px;
  2891. }
  2892. #u11894 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:20px;
  2896. top:217px;
  2897. width:14px;
  2898. height:14px;
  2899. display:flex;
  2900. }
  2901. #u11894 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 2px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u11894_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u11895 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:0px;
  2920. height:0px;
  2921. }
  2922. #u11896_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:33px;
  2928. height:22px;
  2929. background:inherit;
  2930. background-color:rgba(255, 255, 255, 0);
  2931. border:none;
  2932. border-radius:0px;
  2933. -moz-box-shadow:none;
  2934. -webkit-box-shadow:none;
  2935. box-shadow:none;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:16px;
  2940. color:#FFFFFF;
  2941. }
  2942. #u11896 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:39px;
  2946. top:339px;
  2947. width:33px;
  2948. height:22px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:16px;
  2954. color:#FFFFFF;
  2955. }
  2956. #u11896 .text {
  2957. position:absolute;
  2958. align-self:flex-start;
  2959. padding:0px 0px 0px 0px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u11896_text {
  2964. border-width:0px;
  2965. white-space:nowrap;
  2966. text-transform:none;
  2967. }
  2968. #u11897_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:14px;
  2974. height:14px;
  2975. }
  2976. #u11897 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:20px;
  2980. top:343px;
  2981. width:14px;
  2982. height:14px;
  2983. display:flex;
  2984. }
  2985. #u11897 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 2px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u11897_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }
  2998. #u11898 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:0px;
  3004. height:0px;
  3005. }
  3006. #u11899_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:33px;
  3012. height:22px;
  3013. background:inherit;
  3014. background-color:rgba(255, 255, 255, 0);
  3015. border:none;
  3016. border-radius:0px;
  3017. -moz-box-shadow:none;
  3018. -webkit-box-shadow:none;
  3019. box-shadow:none;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:16px;
  3024. color:#FFFFFF;
  3025. }
  3026. #u11899 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:39px;
  3030. top:465px;
  3031. width:33px;
  3032. height:22px;
  3033. display:flex;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:16px;
  3038. color:#FFFFFF;
  3039. }
  3040. #u11899 .text {
  3041. position:absolute;
  3042. align-self:flex-start;
  3043. padding:0px 0px 0px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u11899_text {
  3048. border-width:0px;
  3049. white-space:nowrap;
  3050. text-transform:none;
  3051. }
  3052. #u11900_img {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:14px;
  3058. height:14px;
  3059. }
  3060. #u11900 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:20px;
  3064. top:469px;
  3065. width:14px;
  3066. height:14px;
  3067. display:flex;
  3068. }
  3069. #u11900 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 2px 2px 2px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u11900_text {
  3077. border-width:0px;
  3078. word-wrap:break-word;
  3079. text-transform:none;
  3080. visibility:hidden;
  3081. }
  3082. #u11901 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:0px;
  3088. height:0px;
  3089. }
  3090. #u11902_div {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:29px;
  3096. height:20px;
  3097. background:inherit;
  3098. background-color:rgba(255, 255, 255, 0);
  3099. border:none;
  3100. border-radius:25px;
  3101. -moz-box-shadow:none;
  3102. -webkit-box-shadow:none;
  3103. box-shadow:none;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. color:#FFFFFF;
  3108. }
  3109. #u11902 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:52px;
  3113. top:1145px;
  3114. width:29px;
  3115. height:20px;
  3116. display:flex;
  3117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. color:#FFFFFF;
  3121. }
  3122. #u11902 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:0px 0px 0px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u11902_text {
  3130. border-width:0px;
  3131. white-space:nowrap;
  3132. text-transform:none;
  3133. }
  3134. #u11903_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:22px;
  3140. height:22px;
  3141. }
  3142. #u11903 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:20px;
  3146. top:1144px;
  3147. width:22px;
  3148. height:22px;
  3149. display:flex;
  3150. }
  3151. #u11903 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 2px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u11903_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u11904 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:0px;
  3170. height:0px;
  3171. }
  3172. #u11905_div {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:29px;
  3178. height:20px;
  3179. background:inherit;
  3180. background-color:rgba(255, 255, 255, 0);
  3181. border:none;
  3182. border-radius:25px;
  3183. -moz-box-shadow:none;
  3184. -webkit-box-shadow:none;
  3185. box-shadow:none;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. color:#FFFFFF;
  3190. }
  3191. #u11905 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:52px;
  3195. top:1187px;
  3196. width:29px;
  3197. height:20px;
  3198. display:flex;
  3199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3200. font-weight:400;
  3201. font-style:normal;
  3202. color:#FFFFFF;
  3203. }
  3204. #u11905 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:0px 0px 0px 0px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u11905_text {
  3212. border-width:0px;
  3213. white-space:nowrap;
  3214. text-transform:none;
  3215. }
  3216. #u11906_img {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:22px;
  3222. height:22px;
  3223. }
  3224. #u11906 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:20px;
  3228. top:1186px;
  3229. width:22px;
  3230. height:22px;
  3231. display:flex;
  3232. }
  3233. #u11906 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 2px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u11906_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u11907 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:0px;
  3252. height:0px;
  3253. }
  3254. #u11908_div {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:33px;
  3260. height:22px;
  3261. background:inherit;
  3262. background-color:rgba(255, 255, 255, 0);
  3263. border:none;
  3264. border-radius:0px;
  3265. -moz-box-shadow:none;
  3266. -webkit-box-shadow:none;
  3267. box-shadow:none;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:16px;
  3272. color:#FFFFFF;
  3273. }
  3274. #u11908 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:39px;
  3278. top:255px;
  3279. width:33px;
  3280. height:22px;
  3281. display:flex;
  3282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:16px;
  3286. color:#FFFFFF;
  3287. }
  3288. #u11908 .text {
  3289. position:absolute;
  3290. align-self:flex-start;
  3291. padding:0px 0px 0px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u11908_text {
  3296. border-width:0px;
  3297. white-space:nowrap;
  3298. text-transform:none;
  3299. }
  3300. #u11909_img {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:14px;
  3306. height:14px;
  3307. }
  3308. #u11909 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:20px;
  3312. top:259px;
  3313. width:14px;
  3314. height:14px;
  3315. display:flex;
  3316. }
  3317. #u11909 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 2px 2px 2px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u11909_text {
  3325. border-width:0px;
  3326. word-wrap:break-word;
  3327. text-transform:none;
  3328. visibility:hidden;
  3329. }
  3330. #u11910 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:0px;
  3336. height:0px;
  3337. }
  3338. #u11911_input {
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:214px;
  3343. height:27px;
  3344. padding:2px 2px 2px 2px;
  3345. font-family:'ArialMT', 'Arial', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:14px;
  3349. letter-spacing:normal;
  3350. color:#FFFFFF;
  3351. vertical-align:none;
  3352. text-align:left;
  3353. text-transform:none;
  3354. background-color:transparent;
  3355. border-color:transparent;
  3356. }
  3357. #u11911_input.disabled {
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:214px;
  3362. height:27px;
  3363. padding:2px 2px 2px 2px;
  3364. font-family:'ArialMT', 'Arial', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:14px;
  3368. letter-spacing:normal;
  3369. color:#FFFFFF;
  3370. vertical-align:none;
  3371. text-align:left;
  3372. text-transform:none;
  3373. background-color:transparent;
  3374. border-color:transparent;
  3375. }
  3376. #u11911_div {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:0px;
  3380. top:0px;
  3381. width:214px;
  3382. height:27px;
  3383. background:inherit;
  3384. background-color:rgba(255, 255, 255, 0);
  3385. border:none;
  3386. border-radius:0px;
  3387. -moz-box-shadow:none;
  3388. -webkit-box-shadow:none;
  3389. box-shadow:none;
  3390. font-size:14px;
  3391. color:#FFFFFF;
  3392. }
  3393. #u11911 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:1221px;
  3397. top:11px;
  3398. width:214px;
  3399. height:27px;
  3400. display:flex;
  3401. font-size:14px;
  3402. color:#FFFFFF;
  3403. }
  3404. #u11911 .text {
  3405. position:absolute;
  3406. align-self:flex-start;
  3407. padding:2px 2px 2px 2px;
  3408. box-sizing:border-box;
  3409. width:100%;
  3410. }
  3411. #u11911_div.disabled {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:214px;
  3417. height:27px;
  3418. background:inherit;
  3419. background-color:rgba(240, 240, 240, 1);
  3420. border:none;
  3421. border-radius:0px;
  3422. -moz-box-shadow:none;
  3423. -webkit-box-shadow:none;
  3424. box-shadow:none;
  3425. font-size:14px;
  3426. color:#FFFFFF;
  3427. }
  3428. #u11911.disabled {
  3429. }
  3430. .u11911_input_option {
  3431. font-size:14px;
  3432. }
  3433. #u11912_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:22px;
  3439. height:22px;
  3440. }
  3441. #u11912 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:1194px;
  3445. top:14px;
  3446. width:22px;
  3447. height:22px;
  3448. display:flex;
  3449. }
  3450. #u11912 .text {
  3451. position:absolute;
  3452. align-self:center;
  3453. padding:2px 2px 2px 2px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u11912_text {
  3458. border-width:0px;
  3459. word-wrap:break-word;
  3460. text-transform:none;
  3461. visibility:hidden;
  3462. }
  3463. #u11913_div {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:100px;
  3469. height:24px;
  3470. background:inherit;
  3471. background-color:rgba(242, 242, 242, 0.2);
  3472. border:none;
  3473. border-radius:25px;
  3474. -moz-box-shadow:none;
  3475. -webkit-box-shadow:none;
  3476. box-shadow:none;
  3477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. color:#FFFFFF;
  3481. text-align:center;
  3482. }
  3483. #u11913 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:1480px;
  3487. top:13px;
  3488. width:100px;
  3489. height:24px;
  3490. display:flex;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. color:#FFFFFF;
  3495. text-align:center;
  3496. }
  3497. #u11913 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:0px 0px 0px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u11913_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. }
  3509. #u11914_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:2px;
  3515. height:12px;
  3516. }
  3517. #u11914 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:1452px;
  3521. top:19px;
  3522. width:1px;
  3523. height:11px;
  3524. display:flex;
  3525. }
  3526. #u11914 .text {
  3527. position:absolute;
  3528. align-self:center;
  3529. padding:2px 2px 2px 2px;
  3530. box-sizing:border-box;
  3531. width:100%;
  3532. }
  3533. #u11914_text {
  3534. border-width:0px;
  3535. word-wrap:break-word;
  3536. text-transform:none;
  3537. visibility:hidden;
  3538. }
  3539. #u11915 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:0px;
  3545. height:0px;
  3546. }
  3547. #u11916_div {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:29px;
  3553. height:20px;
  3554. background:inherit;
  3555. background-color:rgba(255, 255, 255, 0);
  3556. border:none;
  3557. border-radius:25px;
  3558. -moz-box-shadow:none;
  3559. -webkit-box-shadow:none;
  3560. box-shadow:none;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. color:#FFFFFF;
  3565. }
  3566. #u11916 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:52px;
  3570. top:1082px;
  3571. width:29px;
  3572. height:20px;
  3573. display:flex;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. color:#FFFFFF;
  3578. }
  3579. #u11916 .text {
  3580. position:absolute;
  3581. align-self:center;
  3582. padding:0px 0px 0px 0px;
  3583. box-sizing:border-box;
  3584. width:100%;
  3585. }
  3586. #u11916_text {
  3587. border-width:0px;
  3588. white-space:nowrap;
  3589. text-transform:none;
  3590. }
  3591. #u11917_img {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:22px;
  3597. height:22px;
  3598. }
  3599. #u11917 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:20px;
  3603. top:1081px;
  3604. width:22px;
  3605. height:22px;
  3606. display:flex;
  3607. }
  3608. #u11917 .text {
  3609. position:absolute;
  3610. align-self:center;
  3611. padding:2px 2px 2px 2px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u11917_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. visibility:hidden;
  3620. }
  3621. #u11918_img {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:69px;
  3627. height:2px;
  3628. }
  3629. #u11918 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:20px;
  3633. top:1123px;
  3634. width:68px;
  3635. height:1px;
  3636. display:flex;
  3637. }
  3638. #u11918 .text {
  3639. position:absolute;
  3640. align-self:center;
  3641. padding:2px 2px 2px 2px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u11918_text {
  3646. border-width:0px;
  3647. word-wrap:break-word;
  3648. text-transform:none;
  3649. visibility:hidden;
  3650. }
  3651. #u11919_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:69px;
  3657. height:2px;
  3658. }
  3659. #u11919 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:20px;
  3663. top:1061px;
  3664. width:68px;
  3665. height:1px;
  3666. display:flex;
  3667. }
  3668. #u11919 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 2px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u11919_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. visibility:hidden;
  3680. }
  3681. #u11920_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:57px;
  3687. height:2px;
  3688. }
  3689. #u11920 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:20px;
  3693. top:112px;
  3694. width:56px;
  3695. height:1px;
  3696. display:flex;
  3697. }
  3698. #u11920 .text {
  3699. position:absolute;
  3700. align-self:center;
  3701. padding:2px 2px 2px 2px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u11920_text {
  3706. border-width:0px;
  3707. word-wrap:break-word;
  3708. text-transform:none;
  3709. visibility:hidden;
  3710. }
  3711. #u11921 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:0px;
  3717. height:0px;
  3718. }
  3719. #u11922_div {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:33px;
  3725. height:22px;
  3726. background:inherit;
  3727. background-color:rgba(255, 255, 255, 0);
  3728. border:none;
  3729. border-radius:0px;
  3730. -moz-box-shadow:none;
  3731. -webkit-box-shadow:none;
  3732. box-shadow:none;
  3733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3734. font-weight:400;
  3735. font-style:normal;
  3736. font-size:16px;
  3737. color:#FFFFFF;
  3738. }
  3739. #u11922 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:43px;
  3743. top:71px;
  3744. width:33px;
  3745. height:22px;
  3746. display:flex;
  3747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. font-size:16px;
  3751. color:#FFFFFF;
  3752. }
  3753. #u11922 .text {
  3754. position:absolute;
  3755. align-self:flex-start;
  3756. padding:0px 0px 0px 0px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u11922_text {
  3761. border-width:0px;
  3762. white-space:nowrap;
  3763. text-transform:none;
  3764. }
  3765. #u11923_img {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:18px;
  3771. height:14px;
  3772. }
  3773. #u11923 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:20px;
  3777. top:75px;
  3778. width:18px;
  3779. height:14px;
  3780. display:flex;
  3781. }
  3782. #u11923 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:2px 2px 2px 2px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u11923_text {
  3790. border-width:0px;
  3791. word-wrap:break-word;
  3792. text-transform:none;
  3793. visibility:hidden;
  3794. }
  3795. #u11924_div {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:1259px;
  3801. height:1180px;
  3802. background:inherit;
  3803. background-color:rgba(255, 255, 255, 1);
  3804. border:none;
  3805. border-radius:0px;
  3806. -moz-box-shadow:none;
  3807. -webkit-box-shadow:none;
  3808. box-shadow:none;
  3809. }
  3810. #u11924 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:330px;
  3814. top:50px;
  3815. width:1259px;
  3816. height:1180px;
  3817. display:flex;
  3818. }
  3819. #u11924 .text {
  3820. position:absolute;
  3821. align-self:center;
  3822. padding:2px 2px 2px 2px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u11924_text {
  3827. border-width:0px;
  3828. word-wrap:break-word;
  3829. text-transform:none;
  3830. visibility:hidden;
  3831. }
  3832. #u11925 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:563px;
  3836. top:332px;
  3837. width:1008px;
  3838. height:318px;
  3839. }
  3840. #u11926_img {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:91px;
  3846. height:34px;
  3847. }
  3848. #u11926 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:91px;
  3854. height:34px;
  3855. display:flex;
  3856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3857. font-weight:400;
  3858. font-style:normal;
  3859. font-size:12px;
  3860. color:#FFFFFF;
  3861. }
  3862. #u11926 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:2px 2px 2px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u11926_text {
  3870. border-width:0px;
  3871. word-wrap:break-word;
  3872. text-transform:none;
  3873. }
  3874. #u11927_img {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:91px;
  3880. height:34px;
  3881. }
  3882. #u11927 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:91px;
  3886. top:0px;
  3887. width:91px;
  3888. height:34px;
  3889. display:flex;
  3890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:12px;
  3894. color:#FFFFFF;
  3895. }
  3896. #u11927 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u11927_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. }
  3908. #u11928_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:76px;
  3914. height:34px;
  3915. }
  3916. #u11928 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:182px;
  3920. top:0px;
  3921. width:76px;
  3922. height:34px;
  3923. display:flex;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:12px;
  3928. color:#FFFFFF;
  3929. }
  3930. #u11928 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 2px 2px 0px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u11928_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. }
  3942. #u11929_img {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:92px;
  3948. height:34px;
  3949. }
  3950. #u11929 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:258px;
  3954. top:0px;
  3955. width:92px;
  3956. height:34px;
  3957. display:flex;
  3958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3959. font-weight:400;
  3960. font-style:normal;
  3961. font-size:12px;
  3962. color:#FFFFFF;
  3963. }
  3964. #u11929 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 0px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u11929_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. }
  3976. #u11930_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:88px;
  3982. height:34px;
  3983. }
  3984. #u11930 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:350px;
  3988. top:0px;
  3989. width:88px;
  3990. height:34px;
  3991. display:flex;
  3992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:12px;
  3996. color:#FFFFFF;
  3997. }
  3998. #u11930 .text {
  3999. position:absolute;
  4000. align-self:center;
  4001. padding:2px 2px 2px 0px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u11930_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. }
  4010. #u11931_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:88px;
  4016. height:34px;
  4017. }
  4018. #u11931 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:438px;
  4022. top:0px;
  4023. width:88px;
  4024. height:34px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:12px;
  4030. color:#FFFFFF;
  4031. }
  4032. #u11931 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 0px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u11931_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. }
  4044. #u11932_img {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:92px;
  4050. height:34px;
  4051. }
  4052. #u11932 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:526px;
  4056. top:0px;
  4057. width:92px;
  4058. height:34px;
  4059. display:flex;
  4060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4061. font-weight:400;
  4062. font-style:normal;
  4063. font-size:12px;
  4064. color:#FFFFFF;
  4065. }
  4066. #u11932 .text {
  4067. position:absolute;
  4068. align-self:center;
  4069. padding:2px 2px 2px 0px;
  4070. box-sizing:border-box;
  4071. width:100%;
  4072. }
  4073. #u11932_text {
  4074. border-width:0px;
  4075. word-wrap:break-word;
  4076. text-transform:none;
  4077. }
  4078. #u11933_img {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:88px;
  4084. height:34px;
  4085. }
  4086. #u11933 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:618px;
  4090. top:0px;
  4091. width:88px;
  4092. height:34px;
  4093. display:flex;
  4094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:12px;
  4098. color:#FFFFFF;
  4099. }
  4100. #u11933 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 0px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u11933_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. }
  4112. #u11934_img {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:88px;
  4118. height:34px;
  4119. }
  4120. #u11934 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:706px;
  4124. top:0px;
  4125. width:88px;
  4126. height:34px;
  4127. display:flex;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:12px;
  4132. color:#FFFFFF;
  4133. }
  4134. #u11934 .text {
  4135. position:absolute;
  4136. align-self:center;
  4137. padding:2px 2px 2px 0px;
  4138. box-sizing:border-box;
  4139. width:100%;
  4140. }
  4141. #u11934_text {
  4142. border-width:0px;
  4143. word-wrap:break-word;
  4144. text-transform:none;
  4145. }
  4146. #u11935_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:88px;
  4152. height:34px;
  4153. }
  4154. #u11935 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:794px;
  4158. top:0px;
  4159. width:88px;
  4160. height:34px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. color:#FFFFFF;
  4167. }
  4168. #u11935 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:2px 2px 2px 0px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u11935_text {
  4176. border-width:0px;
  4177. word-wrap:break-word;
  4178. text-transform:none;
  4179. }
  4180. #u11936_img {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:126px;
  4186. height:34px;
  4187. }
  4188. #u11936 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:882px;
  4192. top:0px;
  4193. width:126px;
  4194. height:34px;
  4195. display:flex;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:12px;
  4200. color:#FFFFFF;
  4201. }
  4202. #u11936 .text {
  4203. position:absolute;
  4204. align-self:center;
  4205. padding:2px 2px 2px 0px;
  4206. box-sizing:border-box;
  4207. width:100%;
  4208. }
  4209. #u11936_text {
  4210. border-width:0px;
  4211. word-wrap:break-word;
  4212. text-transform:none;
  4213. }
  4214. #u11937_img {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:91px;
  4220. height:44px;
  4221. }
  4222. #u11937 {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:34px;
  4227. width:91px;
  4228. height:44px;
  4229. display:flex;
  4230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4231. font-weight:400;
  4232. font-style:normal;
  4233. font-size:12px;
  4234. color:#333333;
  4235. line-height:40px;
  4236. }
  4237. #u11937 .text {
  4238. position:absolute;
  4239. align-self:center;
  4240. padding:2px 2px 2px 0px;
  4241. box-sizing:border-box;
  4242. width:100%;
  4243. }
  4244. #u11937_text {
  4245. border-width:0px;
  4246. word-wrap:break-word;
  4247. text-transform:none;
  4248. visibility:hidden;
  4249. }
  4250. #u11938_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:91px;
  4256. height:44px;
  4257. }
  4258. #u11938 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:91px;
  4262. top:34px;
  4263. width:91px;
  4264. height:44px;
  4265. display:flex;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:12px;
  4270. color:#333333;
  4271. line-height:40px;
  4272. }
  4273. #u11938 .text {
  4274. position:absolute;
  4275. align-self:center;
  4276. padding:2px 2px 2px 0px;
  4277. box-sizing:border-box;
  4278. width:100%;
  4279. }
  4280. #u11938_text {
  4281. border-width:0px;
  4282. word-wrap:break-word;
  4283. text-transform:none;
  4284. visibility:hidden;
  4285. }
  4286. #u11939_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:76px;
  4292. height:44px;
  4293. }
  4294. #u11939 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:182px;
  4298. top:34px;
  4299. width:76px;
  4300. height:44px;
  4301. display:flex;
  4302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4303. font-weight:400;
  4304. font-style:normal;
  4305. font-size:12px;
  4306. color:#333333;
  4307. line-height:40px;
  4308. }
  4309. #u11939 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u11939_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u11940_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:92px;
  4328. height:44px;
  4329. }
  4330. #u11940 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:258px;
  4334. top:34px;
  4335. width:92px;
  4336. height:44px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. color:#333333;
  4343. line-height:40px;
  4344. }
  4345. #u11940 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 0px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u11940_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. visibility:hidden;
  4357. }
  4358. #u11941_img {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:88px;
  4364. height:44px;
  4365. }
  4366. #u11941 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:350px;
  4370. top:34px;
  4371. width:88px;
  4372. height:44px;
  4373. display:flex;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:12px;
  4378. color:#333333;
  4379. line-height:40px;
  4380. }
  4381. #u11941 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:2px 2px 2px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u11941_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. }
  4393. #u11942_img {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:88px;
  4399. height:44px;
  4400. }
  4401. #u11942 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:438px;
  4405. top:34px;
  4406. width:88px;
  4407. height:44px;
  4408. display:flex;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:12px;
  4413. color:#333333;
  4414. line-height:40px;
  4415. }
  4416. #u11942 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 2px 2px 0px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u11942_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u11943_img {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:92px;
  4435. height:44px;
  4436. }
  4437. #u11943 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:526px;
  4441. top:34px;
  4442. width:92px;
  4443. height:44px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:12px;
  4449. color:#333333;
  4450. line-height:40px;
  4451. }
  4452. #u11943 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 0px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u11943_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u11944_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:88px;
  4471. height:44px;
  4472. }
  4473. #u11944 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:618px;
  4477. top:34px;
  4478. width:88px;
  4479. height:44px;
  4480. display:flex;
  4481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:12px;
  4485. color:#333333;
  4486. line-height:40px;
  4487. }
  4488. #u11944 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:2px 2px 2px 0px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u11944_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u11945_img {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:88px;
  4507. height:44px;
  4508. }
  4509. #u11945 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:706px;
  4513. top:34px;
  4514. width:88px;
  4515. height:44px;
  4516. display:flex;
  4517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:12px;
  4521. color:#333333;
  4522. line-height:40px;
  4523. }
  4524. #u11945 .text {
  4525. position:absolute;
  4526. align-self:center;
  4527. padding:2px 2px 2px 0px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u11945_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. visibility:hidden;
  4536. }
  4537. #u11946_img {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:88px;
  4543. height:44px;
  4544. }
  4545. #u11946 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:794px;
  4549. top:34px;
  4550. width:88px;
  4551. height:44px;
  4552. display:flex;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:12px;
  4557. color:#333333;
  4558. line-height:40px;
  4559. }
  4560. #u11946 .text {
  4561. position:absolute;
  4562. align-self:center;
  4563. padding:2px 2px 2px 0px;
  4564. box-sizing:border-box;
  4565. width:100%;
  4566. }
  4567. #u11946_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. visibility:hidden;
  4572. }
  4573. #u11947_img {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:126px;
  4579. height:44px;
  4580. }
  4581. #u11947 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:882px;
  4585. top:34px;
  4586. width:126px;
  4587. height:44px;
  4588. display:flex;
  4589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:12px;
  4593. color:#298FFF;
  4594. line-height:35px;
  4595. }
  4596. #u11947 .text {
  4597. position:absolute;
  4598. align-self:center;
  4599. padding:2px 2px 2px 0px;
  4600. box-sizing:border-box;
  4601. width:100%;
  4602. }
  4603. #u11947_text {
  4604. border-width:0px;
  4605. word-wrap:break-word;
  4606. text-transform:none;
  4607. }
  4608. #u11948_img {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:91px;
  4614. height:44px;
  4615. }
  4616. #u11948 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:78px;
  4621. width:91px;
  4622. height:44px;
  4623. display:flex;
  4624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4625. font-weight:400;
  4626. font-style:normal;
  4627. font-size:12px;
  4628. color:#333333;
  4629. line-height:40px;
  4630. }
  4631. #u11948 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 0px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u11948_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. visibility:hidden;
  4643. }
  4644. #u11949_img {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:91px;
  4650. height:44px;
  4651. }
  4652. #u11949 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:91px;
  4656. top:78px;
  4657. width:91px;
  4658. height:44px;
  4659. display:flex;
  4660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:12px;
  4664. color:#333333;
  4665. line-height:40px;
  4666. }
  4667. #u11949 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:2px 2px 2px 0px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u11949_text {
  4675. border-width:0px;
  4676. word-wrap:break-word;
  4677. text-transform:none;
  4678. visibility:hidden;
  4679. }
  4680. #u11950_img {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:76px;
  4686. height:44px;
  4687. }
  4688. #u11950 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:182px;
  4692. top:78px;
  4693. width:76px;
  4694. height:44px;
  4695. display:flex;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:12px;
  4700. color:#333333;
  4701. line-height:40px;
  4702. }
  4703. #u11950 .text {
  4704. position:absolute;
  4705. align-self:center;
  4706. padding:2px 2px 2px 0px;
  4707. box-sizing:border-box;
  4708. width:100%;
  4709. }
  4710. #u11950_text {
  4711. border-width:0px;
  4712. word-wrap:break-word;
  4713. text-transform:none;
  4714. visibility:hidden;
  4715. }
  4716. #u11951_img {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:92px;
  4722. height:44px;
  4723. }
  4724. #u11951 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:258px;
  4728. top:78px;
  4729. width:92px;
  4730. height:44px;
  4731. display:flex;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:12px;
  4736. color:#333333;
  4737. line-height:40px;
  4738. }
  4739. #u11951 .text {
  4740. position:absolute;
  4741. align-self:center;
  4742. padding:2px 2px 2px 0px;
  4743. box-sizing:border-box;
  4744. width:100%;
  4745. }
  4746. #u11951_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. visibility:hidden;
  4751. }
  4752. #u11952_img {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:88px;
  4758. height:44px;
  4759. }
  4760. #u11952 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:350px;
  4764. top:78px;
  4765. width:88px;
  4766. height:44px;
  4767. display:flex;
  4768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:12px;
  4772. color:#333333;
  4773. line-height:40px;
  4774. }
  4775. #u11952 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 0px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u11952_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. }
  4787. #u11953_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:88px;
  4793. height:44px;
  4794. }
  4795. #u11953 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:438px;
  4799. top:78px;
  4800. width:88px;
  4801. height:44px;
  4802. display:flex;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:12px;
  4807. color:#333333;
  4808. line-height:40px;
  4809. }
  4810. #u11953 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 2px 2px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u11953_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u11954_img {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:92px;
  4829. height:44px;
  4830. }
  4831. #u11954 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:526px;
  4835. top:78px;
  4836. width:92px;
  4837. height:44px;
  4838. display:flex;
  4839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:12px;
  4843. color:#333333;
  4844. line-height:40px;
  4845. }
  4846. #u11954 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u11954_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u11955_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:88px;
  4865. height:44px;
  4866. }
  4867. #u11955 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:618px;
  4871. top:78px;
  4872. width:88px;
  4873. height:44px;
  4874. display:flex;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#333333;
  4880. line-height:40px;
  4881. }
  4882. #u11955 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:2px 2px 2px 0px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u11955_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. visibility:hidden;
  4894. }
  4895. #u11956_img {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:88px;
  4901. height:44px;
  4902. }
  4903. #u11956 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:706px;
  4907. top:78px;
  4908. width:88px;
  4909. height:44px;
  4910. display:flex;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:12px;
  4915. color:#333333;
  4916. line-height:40px;
  4917. }
  4918. #u11956 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u11956_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u11957_img {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:88px;
  4937. height:44px;
  4938. }
  4939. #u11957 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:794px;
  4943. top:78px;
  4944. width:88px;
  4945. height:44px;
  4946. display:flex;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:12px;
  4951. color:#333333;
  4952. line-height:40px;
  4953. }
  4954. #u11957 .text {
  4955. position:absolute;
  4956. align-self:center;
  4957. padding:2px 2px 2px 0px;
  4958. box-sizing:border-box;
  4959. width:100%;
  4960. }
  4961. #u11957_text {
  4962. border-width:0px;
  4963. word-wrap:break-word;
  4964. text-transform:none;
  4965. visibility:hidden;
  4966. }
  4967. #u11958_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:126px;
  4973. height:44px;
  4974. }
  4975. #u11958 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:882px;
  4979. top:78px;
  4980. width:126px;
  4981. height:44px;
  4982. display:flex;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:12px;
  4987. color:#1890FF;
  4988. }
  4989. #u11958 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:2px 2px 2px 0px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u11958_text {
  4997. border-width:0px;
  4998. word-wrap:break-word;
  4999. text-transform:none;
  5000. visibility:hidden;
  5001. }
  5002. #u11959_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:91px;
  5008. height:44px;
  5009. }
  5010. #u11959 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:0px;
  5014. top:122px;
  5015. width:91px;
  5016. height:44px;
  5017. display:flex;
  5018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:12px;
  5022. color:#333333;
  5023. line-height:40px;
  5024. }
  5025. #u11959 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:2px 2px 2px 0px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u11959_text {
  5033. border-width:0px;
  5034. word-wrap:break-word;
  5035. text-transform:none;
  5036. visibility:hidden;
  5037. }
  5038. #u11960_img {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:91px;
  5044. height:44px;
  5045. }
  5046. #u11960 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:91px;
  5050. top:122px;
  5051. width:91px;
  5052. height:44px;
  5053. display:flex;
  5054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5055. font-weight:400;
  5056. font-style:normal;
  5057. font-size:12px;
  5058. color:#333333;
  5059. line-height:40px;
  5060. }
  5061. #u11960 .text {
  5062. position:absolute;
  5063. align-self:center;
  5064. padding:2px 2px 2px 0px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u11960_text {
  5069. border-width:0px;
  5070. word-wrap:break-word;
  5071. text-transform:none;
  5072. visibility:hidden;
  5073. }
  5074. #u11961_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:76px;
  5080. height:44px;
  5081. }
  5082. #u11961 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:182px;
  5086. top:122px;
  5087. width:76px;
  5088. height:44px;
  5089. display:flex;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:12px;
  5094. color:#333333;
  5095. line-height:40px;
  5096. }
  5097. #u11961 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 0px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u11961_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u11962_img {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:92px;
  5116. height:44px;
  5117. }
  5118. #u11962 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:258px;
  5122. top:122px;
  5123. width:92px;
  5124. height:44px;
  5125. display:flex;
  5126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5127. font-weight:400;
  5128. font-style:normal;
  5129. font-size:12px;
  5130. color:#333333;
  5131. line-height:40px;
  5132. }
  5133. #u11962 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:2px 2px 2px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u11962_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. visibility:hidden;
  5145. }
  5146. #u11963_img {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:88px;
  5152. height:44px;
  5153. }
  5154. #u11963 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:350px;
  5158. top:122px;
  5159. width:88px;
  5160. height:44px;
  5161. display:flex;
  5162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:12px;
  5166. color:#333333;
  5167. line-height:40px;
  5168. }
  5169. #u11963 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u11963_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. }
  5181. #u11964_img {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:88px;
  5187. height:44px;
  5188. }
  5189. #u11964 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:438px;
  5193. top:122px;
  5194. width:88px;
  5195. height:44px;
  5196. display:flex;
  5197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:12px;
  5201. color:#333333;
  5202. line-height:40px;
  5203. }
  5204. #u11964 .text {
  5205. position:absolute;
  5206. align-self:center;
  5207. padding:2px 2px 2px 0px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u11964_text {
  5212. border-width:0px;
  5213. word-wrap:break-word;
  5214. text-transform:none;
  5215. visibility:hidden;
  5216. }
  5217. #u11965_img {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:92px;
  5223. height:44px;
  5224. }
  5225. #u11965 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:526px;
  5229. top:122px;
  5230. width:92px;
  5231. height:44px;
  5232. display:flex;
  5233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:12px;
  5237. color:#333333;
  5238. line-height:40px;
  5239. }
  5240. #u11965 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 0px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u11965_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. visibility:hidden;
  5252. }
  5253. #u11966_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:88px;
  5259. height:44px;
  5260. }
  5261. #u11966 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:618px;
  5265. top:122px;
  5266. width:88px;
  5267. height:44px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:12px;
  5273. color:#333333;
  5274. line-height:40px;
  5275. }
  5276. #u11966 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:2px 2px 2px 0px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u11966_text {
  5284. border-width:0px;
  5285. word-wrap:break-word;
  5286. text-transform:none;
  5287. visibility:hidden;
  5288. }
  5289. #u11967_img {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:88px;
  5295. height:44px;
  5296. }
  5297. #u11967 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:706px;
  5301. top:122px;
  5302. width:88px;
  5303. height:44px;
  5304. display:flex;
  5305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:12px;
  5309. color:#333333;
  5310. line-height:40px;
  5311. }
  5312. #u11967 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 0px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u11967_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. visibility:hidden;
  5324. }
  5325. #u11968_img {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:88px;
  5331. height:44px;
  5332. }
  5333. #u11968 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:794px;
  5337. top:122px;
  5338. width:88px;
  5339. height:44px;
  5340. display:flex;
  5341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:12px;
  5345. color:#333333;
  5346. line-height:40px;
  5347. }
  5348. #u11968 .text {
  5349. position:absolute;
  5350. align-self:center;
  5351. padding:2px 2px 2px 0px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u11968_text {
  5356. border-width:0px;
  5357. word-wrap:break-word;
  5358. text-transform:none;
  5359. visibility:hidden;
  5360. }
  5361. #u11969_img {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:126px;
  5367. height:44px;
  5368. }
  5369. #u11969 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:882px;
  5373. top:122px;
  5374. width:126px;
  5375. height:44px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. font-size:12px;
  5381. color:#1890FF;
  5382. }
  5383. #u11969 .text {
  5384. position:absolute;
  5385. align-self:center;
  5386. padding:2px 2px 2px 0px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u11969_text {
  5391. border-width:0px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. visibility:hidden;
  5395. }
  5396. #u11970_img {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:91px;
  5402. height:38px;
  5403. }
  5404. #u11970 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:166px;
  5409. width:91px;
  5410. height:38px;
  5411. display:flex;
  5412. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5413. font-weight:400;
  5414. font-style:normal;
  5415. font-size:12px;
  5416. color:#606266;
  5417. }
  5418. #u11970 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:2px 2px 2px 0px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u11970_text {
  5426. border-width:0px;
  5427. word-wrap:break-word;
  5428. text-transform:none;
  5429. visibility:hidden;
  5430. }
  5431. #u11971_img {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:91px;
  5437. height:38px;
  5438. }
  5439. #u11971 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:91px;
  5443. top:166px;
  5444. width:91px;
  5445. height:38px;
  5446. display:flex;
  5447. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:12px;
  5451. color:#606266;
  5452. }
  5453. #u11971 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:2px 2px 2px 0px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u11971_text {
  5461. border-width:0px;
  5462. word-wrap:break-word;
  5463. text-transform:none;
  5464. visibility:hidden;
  5465. }
  5466. #u11972_img {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:76px;
  5472. height:38px;
  5473. }
  5474. #u11972 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:182px;
  5478. top:166px;
  5479. width:76px;
  5480. height:38px;
  5481. display:flex;
  5482. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:12px;
  5486. color:#606266;
  5487. }
  5488. #u11972 .text {
  5489. position:absolute;
  5490. align-self:center;
  5491. padding:2px 2px 2px 0px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u11972_text {
  5496. border-width:0px;
  5497. word-wrap:break-word;
  5498. text-transform:none;
  5499. visibility:hidden;
  5500. }
  5501. #u11973_img {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:92px;
  5507. height:38px;
  5508. }
  5509. #u11973 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:258px;
  5513. top:166px;
  5514. width:92px;
  5515. height:38px;
  5516. display:flex;
  5517. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5518. font-weight:400;
  5519. font-style:normal;
  5520. font-size:12px;
  5521. color:#606266;
  5522. }
  5523. #u11973 .text {
  5524. position:absolute;
  5525. align-self:center;
  5526. padding:2px 2px 2px 0px;
  5527. box-sizing:border-box;
  5528. width:100%;
  5529. }
  5530. #u11973_text {
  5531. border-width:0px;
  5532. word-wrap:break-word;
  5533. text-transform:none;
  5534. visibility:hidden;
  5535. }
  5536. #u11974_img {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:88px;
  5542. height:38px;
  5543. }
  5544. #u11974 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:350px;
  5548. top:166px;
  5549. width:88px;
  5550. height:38px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:12px;
  5556. color:#606266;
  5557. }
  5558. #u11974 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u11974_text {
  5566. border-width:0px;
  5567. word-wrap:break-word;
  5568. text-transform:none;
  5569. }
  5570. #u11975_img {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:88px;
  5576. height:38px;
  5577. }
  5578. #u11975 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:438px;
  5582. top:166px;
  5583. width:88px;
  5584. height:38px;
  5585. display:flex;
  5586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:12px;
  5590. color:#606266;
  5591. }
  5592. #u11975 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:2px 2px 2px 0px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u11975_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. visibility:hidden;
  5604. }
  5605. #u11976_img {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:92px;
  5611. height:38px;
  5612. }
  5613. #u11976 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:526px;
  5617. top:166px;
  5618. width:92px;
  5619. height:38px;
  5620. display:flex;
  5621. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:12px;
  5625. color:#606266;
  5626. }
  5627. #u11976 .text {
  5628. position:absolute;
  5629. align-self:center;
  5630. padding:2px 2px 2px 0px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u11976_text {
  5635. border-width:0px;
  5636. word-wrap:break-word;
  5637. text-transform:none;
  5638. visibility:hidden;
  5639. }
  5640. #u11977_img {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:88px;
  5646. height:38px;
  5647. }
  5648. #u11977 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:618px;
  5652. top:166px;
  5653. width:88px;
  5654. height:38px;
  5655. display:flex;
  5656. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:12px;
  5660. color:#606266;
  5661. }
  5662. #u11977 .text {
  5663. position:absolute;
  5664. align-self:center;
  5665. padding:2px 2px 2px 0px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u11977_text {
  5670. border-width:0px;
  5671. word-wrap:break-word;
  5672. text-transform:none;
  5673. visibility:hidden;
  5674. }
  5675. #u11978_img {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:88px;
  5681. height:38px;
  5682. }
  5683. #u11978 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:706px;
  5687. top:166px;
  5688. width:88px;
  5689. height:38px;
  5690. display:flex;
  5691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:12px;
  5695. color:#606266;
  5696. }
  5697. #u11978 .text {
  5698. position:absolute;
  5699. align-self:center;
  5700. padding:2px 2px 2px 0px;
  5701. box-sizing:border-box;
  5702. width:100%;
  5703. }
  5704. #u11978_text {
  5705. border-width:0px;
  5706. word-wrap:break-word;
  5707. text-transform:none;
  5708. visibility:hidden;
  5709. }
  5710. #u11979_img {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:88px;
  5716. height:38px;
  5717. }
  5718. #u11979 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:794px;
  5722. top:166px;
  5723. width:88px;
  5724. height:38px;
  5725. display:flex;
  5726. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:12px;
  5730. color:#606266;
  5731. }
  5732. #u11979 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 0px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u11979_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. visibility:hidden;
  5744. }
  5745. #u11980_img {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:126px;
  5751. height:38px;
  5752. }
  5753. #u11980 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:882px;
  5757. top:166px;
  5758. width:126px;
  5759. height:38px;
  5760. display:flex;
  5761. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:12px;
  5765. color:#606266;
  5766. }
  5767. #u11980 .text {
  5768. position:absolute;
  5769. align-self:center;
  5770. padding:2px 2px 2px 0px;
  5771. box-sizing:border-box;
  5772. width:100%;
  5773. }
  5774. #u11980_text {
  5775. border-width:0px;
  5776. word-wrap:break-word;
  5777. text-transform:none;
  5778. visibility:hidden;
  5779. }
  5780. #u11981_img {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:91px;
  5786. height:38px;
  5787. }
  5788. #u11981 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:204px;
  5793. width:91px;
  5794. height:38px;
  5795. display:flex;
  5796. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:12px;
  5800. color:#606266;
  5801. }
  5802. #u11981 .text {
  5803. position:absolute;
  5804. align-self:center;
  5805. padding:2px 2px 2px 0px;
  5806. box-sizing:border-box;
  5807. width:100%;
  5808. }
  5809. #u11981_text {
  5810. border-width:0px;
  5811. word-wrap:break-word;
  5812. text-transform:none;
  5813. visibility:hidden;
  5814. }
  5815. #u11982_img {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:91px;
  5821. height:38px;
  5822. }
  5823. #u11982 {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:91px;
  5827. top:204px;
  5828. width:91px;
  5829. height:38px;
  5830. display:flex;
  5831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:12px;
  5835. color:#606266;
  5836. }
  5837. #u11982 .text {
  5838. position:absolute;
  5839. align-self:center;
  5840. padding:2px 2px 2px 0px;
  5841. box-sizing:border-box;
  5842. width:100%;
  5843. }
  5844. #u11982_text {
  5845. border-width:0px;
  5846. word-wrap:break-word;
  5847. text-transform:none;
  5848. visibility:hidden;
  5849. }
  5850. #u11983_img {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:76px;
  5856. height:38px;
  5857. }
  5858. #u11983 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:182px;
  5862. top:204px;
  5863. width:76px;
  5864. height:38px;
  5865. display:flex;
  5866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:12px;
  5870. color:#606266;
  5871. }
  5872. #u11983 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:2px 2px 2px 0px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u11983_text {
  5880. border-width:0px;
  5881. word-wrap:break-word;
  5882. text-transform:none;
  5883. visibility:hidden;
  5884. }
  5885. #u11984_img {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:92px;
  5891. height:38px;
  5892. }
  5893. #u11984 {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:258px;
  5897. top:204px;
  5898. width:92px;
  5899. height:38px;
  5900. display:flex;
  5901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5902. font-weight:400;
  5903. font-style:normal;
  5904. font-size:12px;
  5905. color:#606266;
  5906. }
  5907. #u11984 .text {
  5908. position:absolute;
  5909. align-self:center;
  5910. padding:2px 2px 2px 0px;
  5911. box-sizing:border-box;
  5912. width:100%;
  5913. }
  5914. #u11984_text {
  5915. border-width:0px;
  5916. word-wrap:break-word;
  5917. text-transform:none;
  5918. visibility:hidden;
  5919. }
  5920. #u11985_img {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:88px;
  5926. height:38px;
  5927. }
  5928. #u11985 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:350px;
  5932. top:204px;
  5933. width:88px;
  5934. height:38px;
  5935. display:flex;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:12px;
  5940. color:#606266;
  5941. }
  5942. #u11985 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 0px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u11985_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. visibility:hidden;
  5954. }
  5955. #u11986_img {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:88px;
  5961. height:38px;
  5962. }
  5963. #u11986 {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:438px;
  5967. top:204px;
  5968. width:88px;
  5969. height:38px;
  5970. display:flex;
  5971. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:12px;
  5975. color:#606266;
  5976. }
  5977. #u11986 .text {
  5978. position:absolute;
  5979. align-self:center;
  5980. padding:2px 2px 2px 0px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u11986_text {
  5985. border-width:0px;
  5986. word-wrap:break-word;
  5987. text-transform:none;
  5988. visibility:hidden;
  5989. }
  5990. #u11987_img {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:92px;
  5996. height:38px;
  5997. }
  5998. #u11987 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:526px;
  6002. top:204px;
  6003. width:92px;
  6004. height:38px;
  6005. display:flex;
  6006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:12px;
  6010. color:#606266;
  6011. }
  6012. #u11987 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 0px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u11987_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u11988_img {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:88px;
  6031. height:38px;
  6032. }
  6033. #u11988 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:618px;
  6037. top:204px;
  6038. width:88px;
  6039. height:38px;
  6040. display:flex;
  6041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:12px;
  6045. color:#606266;
  6046. }
  6047. #u11988 .text {
  6048. position:absolute;
  6049. align-self:center;
  6050. padding:2px 2px 2px 0px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u11988_text {
  6055. border-width:0px;
  6056. word-wrap:break-word;
  6057. text-transform:none;
  6058. visibility:hidden;
  6059. }
  6060. #u11989_img {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:88px;
  6066. height:38px;
  6067. }
  6068. #u11989 {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:706px;
  6072. top:204px;
  6073. width:88px;
  6074. height:38px;
  6075. display:flex;
  6076. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:12px;
  6080. color:#606266;
  6081. }
  6082. #u11989 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 0px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u11989_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. visibility:hidden;
  6094. }
  6095. #u11990_img {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:88px;
  6101. height:38px;
  6102. }
  6103. #u11990 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:794px;
  6107. top:204px;
  6108. width:88px;
  6109. height:38px;
  6110. display:flex;
  6111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. font-size:12px;
  6115. color:#606266;
  6116. }
  6117. #u11990 .text {
  6118. position:absolute;
  6119. align-self:center;
  6120. padding:2px 2px 2px 0px;
  6121. box-sizing:border-box;
  6122. width:100%;
  6123. }
  6124. #u11990_text {
  6125. border-width:0px;
  6126. word-wrap:break-word;
  6127. text-transform:none;
  6128. visibility:hidden;
  6129. }
  6130. #u11991_img {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:126px;
  6136. height:38px;
  6137. }
  6138. #u11991 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:882px;
  6142. top:204px;
  6143. width:126px;
  6144. height:38px;
  6145. display:flex;
  6146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6147. font-weight:400;
  6148. font-style:normal;
  6149. font-size:12px;
  6150. color:#606266;
  6151. }
  6152. #u11991 .text {
  6153. position:absolute;
  6154. align-self:center;
  6155. padding:2px 2px 2px 0px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u11991_text {
  6160. border-width:0px;
  6161. word-wrap:break-word;
  6162. text-transform:none;
  6163. visibility:hidden;
  6164. }
  6165. #u11992_img {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:91px;
  6171. height:38px;
  6172. }
  6173. #u11992 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:242px;
  6178. width:91px;
  6179. height:38px;
  6180. display:flex;
  6181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:12px;
  6185. color:#606266;
  6186. }
  6187. #u11992 .text {
  6188. position:absolute;
  6189. align-self:center;
  6190. padding:2px 2px 2px 0px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u11992_text {
  6195. border-width:0px;
  6196. word-wrap:break-word;
  6197. text-transform:none;
  6198. visibility:hidden;
  6199. }
  6200. #u11993_img {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:91px;
  6206. height:38px;
  6207. }
  6208. #u11993 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:91px;
  6212. top:242px;
  6213. width:91px;
  6214. height:38px;
  6215. display:flex;
  6216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:12px;
  6220. color:#606266;
  6221. }
  6222. #u11993 .text {
  6223. position:absolute;
  6224. align-self:center;
  6225. padding:2px 2px 2px 0px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u11993_text {
  6230. border-width:0px;
  6231. word-wrap:break-word;
  6232. text-transform:none;
  6233. visibility:hidden;
  6234. }
  6235. #u11994_img {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:76px;
  6241. height:38px;
  6242. }
  6243. #u11994 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:182px;
  6247. top:242px;
  6248. width:76px;
  6249. height:38px;
  6250. display:flex;
  6251. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:12px;
  6255. color:#606266;
  6256. }
  6257. #u11994 .text {
  6258. position:absolute;
  6259. align-self:center;
  6260. padding:2px 2px 2px 0px;
  6261. box-sizing:border-box;
  6262. width:100%;
  6263. }
  6264. #u11994_text {
  6265. border-width:0px;
  6266. word-wrap:break-word;
  6267. text-transform:none;
  6268. visibility:hidden;
  6269. }
  6270. #u11995_img {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:92px;
  6276. height:38px;
  6277. }
  6278. #u11995 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:258px;
  6282. top:242px;
  6283. width:92px;
  6284. height:38px;
  6285. display:flex;
  6286. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:12px;
  6290. color:#606266;
  6291. }
  6292. #u11995 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:2px 2px 2px 0px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u11995_text {
  6300. border-width:0px;
  6301. word-wrap:break-word;
  6302. text-transform:none;
  6303. visibility:hidden;
  6304. }
  6305. #u11996_img {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:88px;
  6311. height:38px;
  6312. }
  6313. #u11996 {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:350px;
  6317. top:242px;
  6318. width:88px;
  6319. height:38px;
  6320. display:flex;
  6321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. font-size:12px;
  6325. color:#606266;
  6326. }
  6327. #u11996 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:2px 2px 2px 0px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u11996_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u11997_img {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:88px;
  6346. height:38px;
  6347. }
  6348. #u11997 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:438px;
  6352. top:242px;
  6353. width:88px;
  6354. height:38px;
  6355. display:flex;
  6356. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:12px;
  6360. color:#606266;
  6361. }
  6362. #u11997 .text {
  6363. position:absolute;
  6364. align-self:center;
  6365. padding:2px 2px 2px 0px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u11997_text {
  6370. border-width:0px;
  6371. word-wrap:break-word;
  6372. text-transform:none;
  6373. visibility:hidden;
  6374. }
  6375. #u11998_img {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:92px;
  6381. height:38px;
  6382. }
  6383. #u11998 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:526px;
  6387. top:242px;
  6388. width:92px;
  6389. height:38px;
  6390. display:flex;
  6391. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:12px;
  6395. color:#606266;
  6396. }
  6397. #u11998 .text {
  6398. position:absolute;
  6399. align-self:center;
  6400. padding:2px 2px 2px 0px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u11998_text {
  6405. border-width:0px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. visibility:hidden;
  6409. }
  6410. #u11999_img {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:88px;
  6416. height:38px;
  6417. }
  6418. #u11999 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:618px;
  6422. top:242px;
  6423. width:88px;
  6424. height:38px;
  6425. display:flex;
  6426. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:12px;
  6430. color:#606266;
  6431. }
  6432. #u11999 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:2px 2px 2px 0px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u11999_text {
  6440. border-width:0px;
  6441. word-wrap:break-word;
  6442. text-transform:none;
  6443. visibility:hidden;
  6444. }
  6445. #u12000_img {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:88px;
  6451. height:38px;
  6452. }
  6453. #u12000 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:706px;
  6457. top:242px;
  6458. width:88px;
  6459. height:38px;
  6460. display:flex;
  6461. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:12px;
  6465. color:#606266;
  6466. }
  6467. #u12000 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:2px 2px 2px 0px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u12000_text {
  6475. border-width:0px;
  6476. word-wrap:break-word;
  6477. text-transform:none;
  6478. visibility:hidden;
  6479. }
  6480. #u12001_img {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:88px;
  6486. height:38px;
  6487. }
  6488. #u12001 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:794px;
  6492. top:242px;
  6493. width:88px;
  6494. height:38px;
  6495. display:flex;
  6496. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6497. font-weight:400;
  6498. font-style:normal;
  6499. font-size:12px;
  6500. color:#606266;
  6501. }
  6502. #u12001 .text {
  6503. position:absolute;
  6504. align-self:center;
  6505. padding:2px 2px 2px 0px;
  6506. box-sizing:border-box;
  6507. width:100%;
  6508. }
  6509. #u12001_text {
  6510. border-width:0px;
  6511. word-wrap:break-word;
  6512. text-transform:none;
  6513. visibility:hidden;
  6514. }
  6515. #u12002_img {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:126px;
  6521. height:38px;
  6522. }
  6523. #u12002 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:882px;
  6527. top:242px;
  6528. width:126px;
  6529. height:38px;
  6530. display:flex;
  6531. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6532. font-weight:400;
  6533. font-style:normal;
  6534. font-size:12px;
  6535. color:#606266;
  6536. }
  6537. #u12002 .text {
  6538. position:absolute;
  6539. align-self:center;
  6540. padding:2px 2px 2px 0px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u12002_text {
  6545. border-width:0px;
  6546. word-wrap:break-word;
  6547. text-transform:none;
  6548. visibility:hidden;
  6549. }
  6550. #u12003_img {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:0px;
  6554. top:0px;
  6555. width:91px;
  6556. height:38px;
  6557. }
  6558. #u12003 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:0px;
  6562. top:280px;
  6563. width:91px;
  6564. height:38px;
  6565. display:flex;
  6566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:12px;
  6570. color:#606266;
  6571. }
  6572. #u12003 .text {
  6573. position:absolute;
  6574. align-self:center;
  6575. padding:2px 2px 2px 0px;
  6576. box-sizing:border-box;
  6577. width:100%;
  6578. }
  6579. #u12003_text {
  6580. border-width:0px;
  6581. word-wrap:break-word;
  6582. text-transform:none;
  6583. visibility:hidden;
  6584. }
  6585. #u12004_img {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:91px;
  6591. height:38px;
  6592. }
  6593. #u12004 {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:91px;
  6597. top:280px;
  6598. width:91px;
  6599. height:38px;
  6600. display:flex;
  6601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:12px;
  6605. color:#606266;
  6606. }
  6607. #u12004 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:2px 2px 2px 0px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u12004_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. visibility:hidden;
  6619. }
  6620. #u12005_img {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:76px;
  6626. height:38px;
  6627. }
  6628. #u12005 {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:182px;
  6632. top:280px;
  6633. width:76px;
  6634. height:38px;
  6635. display:flex;
  6636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:12px;
  6640. color:#606266;
  6641. }
  6642. #u12005 .text {
  6643. position:absolute;
  6644. align-self:center;
  6645. padding:2px 2px 2px 0px;
  6646. box-sizing:border-box;
  6647. width:100%;
  6648. }
  6649. #u12005_text {
  6650. border-width:0px;
  6651. word-wrap:break-word;
  6652. text-transform:none;
  6653. visibility:hidden;
  6654. }
  6655. #u12006_img {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:92px;
  6661. height:38px;
  6662. }
  6663. #u12006 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:258px;
  6667. top:280px;
  6668. width:92px;
  6669. height:38px;
  6670. display:flex;
  6671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:12px;
  6675. color:#606266;
  6676. }
  6677. #u12006 .text {
  6678. position:absolute;
  6679. align-self:center;
  6680. padding:2px 2px 2px 0px;
  6681. box-sizing:border-box;
  6682. width:100%;
  6683. }
  6684. #u12006_text {
  6685. border-width:0px;
  6686. word-wrap:break-word;
  6687. text-transform:none;
  6688. visibility:hidden;
  6689. }
  6690. #u12007_img {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:88px;
  6696. height:38px;
  6697. }
  6698. #u12007 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:350px;
  6702. top:280px;
  6703. width:88px;
  6704. height:38px;
  6705. display:flex;
  6706. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6707. font-weight:400;
  6708. font-style:normal;
  6709. font-size:12px;
  6710. color:#606266;
  6711. }
  6712. #u12007 .text {
  6713. position:absolute;
  6714. align-self:center;
  6715. padding:2px 2px 2px 0px;
  6716. box-sizing:border-box;
  6717. width:100%;
  6718. }
  6719. #u12007_text {
  6720. border-width:0px;
  6721. word-wrap:break-word;
  6722. text-transform:none;
  6723. visibility:hidden;
  6724. }
  6725. #u12008_img {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:88px;
  6731. height:38px;
  6732. }
  6733. #u12008 {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:438px;
  6737. top:280px;
  6738. width:88px;
  6739. height:38px;
  6740. display:flex;
  6741. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6742. font-weight:400;
  6743. font-style:normal;
  6744. font-size:12px;
  6745. color:#606266;
  6746. }
  6747. #u12008 .text {
  6748. position:absolute;
  6749. align-self:center;
  6750. padding:2px 2px 2px 0px;
  6751. box-sizing:border-box;
  6752. width:100%;
  6753. }
  6754. #u12008_text {
  6755. border-width:0px;
  6756. word-wrap:break-word;
  6757. text-transform:none;
  6758. visibility:hidden;
  6759. }
  6760. #u12009_img {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:92px;
  6766. height:38px;
  6767. }
  6768. #u12009 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:526px;
  6772. top:280px;
  6773. width:92px;
  6774. height:38px;
  6775. display:flex;
  6776. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:12px;
  6780. color:#606266;
  6781. }
  6782. #u12009 .text {
  6783. position:absolute;
  6784. align-self:center;
  6785. padding:2px 2px 2px 0px;
  6786. box-sizing:border-box;
  6787. width:100%;
  6788. }
  6789. #u12009_text {
  6790. border-width:0px;
  6791. word-wrap:break-word;
  6792. text-transform:none;
  6793. visibility:hidden;
  6794. }
  6795. #u12010_img {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:88px;
  6801. height:38px;
  6802. }
  6803. #u12010 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:618px;
  6807. top:280px;
  6808. width:88px;
  6809. height:38px;
  6810. display:flex;
  6811. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:12px;
  6815. color:#606266;
  6816. }
  6817. #u12010 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 2px 2px 0px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u12010_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. visibility:hidden;
  6829. }
  6830. #u12011_img {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:88px;
  6836. height:38px;
  6837. }
  6838. #u12011 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:706px;
  6842. top:280px;
  6843. width:88px;
  6844. height:38px;
  6845. display:flex;
  6846. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. color:#606266;
  6851. }
  6852. #u12011 .text {
  6853. position:absolute;
  6854. align-self:center;
  6855. padding:2px 2px 2px 0px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u12011_text {
  6860. border-width:0px;
  6861. word-wrap:break-word;
  6862. text-transform:none;
  6863. visibility:hidden;
  6864. }
  6865. #u12012_img {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:88px;
  6871. height:38px;
  6872. }
  6873. #u12012 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:794px;
  6877. top:280px;
  6878. width:88px;
  6879. height:38px;
  6880. display:flex;
  6881. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:12px;
  6885. color:#606266;
  6886. }
  6887. #u12012 .text {
  6888. position:absolute;
  6889. align-self:center;
  6890. padding:2px 2px 2px 0px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u12012_text {
  6895. border-width:0px;
  6896. word-wrap:break-word;
  6897. text-transform:none;
  6898. visibility:hidden;
  6899. }
  6900. #u12013_img {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:126px;
  6906. height:38px;
  6907. }
  6908. #u12013 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:882px;
  6912. top:280px;
  6913. width:126px;
  6914. height:38px;
  6915. display:flex;
  6916. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:12px;
  6920. color:#606266;
  6921. }
  6922. #u12013 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 2px 2px 0px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u12013_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u12014_div {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:73px;
  6941. height:50px;
  6942. background:inherit;
  6943. background-color:rgba(255, 255, 255, 0);
  6944. border:none;
  6945. border-left:0px;
  6946. border-top:0px;
  6947. border-right:0px;
  6948. border-radius:0px;
  6949. border-bottom-right-radius:0px;
  6950. border-bottom-left-radius:0px;
  6951. -moz-box-shadow:none;
  6952. -webkit-box-shadow:none;
  6953. box-shadow:none;
  6954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6955. font-weight:400;
  6956. font-style:normal;
  6957. font-size:18px;
  6958. }
  6959. #u12014 {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:350px;
  6963. top:50px;
  6964. width:73px;
  6965. height:50px;
  6966. display:flex;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:18px;
  6971. }
  6972. #u12014 .text {
  6973. position:absolute;
  6974. align-self:center;
  6975. padding:0px 0px 0px 0px;
  6976. box-sizing:border-box;
  6977. width:100%;
  6978. }
  6979. #u12014_text {
  6980. border-width:0px;
  6981. white-space:nowrap;
  6982. text-transform:none;
  6983. }
  6984. #u12015 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:0px;
  6990. height:0px;
  6991. }
  6992. #u12016_div {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:0px;
  6997. width:140px;
  6998. height:30px;
  6999. background:inherit;
  7000. background-color:rgba(255, 255, 255, 1);
  7001. box-sizing:border-box;
  7002. border-width:1px;
  7003. border-style:solid;
  7004. border-color:rgba(215, 215, 215, 1);
  7005. border-radius:4px;
  7006. -moz-box-shadow:none;
  7007. -webkit-box-shadow:none;
  7008. box-shadow:none;
  7009. font-size:14px;
  7010. }
  7011. #u12016 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:861px;
  7015. top:239px;
  7016. width:140px;
  7017. height:30px;
  7018. display:flex;
  7019. font-size:14px;
  7020. }
  7021. #u12016 .text {
  7022. position:absolute;
  7023. align-self:center;
  7024. padding:2px 2px 2px 2px;
  7025. box-sizing:border-box;
  7026. width:100%;
  7027. }
  7028. #u12016_text {
  7029. border-width:0px;
  7030. word-wrap:break-word;
  7031. text-transform:none;
  7032. visibility:hidden;
  7033. }
  7034. #u12017_input {
  7035. position:absolute;
  7036. left:0px;
  7037. top:0px;
  7038. width:134px;
  7039. height:23px;
  7040. padding:2px 2px 2px 2px;
  7041. font-family:'ArialMT', 'Arial', sans-serif;
  7042. font-weight:400;
  7043. font-style:normal;
  7044. font-size:14px;
  7045. letter-spacing:normal;
  7046. color:#AAAAAA;
  7047. vertical-align:none;
  7048. text-align:left;
  7049. text-transform:none;
  7050. background-color:transparent;
  7051. border-color:transparent;
  7052. }
  7053. #u12017_input.disabled {
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:134px;
  7058. height:23px;
  7059. padding:2px 2px 2px 2px;
  7060. font-family:'ArialMT', 'Arial', sans-serif;
  7061. font-weight:400;
  7062. font-style:normal;
  7063. font-size:14px;
  7064. letter-spacing:normal;
  7065. color:#AAAAAA;
  7066. vertical-align:none;
  7067. text-align:left;
  7068. text-transform:none;
  7069. background-color:transparent;
  7070. border-color:transparent;
  7071. }
  7072. #u12017_div {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:134px;
  7078. height:23px;
  7079. background:inherit;
  7080. background-color:rgba(255, 255, 255, 1);
  7081. border:none;
  7082. border-radius:0px;
  7083. -moz-box-shadow:none;
  7084. -webkit-box-shadow:none;
  7085. box-shadow:none;
  7086. font-size:14px;
  7087. color:#AAAAAA;
  7088. }
  7089. #u12017 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:865px;
  7093. top:241px;
  7094. width:134px;
  7095. height:23px;
  7096. display:flex;
  7097. font-size:14px;
  7098. color:#AAAAAA;
  7099. }
  7100. #u12017 .text {
  7101. position:absolute;
  7102. align-self:flex-start;
  7103. padding:2px 2px 2px 2px;
  7104. box-sizing:border-box;
  7105. width:100%;
  7106. }
  7107. #u12017_div.disabled {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:134px;
  7113. height:23px;
  7114. background:inherit;
  7115. background-color:rgba(240, 240, 240, 1);
  7116. border:none;
  7117. border-radius:0px;
  7118. -moz-box-shadow:none;
  7119. -webkit-box-shadow:none;
  7120. box-shadow:none;
  7121. font-size:14px;
  7122. color:#AAAAAA;
  7123. }
  7124. #u12017.disabled {
  7125. }
  7126. .u12017_input_option {
  7127. font-size:14px;
  7128. }
  7129. #u12018 {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:0px;
  7133. top:0px;
  7134. width:0px;
  7135. height:0px;
  7136. }
  7137. #u12019_div {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:140px;
  7143. height:30px;
  7144. background:inherit;
  7145. background-color:rgba(255, 255, 255, 1);
  7146. box-sizing:border-box;
  7147. border-width:1px;
  7148. border-style:solid;
  7149. border-color:rgba(201, 201, 201, 1);
  7150. border-radius:4px;
  7151. -moz-box-shadow:none;
  7152. -webkit-box-shadow:none;
  7153. box-shadow:none;
  7154. font-family:'Microsoft YaHei', sans-serif;
  7155. font-weight:400;
  7156. font-style:normal;
  7157. font-size:14px;
  7158. color:#CCCCCC;
  7159. text-align:left;
  7160. }
  7161. #u12019 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:563px;
  7165. top:239px;
  7166. width:140px;
  7167. height:30px;
  7168. display:flex;
  7169. font-family:'Microsoft YaHei', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:14px;
  7173. color:#CCCCCC;
  7174. text-align:left;
  7175. }
  7176. #u12019 .text {
  7177. position:absolute;
  7178. align-self:center;
  7179. padding:2px 8px 2px 8px;
  7180. box-sizing:border-box;
  7181. width:100%;
  7182. }
  7183. #u12019_text {
  7184. border-width:0px;
  7185. word-wrap:break-word;
  7186. text-transform:none;
  7187. visibility:hidden;
  7188. }
  7189. #u12020_input {
  7190. position:absolute;
  7191. left:0px;
  7192. top:0px;
  7193. width:127px;
  7194. height:25px;
  7195. padding:2px 2px 2px 2px;
  7196. font-family:'Microsoft YaHei', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:10px;
  7200. letter-spacing:normal;
  7201. color:#000000;
  7202. vertical-align:none;
  7203. text-align:left;
  7204. text-transform:none;
  7205. background-color:transparent;
  7206. border-color:transparent;
  7207. }
  7208. #u12020_input.disabled {
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:127px;
  7213. height:25px;
  7214. padding:2px 2px 2px 2px;
  7215. font-family:'Microsoft YaHei', sans-serif;
  7216. font-weight:400;
  7217. font-style:normal;
  7218. font-size:10px;
  7219. letter-spacing:normal;
  7220. color:#000000;
  7221. vertical-align:none;
  7222. text-align:left;
  7223. text-transform:none;
  7224. background-color:transparent;
  7225. border-color:transparent;
  7226. }
  7227. #u12020_div {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:127px;
  7233. height:25px;
  7234. background:inherit;
  7235. background-color:rgba(255, 255, 255, 1);
  7236. border:none;
  7237. border-radius:0px;
  7238. -moz-box-shadow:none;
  7239. -webkit-box-shadow:none;
  7240. box-shadow:none;
  7241. font-family:'Microsoft YaHei', sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:10px;
  7245. }
  7246. #u12020 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:571px;
  7250. top:240px;
  7251. width:127px;
  7252. height:25px;
  7253. display:flex;
  7254. font-family:'Microsoft YaHei', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:10px;
  7258. }
  7259. #u12020 .text {
  7260. position:absolute;
  7261. align-self:center;
  7262. padding:2px 2px 2px 2px;
  7263. box-sizing:border-box;
  7264. width:100%;
  7265. }
  7266. #u12020_div.disabled {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:127px;
  7272. height:25px;
  7273. background:inherit;
  7274. background-color:rgba(240, 240, 240, 1);
  7275. border:none;
  7276. border-radius:0px;
  7277. -moz-box-shadow:none;
  7278. -webkit-box-shadow:none;
  7279. box-shadow:none;
  7280. font-family:'Microsoft YaHei', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. font-size:10px;
  7284. }
  7285. #u12020.disabled {
  7286. }
  7287. #u12021 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:0px;
  7291. top:0px;
  7292. width:0px;
  7293. height:0px;
  7294. }
  7295. #u12022_div {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:140px;
  7301. height:30px;
  7302. background:inherit;
  7303. background-color:rgba(255, 255, 255, 1);
  7304. box-sizing:border-box;
  7305. border-width:1px;
  7306. border-style:solid;
  7307. border-color:rgba(201, 201, 201, 1);
  7308. border-radius:4px;
  7309. -moz-box-shadow:none;
  7310. -webkit-box-shadow:none;
  7311. box-shadow:none;
  7312. font-family:'Microsoft YaHei', sans-serif;
  7313. font-weight:400;
  7314. font-style:normal;
  7315. font-size:14px;
  7316. color:#CCCCCC;
  7317. text-align:left;
  7318. }
  7319. #u12022 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:713px;
  7323. top:239px;
  7324. width:140px;
  7325. height:30px;
  7326. display:flex;
  7327. font-family:'Microsoft YaHei', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:14px;
  7331. color:#CCCCCC;
  7332. text-align:left;
  7333. }
  7334. #u12022 .text {
  7335. position:absolute;
  7336. align-self:center;
  7337. padding:2px 8px 2px 8px;
  7338. box-sizing:border-box;
  7339. width:100%;
  7340. }
  7341. #u12022_text {
  7342. border-width:0px;
  7343. word-wrap:break-word;
  7344. text-transform:none;
  7345. visibility:hidden;
  7346. }
  7347. #u12023_input {
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:127px;
  7352. height:25px;
  7353. padding:2px 2px 2px 2px;
  7354. font-family:'Microsoft YaHei', sans-serif;
  7355. font-weight:400;
  7356. font-style:normal;
  7357. font-size:10px;
  7358. letter-spacing:normal;
  7359. color:#000000;
  7360. vertical-align:none;
  7361. text-align:left;
  7362. text-transform:none;
  7363. background-color:transparent;
  7364. border-color:transparent;
  7365. }
  7366. #u12023_input.disabled {
  7367. position:absolute;
  7368. left:0px;
  7369. top:0px;
  7370. width:127px;
  7371. height:25px;
  7372. padding:2px 2px 2px 2px;
  7373. font-family:'Microsoft YaHei', sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. font-size:10px;
  7377. letter-spacing:normal;
  7378. color:#000000;
  7379. vertical-align:none;
  7380. text-align:left;
  7381. text-transform:none;
  7382. background-color:transparent;
  7383. border-color:transparent;
  7384. }
  7385. #u12023_div {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:127px;
  7391. height:25px;
  7392. background:inherit;
  7393. background-color:rgba(255, 255, 255, 1);
  7394. border:none;
  7395. border-radius:0px;
  7396. -moz-box-shadow:none;
  7397. -webkit-box-shadow:none;
  7398. box-shadow:none;
  7399. font-family:'Microsoft YaHei', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:10px;
  7403. }
  7404. #u12023 {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:721px;
  7408. top:240px;
  7409. width:127px;
  7410. height:25px;
  7411. display:flex;
  7412. font-family:'Microsoft YaHei', sans-serif;
  7413. font-weight:400;
  7414. font-style:normal;
  7415. font-size:10px;
  7416. }
  7417. #u12023 .text {
  7418. position:absolute;
  7419. align-self:center;
  7420. padding:2px 2px 2px 2px;
  7421. box-sizing:border-box;
  7422. width:100%;
  7423. }
  7424. #u12023_div.disabled {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:0px;
  7428. top:0px;
  7429. width:127px;
  7430. height:25px;
  7431. background:inherit;
  7432. background-color:rgba(240, 240, 240, 1);
  7433. border:none;
  7434. border-radius:0px;
  7435. -moz-box-shadow:none;
  7436. -webkit-box-shadow:none;
  7437. box-shadow:none;
  7438. font-family:'Microsoft YaHei', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:10px;
  7442. }
  7443. #u12023.disabled {
  7444. }
  7445. #u12024 {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:0px;
  7451. height:0px;
  7452. }
  7453. #u12025 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:350px;
  7457. top:241px;
  7458. width:137px;
  7459. height:500px;
  7460. }
  7461. #u12025_children {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:0px;
  7467. height:0px;
  7468. }
  7469. #u12026 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:106px;
  7475. height:20px;
  7476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. }
  7480. #u12027_img {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:0px;
  7484. top:0px;
  7485. width:9px;
  7486. height:9px;
  7487. }
  7488. #u12027 {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:6px;
  7492. top:6px;
  7493. width:9px;
  7494. height:9px;
  7495. display:flex;
  7496. }
  7497. #u12027 .text {
  7498. position:absolute;
  7499. align-self:center;
  7500. padding:2px 2px 2px 2px;
  7501. box-sizing:border-box;
  7502. width:100%;
  7503. }
  7504. #u12027_img.selected {
  7505. }
  7506. #u12027.selected {
  7507. }
  7508. #u12027_text {
  7509. border-width:0px;
  7510. word-wrap:break-word;
  7511. text-transform:none;
  7512. visibility:hidden;
  7513. }
  7514. #u12028_div {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:0px;
  7519. width:84px;
  7520. height:20px;
  7521. background:inherit;
  7522. background-color:rgba(255, 255, 255, 0);
  7523. border:none;
  7524. border-radius:0px;
  7525. -moz-box-shadow:none;
  7526. -webkit-box-shadow:none;
  7527. box-shadow:none;
  7528. }
  7529. #u12028 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:22px;
  7533. top:0px;
  7534. width:84px;
  7535. height:20px;
  7536. display:flex;
  7537. }
  7538. #u12028 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:2px 2px 2px 3px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u12028_text {
  7546. border-width:0px;
  7547. white-space:nowrap;
  7548. text-transform:none;
  7549. }
  7550. #u12026_children {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:0px;
  7554. top:0px;
  7555. width:0px;
  7556. height:0px;
  7557. }
  7558. #u12029 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:20px;
  7562. top:20px;
  7563. width:59px;
  7564. height:20px;
  7565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7566. font-weight:400;
  7567. font-style:normal;
  7568. }
  7569. #u12030_img {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:0px;
  7573. top:0px;
  7574. width:9px;
  7575. height:9px;
  7576. }
  7577. #u12030 {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:6px;
  7581. top:6px;
  7582. width:9px;
  7583. height:9px;
  7584. display:flex;
  7585. }
  7586. #u12030 .text {
  7587. position:absolute;
  7588. align-self:center;
  7589. padding:2px 2px 2px 2px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u12030_img.selected {
  7594. }
  7595. #u12030.selected {
  7596. }
  7597. #u12030_text {
  7598. border-width:0px;
  7599. word-wrap:break-word;
  7600. text-transform:none;
  7601. visibility:hidden;
  7602. }
  7603. #u12031_div {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:37px;
  7609. height:20px;
  7610. background:inherit;
  7611. background-color:rgba(255, 255, 255, 0);
  7612. border:none;
  7613. border-radius:0px;
  7614. -moz-box-shadow:none;
  7615. -webkit-box-shadow:none;
  7616. box-shadow:none;
  7617. }
  7618. #u12031 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:22px;
  7622. top:0px;
  7623. width:37px;
  7624. height:20px;
  7625. display:flex;
  7626. }
  7627. #u12031 .text {
  7628. position:absolute;
  7629. align-self:center;
  7630. padding:2px 2px 2px 3px;
  7631. box-sizing:border-box;
  7632. width:100%;
  7633. }
  7634. #u12031_text {
  7635. border-width:0px;
  7636. white-space:nowrap;
  7637. text-transform:none;
  7638. }
  7639. #u12029_children {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:0px;
  7643. top:0px;
  7644. width:0px;
  7645. height:0px;
  7646. }
  7647. #u12032 {
  7648. border-width:0px;
  7649. position:absolute;
  7650. left:20px;
  7651. top:20px;
  7652. width:67px;
  7653. height:20px;
  7654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. }
  7658. #u12033_img {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:0px;
  7662. top:0px;
  7663. width:9px;
  7664. height:9px;
  7665. }
  7666. #u12033 {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:6px;
  7670. top:6px;
  7671. width:9px;
  7672. height:9px;
  7673. display:flex;
  7674. }
  7675. #u12033 .text {
  7676. position:absolute;
  7677. align-self:center;
  7678. padding:2px 2px 2px 2px;
  7679. box-sizing:border-box;
  7680. width:100%;
  7681. }
  7682. #u12033_img.selected {
  7683. }
  7684. #u12033.selected {
  7685. }
  7686. #u12033_text {
  7687. border-width:0px;
  7688. word-wrap:break-word;
  7689. text-transform:none;
  7690. visibility:hidden;
  7691. }
  7692. #u12034_div {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:0px;
  7696. top:0px;
  7697. width:45px;
  7698. height:20px;
  7699. background:inherit;
  7700. background-color:rgba(255, 255, 255, 0);
  7701. border:none;
  7702. border-radius:0px;
  7703. -moz-box-shadow:none;
  7704. -webkit-box-shadow:none;
  7705. box-shadow:none;
  7706. }
  7707. #u12034 {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:22px;
  7711. top:0px;
  7712. width:45px;
  7713. height:20px;
  7714. display:flex;
  7715. }
  7716. #u12034 .text {
  7717. position:absolute;
  7718. align-self:center;
  7719. padding:2px 2px 2px 3px;
  7720. box-sizing:border-box;
  7721. width:100%;
  7722. }
  7723. #u12034_text {
  7724. border-width:0px;
  7725. white-space:nowrap;
  7726. text-transform:none;
  7727. }
  7728. #u12032_children {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:0px;
  7734. height:0px;
  7735. }
  7736. #u12035 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:20px;
  7740. top:20px;
  7741. width:59px;
  7742. height:20px;
  7743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7744. font-weight:400;
  7745. font-style:normal;
  7746. }
  7747. #u12036_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:37px;
  7753. height:20px;
  7754. background:inherit;
  7755. background-color:rgba(255, 255, 255, 0);
  7756. border:none;
  7757. border-radius:0px;
  7758. -moz-box-shadow:none;
  7759. -webkit-box-shadow:none;
  7760. box-shadow:none;
  7761. }
  7762. #u12036 {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:22px;
  7766. top:0px;
  7767. width:37px;
  7768. height:20px;
  7769. display:flex;
  7770. }
  7771. #u12036 .text {
  7772. position:absolute;
  7773. align-self:center;
  7774. padding:2px 2px 2px 3px;
  7775. box-sizing:border-box;
  7776. width:100%;
  7777. }
  7778. #u12036_text {
  7779. border-width:0px;
  7780. white-space:nowrap;
  7781. text-transform:none;
  7782. }
  7783. #u12037 {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:20px;
  7787. top:40px;
  7788. width:62px;
  7789. height:20px;
  7790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7791. font-weight:400;
  7792. font-style:normal;
  7793. color:#1890FF;
  7794. }
  7795. #u12038_div {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:40px;
  7801. height:20px;
  7802. background:inherit;
  7803. background-color:rgba(255, 255, 255, 0);
  7804. border:none;
  7805. border-radius:0px;
  7806. -moz-box-shadow:none;
  7807. -webkit-box-shadow:none;
  7808. box-shadow:none;
  7809. }
  7810. #u12038 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:22px;
  7814. top:0px;
  7815. width:40px;
  7816. height:20px;
  7817. display:flex;
  7818. }
  7819. #u12038 .text {
  7820. position:absolute;
  7821. align-self:center;
  7822. padding:2px 2px 2px 3px;
  7823. box-sizing:border-box;
  7824. width:100%;
  7825. }
  7826. #u12038_text {
  7827. border-width:0px;
  7828. white-space:nowrap;
  7829. text-transform:none;
  7830. }
  7831. #u12039 {
  7832. border-width:0px;
  7833. position:absolute;
  7834. left:20px;
  7835. top:60px;
  7836. width:62px;
  7837. height:20px;
  7838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7839. font-weight:400;
  7840. font-style:normal;
  7841. }
  7842. #u12040_div {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:40px;
  7848. height:20px;
  7849. background:inherit;
  7850. background-color:rgba(255, 255, 255, 0);
  7851. border:none;
  7852. border-radius:0px;
  7853. -moz-box-shadow:none;
  7854. -webkit-box-shadow:none;
  7855. box-shadow:none;
  7856. }
  7857. #u12040 {
  7858. border-width:0px;
  7859. position:absolute;
  7860. left:22px;
  7861. top:0px;
  7862. width:40px;
  7863. height:20px;
  7864. display:flex;
  7865. }
  7866. #u12040 .text {
  7867. position:absolute;
  7868. align-self:center;
  7869. padding:2px 2px 2px 3px;
  7870. box-sizing:border-box;
  7871. width:100%;
  7872. }
  7873. #u12040_text {
  7874. border-width:0px;
  7875. white-space:nowrap;
  7876. text-transform:none;
  7877. }
  7878. #u12041 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:20px;
  7882. top:80px;
  7883. width:62px;
  7884. height:20px;
  7885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7886. font-weight:400;
  7887. font-style:normal;
  7888. }
  7889. #u12042_div {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:40px;
  7895. height:20px;
  7896. background:inherit;
  7897. background-color:rgba(255, 255, 255, 0);
  7898. border:none;
  7899. border-radius:0px;
  7900. -moz-box-shadow:none;
  7901. -webkit-box-shadow:none;
  7902. box-shadow:none;
  7903. }
  7904. #u12042 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:22px;
  7908. top:0px;
  7909. width:40px;
  7910. height:20px;
  7911. display:flex;
  7912. }
  7913. #u12042 .text {
  7914. position:absolute;
  7915. align-self:center;
  7916. padding:2px 2px 2px 3px;
  7917. box-sizing:border-box;
  7918. width:100%;
  7919. }
  7920. #u12042_text {
  7921. border-width:0px;
  7922. white-space:nowrap;
  7923. text-transform:none;
  7924. }
  7925. #u12043 {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:20px;
  7929. top:100px;
  7930. width:64px;
  7931. height:20px;
  7932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. }
  7936. #u12044_div {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:0px;
  7940. top:0px;
  7941. width:42px;
  7942. height:20px;
  7943. background:inherit;
  7944. background-color:rgba(255, 255, 255, 0);
  7945. border:none;
  7946. border-radius:0px;
  7947. -moz-box-shadow:none;
  7948. -webkit-box-shadow:none;
  7949. box-shadow:none;
  7950. }
  7951. #u12044 {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:22px;
  7955. top:0px;
  7956. width:42px;
  7957. height:20px;
  7958. display:flex;
  7959. }
  7960. #u12044 .text {
  7961. position:absolute;
  7962. align-self:center;
  7963. padding:2px 2px 2px 3px;
  7964. box-sizing:border-box;
  7965. width:100%;
  7966. }
  7967. #u12044_text {
  7968. border-width:0px;
  7969. white-space:nowrap;
  7970. text-transform:none;
  7971. }
  7972. #u12045 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:20px;
  7976. top:120px;
  7977. width:54px;
  7978. height:20px;
  7979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7980. font-weight:400;
  7981. font-style:normal;
  7982. }
  7983. #u12046_div {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:32px;
  7989. height:20px;
  7990. background:inherit;
  7991. background-color:rgba(255, 255, 255, 0);
  7992. border:none;
  7993. border-radius:0px;
  7994. -moz-box-shadow:none;
  7995. -webkit-box-shadow:none;
  7996. box-shadow:none;
  7997. }
  7998. #u12046 {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:22px;
  8002. top:0px;
  8003. width:32px;
  8004. height:20px;
  8005. display:flex;
  8006. }
  8007. #u12046 .text {
  8008. position:absolute;
  8009. align-self:center;
  8010. padding:2px 2px 2px 3px;
  8011. box-sizing:border-box;
  8012. width:100%;
  8013. }
  8014. #u12046_text {
  8015. border-width:0px;
  8016. white-space:nowrap;
  8017. text-transform:none;
  8018. }
  8019. #u12047 {
  8020. border-width:0px;
  8021. position:absolute;
  8022. left:20px;
  8023. top:160px;
  8024. width:70px;
  8025. height:20px;
  8026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8027. font-weight:400;
  8028. font-style:normal;
  8029. }
  8030. #u12048_img {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:0px;
  8034. top:0px;
  8035. width:9px;
  8036. height:9px;
  8037. }
  8038. #u12048 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:6px;
  8042. top:6px;
  8043. width:9px;
  8044. height:9px;
  8045. display:flex;
  8046. }
  8047. #u12048 .text {
  8048. position:absolute;
  8049. align-self:center;
  8050. padding:2px 2px 2px 2px;
  8051. box-sizing:border-box;
  8052. width:100%;
  8053. }
  8054. #u12048_img.selected {
  8055. }
  8056. #u12048.selected {
  8057. }
  8058. #u12048_text {
  8059. border-width:0px;
  8060. word-wrap:break-word;
  8061. text-transform:none;
  8062. visibility:hidden;
  8063. }
  8064. #u12049_div {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:48px;
  8070. height:20px;
  8071. background:inherit;
  8072. background-color:rgba(255, 255, 255, 0);
  8073. border:none;
  8074. border-radius:0px;
  8075. -moz-box-shadow:none;
  8076. -webkit-box-shadow:none;
  8077. box-shadow:none;
  8078. }
  8079. #u12049 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:22px;
  8083. top:0px;
  8084. width:48px;
  8085. height:20px;
  8086. display:flex;
  8087. }
  8088. #u12049 .text {
  8089. position:absolute;
  8090. align-self:center;
  8091. padding:2px 2px 2px 3px;
  8092. box-sizing:border-box;
  8093. width:100%;
  8094. }
  8095. #u12049_text {
  8096. border-width:0px;
  8097. white-space:nowrap;
  8098. text-transform:none;
  8099. }
  8100. #u12047_children {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:0px;
  8104. top:0px;
  8105. width:0px;
  8106. height:0px;
  8107. }
  8108. #u12050 {
  8109. border-width:0px;
  8110. position:absolute;
  8111. left:20px;
  8112. top:20px;
  8113. width:59px;
  8114. height:20px;
  8115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8116. font-weight:400;
  8117. font-style:normal;
  8118. }
  8119. #u12051_div {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:0px;
  8123. top:0px;
  8124. width:37px;
  8125. height:20px;
  8126. background:inherit;
  8127. background-color:rgba(255, 255, 255, 0);
  8128. border:none;
  8129. border-radius:0px;
  8130. -moz-box-shadow:none;
  8131. -webkit-box-shadow:none;
  8132. box-shadow:none;
  8133. }
  8134. #u12051 {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:22px;
  8138. top:0px;
  8139. width:37px;
  8140. height:20px;
  8141. display:flex;
  8142. }
  8143. #u12051 .text {
  8144. position:absolute;
  8145. align-self:center;
  8146. padding:2px 2px 2px 3px;
  8147. box-sizing:border-box;
  8148. width:100%;
  8149. }
  8150. #u12051_text {
  8151. border-width:0px;
  8152. white-space:nowrap;
  8153. text-transform:none;
  8154. }
  8155. #u12052 {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:20px;
  8159. top:40px;
  8160. width:62px;
  8161. height:20px;
  8162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8163. font-weight:400;
  8164. font-style:normal;
  8165. }
  8166. #u12053_div {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:40px;
  8172. height:20px;
  8173. background:inherit;
  8174. background-color:rgba(255, 255, 255, 0);
  8175. border:none;
  8176. border-radius:0px;
  8177. -moz-box-shadow:none;
  8178. -webkit-box-shadow:none;
  8179. box-shadow:none;
  8180. }
  8181. #u12053 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:22px;
  8185. top:0px;
  8186. width:40px;
  8187. height:20px;
  8188. display:flex;
  8189. }
  8190. #u12053 .text {
  8191. position:absolute;
  8192. align-self:center;
  8193. padding:2px 2px 2px 3px;
  8194. box-sizing:border-box;
  8195. width:100%;
  8196. }
  8197. #u12053_text {
  8198. border-width:0px;
  8199. white-space:nowrap;
  8200. text-transform:none;
  8201. }
  8202. #u12054 {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:20px;
  8206. top:60px;
  8207. width:62px;
  8208. height:20px;
  8209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8210. font-weight:400;
  8211. font-style:normal;
  8212. }
  8213. #u12055_div {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:0px;
  8217. top:0px;
  8218. width:40px;
  8219. height:20px;
  8220. background:inherit;
  8221. background-color:rgba(255, 255, 255, 0);
  8222. border:none;
  8223. border-radius:0px;
  8224. -moz-box-shadow:none;
  8225. -webkit-box-shadow:none;
  8226. box-shadow:none;
  8227. }
  8228. #u12055 {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:22px;
  8232. top:0px;
  8233. width:40px;
  8234. height:20px;
  8235. display:flex;
  8236. }
  8237. #u12055 .text {
  8238. position:absolute;
  8239. align-self:center;
  8240. padding:2px 2px 2px 3px;
  8241. box-sizing:border-box;
  8242. width:100%;
  8243. }
  8244. #u12055_text {
  8245. border-width:0px;
  8246. white-space:nowrap;
  8247. text-transform:none;
  8248. }
  8249. #u12056 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:20px;
  8253. top:80px;
  8254. width:62px;
  8255. height:20px;
  8256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. }
  8260. #u12057_div {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:40px;
  8266. height:20px;
  8267. background:inherit;
  8268. background-color:rgba(255, 255, 255, 0);
  8269. border:none;
  8270. border-radius:0px;
  8271. -moz-box-shadow:none;
  8272. -webkit-box-shadow:none;
  8273. box-shadow:none;
  8274. }
  8275. #u12057 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:22px;
  8279. top:0px;
  8280. width:40px;
  8281. height:20px;
  8282. display:flex;
  8283. }
  8284. #u12057 .text {
  8285. position:absolute;
  8286. align-self:center;
  8287. padding:2px 2px 2px 3px;
  8288. box-sizing:border-box;
  8289. width:100%;
  8290. }
  8291. #u12057_text {
  8292. border-width:0px;
  8293. white-space:nowrap;
  8294. text-transform:none;
  8295. }
  8296. #u12058 {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:20px;
  8300. top:100px;
  8301. width:64px;
  8302. height:20px;
  8303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8304. font-weight:400;
  8305. font-style:normal;
  8306. }
  8307. #u12059_div {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:0px;
  8311. top:0px;
  8312. width:42px;
  8313. height:20px;
  8314. background:inherit;
  8315. background-color:rgba(255, 255, 255, 0);
  8316. border:none;
  8317. border-radius:0px;
  8318. -moz-box-shadow:none;
  8319. -webkit-box-shadow:none;
  8320. box-shadow:none;
  8321. }
  8322. #u12059 {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:22px;
  8326. top:0px;
  8327. width:42px;
  8328. height:20px;
  8329. display:flex;
  8330. }
  8331. #u12059 .text {
  8332. position:absolute;
  8333. align-self:center;
  8334. padding:2px 2px 2px 3px;
  8335. box-sizing:border-box;
  8336. width:100%;
  8337. }
  8338. #u12059_text {
  8339. border-width:0px;
  8340. white-space:nowrap;
  8341. text-transform:none;
  8342. }
  8343. #u12060 {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:20px;
  8347. top:120px;
  8348. width:54px;
  8349. height:20px;
  8350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8351. font-weight:400;
  8352. font-style:normal;
  8353. }
  8354. #u12061_div {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:0px;
  8358. top:0px;
  8359. width:32px;
  8360. height:20px;
  8361. background:inherit;
  8362. background-color:rgba(255, 255, 255, 0);
  8363. border:none;
  8364. border-radius:0px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. }
  8369. #u12061 {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:22px;
  8373. top:0px;
  8374. width:32px;
  8375. height:20px;
  8376. display:flex;
  8377. }
  8378. #u12061 .text {
  8379. position:absolute;
  8380. align-self:center;
  8381. padding:2px 2px 2px 3px;
  8382. box-sizing:border-box;
  8383. width:100%;
  8384. }
  8385. #u12061_text {
  8386. border-width:0px;
  8387. white-space:nowrap;
  8388. text-transform:none;
  8389. }
  8390. #u12062 {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:20px;
  8394. top:320px;
  8395. width:62px;
  8396. height:20px;
  8397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. }
  8401. #u12063_img {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:0px;
  8405. top:0px;
  8406. width:9px;
  8407. height:9px;
  8408. }
  8409. #u12063 {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:6px;
  8413. top:6px;
  8414. width:9px;
  8415. height:9px;
  8416. display:flex;
  8417. }
  8418. #u12063 .text {
  8419. position:absolute;
  8420. align-self:center;
  8421. padding:2px 2px 2px 2px;
  8422. box-sizing:border-box;
  8423. width:100%;
  8424. }
  8425. #u12063_img.selected {
  8426. }
  8427. #u12063.selected {
  8428. }
  8429. #u12063_text {
  8430. border-width:0px;
  8431. word-wrap:break-word;
  8432. text-transform:none;
  8433. visibility:hidden;
  8434. }
  8435. #u12064_div {
  8436. border-width:0px;
  8437. position:absolute;
  8438. left:0px;
  8439. top:0px;
  8440. width:40px;
  8441. height:20px;
  8442. background:inherit;
  8443. background-color:rgba(255, 255, 255, 0);
  8444. border:none;
  8445. border-radius:0px;
  8446. -moz-box-shadow:none;
  8447. -webkit-box-shadow:none;
  8448. box-shadow:none;
  8449. }
  8450. #u12064 {
  8451. border-width:0px;
  8452. position:absolute;
  8453. left:22px;
  8454. top:0px;
  8455. width:40px;
  8456. height:20px;
  8457. display:flex;
  8458. }
  8459. #u12064 .text {
  8460. position:absolute;
  8461. align-self:center;
  8462. padding:2px 2px 2px 3px;
  8463. box-sizing:border-box;
  8464. width:100%;
  8465. }
  8466. #u12064_text {
  8467. border-width:0px;
  8468. white-space:nowrap;
  8469. text-transform:none;
  8470. }
  8471. #u12062_children {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:0px;
  8475. top:0px;
  8476. width:0px;
  8477. height:0px;
  8478. }
  8479. #u12065 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:20px;
  8483. top:20px;
  8484. width:59px;
  8485. height:20px;
  8486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8487. font-weight:400;
  8488. font-style:normal;
  8489. }
  8490. #u12066_div {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:37px;
  8496. height:20px;
  8497. background:inherit;
  8498. background-color:rgba(255, 255, 255, 0);
  8499. border:none;
  8500. border-radius:0px;
  8501. -moz-box-shadow:none;
  8502. -webkit-box-shadow:none;
  8503. box-shadow:none;
  8504. }
  8505. #u12066 {
  8506. border-width:0px;
  8507. position:absolute;
  8508. left:22px;
  8509. top:0px;
  8510. width:37px;
  8511. height:20px;
  8512. display:flex;
  8513. }
  8514. #u12066 .text {
  8515. position:absolute;
  8516. align-self:center;
  8517. padding:2px 2px 2px 3px;
  8518. box-sizing:border-box;
  8519. width:100%;
  8520. }
  8521. #u12066_text {
  8522. border-width:0px;
  8523. white-space:nowrap;
  8524. text-transform:none;
  8525. }
  8526. #u12067 {
  8527. border-width:0px;
  8528. position:absolute;
  8529. left:20px;
  8530. top:40px;
  8531. width:62px;
  8532. height:20px;
  8533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8534. font-weight:400;
  8535. font-style:normal;
  8536. }
  8537. #u12068_div {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:0px;
  8541. top:0px;
  8542. width:40px;
  8543. height:20px;
  8544. background:inherit;
  8545. background-color:rgba(255, 255, 255, 0);
  8546. border:none;
  8547. border-radius:0px;
  8548. -moz-box-shadow:none;
  8549. -webkit-box-shadow:none;
  8550. box-shadow:none;
  8551. }
  8552. #u12068 {
  8553. border-width:0px;
  8554. position:absolute;
  8555. left:22px;
  8556. top:0px;
  8557. width:40px;
  8558. height:20px;
  8559. display:flex;
  8560. }
  8561. #u12068 .text {
  8562. position:absolute;
  8563. align-self:center;
  8564. padding:2px 2px 2px 3px;
  8565. box-sizing:border-box;
  8566. width:100%;
  8567. }
  8568. #u12068_text {
  8569. border-width:0px;
  8570. white-space:nowrap;
  8571. text-transform:none;
  8572. }
  8573. #u12069 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:20px;
  8577. top:60px;
  8578. width:62px;
  8579. height:20px;
  8580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8581. font-weight:400;
  8582. font-style:normal;
  8583. }
  8584. #u12070_div {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:0px;
  8588. top:0px;
  8589. width:40px;
  8590. height:20px;
  8591. background:inherit;
  8592. background-color:rgba(255, 255, 255, 0);
  8593. border:none;
  8594. border-radius:0px;
  8595. -moz-box-shadow:none;
  8596. -webkit-box-shadow:none;
  8597. box-shadow:none;
  8598. }
  8599. #u12070 {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:22px;
  8603. top:0px;
  8604. width:40px;
  8605. height:20px;
  8606. display:flex;
  8607. }
  8608. #u12070 .text {
  8609. position:absolute;
  8610. align-self:center;
  8611. padding:2px 2px 2px 3px;
  8612. box-sizing:border-box;
  8613. width:100%;
  8614. }
  8615. #u12070_text {
  8616. border-width:0px;
  8617. white-space:nowrap;
  8618. text-transform:none;
  8619. }
  8620. #u12071 {
  8621. border-width:0px;
  8622. position:absolute;
  8623. left:20px;
  8624. top:80px;
  8625. width:64px;
  8626. height:20px;
  8627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8628. font-weight:400;
  8629. font-style:normal;
  8630. }
  8631. #u12072_div {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:0px;
  8635. top:0px;
  8636. width:42px;
  8637. height:20px;
  8638. background:inherit;
  8639. background-color:rgba(255, 255, 255, 0);
  8640. border:none;
  8641. border-radius:0px;
  8642. -moz-box-shadow:none;
  8643. -webkit-box-shadow:none;
  8644. box-shadow:none;
  8645. }
  8646. #u12072 {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:22px;
  8650. top:0px;
  8651. width:42px;
  8652. height:20px;
  8653. display:flex;
  8654. }
  8655. #u12072 .text {
  8656. position:absolute;
  8657. align-self:center;
  8658. padding:2px 2px 2px 3px;
  8659. box-sizing:border-box;
  8660. width:100%;
  8661. }
  8662. #u12072_text {
  8663. border-width:0px;
  8664. white-space:nowrap;
  8665. text-transform:none;
  8666. }
  8667. #u12073 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:20px;
  8671. top:100px;
  8672. width:54px;
  8673. height:20px;
  8674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8675. font-weight:400;
  8676. font-style:normal;
  8677. }
  8678. #u12074_div {
  8679. border-width:0px;
  8680. position:absolute;
  8681. left:0px;
  8682. top:0px;
  8683. width:32px;
  8684. height:20px;
  8685. background:inherit;
  8686. background-color:rgba(255, 255, 255, 0);
  8687. border:none;
  8688. border-radius:0px;
  8689. -moz-box-shadow:none;
  8690. -webkit-box-shadow:none;
  8691. box-shadow:none;
  8692. }
  8693. #u12074 {
  8694. border-width:0px;
  8695. position:absolute;
  8696. left:22px;
  8697. top:0px;
  8698. width:32px;
  8699. height:20px;
  8700. display:flex;
  8701. }
  8702. #u12074 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:2px 2px 2px 3px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u12074_text {
  8710. border-width:0px;
  8711. white-space:nowrap;
  8712. text-transform:none;
  8713. }
  8714. #u12075 {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:20px;
  8718. top:440px;
  8719. width:62px;
  8720. height:20px;
  8721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8722. font-weight:400;
  8723. font-style:normal;
  8724. }
  8725. #u12076_img {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:0px;
  8729. top:0px;
  8730. width:9px;
  8731. height:9px;
  8732. }
  8733. #u12076 {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:6px;
  8737. top:6px;
  8738. width:9px;
  8739. height:9px;
  8740. display:flex;
  8741. }
  8742. #u12076 .text {
  8743. position:absolute;
  8744. align-self:center;
  8745. padding:2px 2px 2px 2px;
  8746. box-sizing:border-box;
  8747. width:100%;
  8748. }
  8749. #u12076_img.selected {
  8750. }
  8751. #u12076.selected {
  8752. }
  8753. #u12076_text {
  8754. border-width:0px;
  8755. word-wrap:break-word;
  8756. text-transform:none;
  8757. visibility:hidden;
  8758. }
  8759. #u12077_div {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:0px;
  8763. top:0px;
  8764. width:40px;
  8765. height:20px;
  8766. background:inherit;
  8767. background-color:rgba(255, 255, 255, 0);
  8768. border:none;
  8769. border-radius:0px;
  8770. -moz-box-shadow:none;
  8771. -webkit-box-shadow:none;
  8772. box-shadow:none;
  8773. }
  8774. #u12077 {
  8775. border-width:0px;
  8776. position:absolute;
  8777. left:22px;
  8778. top:0px;
  8779. width:40px;
  8780. height:20px;
  8781. display:flex;
  8782. }
  8783. #u12077 .text {
  8784. position:absolute;
  8785. align-self:center;
  8786. padding:2px 2px 2px 3px;
  8787. box-sizing:border-box;
  8788. width:100%;
  8789. }
  8790. #u12077_text {
  8791. border-width:0px;
  8792. white-space:nowrap;
  8793. text-transform:none;
  8794. }
  8795. #u12075_children {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:0px;
  8799. top:0px;
  8800. width:0px;
  8801. height:0px;
  8802. }
  8803. #u12078 {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:20px;
  8807. top:20px;
  8808. width:97px;
  8809. height:20px;
  8810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8811. font-weight:400;
  8812. font-style:normal;
  8813. }
  8814. #u12079_div {
  8815. border-width:0px;
  8816. position:absolute;
  8817. left:0px;
  8818. top:0px;
  8819. width:75px;
  8820. height:20px;
  8821. background:inherit;
  8822. background-color:rgba(255, 255, 255, 0);
  8823. border:none;
  8824. border-radius:0px;
  8825. -moz-box-shadow:none;
  8826. -webkit-box-shadow:none;
  8827. box-shadow:none;
  8828. }
  8829. #u12079 {
  8830. border-width:0px;
  8831. position:absolute;
  8832. left:22px;
  8833. top:0px;
  8834. width:75px;
  8835. height:20px;
  8836. display:flex;
  8837. }
  8838. #u12079 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 3px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u12079_text {
  8846. border-width:0px;
  8847. white-space:nowrap;
  8848. text-transform:none;
  8849. }
  8850. #u12080 {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:20px;
  8854. top:40px;
  8855. width:97px;
  8856. height:20px;
  8857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. }
  8861. #u12081_div {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:75px;
  8867. height:20px;
  8868. background:inherit;
  8869. background-color:rgba(255, 255, 255, 0);
  8870. border:none;
  8871. border-radius:0px;
  8872. -moz-box-shadow:none;
  8873. -webkit-box-shadow:none;
  8874. box-shadow:none;
  8875. }
  8876. #u12081 {
  8877. border-width:0px;
  8878. position:absolute;
  8879. left:22px;
  8880. top:0px;
  8881. width:75px;
  8882. height:20px;
  8883. display:flex;
  8884. }
  8885. #u12081 .text {
  8886. position:absolute;
  8887. align-self:center;
  8888. padding:2px 2px 2px 3px;
  8889. box-sizing:border-box;
  8890. width:100%;
  8891. }
  8892. #u12081_text {
  8893. border-width:0px;
  8894. white-space:nowrap;
  8895. text-transform:none;
  8896. }
  8897. #u12082 {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:0px;
  8903. height:0px;
  8904. }
  8905. #u12083_div {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:170px;
  8911. height:30px;
  8912. background:inherit;
  8913. background-color:rgba(255, 255, 255, 1);
  8914. box-sizing:border-box;
  8915. border-width:1px;
  8916. border-style:solid;
  8917. border-color:rgba(242, 242, 242, 1);
  8918. border-radius:4px;
  8919. -moz-box-shadow:none;
  8920. -webkit-box-shadow:none;
  8921. box-shadow:none;
  8922. font-family:'Microsoft YaHei', sans-serif;
  8923. font-weight:400;
  8924. font-style:normal;
  8925. font-size:14px;
  8926. color:#CCCCCC;
  8927. text-align:left;
  8928. }
  8929. #u12083 {
  8930. border-width:0px;
  8931. position:absolute;
  8932. left:350px;
  8933. top:199px;
  8934. width:170px;
  8935. height:30px;
  8936. display:flex;
  8937. font-family:'Microsoft YaHei', sans-serif;
  8938. font-weight:400;
  8939. font-style:normal;
  8940. font-size:14px;
  8941. color:#CCCCCC;
  8942. text-align:left;
  8943. }
  8944. #u12083 .text {
  8945. position:absolute;
  8946. align-self:center;
  8947. padding:2px 8px 2px 8px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u12083_text {
  8952. border-width:0px;
  8953. word-wrap:break-word;
  8954. text-transform:none;
  8955. visibility:hidden;
  8956. }
  8957. #u12084_input {
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:133px;
  8962. height:26px;
  8963. padding:2px 2px 2px 2px;
  8964. font-family:'Microsoft YaHei', sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:14px;
  8968. letter-spacing:normal;
  8969. color:#000000;
  8970. vertical-align:none;
  8971. text-align:left;
  8972. text-transform:none;
  8973. background-color:transparent;
  8974. border-color:transparent;
  8975. }
  8976. #u12084_input.disabled {
  8977. position:absolute;
  8978. left:0px;
  8979. top:0px;
  8980. width:133px;
  8981. height:26px;
  8982. padding:2px 2px 2px 2px;
  8983. font-family:'Microsoft YaHei', sans-serif;
  8984. font-weight:400;
  8985. font-style:normal;
  8986. font-size:14px;
  8987. letter-spacing:normal;
  8988. color:#000000;
  8989. vertical-align:none;
  8990. text-align:left;
  8991. text-transform:none;
  8992. background-color:transparent;
  8993. border-color:transparent;
  8994. }
  8995. #u12084_div {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:133px;
  9001. height:26px;
  9002. background:inherit;
  9003. background-color:rgba(255, 255, 255, 1);
  9004. border:none;
  9005. border-radius:0px;
  9006. -moz-box-shadow:none;
  9007. -webkit-box-shadow:none;
  9008. box-shadow:none;
  9009. font-family:'Microsoft YaHei', sans-serif;
  9010. font-weight:400;
  9011. font-style:normal;
  9012. font-size:14px;
  9013. }
  9014. #u12084 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:355px;
  9018. top:201px;
  9019. width:133px;
  9020. height:26px;
  9021. display:flex;
  9022. font-family:'Microsoft YaHei', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:14px;
  9026. }
  9027. #u12084 .text {
  9028. position:absolute;
  9029. align-self:center;
  9030. padding:2px 2px 2px 2px;
  9031. box-sizing:border-box;
  9032. width:100%;
  9033. }
  9034. #u12084_div.disabled {
  9035. border-width:0px;
  9036. position:absolute;
  9037. left:0px;
  9038. top:0px;
  9039. width:133px;
  9040. height:26px;
  9041. background:inherit;
  9042. background-color:rgba(240, 240, 240, 1);
  9043. border:none;
  9044. border-radius:0px;
  9045. -moz-box-shadow:none;
  9046. -webkit-box-shadow:none;
  9047. box-shadow:none;
  9048. font-family:'Microsoft YaHei', sans-serif;
  9049. font-weight:400;
  9050. font-style:normal;
  9051. font-size:14px;
  9052. }
  9053. #u12084.disabled {
  9054. }
  9055. #u12085_img {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:14px;
  9061. height:14px;
  9062. }
  9063. #u12085 {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:496px;
  9067. top:208px;
  9068. width:14px;
  9069. height:14px;
  9070. display:flex;
  9071. }
  9072. #u12085 .text {
  9073. position:absolute;
  9074. align-self:center;
  9075. padding:2px 2px 2px 2px;
  9076. box-sizing:border-box;
  9077. width:100%;
  9078. }
  9079. #u12085_text {
  9080. border-width:0px;
  9081. word-wrap:break-word;
  9082. text-transform:none;
  9083. visibility:hidden;
  9084. }
  9085. #u12086 {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:0px;
  9091. height:0px;
  9092. }
  9093. #u12087_div {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:109px;
  9099. height:30px;
  9100. background:inherit;
  9101. background-color:rgba(255, 255, 255, 0);
  9102. border:none;
  9103. border-radius:0px;
  9104. -moz-box-shadow:none;
  9105. -webkit-box-shadow:none;
  9106. box-shadow:none;
  9107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9108. font-weight:400;
  9109. font-style:normal;
  9110. font-size:18px;
  9111. color:#000000;
  9112. line-height:30px;
  9113. }
  9114. #u12087 {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:350px;
  9118. top:160px;
  9119. width:109px;
  9120. height:30px;
  9121. display:flex;
  9122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9123. font-weight:400;
  9124. font-style:normal;
  9125. font-size:18px;
  9126. color:#000000;
  9127. line-height:30px;
  9128. }
  9129. #u12087 .text {
  9130. position:absolute;
  9131. align-self:flex-start;
  9132. padding:0px 0px 0px 0px;
  9133. box-sizing:border-box;
  9134. width:100%;
  9135. }
  9136. #u12087_text {
  9137. border-width:0px;
  9138. white-space:nowrap;
  9139. text-transform:none;
  9140. }
  9141. #u12088_img {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:12px;
  9147. height:7px;
  9148. }
  9149. #u12088 {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:471px;
  9153. top:171px;
  9154. width:12px;
  9155. height:7px;
  9156. display:flex;
  9157. }
  9158. #u12088 .text {
  9159. position:absolute;
  9160. align-self:center;
  9161. padding:2px 2px 2px 2px;
  9162. box-sizing:border-box;
  9163. width:100%;
  9164. }
  9165. #u12088_text {
  9166. border-width:0px;
  9167. word-wrap:break-word;
  9168. text-transform:none;
  9169. visibility:hidden;
  9170. }
  9171. #u12089_div {
  9172. border-width:0px;
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:145px;
  9177. height:30px;
  9178. background:inherit;
  9179. background-color:rgba(255, 255, 255, 0);
  9180. border:none;
  9181. border-radius:0px;
  9182. -moz-box-shadow:none;
  9183. -webkit-box-shadow:none;
  9184. box-shadow:none;
  9185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9186. font-weight:400;
  9187. font-style:normal;
  9188. font-size:18px;
  9189. color:#000000;
  9190. line-height:30px;
  9191. }
  9192. #u12089 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:563px;
  9196. top:160px;
  9197. width:145px;
  9198. height:30px;
  9199. display:flex;
  9200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9201. font-weight:400;
  9202. font-style:normal;
  9203. font-size:18px;
  9204. color:#000000;
  9205. line-height:30px;
  9206. }
  9207. #u12089 .text {
  9208. position:absolute;
  9209. align-self:flex-start;
  9210. padding:0px 0px 0px 0px;
  9211. box-sizing:border-box;
  9212. width:100%;
  9213. }
  9214. #u12089_text {
  9215. border-width:0px;
  9216. white-space:nowrap;
  9217. text-transform:none;
  9218. }
  9219. #u12090 {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:0px;
  9225. height:0px;
  9226. }
  9227. #u12091_div {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:0px;
  9231. top:0px;
  9232. width:140px;
  9233. height:30px;
  9234. background:inherit;
  9235. background-color:rgba(255, 255, 255, 1);
  9236. box-sizing:border-box;
  9237. border-width:1px;
  9238. border-style:solid;
  9239. border-color:rgba(215, 215, 215, 1);
  9240. border-radius:4px;
  9241. -moz-box-shadow:none;
  9242. -webkit-box-shadow:none;
  9243. box-shadow:none;
  9244. font-size:14px;
  9245. }
  9246. #u12091 {
  9247. border-width:0px;
  9248. position:absolute;
  9249. left:1161px;
  9250. top:199px;
  9251. width:140px;
  9252. height:30px;
  9253. display:flex;
  9254. font-size:14px;
  9255. }
  9256. #u12091 .text {
  9257. position:absolute;
  9258. align-self:center;
  9259. padding:2px 2px 2px 2px;
  9260. box-sizing:border-box;
  9261. width:100%;
  9262. }
  9263. #u12091_text {
  9264. border-width:0px;
  9265. word-wrap:break-word;
  9266. text-transform:none;
  9267. visibility:hidden;
  9268. }
  9269. #u12092_input {
  9270. position:absolute;
  9271. left:0px;
  9272. top:0px;
  9273. width:134px;
  9274. height:23px;
  9275. padding:2px 2px 2px 2px;
  9276. font-family:'ArialMT', 'Arial', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:14px;
  9280. letter-spacing:normal;
  9281. color:#AAAAAA;
  9282. vertical-align:none;
  9283. text-align:left;
  9284. text-transform:none;
  9285. background-color:transparent;
  9286. border-color:transparent;
  9287. }
  9288. #u12092_input.disabled {
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:134px;
  9293. height:23px;
  9294. padding:2px 2px 2px 2px;
  9295. font-family:'ArialMT', 'Arial', sans-serif;
  9296. font-weight:400;
  9297. font-style:normal;
  9298. font-size:14px;
  9299. letter-spacing:normal;
  9300. color:#AAAAAA;
  9301. vertical-align:none;
  9302. text-align:left;
  9303. text-transform:none;
  9304. background-color:transparent;
  9305. border-color:transparent;
  9306. }
  9307. #u12092_div {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:134px;
  9313. height:23px;
  9314. background:inherit;
  9315. background-color:rgba(255, 255, 255, 1);
  9316. border:none;
  9317. border-radius:0px;
  9318. -moz-box-shadow:none;
  9319. -webkit-box-shadow:none;
  9320. box-shadow:none;
  9321. font-size:14px;
  9322. color:#AAAAAA;
  9323. }
  9324. #u12092 {
  9325. border-width:0px;
  9326. position:absolute;
  9327. left:1165px;
  9328. top:201px;
  9329. width:134px;
  9330. height:23px;
  9331. display:flex;
  9332. font-size:14px;
  9333. color:#AAAAAA;
  9334. }
  9335. #u12092 .text {
  9336. position:absolute;
  9337. align-self:flex-start;
  9338. padding:2px 2px 2px 2px;
  9339. box-sizing:border-box;
  9340. width:100%;
  9341. }
  9342. #u12092_div.disabled {
  9343. border-width:0px;
  9344. position:absolute;
  9345. left:0px;
  9346. top:0px;
  9347. width:134px;
  9348. height:23px;
  9349. background:inherit;
  9350. background-color:rgba(240, 240, 240, 1);
  9351. border:none;
  9352. border-radius:0px;
  9353. -moz-box-shadow:none;
  9354. -webkit-box-shadow:none;
  9355. box-shadow:none;
  9356. font-size:14px;
  9357. color:#AAAAAA;
  9358. }
  9359. #u12092.disabled {
  9360. }
  9361. .u12092_input_option {
  9362. font-size:14px;
  9363. }
  9364. #u12093_div {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:0px;
  9368. top:0px;
  9369. width:60px;
  9370. height:30px;
  9371. background:inherit;
  9372. background-color:rgba(255, 255, 255, 1);
  9373. box-sizing:border-box;
  9374. border-width:1px;
  9375. border-style:solid;
  9376. border-color:rgba(170, 170, 170, 1);
  9377. border-radius:4px;
  9378. -moz-box-shadow:none;
  9379. -webkit-box-shadow:none;
  9380. box-shadow:none;
  9381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:14px;
  9385. }
  9386. #u12093 {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:1508px;
  9390. top:60px;
  9391. width:60px;
  9392. height:30px;
  9393. display:flex;
  9394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9395. font-weight:400;
  9396. font-style:normal;
  9397. font-size:14px;
  9398. }
  9399. #u12093 .text {
  9400. position:absolute;
  9401. align-self:center;
  9402. padding:2px 2px 2px 2px;
  9403. box-sizing:border-box;
  9404. width:100%;
  9405. }
  9406. #u12093_text {
  9407. border-width:0px;
  9408. word-wrap:break-word;
  9409. text-transform:none;
  9410. }
  9411. #u12094 {
  9412. border-width:0px;
  9413. position:absolute;
  9414. left:0px;
  9415. top:0px;
  9416. width:0px;
  9417. height:0px;
  9418. }
  9419. #u12095_div {
  9420. border-width:0px;
  9421. position:absolute;
  9422. left:0px;
  9423. top:0px;
  9424. width:80px;
  9425. height:100px;
  9426. background:inherit;
  9427. background-color:rgba(255, 255, 255, 1);
  9428. box-sizing:border-box;
  9429. border-width:1px;
  9430. border-style:solid;
  9431. border-color:rgba(242, 242, 242, 1);
  9432. border-radius:4px;
  9433. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9434. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9435. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9437. font-weight:400;
  9438. font-style:normal;
  9439. font-size:14px;
  9440. text-align:left;
  9441. }
  9442. #u12095 {
  9443. border-width:0px;
  9444. position:absolute;
  9445. left:1488px;
  9446. top:401px;
  9447. width:80px;
  9448. height:100px;
  9449. display:flex;
  9450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9451. font-weight:400;
  9452. font-style:normal;
  9453. font-size:14px;
  9454. text-align:left;
  9455. }
  9456. #u12095 .text {
  9457. position:absolute;
  9458. align-self:center;
  9459. padding:2px 2px 2px 2px;
  9460. box-sizing:border-box;
  9461. width:100%;
  9462. }
  9463. #u12095_text {
  9464. border-width:0px;
  9465. word-wrap:break-word;
  9466. text-transform:none;
  9467. visibility:hidden;
  9468. }
  9469. #u12096_div {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:0px;
  9473. top:0px;
  9474. width:66px;
  9475. height:40px;
  9476. background:inherit;
  9477. background-color:rgba(255, 255, 255, 1);
  9478. border:none;
  9479. border-left:0px;
  9480. border-top:0px;
  9481. border-right:0px;
  9482. border-radius:0px;
  9483. border-bottom-right-radius:0px;
  9484. border-bottom-left-radius:0px;
  9485. -moz-box-shadow:none;
  9486. -webkit-box-shadow:none;
  9487. box-shadow:none;
  9488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9489. font-weight:400;
  9490. font-style:normal;
  9491. font-size:14px;
  9492. }
  9493. #u12096 {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:1494px;
  9497. top:451px;
  9498. width:66px;
  9499. height:40px;
  9500. display:flex;
  9501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9502. font-weight:400;
  9503. font-style:normal;
  9504. font-size:14px;
  9505. }
  9506. #u12096 .text {
  9507. position:absolute;
  9508. align-self:center;
  9509. padding:2px 2px 2px 2px;
  9510. box-sizing:border-box;
  9511. width:100%;
  9512. }
  9513. #u12096_text {
  9514. border-width:0px;
  9515. word-wrap:break-word;
  9516. text-transform:none;
  9517. }
  9518. #u12097_div {
  9519. border-width:0px;
  9520. position:absolute;
  9521. left:0px;
  9522. top:0px;
  9523. width:66px;
  9524. height:40px;
  9525. background:inherit;
  9526. background-color:rgba(255, 255, 255, 1);
  9527. box-sizing:border-box;
  9528. border-width:1px;
  9529. border-style:solid;
  9530. border-color:rgba(215, 215, 215, 1);
  9531. border-left:0px;
  9532. border-top:0px;
  9533. border-right:0px;
  9534. border-radius:0px;
  9535. border-bottom-right-radius:0px;
  9536. border-bottom-left-radius:0px;
  9537. -moz-box-shadow:none;
  9538. -webkit-box-shadow:none;
  9539. box-shadow:none;
  9540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9541. font-weight:400;
  9542. font-style:normal;
  9543. font-size:14px;
  9544. }
  9545. #u12097 {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:1494px;
  9549. top:411px;
  9550. width:66px;
  9551. height:40px;
  9552. display:flex;
  9553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9554. font-weight:400;
  9555. font-style:normal;
  9556. font-size:14px;
  9557. }
  9558. #u12097 .text {
  9559. position:absolute;
  9560. align-self:center;
  9561. padding:2px 2px 2px 2px;
  9562. box-sizing:border-box;
  9563. width:100%;
  9564. }
  9565. #u12097_text {
  9566. border-width:0px;
  9567. word-wrap:break-word;
  9568. text-transform:none;
  9569. }
  9570. #u12099 {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:0px;
  9574. top:0px;
  9575. width:0px;
  9576. height:0px;
  9577. }
  9578. #u12100_div {
  9579. border-width:0px;
  9580. position:absolute;
  9581. left:0px;
  9582. top:0px;
  9583. width:200px;
  9584. height:1190px;
  9585. background:inherit;
  9586. background-color:rgba(255, 255, 255, 1);
  9587. border:none;
  9588. border-radius:0px;
  9589. -moz-box-shadow:none;
  9590. -webkit-box-shadow:none;
  9591. box-shadow:none;
  9592. }
  9593. #u12100 {
  9594. border-width:0px;
  9595. position:absolute;
  9596. left:120px;
  9597. top:50px;
  9598. width:200px;
  9599. height:1190px;
  9600. display:flex;
  9601. }
  9602. #u12100 .text {
  9603. position:absolute;
  9604. align-self:center;
  9605. padding:2px 2px 2px 2px;
  9606. box-sizing:border-box;
  9607. width:100%;
  9608. }
  9609. #u12100_text {
  9610. border-width:0px;
  9611. word-wrap:break-word;
  9612. text-transform:none;
  9613. visibility:hidden;
  9614. }
  9615. #u12101_div {
  9616. border-width:0px;
  9617. position:absolute;
  9618. left:0px;
  9619. top:0px;
  9620. width:200px;
  9621. height:60px;
  9622. background:inherit;
  9623. background-color:rgba(224, 231, 247, 1);
  9624. border:none;
  9625. border-radius:0px;
  9626. -moz-box-shadow:none;
  9627. -webkit-box-shadow:none;
  9628. box-shadow:none;
  9629. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9630. font-weight:500;
  9631. font-style:normal;
  9632. font-size:18px;
  9633. }
  9634. #u12101 {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:120px;
  9638. top:50px;
  9639. width:200px;
  9640. height:60px;
  9641. display:flex;
  9642. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9643. font-weight:500;
  9644. font-style:normal;
  9645. font-size:18px;
  9646. }
  9647. #u12101 .text {
  9648. position:absolute;
  9649. align-self:center;
  9650. padding:0px 0px 0px 20px;
  9651. box-sizing:border-box;
  9652. width:100%;
  9653. }
  9654. #u12101_text {
  9655. border-width:0px;
  9656. word-wrap:break-word;
  9657. text-transform:none;
  9658. }
  9659. #u12102_div {
  9660. border-width:0px;
  9661. position:absolute;
  9662. left:0px;
  9663. top:0px;
  9664. width:65px;
  9665. height:22px;
  9666. background:inherit;
  9667. background-color:rgba(255, 255, 255, 0);
  9668. border:none;
  9669. border-radius:0px;
  9670. -moz-box-shadow:none;
  9671. -webkit-box-shadow:none;
  9672. box-shadow:none;
  9673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9674. font-weight:400;
  9675. font-style:normal;
  9676. font-size:16px;
  9677. }
  9678. #u12102 {
  9679. border-width:0px;
  9680. position:absolute;
  9681. left:145px;
  9682. top:536px;
  9683. width:65px;
  9684. height:22px;
  9685. display:flex;
  9686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9687. font-weight:400;
  9688. font-style:normal;
  9689. font-size:16px;
  9690. }
  9691. #u12102 .text {
  9692. position:absolute;
  9693. align-self:flex-start;
  9694. padding:0px 0px 0px 0px;
  9695. box-sizing:border-box;
  9696. width:100%;
  9697. }
  9698. #u12102_text {
  9699. border-width:0px;
  9700. white-space:nowrap;
  9701. text-transform:none;
  9702. }
  9703. #u12103_div {
  9704. border-width:0px;
  9705. position:absolute;
  9706. left:0px;
  9707. top:0px;
  9708. width:49px;
  9709. height:17px;
  9710. background:inherit;
  9711. background-color:rgba(255, 255, 255, 0);
  9712. border:none;
  9713. border-radius:0px;
  9714. -moz-box-shadow:none;
  9715. -webkit-box-shadow:none;
  9716. box-shadow:none;
  9717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9718. font-weight:400;
  9719. font-style:normal;
  9720. font-size:12px;
  9721. color:#AAAAAA;
  9722. }
  9723. #u12103 {
  9724. border-width:0px;
  9725. position:absolute;
  9726. left:143px;
  9727. top:499px;
  9728. width:49px;
  9729. height:17px;
  9730. display:flex;
  9731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9732. font-weight:400;
  9733. font-style:normal;
  9734. font-size:12px;
  9735. color:#AAAAAA;
  9736. }
  9737. #u12103 .text {
  9738. position:absolute;
  9739. align-self:flex-start;
  9740. padding:0px 0px 0px 0px;
  9741. box-sizing:border-box;
  9742. width:100%;
  9743. }
  9744. #u12103_text {
  9745. border-width:0px;
  9746. white-space:nowrap;
  9747. text-transform:none;
  9748. }
  9749. #u12104_div {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:0px;
  9753. top:0px;
  9754. width:49px;
  9755. height:17px;
  9756. background:inherit;
  9757. background-color:rgba(255, 255, 255, 0);
  9758. border:none;
  9759. border-radius:0px;
  9760. -moz-box-shadow:none;
  9761. -webkit-box-shadow:none;
  9762. box-shadow:none;
  9763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9764. font-weight:400;
  9765. font-style:normal;
  9766. font-size:12px;
  9767. color:#AAAAAA;
  9768. }
  9769. #u12104 {
  9770. border-width:0px;
  9771. position:absolute;
  9772. left:144px;
  9773. top:131px;
  9774. width:49px;
  9775. height:17px;
  9776. display:flex;
  9777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9778. font-weight:400;
  9779. font-style:normal;
  9780. font-size:12px;
  9781. color:#AAAAAA;
  9782. }
  9783. #u12104 .text {
  9784. position:absolute;
  9785. align-self:flex-start;
  9786. padding:0px 0px 0px 0px;
  9787. box-sizing:border-box;
  9788. width:100%;
  9789. }
  9790. #u12104_text {
  9791. border-width:0px;
  9792. white-space:nowrap;
  9793. text-transform:none;
  9794. }
  9795. #u12105_div {
  9796. border-width:0px;
  9797. position:absolute;
  9798. left:0px;
  9799. top:0px;
  9800. width:65px;
  9801. height:22px;
  9802. background:inherit;
  9803. background-color:rgba(255, 255, 255, 0);
  9804. border:none;
  9805. border-radius:0px;
  9806. -moz-box-shadow:none;
  9807. -webkit-box-shadow:none;
  9808. box-shadow:none;
  9809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9810. font-weight:400;
  9811. font-style:normal;
  9812. font-size:16px;
  9813. }
  9814. #u12105 {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:146px;
  9818. top:168px;
  9819. width:65px;
  9820. height:22px;
  9821. display:flex;
  9822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9823. font-weight:400;
  9824. font-style:normal;
  9825. font-size:16px;
  9826. }
  9827. #u12105 .text {
  9828. position:absolute;
  9829. align-self:flex-start;
  9830. padding:0px 0px 0px 0px;
  9831. box-sizing:border-box;
  9832. width:100%;
  9833. }
  9834. #u12105_text {
  9835. border-width:0px;
  9836. white-space:nowrap;
  9837. text-transform:none;
  9838. }
  9839. #u12106_img {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:0px;
  9843. top:0px;
  9844. width:201px;
  9845. height:2px;
  9846. }
  9847. #u12106 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:120px;
  9851. top:478px;
  9852. width:200px;
  9853. height:1px;
  9854. display:flex;
  9855. }
  9856. #u12106 .text {
  9857. position:absolute;
  9858. align-self:center;
  9859. padding:2px 2px 2px 2px;
  9860. box-sizing:border-box;
  9861. width:100%;
  9862. }
  9863. #u12106_text {
  9864. border-width:0px;
  9865. word-wrap:break-word;
  9866. text-transform:none;
  9867. visibility:hidden;
  9868. }
  9869. #u12107_div {
  9870. border-width:0px;
  9871. position:absolute;
  9872. left:0px;
  9873. top:0px;
  9874. width:65px;
  9875. height:22px;
  9876. background:inherit;
  9877. background-color:rgba(255, 255, 255, 0);
  9878. border:none;
  9879. border-radius:0px;
  9880. -moz-box-shadow:none;
  9881. -webkit-box-shadow:none;
  9882. box-shadow:none;
  9883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9884. font-weight:400;
  9885. font-style:normal;
  9886. font-size:16px;
  9887. }
  9888. #u12107 {
  9889. border-width:0px;
  9890. position:absolute;
  9891. left:145px;
  9892. top:578px;
  9893. width:65px;
  9894. height:22px;
  9895. display:flex;
  9896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9897. font-weight:400;
  9898. font-style:normal;
  9899. font-size:16px;
  9900. }
  9901. #u12107 .text {
  9902. position:absolute;
  9903. align-self:flex-start;
  9904. padding:0px 0px 0px 0px;
  9905. box-sizing:border-box;
  9906. width:100%;
  9907. }
  9908. #u12107_text {
  9909. border-width:0px;
  9910. white-space:nowrap;
  9911. text-transform:none;
  9912. }
  9913. #u12108_div {
  9914. border-width:0px;
  9915. position:absolute;
  9916. left:0px;
  9917. top:0px;
  9918. width:49px;
  9919. height:17px;
  9920. background:inherit;
  9921. background-color:rgba(255, 255, 255, 0);
  9922. border:none;
  9923. border-radius:0px;
  9924. -moz-box-shadow:none;
  9925. -webkit-box-shadow:none;
  9926. box-shadow:none;
  9927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9928. font-weight:400;
  9929. font-style:normal;
  9930. font-size:12px;
  9931. color:#AAAAAA;
  9932. }
  9933. #u12108 {
  9934. border-width:0px;
  9935. position:absolute;
  9936. left:144px;
  9937. top:315px;
  9938. width:49px;
  9939. height:17px;
  9940. display:flex;
  9941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9942. font-weight:400;
  9943. font-style:normal;
  9944. font-size:12px;
  9945. color:#AAAAAA;
  9946. }
  9947. #u12108 .text {
  9948. position:absolute;
  9949. align-self:flex-start;
  9950. padding:0px 0px 0px 0px;
  9951. box-sizing:border-box;
  9952. width:100%;
  9953. }
  9954. #u12108_text {
  9955. border-width:0px;
  9956. white-space:nowrap;
  9957. text-transform:none;
  9958. }
  9959. #u12109_img {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:201px;
  9965. height:2px;
  9966. }
  9967. #u12109 {
  9968. border-width:0px;
  9969. position:absolute;
  9970. left:121px;
  9971. top:294px;
  9972. width:200px;
  9973. height:1px;
  9974. display:flex;
  9975. }
  9976. #u12109 .text {
  9977. position:absolute;
  9978. align-self:center;
  9979. padding:2px 2px 2px 2px;
  9980. box-sizing:border-box;
  9981. width:100%;
  9982. }
  9983. #u12109_text {
  9984. border-width:0px;
  9985. word-wrap:break-word;
  9986. text-transform:none;
  9987. visibility:hidden;
  9988. }
  9989. #u12110_div {
  9990. border-width:0px;
  9991. position:absolute;
  9992. left:0px;
  9993. top:0px;
  9994. width:65px;
  9995. height:22px;
  9996. background:inherit;
  9997. background-color:rgba(255, 255, 255, 0);
  9998. border:none;
  9999. border-radius:0px;
  10000. -moz-box-shadow:none;
  10001. -webkit-box-shadow:none;
  10002. box-shadow:none;
  10003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10004. font-weight:400;
  10005. font-style:normal;
  10006. font-size:16px;
  10007. }
  10008. #u12110 {
  10009. border-width:0px;
  10010. position:absolute;
  10011. left:146px;
  10012. top:352px;
  10013. width:65px;
  10014. height:22px;
  10015. display:flex;
  10016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10017. font-weight:400;
  10018. font-style:normal;
  10019. font-size:16px;
  10020. }
  10021. #u12110 .text {
  10022. position:absolute;
  10023. align-self:flex-start;
  10024. padding:0px 0px 0px 0px;
  10025. box-sizing:border-box;
  10026. width:100%;
  10027. }
  10028. #u12110_text {
  10029. border-width:0px;
  10030. white-space:nowrap;
  10031. text-transform:none;
  10032. }
  10033. #u12111_div {
  10034. border-width:0px;
  10035. position:absolute;
  10036. left:0px;
  10037. top:0px;
  10038. width:65px;
  10039. height:22px;
  10040. background:inherit;
  10041. background-color:rgba(255, 255, 255, 0);
  10042. border:none;
  10043. border-radius:0px;
  10044. -moz-box-shadow:none;
  10045. -webkit-box-shadow:none;
  10046. box-shadow:none;
  10047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10048. font-weight:400;
  10049. font-style:normal;
  10050. font-size:16px;
  10051. }
  10052. #u12111 {
  10053. border-width:0px;
  10054. position:absolute;
  10055. left:146px;
  10056. top:394px;
  10057. width:65px;
  10058. height:22px;
  10059. display:flex;
  10060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10061. font-weight:400;
  10062. font-style:normal;
  10063. font-size:16px;
  10064. }
  10065. #u12111 .text {
  10066. position:absolute;
  10067. align-self:flex-start;
  10068. padding:0px 0px 0px 0px;
  10069. box-sizing:border-box;
  10070. width:100%;
  10071. }
  10072. #u12111_text {
  10073. border-width:0px;
  10074. white-space:nowrap;
  10075. text-transform:none;
  10076. }
  10077. #u12112_div {
  10078. border-width:0px;
  10079. position:absolute;
  10080. left:0px;
  10081. top:0px;
  10082. width:65px;
  10083. height:22px;
  10084. background:inherit;
  10085. background-color:rgba(255, 255, 255, 0);
  10086. border:none;
  10087. border-radius:0px;
  10088. -moz-box-shadow:none;
  10089. -webkit-box-shadow:none;
  10090. box-shadow:none;
  10091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10092. font-weight:400;
  10093. font-style:normal;
  10094. font-size:16px;
  10095. }
  10096. #u12112 {
  10097. border-width:0px;
  10098. position:absolute;
  10099. left:145px;
  10100. top:886px;
  10101. width:65px;
  10102. height:22px;
  10103. display:flex;
  10104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10105. font-weight:400;
  10106. font-style:normal;
  10107. font-size:16px;
  10108. }
  10109. #u12112 .text {
  10110. position:absolute;
  10111. align-self:flex-start;
  10112. padding:0px 0px 0px 0px;
  10113. box-sizing:border-box;
  10114. width:100%;
  10115. }
  10116. #u12112_text {
  10117. border-width:0px;
  10118. white-space:nowrap;
  10119. text-transform:none;
  10120. }
  10121. #u12113_div {
  10122. border-width:0px;
  10123. position:absolute;
  10124. left:0px;
  10125. top:0px;
  10126. width:97px;
  10127. height:22px;
  10128. background:inherit;
  10129. background-color:rgba(255, 255, 255, 0);
  10130. border:none;
  10131. border-radius:0px;
  10132. -moz-box-shadow:none;
  10133. -webkit-box-shadow:none;
  10134. box-shadow:none;
  10135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10136. font-weight:400;
  10137. font-style:normal;
  10138. font-size:16px;
  10139. }
  10140. #u12113 {
  10141. border-width:0px;
  10142. position:absolute;
  10143. left:145px;
  10144. top:678px;
  10145. width:97px;
  10146. height:22px;
  10147. display:flex;
  10148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10149. font-weight:400;
  10150. font-style:normal;
  10151. font-size:16px;
  10152. }
  10153. #u12113 .text {
  10154. position:absolute;
  10155. align-self:flex-start;
  10156. padding:0px 0px 0px 0px;
  10157. box-sizing:border-box;
  10158. width:100%;
  10159. }
  10160. #u12113_text {
  10161. border-width:0px;
  10162. white-space:nowrap;
  10163. text-transform:none;
  10164. }
  10165. #u12114_div {
  10166. border-width:0px;
  10167. position:absolute;
  10168. left:0px;
  10169. top:0px;
  10170. width:49px;
  10171. height:17px;
  10172. background:inherit;
  10173. background-color:rgba(255, 255, 255, 0);
  10174. border:none;
  10175. border-radius:0px;
  10176. -moz-box-shadow:none;
  10177. -webkit-box-shadow:none;
  10178. box-shadow:none;
  10179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10180. font-weight:400;
  10181. font-style:normal;
  10182. font-size:12px;
  10183. color:#AAAAAA;
  10184. }
  10185. #u12114 {
  10186. border-width:0px;
  10187. position:absolute;
  10188. left:143px;
  10189. top:641px;
  10190. width:49px;
  10191. height:17px;
  10192. display:flex;
  10193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10194. font-weight:400;
  10195. font-style:normal;
  10196. font-size:12px;
  10197. color:#AAAAAA;
  10198. }
  10199. #u12114 .text {
  10200. position:absolute;
  10201. align-self:flex-start;
  10202. padding:0px 0px 0px 0px;
  10203. box-sizing:border-box;
  10204. width:100%;
  10205. }
  10206. #u12114_text {
  10207. border-width:0px;
  10208. white-space:nowrap;
  10209. text-transform:none;
  10210. }
  10211. #u12115_img {
  10212. border-width:0px;
  10213. position:absolute;
  10214. left:0px;
  10215. top:0px;
  10216. width:201px;
  10217. height:2px;
  10218. }
  10219. #u12115 {
  10220. border-width:0px;
  10221. position:absolute;
  10222. left:120px;
  10223. top:620px;
  10224. width:200px;
  10225. height:1px;
  10226. display:flex;
  10227. }
  10228. #u12115 .text {
  10229. position:absolute;
  10230. align-self:center;
  10231. padding:2px 2px 2px 2px;
  10232. box-sizing:border-box;
  10233. width:100%;
  10234. }
  10235. #u12115_text {
  10236. border-width:0px;
  10237. word-wrap:break-word;
  10238. text-transform:none;
  10239. visibility:hidden;
  10240. }
  10241. #u12116_div {
  10242. border-width:0px;
  10243. position:absolute;
  10244. left:0px;
  10245. top:0px;
  10246. width:97px;
  10247. height:22px;
  10248. background:inherit;
  10249. background-color:rgba(255, 255, 255, 0);
  10250. border:none;
  10251. border-radius:0px;
  10252. -moz-box-shadow:none;
  10253. -webkit-box-shadow:none;
  10254. box-shadow:none;
  10255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10256. font-weight:400;
  10257. font-style:normal;
  10258. font-size:16px;
  10259. }
  10260. #u12116 {
  10261. border-width:0px;
  10262. position:absolute;
  10263. left:145px;
  10264. top:760px;
  10265. width:97px;
  10266. height:22px;
  10267. display:flex;
  10268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10269. font-weight:400;
  10270. font-style:normal;
  10271. font-size:16px;
  10272. }
  10273. #u12116 .text {
  10274. position:absolute;
  10275. align-self:flex-start;
  10276. padding:0px 0px 0px 0px;
  10277. box-sizing:border-box;
  10278. width:100%;
  10279. }
  10280. #u12116_text {
  10281. border-width:0px;
  10282. white-space:nowrap;
  10283. text-transform:none;
  10284. }
  10285. #u12117_div {
  10286. border-width:0px;
  10287. position:absolute;
  10288. left:0px;
  10289. top:0px;
  10290. width:97px;
  10291. height:22px;
  10292. background:inherit;
  10293. background-color:rgba(255, 255, 255, 0);
  10294. border:none;
  10295. border-radius:0px;
  10296. -moz-box-shadow:none;
  10297. -webkit-box-shadow:none;
  10298. box-shadow:none;
  10299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10300. font-weight:400;
  10301. font-style:normal;
  10302. font-size:16px;
  10303. }
  10304. #u12117 {
  10305. border-width:0px;
  10306. position:absolute;
  10307. left:145px;
  10308. top:802px;
  10309. width:97px;
  10310. height:22px;
  10311. display:flex;
  10312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10313. font-weight:400;
  10314. font-style:normal;
  10315. font-size:16px;
  10316. }
  10317. #u12117 .text {
  10318. position:absolute;
  10319. align-self:flex-start;
  10320. padding:0px 0px 0px 0px;
  10321. box-sizing:border-box;
  10322. width:100%;
  10323. }
  10324. #u12117_text {
  10325. border-width:0px;
  10326. white-space:nowrap;
  10327. text-transform:none;
  10328. }
  10329. #u12118_div {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:0px;
  10333. top:0px;
  10334. width:65px;
  10335. height:22px;
  10336. background:inherit;
  10337. background-color:rgba(255, 255, 255, 0);
  10338. border:none;
  10339. border-radius:0px;
  10340. -moz-box-shadow:none;
  10341. -webkit-box-shadow:none;
  10342. box-shadow:none;
  10343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10344. font-weight:400;
  10345. font-style:normal;
  10346. font-size:16px;
  10347. }
  10348. #u12118 {
  10349. border-width:0px;
  10350. position:absolute;
  10351. left:145px;
  10352. top:986px;
  10353. width:65px;
  10354. height:22px;
  10355. display:flex;
  10356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10357. font-weight:400;
  10358. font-style:normal;
  10359. font-size:16px;
  10360. }
  10361. #u12118 .text {
  10362. position:absolute;
  10363. align-self:flex-start;
  10364. padding:0px 0px 0px 0px;
  10365. box-sizing:border-box;
  10366. width:100%;
  10367. }
  10368. #u12118_text {
  10369. border-width:0px;
  10370. white-space:nowrap;
  10371. text-transform:none;
  10372. }
  10373. #u12119_div {
  10374. border-width:0px;
  10375. position:absolute;
  10376. left:0px;
  10377. top:0px;
  10378. width:49px;
  10379. height:17px;
  10380. background:inherit;
  10381. background-color:rgba(255, 255, 255, 0);
  10382. border:none;
  10383. border-radius:0px;
  10384. -moz-box-shadow:none;
  10385. -webkit-box-shadow:none;
  10386. box-shadow:none;
  10387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10388. font-weight:400;
  10389. font-style:normal;
  10390. font-size:12px;
  10391. color:#AAAAAA;
  10392. }
  10393. #u12119 {
  10394. border-width:0px;
  10395. position:absolute;
  10396. left:143px;
  10397. top:949px;
  10398. width:49px;
  10399. height:17px;
  10400. display:flex;
  10401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10402. font-weight:400;
  10403. font-style:normal;
  10404. font-size:12px;
  10405. color:#AAAAAA;
  10406. }
  10407. #u12119 .text {
  10408. position:absolute;
  10409. align-self:flex-start;
  10410. padding:0px 0px 0px 0px;
  10411. box-sizing:border-box;
  10412. width:100%;
  10413. }
  10414. #u12119_text {
  10415. border-width:0px;
  10416. white-space:nowrap;
  10417. text-transform:none;
  10418. }
  10419. #u12120_img {
  10420. border-width:0px;
  10421. position:absolute;
  10422. left:0px;
  10423. top:0px;
  10424. width:201px;
  10425. height:2px;
  10426. }
  10427. #u12120 {
  10428. border-width:0px;
  10429. position:absolute;
  10430. left:120px;
  10431. top:928px;
  10432. width:200px;
  10433. height:1px;
  10434. display:flex;
  10435. }
  10436. #u12120 .text {
  10437. position:absolute;
  10438. align-self:center;
  10439. padding:2px 2px 2px 2px;
  10440. box-sizing:border-box;
  10441. width:100%;
  10442. }
  10443. #u12120_text {
  10444. border-width:0px;
  10445. word-wrap:break-word;
  10446. text-transform:none;
  10447. visibility:hidden;
  10448. }
  10449. #u12121_div {
  10450. border-width:0px;
  10451. position:absolute;
  10452. left:0px;
  10453. top:0px;
  10454. width:65px;
  10455. height:22px;
  10456. background:inherit;
  10457. background-color:rgba(255, 255, 255, 0);
  10458. border:none;
  10459. border-radius:0px;
  10460. -moz-box-shadow:none;
  10461. -webkit-box-shadow:none;
  10462. box-shadow:none;
  10463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10464. font-weight:400;
  10465. font-style:normal;
  10466. font-size:16px;
  10467. }
  10468. #u12121 {
  10469. border-width:0px;
  10470. position:absolute;
  10471. left:145px;
  10472. top:1028px;
  10473. width:65px;
  10474. height:22px;
  10475. display:flex;
  10476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10477. font-weight:400;
  10478. font-style:normal;
  10479. font-size:16px;
  10480. }
  10481. #u12121 .text {
  10482. position:absolute;
  10483. align-self:flex-start;
  10484. padding:0px 0px 0px 0px;
  10485. box-sizing:border-box;
  10486. width:100%;
  10487. }
  10488. #u12121_text {
  10489. border-width:0px;
  10490. white-space:nowrap;
  10491. text-transform:none;
  10492. }
  10493. #u12122_div {
  10494. border-width:0px;
  10495. position:absolute;
  10496. left:0px;
  10497. top:0px;
  10498. width:97px;
  10499. height:22px;
  10500. background:inherit;
  10501. background-color:rgba(255, 255, 255, 0);
  10502. border:none;
  10503. border-radius:0px;
  10504. -moz-box-shadow:none;
  10505. -webkit-box-shadow:none;
  10506. box-shadow:none;
  10507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10508. font-weight:400;
  10509. font-style:normal;
  10510. font-size:16px;
  10511. }
  10512. #u12122 {
  10513. border-width:0px;
  10514. position:absolute;
  10515. left:145px;
  10516. top:844px;
  10517. width:97px;
  10518. height:22px;
  10519. display:flex;
  10520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10521. font-weight:400;
  10522. font-style:normal;
  10523. font-size:16px;
  10524. }
  10525. #u12122 .text {
  10526. position:absolute;
  10527. align-self:flex-start;
  10528. padding:0px 0px 0px 0px;
  10529. box-sizing:border-box;
  10530. width:100%;
  10531. }
  10532. #u12122_text {
  10533. border-width:0px;
  10534. white-space:nowrap;
  10535. text-transform:none;
  10536. }
  10537. #u12123_div {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:0px;
  10541. top:0px;
  10542. width:81px;
  10543. height:22px;
  10544. background:inherit;
  10545. background-color:rgba(255, 255, 255, 0);
  10546. border:none;
  10547. border-radius:0px;
  10548. -moz-box-shadow:none;
  10549. -webkit-box-shadow:none;
  10550. box-shadow:none;
  10551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10552. font-weight:400;
  10553. font-style:normal;
  10554. font-size:16px;
  10555. }
  10556. #u12123 {
  10557. border-width:0px;
  10558. position:absolute;
  10559. left:146px;
  10560. top:436px;
  10561. width:81px;
  10562. height:22px;
  10563. display:flex;
  10564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10565. font-weight:400;
  10566. font-style:normal;
  10567. font-size:16px;
  10568. }
  10569. #u12123 .text {
  10570. position:absolute;
  10571. align-self:flex-start;
  10572. padding:0px 0px 0px 0px;
  10573. box-sizing:border-box;
  10574. width:100%;
  10575. }
  10576. #u12123_text {
  10577. border-width:0px;
  10578. white-space:nowrap;
  10579. text-transform:none;
  10580. }
  10581. #u12124_div {
  10582. border-width:0px;
  10583. position:absolute;
  10584. left:0px;
  10585. top:0px;
  10586. width:97px;
  10587. height:22px;
  10588. background:inherit;
  10589. background-color:rgba(255, 255, 255, 0);
  10590. border:none;
  10591. border-radius:0px;
  10592. -moz-box-shadow:none;
  10593. -webkit-box-shadow:none;
  10594. box-shadow:none;
  10595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10596. font-weight:400;
  10597. font-style:normal;
  10598. font-size:16px;
  10599. }
  10600. #u12124 {
  10601. border-width:0px;
  10602. position:absolute;
  10603. left:145px;
  10604. top:720px;
  10605. width:97px;
  10606. height:22px;
  10607. display:flex;
  10608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10609. font-weight:400;
  10610. font-style:normal;
  10611. font-size:16px;
  10612. }
  10613. #u12124 .text {
  10614. position:absolute;
  10615. align-self:flex-start;
  10616. padding:0px 0px 0px 0px;
  10617. box-sizing:border-box;
  10618. width:100%;
  10619. }
  10620. #u12124_text {
  10621. border-width:0px;
  10622. white-space:nowrap;
  10623. text-transform:none;
  10624. }
  10625. #u12125_div {
  10626. border-width:0px;
  10627. position:absolute;
  10628. left:0px;
  10629. top:0px;
  10630. width:65px;
  10631. height:22px;
  10632. background:inherit;
  10633. background-color:rgba(255, 255, 255, 0);
  10634. border:none;
  10635. border-radius:0px;
  10636. -moz-box-shadow:none;
  10637. -webkit-box-shadow:none;
  10638. box-shadow:none;
  10639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10640. font-weight:400;
  10641. font-style:normal;
  10642. font-size:16px;
  10643. }
  10644. #u12125 {
  10645. border-width:0px;
  10646. position:absolute;
  10647. left:145px;
  10648. top:210px;
  10649. width:65px;
  10650. height:22px;
  10651. display:flex;
  10652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10653. font-weight:400;
  10654. font-style:normal;
  10655. font-size:16px;
  10656. }
  10657. #u12125 .text {
  10658. position:absolute;
  10659. align-self:flex-start;
  10660. padding:0px 0px 0px 0px;
  10661. box-sizing:border-box;
  10662. width:100%;
  10663. }
  10664. #u12125_text {
  10665. border-width:0px;
  10666. white-space:nowrap;
  10667. text-transform:none;
  10668. }
  10669. #u12126_div {
  10670. border-width:0px;
  10671. position:absolute;
  10672. left:0px;
  10673. top:0px;
  10674. width:65px;
  10675. height:22px;
  10676. background:inherit;
  10677. background-color:rgba(255, 255, 255, 0);
  10678. border:none;
  10679. border-radius:0px;
  10680. -moz-box-shadow:none;
  10681. -webkit-box-shadow:none;
  10682. box-shadow:none;
  10683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10684. font-weight:400;
  10685. font-style:normal;
  10686. font-size:16px;
  10687. }
  10688. #u12126 {
  10689. border-width:0px;
  10690. position:absolute;
  10691. left:146px;
  10692. top:252px;
  10693. width:65px;
  10694. height:22px;
  10695. display:flex;
  10696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10697. font-weight:400;
  10698. font-style:normal;
  10699. font-size:16px;
  10700. }
  10701. #u12126 .text {
  10702. position:absolute;
  10703. align-self:flex-start;
  10704. padding:0px 0px 0px 0px;
  10705. box-sizing:border-box;
  10706. width:100%;
  10707. }
  10708. #u12126_text {
  10709. border-width:0px;
  10710. white-space:nowrap;
  10711. text-transform:none;
  10712. }
  10713. #u12127 {
  10714. border-width:0px;
  10715. position:absolute;
  10716. left:0px;
  10717. top:0px;
  10718. width:0px;
  10719. height:0px;
  10720. }
  10721. #u12128_div {
  10722. border-width:0px;
  10723. position:absolute;
  10724. left:0px;
  10725. top:0px;
  10726. width:140px;
  10727. height:30px;
  10728. background:inherit;
  10729. background-color:rgba(255, 255, 255, 1);
  10730. box-sizing:border-box;
  10731. border-width:1px;
  10732. border-style:solid;
  10733. border-color:rgba(201, 201, 201, 1);
  10734. border-radius:4px;
  10735. -moz-box-shadow:none;
  10736. -webkit-box-shadow:none;
  10737. box-shadow:none;
  10738. font-family:'Microsoft YaHei', sans-serif;
  10739. font-weight:400;
  10740. font-style:normal;
  10741. font-size:14px;
  10742. color:#CCCCCC;
  10743. text-align:left;
  10744. }
  10745. #u12128 {
  10746. border-width:0px;
  10747. position:absolute;
  10748. left:1311px;
  10749. top:199px;
  10750. width:140px;
  10751. height:30px;
  10752. display:flex;
  10753. font-family:'Microsoft YaHei', sans-serif;
  10754. font-weight:400;
  10755. font-style:normal;
  10756. font-size:14px;
  10757. color:#CCCCCC;
  10758. text-align:left;
  10759. }
  10760. #u12128 .text {
  10761. position:absolute;
  10762. align-self:center;
  10763. padding:2px 8px 2px 8px;
  10764. box-sizing:border-box;
  10765. width:100%;
  10766. }
  10767. #u12128_text {
  10768. border-width:0px;
  10769. word-wrap:break-word;
  10770. text-transform:none;
  10771. visibility:hidden;
  10772. }
  10773. #u12129_input {
  10774. position:absolute;
  10775. left:0px;
  10776. top:0px;
  10777. width:127px;
  10778. height:25px;
  10779. padding:2px 2px 2px 2px;
  10780. font-family:'Microsoft YaHei', sans-serif;
  10781. font-weight:400;
  10782. font-style:normal;
  10783. font-size:10px;
  10784. letter-spacing:normal;
  10785. color:#000000;
  10786. vertical-align:none;
  10787. text-align:left;
  10788. text-transform:none;
  10789. background-color:transparent;
  10790. border-color:transparent;
  10791. }
  10792. #u12129_input.disabled {
  10793. position:absolute;
  10794. left:0px;
  10795. top:0px;
  10796. width:127px;
  10797. height:25px;
  10798. padding:2px 2px 2px 2px;
  10799. font-family:'Microsoft YaHei', sans-serif;
  10800. font-weight:400;
  10801. font-style:normal;
  10802. font-size:10px;
  10803. letter-spacing:normal;
  10804. color:#000000;
  10805. vertical-align:none;
  10806. text-align:left;
  10807. text-transform:none;
  10808. background-color:transparent;
  10809. border-color:transparent;
  10810. }
  10811. #u12129_div {
  10812. border-width:0px;
  10813. position:absolute;
  10814. left:0px;
  10815. top:0px;
  10816. width:127px;
  10817. height:25px;
  10818. background:inherit;
  10819. background-color:rgba(255, 255, 255, 1);
  10820. border:none;
  10821. border-radius:0px;
  10822. -moz-box-shadow:none;
  10823. -webkit-box-shadow:none;
  10824. box-shadow:none;
  10825. font-family:'Microsoft YaHei', sans-serif;
  10826. font-weight:400;
  10827. font-style:normal;
  10828. font-size:10px;
  10829. }
  10830. #u12129 {
  10831. border-width:0px;
  10832. position:absolute;
  10833. left:1319px;
  10834. top:200px;
  10835. width:127px;
  10836. height:25px;
  10837. display:flex;
  10838. font-family:'Microsoft YaHei', sans-serif;
  10839. font-weight:400;
  10840. font-style:normal;
  10841. font-size:10px;
  10842. }
  10843. #u12129 .text {
  10844. position:absolute;
  10845. align-self:center;
  10846. padding:2px 2px 2px 2px;
  10847. box-sizing:border-box;
  10848. width:100%;
  10849. }
  10850. #u12129_div.disabled {
  10851. border-width:0px;
  10852. position:absolute;
  10853. left:0px;
  10854. top:0px;
  10855. width:127px;
  10856. height:25px;
  10857. background:inherit;
  10858. background-color:rgba(240, 240, 240, 1);
  10859. border:none;
  10860. border-radius:0px;
  10861. -moz-box-shadow:none;
  10862. -webkit-box-shadow:none;
  10863. box-shadow:none;
  10864. font-family:'Microsoft YaHei', sans-serif;
  10865. font-weight:400;
  10866. font-style:normal;
  10867. font-size:10px;
  10868. }
  10869. #u12129.disabled {
  10870. }
  10871. #u12130_div {
  10872. border-width:0px;
  10873. position:absolute;
  10874. left:0px;
  10875. top:0px;
  10876. width:813px;
  10877. height:20px;
  10878. background:inherit;
  10879. background-color:rgba(255, 255, 255, 0);
  10880. border:none;
  10881. border-left:0px;
  10882. border-top:0px;
  10883. border-right:0px;
  10884. border-radius:0px;
  10885. border-bottom-right-radius:0px;
  10886. border-bottom-left-radius:0px;
  10887. -moz-box-shadow:none;
  10888. -webkit-box-shadow:none;
  10889. box-shadow:none;
  10890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10891. font-weight:400;
  10892. font-style:normal;
  10893. font-size:14px;
  10894. color:#7F7F7F;
  10895. }
  10896. #u12130 {
  10897. border-width:0px;
  10898. position:absolute;
  10899. left:352px;
  10900. top:110px;
  10901. width:813px;
  10902. height:20px;
  10903. display:flex;
  10904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10905. font-weight:400;
  10906. font-style:normal;
  10907. font-size:14px;
  10908. color:#7F7F7F;
  10909. }
  10910. #u12130 .text {
  10911. position:absolute;
  10912. align-self:center;
  10913. padding:0px 0px 0px 0px;
  10914. box-sizing:border-box;
  10915. width:100%;
  10916. }
  10917. #u12130_text {
  10918. border-width:0px;
  10919. white-space:nowrap;
  10920. text-transform:none;
  10921. }
  10922. #u12131 {
  10923. border-width:0px;
  10924. position:absolute;
  10925. left:0px;
  10926. top:0px;
  10927. width:0px;
  10928. height:0px;
  10929. }
  10930. #u12132 {
  10931. border-width:0px;
  10932. position:absolute;
  10933. left:0px;
  10934. top:0px;
  10935. width:0px;
  10936. height:0px;
  10937. }
  10938. #u12133_div {
  10939. border-width:0px;
  10940. position:absolute;
  10941. left:0px;
  10942. top:0px;
  10943. width:380px;
  10944. height:160px;
  10945. background:inherit;
  10946. background-color:rgba(255, 255, 255, 1);
  10947. box-sizing:border-box;
  10948. border-width:1px;
  10949. border-style:solid;
  10950. border-color:rgba(242, 242, 242, 1);
  10951. border-radius:4px;
  10952. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10953. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10954. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10955. font-family:'Microsoft YaHei', sans-serif;
  10956. font-weight:400;
  10957. font-style:normal;
  10958. }
  10959. #u12133 {
  10960. border-width:0px;
  10961. position:absolute;
  10962. left:760px;
  10963. top:727px;
  10964. width:380px;
  10965. height:160px;
  10966. display:flex;
  10967. font-family:'Microsoft YaHei', sans-serif;
  10968. font-weight:400;
  10969. font-style:normal;
  10970. }
  10971. #u12133 .text {
  10972. position:absolute;
  10973. align-self:center;
  10974. padding:2px 2px 2px 2px;
  10975. box-sizing:border-box;
  10976. width:100%;
  10977. }
  10978. #u12133_text {
  10979. border-width:0px;
  10980. word-wrap:break-word;
  10981. text-transform:none;
  10982. visibility:hidden;
  10983. }
  10984. #u12134_div {
  10985. border-width:0px;
  10986. position:absolute;
  10987. left:0px;
  10988. top:0px;
  10989. width:163px;
  10990. height:21px;
  10991. background:inherit;
  10992. background-color:rgba(255, 255, 255, 0);
  10993. border:none;
  10994. border-radius:0px;
  10995. -moz-box-shadow:none;
  10996. -webkit-box-shadow:none;
  10997. box-shadow:none;
  10998. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10999. font-weight:650;
  11000. font-style:normal;
  11001. font-size:18px;
  11002. color:#000000;
  11003. line-height:22px;
  11004. }
  11005. #u12134 {
  11006. border-width:0px;
  11007. position:absolute;
  11008. left:820px;
  11009. top:752px;
  11010. width:163px;
  11011. height:21px;
  11012. display:flex;
  11013. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11014. font-weight:650;
  11015. font-style:normal;
  11016. font-size:18px;
  11017. color:#000000;
  11018. line-height:22px;
  11019. }
  11020. #u12134 .text {
  11021. position:absolute;
  11022. align-self:flex-start;
  11023. padding:0px 0px 0px 0px;
  11024. box-sizing:border-box;
  11025. width:100%;
  11026. }
  11027. #u12134_text {
  11028. border-width:0px;
  11029. white-space:nowrap;
  11030. text-transform:none;
  11031. }
  11032. #u12135_div {
  11033. border-width:0px;
  11034. position:absolute;
  11035. left:0px;
  11036. top:0px;
  11037. width:61px;
  11038. height:32px;
  11039. background:inherit;
  11040. background-color:rgba(24, 144, 255, 1);
  11041. border:none;
  11042. border-radius:4px;
  11043. -moz-box-shadow:none;
  11044. -webkit-box-shadow:none;
  11045. box-shadow:none;
  11046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11047. font-weight:400;
  11048. font-style:normal;
  11049. font-size:14px;
  11050. color:#FFFFFF;
  11051. }
  11052. #u12135 {
  11053. border-width:0px;
  11054. position:absolute;
  11055. left:1059px;
  11056. top:839px;
  11057. width:61px;
  11058. height:32px;
  11059. display:flex;
  11060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11061. font-weight:400;
  11062. font-style:normal;
  11063. font-size:14px;
  11064. color:#FFFFFF;
  11065. }
  11066. #u12135 .text {
  11067. position:absolute;
  11068. align-self:center;
  11069. padding:2px 16px 2px 16px;
  11070. box-sizing:border-box;
  11071. width:100%;
  11072. }
  11073. #u12135_text {
  11074. border-width:0px;
  11075. white-space:nowrap;
  11076. text-transform:none;
  11077. }
  11078. #u12136_img {
  11079. border-width:0px;
  11080. position:absolute;
  11081. left:0px;
  11082. top:0px;
  11083. width:20px;
  11084. height:20px;
  11085. }
  11086. #u12136 {
  11087. border-width:0px;
  11088. position:absolute;
  11089. left:789px;
  11090. top:756px;
  11091. width:20px;
  11092. height:20px;
  11093. display:flex;
  11094. }
  11095. #u12136 .text {
  11096. position:absolute;
  11097. align-self:center;
  11098. padding:2px 2px 2px 2px;
  11099. box-sizing:border-box;
  11100. width:100%;
  11101. }
  11102. #u12136_text {
  11103. border-width:0px;
  11104. word-wrap:break-word;
  11105. text-transform:none;
  11106. visibility:hidden;
  11107. }
  11108. #u12137_div {
  11109. border-width:0px;
  11110. position:absolute;
  11111. left:0px;
  11112. top:0px;
  11113. width:300px;
  11114. height:44px;
  11115. background:inherit;
  11116. background-color:rgba(255, 255, 255, 0);
  11117. border:none;
  11118. border-radius:0px;
  11119. -moz-box-shadow:none;
  11120. -webkit-box-shadow:none;
  11121. box-shadow:none;
  11122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11123. font-weight:400;
  11124. font-style:normal;
  11125. font-size:14px;
  11126. color:#7F7F7F;
  11127. line-height:22px;
  11128. }
  11129. #u12137 {
  11130. border-width:0px;
  11131. position:absolute;
  11132. left:820px;
  11133. top:786px;
  11134. width:300px;
  11135. height:44px;
  11136. display:flex;
  11137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11138. font-weight:400;
  11139. font-style:normal;
  11140. font-size:14px;
  11141. color:#7F7F7F;
  11142. line-height:22px;
  11143. }
  11144. #u12137 .text {
  11145. position:absolute;
  11146. align-self:flex-start;
  11147. padding:0px 0px 0px 0px;
  11148. box-sizing:border-box;
  11149. width:100%;
  11150. }
  11151. #u12137_text {
  11152. border-width:0px;
  11153. word-wrap:break-word;
  11154. text-transform:none;
  11155. }
  11156. #u12138_div {
  11157. border-width:0px;
  11158. position:absolute;
  11159. left:0px;
  11160. top:0px;
  11161. width:66px;
  11162. height:32px;
  11163. background:inherit;
  11164. background-color:rgba(255, 255, 255, 1);
  11165. box-sizing:border-box;
  11166. border-width:1px;
  11167. border-style:solid;
  11168. border-color:rgba(217, 217, 217, 1);
  11169. border-radius:4px;
  11170. -moz-box-shadow:none;
  11171. -webkit-box-shadow:none;
  11172. box-shadow:none;
  11173. font-family:'Microsoft YaHei', sans-serif;
  11174. font-weight:400;
  11175. font-style:normal;
  11176. font-size:14px;
  11177. color:rgba(0, 0, 0, 0.647058823529412);
  11178. line-height:21px;
  11179. }
  11180. #u12138 {
  11181. border-width:0px;
  11182. position:absolute;
  11183. left:976px;
  11184. top:839px;
  11185. width:66px;
  11186. height:32px;
  11187. display:flex;
  11188. font-family:'Microsoft YaHei', sans-serif;
  11189. font-weight:400;
  11190. font-style:normal;
  11191. font-size:14px;
  11192. color:rgba(0, 0, 0, 0.647058823529412);
  11193. line-height:21px;
  11194. }
  11195. #u12138 .text {
  11196. position:absolute;
  11197. align-self:center;
  11198. padding:2px 16px 2px 16px;
  11199. box-sizing:border-box;
  11200. width:100%;
  11201. }
  11202. #u12138_text {
  11203. border-width:0px;
  11204. white-space:nowrap;
  11205. text-transform:none;
  11206. }
  11207. #u12139 {
  11208. border-width:0px;
  11209. position:absolute;
  11210. left:0px;
  11211. top:0px;
  11212. width:0px;
  11213. height:0px;
  11214. }
  11215. #u12140 {
  11216. border-width:0px;
  11217. position:absolute;
  11218. left:0px;
  11219. top:0px;
  11220. width:0px;
  11221. height:0px;
  11222. }
  11223. #u12141_div {
  11224. border-width:0px;
  11225. position:absolute;
  11226. left:0px;
  11227. top:0px;
  11228. width:380px;
  11229. height:160px;
  11230. background:inherit;
  11231. background-color:rgba(255, 255, 255, 1);
  11232. box-sizing:border-box;
  11233. border-width:1px;
  11234. border-style:solid;
  11235. border-color:rgba(242, 242, 242, 1);
  11236. border-radius:4px;
  11237. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11238. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11239. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11240. font-family:'Microsoft YaHei', sans-serif;
  11241. font-weight:400;
  11242. font-style:normal;
  11243. }
  11244. #u12141 {
  11245. border-width:0px;
  11246. position:absolute;
  11247. left:1160px;
  11248. top:727px;
  11249. width:380px;
  11250. height:160px;
  11251. display:flex;
  11252. font-family:'Microsoft YaHei', sans-serif;
  11253. font-weight:400;
  11254. font-style:normal;
  11255. }
  11256. #u12141 .text {
  11257. position:absolute;
  11258. align-self:center;
  11259. padding:2px 2px 2px 2px;
  11260. box-sizing:border-box;
  11261. width:100%;
  11262. }
  11263. #u12141_text {
  11264. border-width:0px;
  11265. word-wrap:break-word;
  11266. text-transform:none;
  11267. visibility:hidden;
  11268. }
  11269. #u12142_div {
  11270. border-width:0px;
  11271. position:absolute;
  11272. left:0px;
  11273. top:0px;
  11274. width:91px;
  11275. height:21px;
  11276. background:inherit;
  11277. background-color:rgba(255, 255, 255, 0);
  11278. border:none;
  11279. border-radius:0px;
  11280. -moz-box-shadow:none;
  11281. -webkit-box-shadow:none;
  11282. box-shadow:none;
  11283. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11284. font-weight:650;
  11285. font-style:normal;
  11286. font-size:18px;
  11287. color:#000000;
  11288. line-height:22px;
  11289. }
  11290. #u12142 {
  11291. border-width:0px;
  11292. position:absolute;
  11293. left:1220px;
  11294. top:752px;
  11295. width:91px;
  11296. height:21px;
  11297. display:flex;
  11298. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11299. font-weight:650;
  11300. font-style:normal;
  11301. font-size:18px;
  11302. color:#000000;
  11303. line-height:22px;
  11304. }
  11305. #u12142 .text {
  11306. position:absolute;
  11307. align-self:flex-start;
  11308. padding:0px 0px 0px 0px;
  11309. box-sizing:border-box;
  11310. width:100%;
  11311. }
  11312. #u12142_text {
  11313. border-width:0px;
  11314. white-space:nowrap;
  11315. text-transform:none;
  11316. }
  11317. #u12143_div {
  11318. border-width:0px;
  11319. position:absolute;
  11320. left:0px;
  11321. top:0px;
  11322. width:61px;
  11323. height:32px;
  11324. background:inherit;
  11325. background-color:rgba(24, 144, 255, 1);
  11326. border:none;
  11327. border-radius:4px;
  11328. -moz-box-shadow:none;
  11329. -webkit-box-shadow:none;
  11330. box-shadow:none;
  11331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11332. font-weight:400;
  11333. font-style:normal;
  11334. font-size:14px;
  11335. color:#FFFFFF;
  11336. }
  11337. #u12143 {
  11338. border-width:0px;
  11339. position:absolute;
  11340. left:1459px;
  11341. top:839px;
  11342. width:61px;
  11343. height:32px;
  11344. display:flex;
  11345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11346. font-weight:400;
  11347. font-style:normal;
  11348. font-size:14px;
  11349. color:#FFFFFF;
  11350. }
  11351. #u12143 .text {
  11352. position:absolute;
  11353. align-self:center;
  11354. padding:2px 16px 2px 16px;
  11355. box-sizing:border-box;
  11356. width:100%;
  11357. }
  11358. #u12143_text {
  11359. border-width:0px;
  11360. white-space:nowrap;
  11361. text-transform:none;
  11362. }
  11363. #u12144_div {
  11364. border-width:0px;
  11365. position:absolute;
  11366. left:0px;
  11367. top:0px;
  11368. width:300px;
  11369. height:44px;
  11370. background:inherit;
  11371. background-color:rgba(255, 255, 255, 0);
  11372. border:none;
  11373. border-radius:0px;
  11374. -moz-box-shadow:none;
  11375. -webkit-box-shadow:none;
  11376. box-shadow:none;
  11377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11378. font-weight:400;
  11379. font-style:normal;
  11380. font-size:14px;
  11381. color:#7F7F7F;
  11382. line-height:22px;
  11383. }
  11384. #u12144 {
  11385. border-width:0px;
  11386. position:absolute;
  11387. left:1220px;
  11388. top:786px;
  11389. width:300px;
  11390. height:44px;
  11391. display:flex;
  11392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11393. font-weight:400;
  11394. font-style:normal;
  11395. font-size:14px;
  11396. color:#7F7F7F;
  11397. line-height:22px;
  11398. }
  11399. #u12144 .text {
  11400. position:absolute;
  11401. align-self:flex-start;
  11402. padding:0px 0px 0px 0px;
  11403. box-sizing:border-box;
  11404. width:100%;
  11405. }
  11406. #u12144_text {
  11407. border-width:0px;
  11408. word-wrap:break-word;
  11409. text-transform:none;
  11410. }
  11411. #u12145_img {
  11412. border-width:0px;
  11413. position:absolute;
  11414. left:0px;
  11415. top:0px;
  11416. width:20px;
  11417. height:20px;
  11418. }
  11419. #u12145 {
  11420. border-width:0px;
  11421. position:absolute;
  11422. left:1189px;
  11423. top:752px;
  11424. width:20px;
  11425. height:20px;
  11426. display:flex;
  11427. }
  11428. #u12145 .text {
  11429. position:absolute;
  11430. align-self:center;
  11431. padding:2px 2px 2px 2px;
  11432. box-sizing:border-box;
  11433. width:100%;
  11434. }
  11435. #u12145_text {
  11436. border-width:0px;
  11437. word-wrap:break-word;
  11438. text-transform:none;
  11439. visibility:hidden;
  11440. }
  11441. #u12146_div {
  11442. border-width:0px;
  11443. position:absolute;
  11444. left:0px;
  11445. top:0px;
  11446. width:680px;
  11447. height:61px;
  11448. background:inherit;
  11449. background-color:rgba(255, 255, 255, 0);
  11450. border:none;
  11451. border-top:0px;
  11452. border-right:0px;
  11453. border-bottom:0px;
  11454. border-radius:0px;
  11455. border-top-left-radius:0px;
  11456. border-bottom-left-radius:0px;
  11457. -moz-box-shadow:none;
  11458. -webkit-box-shadow:none;
  11459. box-shadow:none;
  11460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11461. font-weight:400;
  11462. font-style:normal;
  11463. font-size:12px;
  11464. color:#D9001B;
  11465. }
  11466. #u12146 {
  11467. border-width:0px;
  11468. position:absolute;
  11469. left:760px;
  11470. top:661px;
  11471. width:680px;
  11472. height:61px;
  11473. display:flex;
  11474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11475. font-weight:400;
  11476. font-style:normal;
  11477. font-size:12px;
  11478. color:#D9001B;
  11479. }
  11480. #u12146 .text {
  11481. position:absolute;
  11482. align-self:center;
  11483. padding:5px 0px 5px 0px;
  11484. box-sizing:border-box;
  11485. width:100%;
  11486. }
  11487. #u12146_text {
  11488. border-width:0px;
  11489. white-space:nowrap;
  11490. text-transform:none;
  11491. }
  11492. #u12147_div {
  11493. border-width:0px;
  11494. position:absolute;
  11495. left:0px;
  11496. top:0px;
  11497. width:60px;
  11498. height:30px;
  11499. background:inherit;
  11500. background-color:rgba(24, 144, 255, 1);
  11501. border:none;
  11502. border-radius:4px;
  11503. -moz-box-shadow:none;
  11504. -webkit-box-shadow:none;
  11505. box-shadow:none;
  11506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11507. font-weight:400;
  11508. font-style:normal;
  11509. font-size:14px;
  11510. color:#FFFFFF;
  11511. }
  11512. #u12147 {
  11513. border-width:0px;
  11514. position:absolute;
  11515. left:563px;
  11516. top:291px;
  11517. width:60px;
  11518. height:30px;
  11519. display:flex;
  11520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11521. font-weight:400;
  11522. font-style:normal;
  11523. font-size:14px;
  11524. color:#FFFFFF;
  11525. }
  11526. #u12147 .text {
  11527. position:absolute;
  11528. align-self:center;
  11529. padding:2px 2px 2px 2px;
  11530. box-sizing:border-box;
  11531. width:100%;
  11532. }
  11533. #u12147_text {
  11534. border-width:0px;
  11535. word-wrap:break-word;
  11536. text-transform:none;
  11537. }
  11538. #u12148_div {
  11539. border-width:0px;
  11540. position:absolute;
  11541. left:0px;
  11542. top:0px;
  11543. width:55px;
  11544. height:30px;
  11545. background:inherit;
  11546. background-color:rgba(255, 255, 255, 1);
  11547. box-sizing:border-box;
  11548. border-width:1px;
  11549. border-style:solid;
  11550. border-color:rgba(170, 170, 170, 1);
  11551. border-radius:4px;
  11552. -moz-box-shadow:none;
  11553. -webkit-box-shadow:none;
  11554. box-shadow:none;
  11555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11556. font-weight:400;
  11557. font-style:normal;
  11558. font-size:12px;
  11559. color:#555555;
  11560. }
  11561. #u12148 {
  11562. border-width:0px;
  11563. position:absolute;
  11564. left:702px;
  11565. top:291px;
  11566. width:55px;
  11567. height:30px;
  11568. display:flex;
  11569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11570. font-weight:400;
  11571. font-style:normal;
  11572. font-size:12px;
  11573. color:#555555;
  11574. }
  11575. #u12148 .text {
  11576. position:absolute;
  11577. align-self:center;
  11578. padding:5px 15px 5px 15px;
  11579. box-sizing:border-box;
  11580. width:100%;
  11581. }
  11582. #u12148_text {
  11583. border-width:0px;
  11584. white-space:nowrap;
  11585. text-transform:none;
  11586. }
  11587. #u12149_div {
  11588. border-width:0px;
  11589. position:absolute;
  11590. left:0px;
  11591. top:0px;
  11592. width:59px;
  11593. height:30px;
  11594. background:inherit;
  11595. background-color:rgba(255, 255, 255, 1);
  11596. box-sizing:border-box;
  11597. border-width:1px;
  11598. border-style:solid;
  11599. border-color:rgba(170, 170, 170, 1);
  11600. border-radius:4px;
  11601. -moz-box-shadow:none;
  11602. -webkit-box-shadow:none;
  11603. box-shadow:none;
  11604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11605. font-weight:400;
  11606. font-style:normal;
  11607. font-size:14px;
  11608. color:#555555;
  11609. }
  11610. #u12149 {
  11611. border-width:0px;
  11612. position:absolute;
  11613. left:633px;
  11614. top:291px;
  11615. width:59px;
  11616. height:30px;
  11617. display:flex;
  11618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11619. font-weight:400;
  11620. font-style:normal;
  11621. font-size:14px;
  11622. color:#555555;
  11623. }
  11624. #u12149 .text {
  11625. position:absolute;
  11626. align-self:center;
  11627. padding:5px 15px 5px 15px;
  11628. box-sizing:border-box;
  11629. width:100%;
  11630. }
  11631. #u12149_text {
  11632. border-width:0px;
  11633. white-space:nowrap;
  11634. text-transform:none;
  11635. }
  11636. #u12150_div {
  11637. border-width:0px;
  11638. position:absolute;
  11639. left:0px;
  11640. top:0px;
  11641. width:115px;
  11642. height:30px;
  11643. background:inherit;
  11644. background-color:rgba(255, 255, 255, 1);
  11645. border:none;
  11646. border-radius:4px;
  11647. -moz-box-shadow:none;
  11648. -webkit-box-shadow:none;
  11649. box-shadow:none;
  11650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11651. font-weight:400;
  11652. font-style:normal;
  11653. font-size:12px;
  11654. text-decoration:underline ;
  11655. color:#298FFF;
  11656. }
  11657. #u12150 {
  11658. border-width:0px;
  11659. position:absolute;
  11660. left:1445px;
  11661. top:292px;
  11662. width:115px;
  11663. height:30px;
  11664. display:flex;
  11665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11666. font-weight:400;
  11667. font-style:normal;
  11668. font-size:12px;
  11669. text-decoration:underline ;
  11670. color:#298FFF;
  11671. }
  11672. #u12150 .text {
  11673. position:absolute;
  11674. align-self:center;
  11675. padding:5px 15px 5px 15px;
  11676. box-sizing:border-box;
  11677. width:100%;
  11678. }
  11679. #u12150_text {
  11680. border-width:0px;
  11681. white-space:nowrap;
  11682. text-transform:none;
  11683. }
  11684. #u12151 {
  11685. border-width:0px;
  11686. position:absolute;
  11687. left:1503px;
  11688. top:292px;
  11689. width:0px;
  11690. height:0px;
  11691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11692. font-weight:400;
  11693. font-style:normal;
  11694. font-size:12px;
  11695. color:#333333;
  11696. }
  11697. #u12151_seg0 {
  11698. border-width:0px;
  11699. position:absolute;
  11700. left:-5px;
  11701. top:-171px;
  11702. width:10px;
  11703. height:171px;
  11704. }
  11705. #u12151_seg1 {
  11706. border-width:0px;
  11707. position:absolute;
  11708. left:-5px;
  11709. top:-171px;
  11710. width:148px;
  11711. height:10px;
  11712. }
  11713. #u12151_seg2 {
  11714. border-width:0px;
  11715. position:absolute;
  11716. left:126px;
  11717. top:-182px;
  11718. width:32px;
  11719. height:32px;
  11720. }
  11721. #u12151_text {
  11722. border-width:0px;
  11723. position:absolute;
  11724. left:-50px;
  11725. top:-162px;
  11726. width:100px;
  11727. word-wrap:break-word;
  11728. text-transform:none;
  11729. visibility:hidden;
  11730. }
  11731. #u12152 {
  11732. border-width:0px;
  11733. position:absolute;
  11734. left:0px;
  11735. top:0px;
  11736. width:0px;
  11737. height:0px;
  11738. }
  11739. #u12153 {
  11740. border-width:0px;
  11741. position:absolute;
  11742. left:0px;
  11743. top:0px;
  11744. width:0px;
  11745. height:0px;
  11746. }
  11747. #u12154_div {
  11748. border-width:0px;
  11749. position:absolute;
  11750. left:0px;
  11751. top:0px;
  11752. width:380px;
  11753. height:160px;
  11754. background:inherit;
  11755. background-color:rgba(255, 255, 255, 1);
  11756. box-sizing:border-box;
  11757. border-width:1px;
  11758. border-style:solid;
  11759. border-color:rgba(242, 242, 242, 1);
  11760. border-radius:4px;
  11761. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11762. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11763. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11764. font-family:'Microsoft YaHei', sans-serif;
  11765. font-weight:400;
  11766. font-style:normal;
  11767. }
  11768. #u12154 {
  11769. border-width:0px;
  11770. position:absolute;
  11771. left:1807px;
  11772. top:411px;
  11773. width:380px;
  11774. height:160px;
  11775. display:flex;
  11776. font-family:'Microsoft YaHei', sans-serif;
  11777. font-weight:400;
  11778. font-style:normal;
  11779. }
  11780. #u12154 .text {
  11781. position:absolute;
  11782. align-self:center;
  11783. padding:2px 2px 2px 2px;
  11784. box-sizing:border-box;
  11785. width:100%;
  11786. }
  11787. #u12154_text {
  11788. border-width:0px;
  11789. word-wrap:break-word;
  11790. text-transform:none;
  11791. visibility:hidden;
  11792. }
  11793. #u12155_div {
  11794. border-width:0px;
  11795. position:absolute;
  11796. left:0px;
  11797. top:0px;
  11798. width:217px;
  11799. height:21px;
  11800. background:inherit;
  11801. background-color:rgba(255, 255, 255, 0);
  11802. border:none;
  11803. border-radius:0px;
  11804. -moz-box-shadow:none;
  11805. -webkit-box-shadow:none;
  11806. box-shadow:none;
  11807. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11808. font-weight:650;
  11809. font-style:normal;
  11810. font-size:18px;
  11811. color:#000000;
  11812. line-height:22px;
  11813. }
  11814. #u12155 {
  11815. border-width:0px;
  11816. position:absolute;
  11817. left:1867px;
  11818. top:436px;
  11819. width:217px;
  11820. height:21px;
  11821. display:flex;
  11822. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11823. font-weight:650;
  11824. font-style:normal;
  11825. font-size:18px;
  11826. color:#000000;
  11827. line-height:22px;
  11828. }
  11829. #u12155 .text {
  11830. position:absolute;
  11831. align-self:flex-start;
  11832. padding:0px 0px 0px 0px;
  11833. box-sizing:border-box;
  11834. width:100%;
  11835. }
  11836. #u12155_text {
  11837. border-width:0px;
  11838. white-space:nowrap;
  11839. text-transform:none;
  11840. }
  11841. #u12156_div {
  11842. border-width:0px;
  11843. position:absolute;
  11844. left:0px;
  11845. top:0px;
  11846. width:61px;
  11847. height:32px;
  11848. background:inherit;
  11849. background-color:rgba(24, 144, 255, 1);
  11850. border:none;
  11851. border-radius:4px;
  11852. -moz-box-shadow:none;
  11853. -webkit-box-shadow:none;
  11854. box-shadow:none;
  11855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11856. font-weight:400;
  11857. font-style:normal;
  11858. font-size:14px;
  11859. color:#FFFFFF;
  11860. }
  11861. #u12156 {
  11862. border-width:0px;
  11863. position:absolute;
  11864. left:2106px;
  11865. top:523px;
  11866. width:61px;
  11867. height:32px;
  11868. display:flex;
  11869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11870. font-weight:400;
  11871. font-style:normal;
  11872. font-size:14px;
  11873. color:#FFFFFF;
  11874. }
  11875. #u12156 .text {
  11876. position:absolute;
  11877. align-self:center;
  11878. padding:2px 16px 2px 16px;
  11879. box-sizing:border-box;
  11880. width:100%;
  11881. }
  11882. #u12156_text {
  11883. border-width:0px;
  11884. white-space:nowrap;
  11885. text-transform:none;
  11886. }
  11887. #u12157_img {
  11888. border-width:0px;
  11889. position:absolute;
  11890. left:0px;
  11891. top:0px;
  11892. width:20px;
  11893. height:20px;
  11894. }
  11895. #u12157 {
  11896. border-width:0px;
  11897. position:absolute;
  11898. left:1836px;
  11899. top:440px;
  11900. width:20px;
  11901. height:20px;
  11902. display:flex;
  11903. }
  11904. #u12157 .text {
  11905. position:absolute;
  11906. align-self:center;
  11907. padding:2px 2px 2px 2px;
  11908. box-sizing:border-box;
  11909. width:100%;
  11910. }
  11911. #u12157_text {
  11912. border-width:0px;
  11913. word-wrap:break-word;
  11914. text-transform:none;
  11915. visibility:hidden;
  11916. }
  11917. #u12158_div {
  11918. border-width:0px;
  11919. position:absolute;
  11920. left:0px;
  11921. top:0px;
  11922. width:300px;
  11923. height:44px;
  11924. background:inherit;
  11925. background-color:rgba(255, 255, 255, 0);
  11926. border:none;
  11927. border-radius:0px;
  11928. -moz-box-shadow:none;
  11929. -webkit-box-shadow:none;
  11930. box-shadow:none;
  11931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11932. font-weight:400;
  11933. font-style:normal;
  11934. font-size:14px;
  11935. color:#7F7F7F;
  11936. line-height:22px;
  11937. }
  11938. #u12158 {
  11939. border-width:0px;
  11940. position:absolute;
  11941. left:1867px;
  11942. top:470px;
  11943. width:300px;
  11944. height:44px;
  11945. display:flex;
  11946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11947. font-weight:400;
  11948. font-style:normal;
  11949. font-size:14px;
  11950. color:#7F7F7F;
  11951. line-height:22px;
  11952. }
  11953. #u12158 .text {
  11954. position:absolute;
  11955. align-self:flex-start;
  11956. padding:0px 0px 0px 0px;
  11957. box-sizing:border-box;
  11958. width:100%;
  11959. }
  11960. #u12158_text {
  11961. border-width:0px;
  11962. word-wrap:break-word;
  11963. text-transform:none;
  11964. }
  11965. #u12159_div {
  11966. border-width:0px;
  11967. position:absolute;
  11968. left:0px;
  11969. top:0px;
  11970. width:66px;
  11971. height:32px;
  11972. background:inherit;
  11973. background-color:rgba(255, 255, 255, 1);
  11974. box-sizing:border-box;
  11975. border-width:1px;
  11976. border-style:solid;
  11977. border-color:rgba(217, 217, 217, 1);
  11978. border-radius:4px;
  11979. -moz-box-shadow:none;
  11980. -webkit-box-shadow:none;
  11981. box-shadow:none;
  11982. font-family:'Microsoft YaHei', sans-serif;
  11983. font-weight:400;
  11984. font-style:normal;
  11985. font-size:14px;
  11986. color:rgba(0, 0, 0, 0.647058823529412);
  11987. line-height:21px;
  11988. }
  11989. #u12159 {
  11990. border-width:0px;
  11991. position:absolute;
  11992. left:2023px;
  11993. top:523px;
  11994. width:66px;
  11995. height:32px;
  11996. display:flex;
  11997. font-family:'Microsoft YaHei', sans-serif;
  11998. font-weight:400;
  11999. font-style:normal;
  12000. font-size:14px;
  12001. color:rgba(0, 0, 0, 0.647058823529412);
  12002. line-height:21px;
  12003. }
  12004. #u12159 .text {
  12005. position:absolute;
  12006. align-self:center;
  12007. padding:2px 16px 2px 16px;
  12008. box-sizing:border-box;
  12009. width:100%;
  12010. }
  12011. #u12159_text {
  12012. border-width:0px;
  12013. white-space:nowrap;
  12014. text-transform:none;
  12015. }
  12016. #u12160 {
  12017. border-width:0px;
  12018. position:absolute;
  12019. left:0px;
  12020. top:0px;
  12021. width:0px;
  12022. height:0px;
  12023. }
  12024. #u12161_div {
  12025. border-width:0px;
  12026. position:absolute;
  12027. left:0px;
  12028. top:0px;
  12029. width:60px;
  12030. height:30px;
  12031. background:inherit;
  12032. background-color:rgba(24, 144, 255, 1);
  12033. border:none;
  12034. border-radius:4px;
  12035. -moz-box-shadow:none;
  12036. -webkit-box-shadow:none;
  12037. box-shadow:none;
  12038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12039. font-weight:400;
  12040. font-style:normal;
  12041. font-size:14px;
  12042. color:#FFFFFF;
  12043. }
  12044. #u12161 {
  12045. border-width:0px;
  12046. position:absolute;
  12047. left:1161px;
  12048. top:240px;
  12049. width:60px;
  12050. height:30px;
  12051. display:flex;
  12052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12053. font-weight:400;
  12054. font-style:normal;
  12055. font-size:14px;
  12056. color:#FFFFFF;
  12057. }
  12058. #u12161 .text {
  12059. position:absolute;
  12060. align-self:center;
  12061. padding:2px 2px 2px 2px;
  12062. box-sizing:border-box;
  12063. width:100%;
  12064. }
  12065. #u12161_text {
  12066. border-width:0px;
  12067. word-wrap:break-word;
  12068. text-transform:none;
  12069. }
  12070. #u12162_div {
  12071. border-width:0px;
  12072. position:absolute;
  12073. left:0px;
  12074. top:0px;
  12075. width:60px;
  12076. height:30px;
  12077. background:inherit;
  12078. background-color:rgba(255, 255, 255, 1);
  12079. box-sizing:border-box;
  12080. border-width:1px;
  12081. border-style:solid;
  12082. border-color:rgba(170, 170, 170, 1);
  12083. border-radius:4px;
  12084. -moz-box-shadow:none;
  12085. -webkit-box-shadow:none;
  12086. box-shadow:none;
  12087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12088. font-weight:400;
  12089. font-style:normal;
  12090. font-size:14px;
  12091. }
  12092. #u12162 {
  12093. border-width:0px;
  12094. position:absolute;
  12095. left:1231px;
  12096. top:240px;
  12097. width:60px;
  12098. height:30px;
  12099. display:flex;
  12100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12101. font-weight:400;
  12102. font-style:normal;
  12103. font-size:14px;
  12104. }
  12105. #u12162 .text {
  12106. position:absolute;
  12107. align-self:center;
  12108. padding:2px 2px 2px 2px;
  12109. box-sizing:border-box;
  12110. width:100%;
  12111. }
  12112. #u12162_text {
  12113. border-width:0px;
  12114. word-wrap:break-word;
  12115. text-transform:none;
  12116. }
  12117. #u12163 {
  12118. border-width:0px;
  12119. position:absolute;
  12120. left:0px;
  12121. top:0px;
  12122. width:0px;
  12123. height:0px;
  12124. }
  12125. #u12164_div {
  12126. border-width:0px;
  12127. position:absolute;
  12128. left:0px;
  12129. top:0px;
  12130. width:140px;
  12131. height:30px;
  12132. background:inherit;
  12133. background-color:rgba(255, 255, 255, 1);
  12134. box-sizing:border-box;
  12135. border-width:1px;
  12136. border-style:solid;
  12137. border-color:rgba(215, 215, 215, 1);
  12138. border-radius:4px;
  12139. -moz-box-shadow:none;
  12140. -webkit-box-shadow:none;
  12141. box-shadow:none;
  12142. font-size:14px;
  12143. }
  12144. #u12164 {
  12145. border-width:0px;
  12146. position:absolute;
  12147. left:711px;
  12148. top:199px;
  12149. width:140px;
  12150. height:30px;
  12151. display:flex;
  12152. font-size:14px;
  12153. }
  12154. #u12164 .text {
  12155. position:absolute;
  12156. align-self:center;
  12157. padding:2px 2px 2px 2px;
  12158. box-sizing:border-box;
  12159. width:100%;
  12160. }
  12161. #u12164_text {
  12162. border-width:0px;
  12163. word-wrap:break-word;
  12164. text-transform:none;
  12165. visibility:hidden;
  12166. }
  12167. #u12165_input {
  12168. position:absolute;
  12169. left:0px;
  12170. top:0px;
  12171. width:134px;
  12172. height:23px;
  12173. padding:2px 2px 2px 2px;
  12174. font-family:'ArialMT', 'Arial', sans-serif;
  12175. font-weight:400;
  12176. font-style:normal;
  12177. font-size:14px;
  12178. letter-spacing:normal;
  12179. color:#AAAAAA;
  12180. vertical-align:none;
  12181. text-align:left;
  12182. text-transform:none;
  12183. background-color:transparent;
  12184. border-color:transparent;
  12185. }
  12186. #u12165_input.disabled {
  12187. position:absolute;
  12188. left:0px;
  12189. top:0px;
  12190. width:134px;
  12191. height:23px;
  12192. padding:2px 2px 2px 2px;
  12193. font-family:'ArialMT', 'Arial', sans-serif;
  12194. font-weight:400;
  12195. font-style:normal;
  12196. font-size:14px;
  12197. letter-spacing:normal;
  12198. color:#AAAAAA;
  12199. vertical-align:none;
  12200. text-align:left;
  12201. text-transform:none;
  12202. background-color:transparent;
  12203. border-color:transparent;
  12204. }
  12205. #u12165_div {
  12206. border-width:0px;
  12207. position:absolute;
  12208. left:0px;
  12209. top:0px;
  12210. width:134px;
  12211. height:23px;
  12212. background:inherit;
  12213. background-color:rgba(255, 255, 255, 1);
  12214. border:none;
  12215. border-radius:0px;
  12216. -moz-box-shadow:none;
  12217. -webkit-box-shadow:none;
  12218. box-shadow:none;
  12219. font-size:14px;
  12220. color:#AAAAAA;
  12221. }
  12222. #u12165 {
  12223. border-width:0px;
  12224. position:absolute;
  12225. left:715px;
  12226. top:201px;
  12227. width:134px;
  12228. height:23px;
  12229. display:flex;
  12230. font-size:14px;
  12231. color:#AAAAAA;
  12232. }
  12233. #u12165 .text {
  12234. position:absolute;
  12235. align-self:flex-start;
  12236. padding:2px 2px 2px 2px;
  12237. box-sizing:border-box;
  12238. width:100%;
  12239. }
  12240. #u12165_div.disabled {
  12241. border-width:0px;
  12242. position:absolute;
  12243. left:0px;
  12244. top:0px;
  12245. width:134px;
  12246. height:23px;
  12247. background:inherit;
  12248. background-color:rgba(240, 240, 240, 1);
  12249. border:none;
  12250. border-radius:0px;
  12251. -moz-box-shadow:none;
  12252. -webkit-box-shadow:none;
  12253. box-shadow:none;
  12254. font-size:14px;
  12255. color:#AAAAAA;
  12256. }
  12257. #u12165.disabled {
  12258. }
  12259. .u12165_input_option {
  12260. font-size:14px;
  12261. }
  12262. #u12166 {
  12263. border-width:0px;
  12264. position:absolute;
  12265. left:0px;
  12266. top:0px;
  12267. width:0px;
  12268. height:0px;
  12269. }
  12270. #u12167_div {
  12271. border-width:0px;
  12272. position:absolute;
  12273. left:0px;
  12274. top:0px;
  12275. width:140px;
  12276. height:30px;
  12277. background:inherit;
  12278. background-color:rgba(255, 255, 255, 1);
  12279. box-sizing:border-box;
  12280. border-width:1px;
  12281. border-style:solid;
  12282. border-color:rgba(201, 201, 201, 1);
  12283. border-radius:4px;
  12284. -moz-box-shadow:none;
  12285. -webkit-box-shadow:none;
  12286. box-shadow:none;
  12287. font-family:'Microsoft YaHei', sans-serif;
  12288. font-weight:400;
  12289. font-style:normal;
  12290. font-size:14px;
  12291. color:#CCCCCC;
  12292. text-align:left;
  12293. }
  12294. #u12167 {
  12295. border-width:0px;
  12296. position:absolute;
  12297. left:1011px;
  12298. top:239px;
  12299. width:140px;
  12300. height:30px;
  12301. display:flex;
  12302. font-family:'Microsoft YaHei', sans-serif;
  12303. font-weight:400;
  12304. font-style:normal;
  12305. font-size:14px;
  12306. color:#CCCCCC;
  12307. text-align:left;
  12308. }
  12309. #u12167 .text {
  12310. position:absolute;
  12311. align-self:center;
  12312. padding:2px 8px 2px 8px;
  12313. box-sizing:border-box;
  12314. width:100%;
  12315. }
  12316. #u12167_text {
  12317. border-width:0px;
  12318. word-wrap:break-word;
  12319. text-transform:none;
  12320. visibility:hidden;
  12321. }
  12322. #u12168_input {
  12323. position:absolute;
  12324. left:0px;
  12325. top:0px;
  12326. width:127px;
  12327. height:25px;
  12328. padding:2px 2px 2px 2px;
  12329. font-family:'Microsoft YaHei', sans-serif;
  12330. font-weight:400;
  12331. font-style:normal;
  12332. font-size:10px;
  12333. letter-spacing:normal;
  12334. color:#000000;
  12335. vertical-align:none;
  12336. text-align:left;
  12337. text-transform:none;
  12338. background-color:transparent;
  12339. border-color:transparent;
  12340. }
  12341. #u12168_input.disabled {
  12342. position:absolute;
  12343. left:0px;
  12344. top:0px;
  12345. width:127px;
  12346. height:25px;
  12347. padding:2px 2px 2px 2px;
  12348. font-family:'Microsoft YaHei', sans-serif;
  12349. font-weight:400;
  12350. font-style:normal;
  12351. font-size:10px;
  12352. letter-spacing:normal;
  12353. color:#000000;
  12354. vertical-align:none;
  12355. text-align:left;
  12356. text-transform:none;
  12357. background-color:transparent;
  12358. border-color:transparent;
  12359. }
  12360. #u12168_div {
  12361. border-width:0px;
  12362. position:absolute;
  12363. left:0px;
  12364. top:0px;
  12365. width:127px;
  12366. height:25px;
  12367. background:inherit;
  12368. background-color:rgba(255, 255, 255, 1);
  12369. border:none;
  12370. border-radius:0px;
  12371. -moz-box-shadow:none;
  12372. -webkit-box-shadow:none;
  12373. box-shadow:none;
  12374. font-family:'Microsoft YaHei', sans-serif;
  12375. font-weight:400;
  12376. font-style:normal;
  12377. font-size:10px;
  12378. }
  12379. #u12168 {
  12380. border-width:0px;
  12381. position:absolute;
  12382. left:1019px;
  12383. top:240px;
  12384. width:127px;
  12385. height:25px;
  12386. display:flex;
  12387. font-family:'Microsoft YaHei', sans-serif;
  12388. font-weight:400;
  12389. font-style:normal;
  12390. font-size:10px;
  12391. }
  12392. #u12168 .text {
  12393. position:absolute;
  12394. align-self:center;
  12395. padding:2px 2px 2px 2px;
  12396. box-sizing:border-box;
  12397. width:100%;
  12398. }
  12399. #u12168_div.disabled {
  12400. border-width:0px;
  12401. position:absolute;
  12402. left:0px;
  12403. top:0px;
  12404. width:127px;
  12405. height:25px;
  12406. background:inherit;
  12407. background-color:rgba(240, 240, 240, 1);
  12408. border:none;
  12409. border-radius:0px;
  12410. -moz-box-shadow:none;
  12411. -webkit-box-shadow:none;
  12412. box-shadow:none;
  12413. font-family:'Microsoft YaHei', sans-serif;
  12414. font-weight:400;
  12415. font-style:normal;
  12416. font-size:10px;
  12417. }
  12418. #u12168.disabled {
  12419. }
  12420. #u12169 {
  12421. border-width:0px;
  12422. position:absolute;
  12423. left:0px;
  12424. top:0px;
  12425. width:0px;
  12426. height:0px;
  12427. }
  12428. #u12170_div {
  12429. border-width:0px;
  12430. position:absolute;
  12431. left:0px;
  12432. top:0px;
  12433. width:140px;
  12434. height:30px;
  12435. background:inherit;
  12436. background-color:rgba(242, 242, 242, 1);
  12437. box-sizing:border-box;
  12438. border-width:1px;
  12439. border-style:solid;
  12440. border-color:rgba(215, 215, 215, 1);
  12441. border-radius:4px;
  12442. -moz-box-shadow:none;
  12443. -webkit-box-shadow:none;
  12444. box-shadow:none;
  12445. font-size:14px;
  12446. }
  12447. #u12170 {
  12448. border-width:0px;
  12449. position:absolute;
  12450. left:563px;
  12451. top:199px;
  12452. width:140px;
  12453. height:30px;
  12454. display:flex;
  12455. font-size:14px;
  12456. }
  12457. #u12170 .text {
  12458. position:absolute;
  12459. align-self:center;
  12460. padding:2px 2px 2px 2px;
  12461. box-sizing:border-box;
  12462. width:100%;
  12463. }
  12464. #u12170_text {
  12465. border-width:0px;
  12466. word-wrap:break-word;
  12467. text-transform:none;
  12468. visibility:hidden;
  12469. }
  12470. #u12171_input {
  12471. position:absolute;
  12472. left:0px;
  12473. top:0px;
  12474. width:134px;
  12475. height:23px;
  12476. padding:2px 2px 2px 2px;
  12477. font-family:'ArialMT', 'Arial', sans-serif;
  12478. font-weight:400;
  12479. font-style:normal;
  12480. font-size:14px;
  12481. letter-spacing:normal;
  12482. color:#AAAAAA;
  12483. vertical-align:none;
  12484. text-align:left;
  12485. text-transform:none;
  12486. background-color:transparent;
  12487. border-color:transparent;
  12488. }
  12489. #u12171_input.disabled {
  12490. position:absolute;
  12491. left:0px;
  12492. top:0px;
  12493. width:134px;
  12494. height:23px;
  12495. padding:2px 2px 2px 2px;
  12496. font-family:'ArialMT', 'Arial', sans-serif;
  12497. font-weight:400;
  12498. font-style:normal;
  12499. font-size:14px;
  12500. letter-spacing:normal;
  12501. color:#AAAAAA;
  12502. vertical-align:none;
  12503. text-align:left;
  12504. text-transform:none;
  12505. background-color:transparent;
  12506. border-color:transparent;
  12507. }
  12508. #u12171_div {
  12509. border-width:0px;
  12510. position:absolute;
  12511. left:0px;
  12512. top:0px;
  12513. width:134px;
  12514. height:23px;
  12515. background:inherit;
  12516. background-color:rgba(242, 242, 242, 1);
  12517. border:none;
  12518. border-radius:0px;
  12519. -moz-box-shadow:none;
  12520. -webkit-box-shadow:none;
  12521. box-shadow:none;
  12522. font-size:14px;
  12523. color:#AAAAAA;
  12524. }
  12525. #u12171 {
  12526. border-width:0px;
  12527. position:absolute;
  12528. left:567px;
  12529. top:201px;
  12530. width:134px;
  12531. height:23px;
  12532. display:flex;
  12533. font-size:14px;
  12534. color:#AAAAAA;
  12535. }
  12536. #u12171 .text {
  12537. position:absolute;
  12538. align-self:flex-start;
  12539. padding:2px 2px 2px 2px;
  12540. box-sizing:border-box;
  12541. width:100%;
  12542. }
  12543. #u12171_div.disabled {
  12544. border-width:0px;
  12545. position:absolute;
  12546. left:0px;
  12547. top:0px;
  12548. width:134px;
  12549. height:23px;
  12550. background:inherit;
  12551. background-color:rgba(240, 240, 240, 1);
  12552. border:none;
  12553. border-radius:0px;
  12554. -moz-box-shadow:none;
  12555. -webkit-box-shadow:none;
  12556. box-shadow:none;
  12557. font-size:14px;
  12558. color:#AAAAAA;
  12559. }
  12560. #u12171.disabled {
  12561. }
  12562. .u12171_input_option {
  12563. font-size:14px;
  12564. }
  12565. #u12172 {
  12566. border-width:0px;
  12567. position:absolute;
  12568. left:0px;
  12569. top:0px;
  12570. width:0px;
  12571. height:0px;
  12572. }
  12573. #u12173_div {
  12574. border-width:0px;
  12575. position:absolute;
  12576. left:0px;
  12577. top:0px;
  12578. width:140px;
  12579. height:30px;
  12580. background:inherit;
  12581. background-color:rgba(255, 255, 255, 1);
  12582. box-sizing:border-box;
  12583. border-width:1px;
  12584. border-style:solid;
  12585. border-color:rgba(215, 215, 215, 1);
  12586. border-radius:4px;
  12587. -moz-box-shadow:none;
  12588. -webkit-box-shadow:none;
  12589. box-shadow:none;
  12590. font-size:14px;
  12591. }
  12592. #u12173 {
  12593. border-width:0px;
  12594. position:absolute;
  12595. left:861px;
  12596. top:199px;
  12597. width:140px;
  12598. height:30px;
  12599. display:flex;
  12600. font-size:14px;
  12601. }
  12602. #u12173 .text {
  12603. position:absolute;
  12604. align-self:center;
  12605. padding:2px 2px 2px 2px;
  12606. box-sizing:border-box;
  12607. width:100%;
  12608. }
  12609. #u12173_text {
  12610. border-width:0px;
  12611. word-wrap:break-word;
  12612. text-transform:none;
  12613. visibility:hidden;
  12614. }
  12615. #u12174_input {
  12616. position:absolute;
  12617. left:0px;
  12618. top:0px;
  12619. width:134px;
  12620. height:23px;
  12621. padding:2px 2px 2px 2px;
  12622. font-family:'ArialMT', 'Arial', sans-serif;
  12623. font-weight:400;
  12624. font-style:normal;
  12625. font-size:14px;
  12626. letter-spacing:normal;
  12627. color:#AAAAAA;
  12628. vertical-align:none;
  12629. text-align:left;
  12630. text-transform:none;
  12631. background-color:transparent;
  12632. border-color:transparent;
  12633. }
  12634. #u12174_input.disabled {
  12635. position:absolute;
  12636. left:0px;
  12637. top:0px;
  12638. width:134px;
  12639. height:23px;
  12640. padding:2px 2px 2px 2px;
  12641. font-family:'ArialMT', 'Arial', sans-serif;
  12642. font-weight:400;
  12643. font-style:normal;
  12644. font-size:14px;
  12645. letter-spacing:normal;
  12646. color:#AAAAAA;
  12647. vertical-align:none;
  12648. text-align:left;
  12649. text-transform:none;
  12650. background-color:transparent;
  12651. border-color:transparent;
  12652. }
  12653. #u12174_div {
  12654. border-width:0px;
  12655. position:absolute;
  12656. left:0px;
  12657. top:0px;
  12658. width:134px;
  12659. height:23px;
  12660. background:inherit;
  12661. background-color:rgba(255, 255, 255, 1);
  12662. border:none;
  12663. border-radius:0px;
  12664. -moz-box-shadow:none;
  12665. -webkit-box-shadow:none;
  12666. box-shadow:none;
  12667. font-size:14px;
  12668. color:#AAAAAA;
  12669. }
  12670. #u12174 {
  12671. border-width:0px;
  12672. position:absolute;
  12673. left:865px;
  12674. top:201px;
  12675. width:134px;
  12676. height:23px;
  12677. display:flex;
  12678. font-size:14px;
  12679. color:#AAAAAA;
  12680. }
  12681. #u12174 .text {
  12682. position:absolute;
  12683. align-self:flex-start;
  12684. padding:2px 2px 2px 2px;
  12685. box-sizing:border-box;
  12686. width:100%;
  12687. }
  12688. #u12174_div.disabled {
  12689. border-width:0px;
  12690. position:absolute;
  12691. left:0px;
  12692. top:0px;
  12693. width:134px;
  12694. height:23px;
  12695. background:inherit;
  12696. background-color:rgba(240, 240, 240, 1);
  12697. border:none;
  12698. border-radius:0px;
  12699. -moz-box-shadow:none;
  12700. -webkit-box-shadow:none;
  12701. box-shadow:none;
  12702. font-size:14px;
  12703. color:#AAAAAA;
  12704. }
  12705. #u12174.disabled {
  12706. }
  12707. .u12174_input_option {
  12708. font-size:14px;
  12709. }
  12710. #u12175 {
  12711. border-width:0px;
  12712. position:absolute;
  12713. left:0px;
  12714. top:0px;
  12715. width:0px;
  12716. height:0px;
  12717. }
  12718. #u12176_div {
  12719. border-width:0px;
  12720. position:absolute;
  12721. left:0px;
  12722. top:0px;
  12723. width:140px;
  12724. height:30px;
  12725. background:inherit;
  12726. background-color:rgba(255, 255, 255, 1);
  12727. box-sizing:border-box;
  12728. border-width:1px;
  12729. border-style:solid;
  12730. border-color:rgba(215, 215, 215, 1);
  12731. border-radius:4px;
  12732. -moz-box-shadow:none;
  12733. -webkit-box-shadow:none;
  12734. box-shadow:none;
  12735. font-size:14px;
  12736. }
  12737. #u12176 {
  12738. border-width:0px;
  12739. position:absolute;
  12740. left:1011px;
  12741. top:199px;
  12742. width:140px;
  12743. height:30px;
  12744. display:flex;
  12745. font-size:14px;
  12746. }
  12747. #u12176 .text {
  12748. position:absolute;
  12749. align-self:center;
  12750. padding:2px 2px 2px 2px;
  12751. box-sizing:border-box;
  12752. width:100%;
  12753. }
  12754. #u12176_text {
  12755. border-width:0px;
  12756. word-wrap:break-word;
  12757. text-transform:none;
  12758. visibility:hidden;
  12759. }
  12760. #u12177_input {
  12761. position:absolute;
  12762. left:0px;
  12763. top:0px;
  12764. width:134px;
  12765. height:23px;
  12766. padding:2px 2px 2px 2px;
  12767. font-family:'ArialMT', 'Arial', sans-serif;
  12768. font-weight:400;
  12769. font-style:normal;
  12770. font-size:14px;
  12771. letter-spacing:normal;
  12772. color:#AAAAAA;
  12773. vertical-align:none;
  12774. text-align:left;
  12775. text-transform:none;
  12776. background-color:transparent;
  12777. border-color:transparent;
  12778. }
  12779. #u12177_input.disabled {
  12780. position:absolute;
  12781. left:0px;
  12782. top:0px;
  12783. width:134px;
  12784. height:23px;
  12785. padding:2px 2px 2px 2px;
  12786. font-family:'ArialMT', 'Arial', sans-serif;
  12787. font-weight:400;
  12788. font-style:normal;
  12789. font-size:14px;
  12790. letter-spacing:normal;
  12791. color:#AAAAAA;
  12792. vertical-align:none;
  12793. text-align:left;
  12794. text-transform:none;
  12795. background-color:transparent;
  12796. border-color:transparent;
  12797. }
  12798. #u12177_div {
  12799. border-width:0px;
  12800. position:absolute;
  12801. left:0px;
  12802. top:0px;
  12803. width:134px;
  12804. height:23px;
  12805. background:inherit;
  12806. background-color:rgba(255, 255, 255, 1);
  12807. border:none;
  12808. border-radius:0px;
  12809. -moz-box-shadow:none;
  12810. -webkit-box-shadow:none;
  12811. box-shadow:none;
  12812. font-size:14px;
  12813. color:#AAAAAA;
  12814. }
  12815. #u12177 {
  12816. border-width:0px;
  12817. position:absolute;
  12818. left:1015px;
  12819. top:201px;
  12820. width:134px;
  12821. height:23px;
  12822. display:flex;
  12823. font-size:14px;
  12824. color:#AAAAAA;
  12825. }
  12826. #u12177 .text {
  12827. position:absolute;
  12828. align-self:flex-start;
  12829. padding:2px 2px 2px 2px;
  12830. box-sizing:border-box;
  12831. width:100%;
  12832. }
  12833. #u12177_div.disabled {
  12834. border-width:0px;
  12835. position:absolute;
  12836. left:0px;
  12837. top:0px;
  12838. width:134px;
  12839. height:23px;
  12840. background:inherit;
  12841. background-color:rgba(240, 240, 240, 1);
  12842. border:none;
  12843. border-radius:0px;
  12844. -moz-box-shadow:none;
  12845. -webkit-box-shadow:none;
  12846. box-shadow:none;
  12847. font-size:14px;
  12848. color:#AAAAAA;
  12849. }
  12850. #u12177.disabled {
  12851. }
  12852. .u12177_input_option {
  12853. font-size:14px;
  12854. }