styles.css 147 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2023px;
  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. #u18735 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u18736_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u18736 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u18736 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u18736_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u18737_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u18737 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u18737 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u18737_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u18738_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u18738 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u18738 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u18738_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u18739 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u18740 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u18740 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u18740_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u18740_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u18741_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u18741 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u18741 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u18741_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u18742_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u18742 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u18742 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u18742_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u18743 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u18744_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u18744 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u18744 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u18744_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u18745 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u18745 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u18745_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u18745_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u18746 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u18747_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u18747 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u18747 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u18747_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u18748 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u18748 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u18748_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u18748_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u18749 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u18750_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u18750 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u18750 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u18750_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u18751 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u18751 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u18751_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u18751_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u18752 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u18753_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u18753 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u18753 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u18753_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u18754 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u18754 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u18754_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u18754_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u18755 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u18756_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u18756 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u18756 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u18756_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u18757 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u18757 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u18757_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u18757_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u18758 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u18759_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u18759 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u18759 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u18759_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u18760 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u18760 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u18760_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u18760_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u18761 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u18762_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u18762 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u18762 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u18762_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u18763 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u18763 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u18763_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u18763_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u18764 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u18765_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u18765 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u18765 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u18765_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u18766 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u18766 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u18766_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u18766_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u18767 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u18768_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u18768 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u18768 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u18768_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u18769 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u18769 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u18769_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u18769_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u18770 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u18771_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u18771 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u18771 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u18771_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u18772 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u18772 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u18772_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u18772_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u18773 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u18774_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u18774 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u18774 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u18774_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u18775 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u18775 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u18775_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u18775_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u18776 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u18777_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:'ArialMT', 'Arial', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u18777_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:'ArialMT', 'Arial', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u18777_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u18777 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u18777 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u18777_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u18777.disabled {
  1294. }
  1295. .u18777_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u18778 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u18778 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u18778_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u18778_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u18779_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u18779 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u18779 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u18779_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u18780 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u18780 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u18780_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u18780_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u18781 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u18782_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u18782 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u18782 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u18782_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u18783 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u18783 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u18783_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u18783_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u18784 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u18784 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u18784_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u18784_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u18785 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u18785 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u18785_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u18785_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u18786 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u18786 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u18786_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u18786_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u18787 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u18788_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u18788 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u18788 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u18788_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u18789 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u18789 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u18789_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u18789_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u18790_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1259px;
  1673. height:1180px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. }
  1680. #u18790 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:330px;
  1684. top:50px;
  1685. width:1259px;
  1686. height:1180px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u18790 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u18790_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u18791 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:350px;
  1708. top:237px;
  1709. width:1219px;
  1710. height:311px;
  1711. }
  1712. #u18792 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:129px;
  1718. height:38px;
  1719. display:flex;
  1720. transition:none;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:12px;
  1725. color:#FFFFFF;
  1726. }
  1727. #u18792 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u18792_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:129px;
  1740. height:38px;
  1741. }
  1742. #u18792_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u18793 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:129px;
  1751. top:0px;
  1752. width:122px;
  1753. height:38px;
  1754. display:flex;
  1755. transition:none;
  1756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:12px;
  1760. color:#FFFFFF;
  1761. }
  1762. #u18793 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u18793_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:122px;
  1775. height:38px;
  1776. }
  1777. #u18793_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u18794 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:251px;
  1786. top:0px;
  1787. width:119px;
  1788. height:38px;
  1789. display:flex;
  1790. transition:none;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:12px;
  1795. color:#FFFFFF;
  1796. }
  1797. #u18794 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u18794_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:119px;
  1810. height:38px;
  1811. }
  1812. #u18794_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u18795 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:370px;
  1821. top:0px;
  1822. width:122px;
  1823. height:38px;
  1824. display:flex;
  1825. transition:none;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:12px;
  1830. color:#FFFFFF;
  1831. }
  1832. #u18795 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u18795_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:122px;
  1845. height:38px;
  1846. }
  1847. #u18795_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u18796 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:492px;
  1856. top:0px;
  1857. width:121px;
  1858. height:38px;
  1859. display:flex;
  1860. transition:none;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u18796 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u18796_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:121px;
  1880. height:38px;
  1881. }
  1882. #u18796_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u18797 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:613px;
  1891. top:0px;
  1892. width:122px;
  1893. height:38px;
  1894. display:flex;
  1895. transition:none;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:12px;
  1900. color:#FFFFFF;
  1901. }
  1902. #u18797 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u18797_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:122px;
  1915. height:38px;
  1916. }
  1917. #u18797_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u18798 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:735px;
  1926. top:0px;
  1927. width:119px;
  1928. height:38px;
  1929. display:flex;
  1930. transition:none;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#FFFFFF;
  1936. }
  1937. #u18798 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u18798_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:119px;
  1950. height:38px;
  1951. }
  1952. #u18798_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u18799 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:854px;
  1961. top:0px;
  1962. width:119px;
  1963. height:38px;
  1964. display:flex;
  1965. transition:none;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u18799 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u18799_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:119px;
  1985. height:38px;
  1986. }
  1987. #u18799_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u18800 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:973px;
  1996. top:0px;
  1997. width:122px;
  1998. height:38px;
  1999. display:flex;
  2000. transition:none;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u18800 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u18800_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:122px;
  2020. height:38px;
  2021. }
  2022. #u18800_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u18801 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:1095px;
  2031. top:0px;
  2032. width:124px;
  2033. height:38px;
  2034. display:flex;
  2035. transition:none;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u18801 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u18801_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:124px;
  2055. height:38px;
  2056. }
  2057. #u18801_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u18802 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:38px;
  2067. width:129px;
  2068. height:39px;
  2069. display:flex;
  2070. transition:none;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:12px;
  2075. color:#333333;
  2076. line-height:40px;
  2077. }
  2078. #u18802 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:2px 2px 2px 0px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u18802_img {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:129px;
  2091. height:39px;
  2092. }
  2093. #u18802_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u18803 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:129px;
  2103. top:38px;
  2104. width:122px;
  2105. height:39px;
  2106. display:flex;
  2107. transition:none;
  2108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2109. font-weight:400;
  2110. font-style:normal;
  2111. font-size:12px;
  2112. }
  2113. #u18803 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u18803_img {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:122px;
  2126. height:39px;
  2127. }
  2128. #u18803_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. }
  2133. #u18804 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:251px;
  2137. top:38px;
  2138. width:119px;
  2139. height:39px;
  2140. display:flex;
  2141. transition:none;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:12px;
  2146. }
  2147. #u18804 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u18804_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:119px;
  2160. height:39px;
  2161. }
  2162. #u18804_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u18805 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:370px;
  2171. top:38px;
  2172. width:122px;
  2173. height:39px;
  2174. display:flex;
  2175. transition:none;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. }
  2181. #u18805 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 2px 2px 0px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u18805_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:122px;
  2194. height:39px;
  2195. }
  2196. #u18805_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. visibility:hidden;
  2201. }
  2202. #u18806 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:492px;
  2206. top:38px;
  2207. width:121px;
  2208. height:39px;
  2209. display:flex;
  2210. transition:none;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:12px;
  2215. }
  2216. #u18806 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 2px 2px 0px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u18806_img {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:121px;
  2229. height:39px;
  2230. }
  2231. #u18806_text {
  2232. border-width:0px;
  2233. word-wrap:break-word;
  2234. text-transform:none;
  2235. visibility:hidden;
  2236. }
  2237. #u18807 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:613px;
  2241. top:38px;
  2242. width:122px;
  2243. height:39px;
  2244. display:flex;
  2245. transition:none;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:12px;
  2250. }
  2251. #u18807 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u18807_img {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:122px;
  2264. height:39px;
  2265. }
  2266. #u18807_text {
  2267. border-width:0px;
  2268. word-wrap:break-word;
  2269. text-transform:none;
  2270. visibility:hidden;
  2271. }
  2272. #u18808 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:735px;
  2276. top:38px;
  2277. width:119px;
  2278. height:39px;
  2279. display:flex;
  2280. transition:none;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:12px;
  2285. color:#606266;
  2286. }
  2287. #u18808 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u18808_img {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:119px;
  2300. height:39px;
  2301. }
  2302. #u18808_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u18809 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:854px;
  2312. top:38px;
  2313. width:119px;
  2314. height:39px;
  2315. display:flex;
  2316. transition:none;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:12px;
  2321. color:#333333;
  2322. }
  2323. #u18809 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u18809_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:119px;
  2336. height:39px;
  2337. }
  2338. #u18809_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u18810 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:973px;
  2348. top:38px;
  2349. width:122px;
  2350. height:39px;
  2351. display:flex;
  2352. transition:none;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:12px;
  2357. color:#333333;
  2358. }
  2359. #u18810 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 0px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u18810_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:122px;
  2372. height:39px;
  2373. }
  2374. #u18810_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. visibility:hidden;
  2379. }
  2380. #u18811 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:1095px;
  2384. top:38px;
  2385. width:124px;
  2386. height:39px;
  2387. display:flex;
  2388. transition:none;
  2389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2390. font-weight:400;
  2391. font-style:normal;
  2392. font-size:12px;
  2393. color:#298FFF;
  2394. line-height:35px;
  2395. }
  2396. #u18811 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 0px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u18811_img {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:124px;
  2409. height:39px;
  2410. }
  2411. #u18811_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. }
  2416. #u18812 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:77px;
  2421. width:129px;
  2422. height:44px;
  2423. display:flex;
  2424. transition:none;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. color:#333333;
  2430. line-height:40px;
  2431. }
  2432. #u18812 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u18812_img {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:129px;
  2445. height:44px;
  2446. }
  2447. #u18812_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. visibility:hidden;
  2452. }
  2453. #u18813 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:129px;
  2457. top:77px;
  2458. width:122px;
  2459. height:44px;
  2460. display:flex;
  2461. transition:none;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:12px;
  2466. }
  2467. #u18813 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u18813_img {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:122px;
  2480. height:44px;
  2481. }
  2482. #u18813_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u18814 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:251px;
  2492. top:77px;
  2493. width:119px;
  2494. height:44px;
  2495. display:flex;
  2496. transition:none;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:12px;
  2501. }
  2502. #u18814 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 0px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u18814_img {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:119px;
  2515. height:44px;
  2516. }
  2517. #u18814_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u18815 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:370px;
  2527. top:77px;
  2528. width:122px;
  2529. height:44px;
  2530. display:flex;
  2531. transition:none;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:12px;
  2536. }
  2537. #u18815 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u18815_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:122px;
  2550. height:44px;
  2551. }
  2552. #u18815_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. visibility:hidden;
  2557. }
  2558. #u18816 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:492px;
  2562. top:77px;
  2563. width:121px;
  2564. height:44px;
  2565. display:flex;
  2566. transition:none;
  2567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:12px;
  2571. }
  2572. #u18816 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u18816_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:121px;
  2585. height:44px;
  2586. }
  2587. #u18816_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u18817 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:613px;
  2597. top:77px;
  2598. width:122px;
  2599. height:44px;
  2600. display:flex;
  2601. transition:none;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:12px;
  2606. }
  2607. #u18817 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u18817_img {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:122px;
  2620. height:44px;
  2621. }
  2622. #u18817_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. visibility:hidden;
  2627. }
  2628. #u18818 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:735px;
  2632. top:77px;
  2633. width:119px;
  2634. height:44px;
  2635. display:flex;
  2636. transition:none;
  2637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:12px;
  2641. color:#606266;
  2642. }
  2643. #u18818 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u18818_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:119px;
  2656. height:44px;
  2657. }
  2658. #u18818_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. visibility:hidden;
  2663. }
  2664. #u18819 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:854px;
  2668. top:77px;
  2669. width:119px;
  2670. height:44px;
  2671. display:flex;
  2672. transition:none;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:12px;
  2677. color:#333333;
  2678. }
  2679. #u18819 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u18819_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:119px;
  2692. height:44px;
  2693. }
  2694. #u18819_text {
  2695. border-width:0px;
  2696. word-wrap:break-word;
  2697. text-transform:none;
  2698. visibility:hidden;
  2699. }
  2700. #u18820 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:973px;
  2704. top:77px;
  2705. width:122px;
  2706. height:44px;
  2707. display:flex;
  2708. transition:none;
  2709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2710. font-weight:400;
  2711. font-style:normal;
  2712. font-size:12px;
  2713. color:#333333;
  2714. }
  2715. #u18820 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 0px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u18820_img {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:122px;
  2728. height:44px;
  2729. }
  2730. #u18820_text {
  2731. border-width:0px;
  2732. word-wrap:break-word;
  2733. text-transform:none;
  2734. visibility:hidden;
  2735. }
  2736. #u18821 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:1095px;
  2740. top:77px;
  2741. width:124px;
  2742. height:44px;
  2743. display:flex;
  2744. transition:none;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. color:#1890FF;
  2750. }
  2751. #u18821 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 2px 2px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u18821_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:124px;
  2764. height:44px;
  2765. }
  2766. #u18821_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. visibility:hidden;
  2771. }
  2772. #u18822 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:121px;
  2777. width:129px;
  2778. height:38px;
  2779. display:flex;
  2780. transition:none;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#333333;
  2786. line-height:40px;
  2787. }
  2788. #u18822 .text {
  2789. position:absolute;
  2790. align-self:center;
  2791. padding:2px 2px 2px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u18822_img {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:129px;
  2801. height:38px;
  2802. }
  2803. #u18822_text {
  2804. border-width:0px;
  2805. word-wrap:break-word;
  2806. text-transform:none;
  2807. visibility:hidden;
  2808. }
  2809. #u18823 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:129px;
  2813. top:121px;
  2814. width:122px;
  2815. height:38px;
  2816. display:flex;
  2817. transition:none;
  2818. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. font-size:12px;
  2822. color:#606266;
  2823. }
  2824. #u18823 .text {
  2825. position:absolute;
  2826. align-self:center;
  2827. padding:2px 2px 2px 0px;
  2828. box-sizing:border-box;
  2829. width:100%;
  2830. }
  2831. #u18823_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:122px;
  2837. height:38px;
  2838. }
  2839. #u18823_text {
  2840. border-width:0px;
  2841. word-wrap:break-word;
  2842. text-transform:none;
  2843. visibility:hidden;
  2844. }
  2845. #u18824 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:251px;
  2849. top:121px;
  2850. width:119px;
  2851. height:38px;
  2852. display:flex;
  2853. transition:none;
  2854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:12px;
  2858. color:#606266;
  2859. }
  2860. #u18824 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u18824_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:119px;
  2873. height:38px;
  2874. }
  2875. #u18824_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. visibility:hidden;
  2880. }
  2881. #u18825 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:370px;
  2885. top:121px;
  2886. width:122px;
  2887. height:38px;
  2888. display:flex;
  2889. transition:none;
  2890. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2891. font-weight:400;
  2892. font-style:normal;
  2893. font-size:12px;
  2894. color:#606266;
  2895. }
  2896. #u18825 .text {
  2897. position:absolute;
  2898. align-self:center;
  2899. padding:2px 2px 2px 0px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u18825_img {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:122px;
  2909. height:38px;
  2910. }
  2911. #u18825_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. visibility:hidden;
  2916. }
  2917. #u18826 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:492px;
  2921. top:121px;
  2922. width:121px;
  2923. height:38px;
  2924. display:flex;
  2925. transition:none;
  2926. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:12px;
  2930. color:#606266;
  2931. }
  2932. #u18826 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:2px 2px 2px 0px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u18826_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:121px;
  2945. height:38px;
  2946. }
  2947. #u18826_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. visibility:hidden;
  2952. }
  2953. #u18827 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:613px;
  2957. top:121px;
  2958. width:122px;
  2959. height:38px;
  2960. display:flex;
  2961. transition:none;
  2962. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:12px;
  2966. color:#606266;
  2967. }
  2968. #u18827 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u18827_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:122px;
  2981. height:38px;
  2982. }
  2983. #u18827_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u18828 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:735px;
  2993. top:121px;
  2994. width:119px;
  2995. height:38px;
  2996. display:flex;
  2997. transition:none;
  2998. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:12px;
  3002. color:#606266;
  3003. }
  3004. #u18828 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 0px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u18828_img {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:119px;
  3017. height:38px;
  3018. }
  3019. #u18828_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. visibility:hidden;
  3024. }
  3025. #u18829 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:854px;
  3029. top:121px;
  3030. width:119px;
  3031. height:38px;
  3032. display:flex;
  3033. transition:none;
  3034. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:12px;
  3038. color:#606266;
  3039. }
  3040. #u18829 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u18829_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:119px;
  3053. height:38px;
  3054. }
  3055. #u18829_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. visibility:hidden;
  3060. }
  3061. #u18830 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:973px;
  3065. top:121px;
  3066. width:122px;
  3067. height:38px;
  3068. display:flex;
  3069. transition:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:12px;
  3074. color:#606266;
  3075. }
  3076. #u18830 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 0px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u18830_img {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:122px;
  3089. height:38px;
  3090. }
  3091. #u18830_text {
  3092. border-width:0px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. visibility:hidden;
  3096. }
  3097. #u18831 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:1095px;
  3101. top:121px;
  3102. width:124px;
  3103. height:38px;
  3104. display:flex;
  3105. transition:none;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:12px;
  3110. color:#1890FF;
  3111. }
  3112. #u18831 .text {
  3113. position:absolute;
  3114. align-self:center;
  3115. padding:2px 2px 2px 0px;
  3116. box-sizing:border-box;
  3117. width:100%;
  3118. }
  3119. #u18831_img {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:124px;
  3125. height:38px;
  3126. }
  3127. #u18831_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. visibility:hidden;
  3132. }
  3133. #u18832 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:159px;
  3138. width:129px;
  3139. height:38px;
  3140. display:flex;
  3141. transition:none;
  3142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:12px;
  3146. color:#606266;
  3147. }
  3148. #u18832 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:2px 2px 2px 0px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u18832_img {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:129px;
  3161. height:38px;
  3162. }
  3163. #u18832_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u18833 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:129px;
  3173. top:159px;
  3174. width:122px;
  3175. height:38px;
  3176. display:flex;
  3177. transition:none;
  3178. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. color:#606266;
  3183. }
  3184. #u18833 .text {
  3185. position:absolute;
  3186. align-self:center;
  3187. padding:2px 2px 2px 0px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u18833_img {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:122px;
  3197. height:38px;
  3198. }
  3199. #u18833_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u18834 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:251px;
  3209. top:159px;
  3210. width:119px;
  3211. height:38px;
  3212. display:flex;
  3213. transition:none;
  3214. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:12px;
  3218. color:#606266;
  3219. }
  3220. #u18834 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 0px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u18834_img {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:119px;
  3233. height:38px;
  3234. }
  3235. #u18834_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u18835 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:370px;
  3245. top:159px;
  3246. width:122px;
  3247. height:38px;
  3248. display:flex;
  3249. transition:none;
  3250. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. color:#606266;
  3255. }
  3256. #u18835 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 0px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u18835_img {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:122px;
  3269. height:38px;
  3270. }
  3271. #u18835_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. visibility:hidden;
  3276. }
  3277. #u18836 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:492px;
  3281. top:159px;
  3282. width:121px;
  3283. height:38px;
  3284. display:flex;
  3285. transition:none;
  3286. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:12px;
  3290. color:#606266;
  3291. }
  3292. #u18836 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 2px 2px 0px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u18836_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:121px;
  3305. height:38px;
  3306. }
  3307. #u18836_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u18837 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:613px;
  3317. top:159px;
  3318. width:122px;
  3319. height:38px;
  3320. display:flex;
  3321. transition:none;
  3322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:12px;
  3326. color:#606266;
  3327. }
  3328. #u18837 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:2px 2px 2px 0px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u18837_img {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:122px;
  3341. height:38px;
  3342. }
  3343. #u18837_text {
  3344. border-width:0px;
  3345. word-wrap:break-word;
  3346. text-transform:none;
  3347. visibility:hidden;
  3348. }
  3349. #u18838 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:735px;
  3353. top:159px;
  3354. width:119px;
  3355. height:38px;
  3356. display:flex;
  3357. transition:none;
  3358. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:12px;
  3362. color:#606266;
  3363. }
  3364. #u18838 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u18838_img {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:119px;
  3377. height:38px;
  3378. }
  3379. #u18838_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u18839 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:854px;
  3389. top:159px;
  3390. width:119px;
  3391. height:38px;
  3392. display:flex;
  3393. transition:none;
  3394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:12px;
  3398. color:#606266;
  3399. }
  3400. #u18839 .text {
  3401. position:absolute;
  3402. align-self:center;
  3403. padding:2px 2px 2px 0px;
  3404. box-sizing:border-box;
  3405. width:100%;
  3406. }
  3407. #u18839_img {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:119px;
  3413. height:38px;
  3414. }
  3415. #u18839_text {
  3416. border-width:0px;
  3417. word-wrap:break-word;
  3418. text-transform:none;
  3419. visibility:hidden;
  3420. }
  3421. #u18840 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:973px;
  3425. top:159px;
  3426. width:122px;
  3427. height:38px;
  3428. display:flex;
  3429. transition:none;
  3430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. color:#606266;
  3435. }
  3436. #u18840 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u18840_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:122px;
  3449. height:38px;
  3450. }
  3451. #u18840_text {
  3452. border-width:0px;
  3453. word-wrap:break-word;
  3454. text-transform:none;
  3455. visibility:hidden;
  3456. }
  3457. #u18841 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:1095px;
  3461. top:159px;
  3462. width:124px;
  3463. height:38px;
  3464. display:flex;
  3465. transition:none;
  3466. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:12px;
  3470. color:#606266;
  3471. }
  3472. #u18841 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u18841_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:124px;
  3485. height:38px;
  3486. }
  3487. #u18841_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u18842 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:197px;
  3498. width:129px;
  3499. height:38px;
  3500. display:flex;
  3501. transition:none;
  3502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:12px;
  3506. color:#606266;
  3507. }
  3508. #u18842 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:2px 2px 2px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u18842_img {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:129px;
  3521. height:38px;
  3522. }
  3523. #u18842_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u18843 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:129px;
  3533. top:197px;
  3534. width:122px;
  3535. height:38px;
  3536. display:flex;
  3537. transition:none;
  3538. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:12px;
  3542. color:#606266;
  3543. }
  3544. #u18843 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u18843_img {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:122px;
  3557. height:38px;
  3558. }
  3559. #u18843_text {
  3560. border-width:0px;
  3561. word-wrap:break-word;
  3562. text-transform:none;
  3563. visibility:hidden;
  3564. }
  3565. #u18844 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:251px;
  3569. top:197px;
  3570. width:119px;
  3571. height:38px;
  3572. display:flex;
  3573. transition:none;
  3574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#606266;
  3579. }
  3580. #u18844 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u18844_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:119px;
  3593. height:38px;
  3594. }
  3595. #u18844_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u18845 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:370px;
  3605. top:197px;
  3606. width:122px;
  3607. height:38px;
  3608. display:flex;
  3609. transition:none;
  3610. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:12px;
  3614. color:#606266;
  3615. }
  3616. #u18845 .text {
  3617. position:absolute;
  3618. align-self:center;
  3619. padding:2px 2px 2px 0px;
  3620. box-sizing:border-box;
  3621. width:100%;
  3622. }
  3623. #u18845_img {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:122px;
  3629. height:38px;
  3630. }
  3631. #u18845_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u18846 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:492px;
  3641. top:197px;
  3642. width:121px;
  3643. height:38px;
  3644. display:flex;
  3645. transition:none;
  3646. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:12px;
  3650. color:#606266;
  3651. }
  3652. #u18846 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u18846_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:121px;
  3665. height:38px;
  3666. }
  3667. #u18846_text {
  3668. border-width:0px;
  3669. word-wrap:break-word;
  3670. text-transform:none;
  3671. visibility:hidden;
  3672. }
  3673. #u18847 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:613px;
  3677. top:197px;
  3678. width:122px;
  3679. height:38px;
  3680. display:flex;
  3681. transition:none;
  3682. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:12px;
  3686. color:#606266;
  3687. }
  3688. #u18847 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 2px 2px 0px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u18847_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:122px;
  3701. height:38px;
  3702. }
  3703. #u18847_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u18848 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:735px;
  3713. top:197px;
  3714. width:119px;
  3715. height:38px;
  3716. display:flex;
  3717. transition:none;
  3718. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:12px;
  3722. color:#606266;
  3723. }
  3724. #u18848 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u18848_img {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:119px;
  3737. height:38px;
  3738. }
  3739. #u18848_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. visibility:hidden;
  3744. }
  3745. #u18849 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:854px;
  3749. top:197px;
  3750. width:119px;
  3751. height:38px;
  3752. display:flex;
  3753. transition:none;
  3754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:12px;
  3758. color:#606266;
  3759. }
  3760. #u18849 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u18849_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:119px;
  3773. height:38px;
  3774. }
  3775. #u18849_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. visibility:hidden;
  3780. }
  3781. #u18850 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:973px;
  3785. top:197px;
  3786. width:122px;
  3787. height:38px;
  3788. display:flex;
  3789. transition:none;
  3790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:12px;
  3794. color:#606266;
  3795. }
  3796. #u18850 .text {
  3797. position:absolute;
  3798. align-self:center;
  3799. padding:2px 2px 2px 0px;
  3800. box-sizing:border-box;
  3801. width:100%;
  3802. }
  3803. #u18850_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:122px;
  3809. height:38px;
  3810. }
  3811. #u18850_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. visibility:hidden;
  3816. }
  3817. #u18851 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:1095px;
  3821. top:197px;
  3822. width:124px;
  3823. height:38px;
  3824. display:flex;
  3825. transition:none;
  3826. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3827. font-weight:400;
  3828. font-style:normal;
  3829. font-size:12px;
  3830. color:#606266;
  3831. }
  3832. #u18851 .text {
  3833. position:absolute;
  3834. align-self:center;
  3835. padding:2px 2px 2px 0px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u18851_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:124px;
  3845. height:38px;
  3846. }
  3847. #u18851_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u18852 {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:235px;
  3858. width:129px;
  3859. height:38px;
  3860. display:flex;
  3861. transition:none;
  3862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3863. font-weight:400;
  3864. font-style:normal;
  3865. font-size:12px;
  3866. color:#606266;
  3867. }
  3868. #u18852 .text {
  3869. position:absolute;
  3870. align-self:center;
  3871. padding:2px 2px 2px 0px;
  3872. box-sizing:border-box;
  3873. width:100%;
  3874. }
  3875. #u18852_img {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:129px;
  3881. height:38px;
  3882. }
  3883. #u18852_text {
  3884. border-width:0px;
  3885. word-wrap:break-word;
  3886. text-transform:none;
  3887. visibility:hidden;
  3888. }
  3889. #u18853 {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:129px;
  3893. top:235px;
  3894. width:122px;
  3895. height:38px;
  3896. display:flex;
  3897. transition:none;
  3898. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:12px;
  3902. color:#606266;
  3903. }
  3904. #u18853 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 0px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u18853_img {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:122px;
  3917. height:38px;
  3918. }
  3919. #u18853_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. visibility:hidden;
  3924. }
  3925. #u18854 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:251px;
  3929. top:235px;
  3930. width:119px;
  3931. height:38px;
  3932. display:flex;
  3933. transition:none;
  3934. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3935. font-weight:400;
  3936. font-style:normal;
  3937. font-size:12px;
  3938. color:#606266;
  3939. }
  3940. #u18854 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 2px 2px 0px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u18854_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:119px;
  3953. height:38px;
  3954. }
  3955. #u18854_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u18855 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:370px;
  3965. top:235px;
  3966. width:122px;
  3967. height:38px;
  3968. display:flex;
  3969. transition:none;
  3970. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:12px;
  3974. color:#606266;
  3975. }
  3976. #u18855 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 2px 2px 0px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u18855_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:122px;
  3989. height:38px;
  3990. }
  3991. #u18855_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u18856 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:492px;
  4001. top:235px;
  4002. width:121px;
  4003. height:38px;
  4004. display:flex;
  4005. transition:none;
  4006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:12px;
  4010. color:#606266;
  4011. }
  4012. #u18856 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u18856_img {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:121px;
  4025. height:38px;
  4026. }
  4027. #u18856_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. visibility:hidden;
  4032. }
  4033. #u18857 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:613px;
  4037. top:235px;
  4038. width:122px;
  4039. height:38px;
  4040. display:flex;
  4041. transition:none;
  4042. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:12px;
  4046. color:#606266;
  4047. }
  4048. #u18857 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 0px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u18857_img {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:122px;
  4061. height:38px;
  4062. }
  4063. #u18857_text {
  4064. border-width:0px;
  4065. word-wrap:break-word;
  4066. text-transform:none;
  4067. visibility:hidden;
  4068. }
  4069. #u18858 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:735px;
  4073. top:235px;
  4074. width:119px;
  4075. height:38px;
  4076. display:flex;
  4077. transition:none;
  4078. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:12px;
  4082. color:#606266;
  4083. }
  4084. #u18858 .text {
  4085. position:absolute;
  4086. align-self:center;
  4087. padding:2px 2px 2px 0px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u18858_img {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:119px;
  4097. height:38px;
  4098. }
  4099. #u18858_text {
  4100. border-width:0px;
  4101. word-wrap:break-word;
  4102. text-transform:none;
  4103. visibility:hidden;
  4104. }
  4105. #u18859 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:854px;
  4109. top:235px;
  4110. width:119px;
  4111. height:38px;
  4112. display:flex;
  4113. transition:none;
  4114. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u18859 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u18859_img {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:119px;
  4133. height:38px;
  4134. }
  4135. #u18859_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. visibility:hidden;
  4140. }
  4141. #u18860 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:973px;
  4145. top:235px;
  4146. width:122px;
  4147. height:38px;
  4148. display:flex;
  4149. transition:none;
  4150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. font-size:12px;
  4154. color:#606266;
  4155. }
  4156. #u18860 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 0px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u18860_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:122px;
  4169. height:38px;
  4170. }
  4171. #u18860_text {
  4172. border-width:0px;
  4173. word-wrap:break-word;
  4174. text-transform:none;
  4175. visibility:hidden;
  4176. }
  4177. #u18861 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:1095px;
  4181. top:235px;
  4182. width:124px;
  4183. height:38px;
  4184. display:flex;
  4185. transition:none;
  4186. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:12px;
  4190. color:#606266;
  4191. }
  4192. #u18861 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:2px 2px 2px 0px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u18861_img {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:124px;
  4205. height:38px;
  4206. }
  4207. #u18861_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u18862 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:273px;
  4218. width:129px;
  4219. height:38px;
  4220. display:flex;
  4221. transition:none;
  4222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:12px;
  4226. color:#606266;
  4227. }
  4228. #u18862 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u18862_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:129px;
  4241. height:38px;
  4242. }
  4243. #u18862_text {
  4244. border-width:0px;
  4245. word-wrap:break-word;
  4246. text-transform:none;
  4247. visibility:hidden;
  4248. }
  4249. #u18863 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:129px;
  4253. top:273px;
  4254. width:122px;
  4255. height:38px;
  4256. display:flex;
  4257. transition:none;
  4258. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4259. font-weight:400;
  4260. font-style:normal;
  4261. font-size:12px;
  4262. color:#606266;
  4263. }
  4264. #u18863 .text {
  4265. position:absolute;
  4266. align-self:center;
  4267. padding:2px 2px 2px 0px;
  4268. box-sizing:border-box;
  4269. width:100%;
  4270. }
  4271. #u18863_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:122px;
  4277. height:38px;
  4278. }
  4279. #u18863_text {
  4280. border-width:0px;
  4281. word-wrap:break-word;
  4282. text-transform:none;
  4283. visibility:hidden;
  4284. }
  4285. #u18864 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:251px;
  4289. top:273px;
  4290. width:119px;
  4291. height:38px;
  4292. display:flex;
  4293. transition:none;
  4294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:12px;
  4298. color:#606266;
  4299. }
  4300. #u18864 .text {
  4301. position:absolute;
  4302. align-self:center;
  4303. padding:2px 2px 2px 0px;
  4304. box-sizing:border-box;
  4305. width:100%;
  4306. }
  4307. #u18864_img {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:119px;
  4313. height:38px;
  4314. }
  4315. #u18864_text {
  4316. border-width:0px;
  4317. word-wrap:break-word;
  4318. text-transform:none;
  4319. visibility:hidden;
  4320. }
  4321. #u18865 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:370px;
  4325. top:273px;
  4326. width:122px;
  4327. height:38px;
  4328. display:flex;
  4329. transition:none;
  4330. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:12px;
  4334. color:#606266;
  4335. }
  4336. #u18865 .text {
  4337. position:absolute;
  4338. align-self:center;
  4339. padding:2px 2px 2px 0px;
  4340. box-sizing:border-box;
  4341. width:100%;
  4342. }
  4343. #u18865_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:122px;
  4349. height:38px;
  4350. }
  4351. #u18865_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u18866 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:492px;
  4361. top:273px;
  4362. width:121px;
  4363. height:38px;
  4364. display:flex;
  4365. transition:none;
  4366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. color:#606266;
  4371. }
  4372. #u18866 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 0px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u18866_img {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:121px;
  4385. height:38px;
  4386. }
  4387. #u18866_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u18867 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:613px;
  4397. top:273px;
  4398. width:122px;
  4399. height:38px;
  4400. display:flex;
  4401. transition:none;
  4402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:12px;
  4406. color:#606266;
  4407. }
  4408. #u18867 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 0px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u18867_img {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:122px;
  4421. height:38px;
  4422. }
  4423. #u18867_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u18868 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:735px;
  4433. top:273px;
  4434. width:119px;
  4435. height:38px;
  4436. display:flex;
  4437. transition:none;
  4438. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. color:#606266;
  4443. }
  4444. #u18868 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 2px 2px 0px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u18868_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:119px;
  4457. height:38px;
  4458. }
  4459. #u18868_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u18869 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:854px;
  4469. top:273px;
  4470. width:119px;
  4471. height:38px;
  4472. display:flex;
  4473. transition:none;
  4474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:12px;
  4478. color:#606266;
  4479. }
  4480. #u18869 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 0px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u18869_img {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:119px;
  4493. height:38px;
  4494. }
  4495. #u18869_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u18870 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:973px;
  4505. top:273px;
  4506. width:122px;
  4507. height:38px;
  4508. display:flex;
  4509. transition:none;
  4510. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4511. font-weight:400;
  4512. font-style:normal;
  4513. font-size:12px;
  4514. color:#606266;
  4515. }
  4516. #u18870 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:2px 2px 2px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u18870_img {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:122px;
  4529. height:38px;
  4530. }
  4531. #u18870_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. visibility:hidden;
  4536. }
  4537. #u18871 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:1095px;
  4541. top:273px;
  4542. width:124px;
  4543. height:38px;
  4544. display:flex;
  4545. transition:none;
  4546. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:12px;
  4550. color:#606266;
  4551. }
  4552. #u18871 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:2px 2px 2px 0px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u18871_img {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:124px;
  4565. height:38px;
  4566. }
  4567. #u18871_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. visibility:hidden;
  4572. }
  4573. #u18872_div {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:73px;
  4579. height:50px;
  4580. background:inherit;
  4581. background-color:rgba(255, 255, 255, 0);
  4582. border-left:0px;
  4583. border-top:0px;
  4584. border-right:0px;
  4585. border-radius:0px;
  4586. border-bottom-right-radius:0px;
  4587. border-bottom-left-radius:0px;
  4588. filter:drop-shadow(none);
  4589. transition:none;
  4590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:18px;
  4594. }
  4595. #u18872 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:349px;
  4599. top:52px;
  4600. width:73px;
  4601. height:50px;
  4602. display:flex;
  4603. transition:none;
  4604. transform-origin:50% 50%;
  4605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:18px;
  4609. }
  4610. #u18872 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:0px 0px 0px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u18872_text {
  4618. border-width:0px;
  4619. white-space:nowrap;
  4620. text-transform:none;
  4621. }
  4622. #u18873 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:0px;
  4628. height:0px;
  4629. }
  4630. #u18874_div {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:60px;
  4636. height:30px;
  4637. background:inherit;
  4638. background-color:rgba(24, 144, 255, 1);
  4639. border-radius:4px;
  4640. filter:drop-shadow(none);
  4641. transition:none;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:14px;
  4646. color:#FFFFFF;
  4647. }
  4648. #u18874 {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:1400px;
  4652. top:140px;
  4653. width:60px;
  4654. height:30px;
  4655. display:flex;
  4656. transition:none;
  4657. transform-origin:50% 50%;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:14px;
  4662. color:#FFFFFF;
  4663. }
  4664. #u18874 .text {
  4665. position:absolute;
  4666. align-self:center;
  4667. padding:2px 2px 2px 2px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u18874_text {
  4672. border-width:0px;
  4673. word-wrap:break-word;
  4674. text-transform:none;
  4675. }
  4676. #u18875_div {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:60px;
  4682. height:30px;
  4683. background:inherit;
  4684. background-color:rgba(255, 255, 255, 1);
  4685. box-sizing:border-box;
  4686. border-width:1px;
  4687. border-style:solid;
  4688. border-color:rgba(170, 170, 170, 1);
  4689. border-radius:4px;
  4690. filter:drop-shadow(none);
  4691. transition:none;
  4692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4693. font-weight:400;
  4694. font-style:normal;
  4695. font-size:14px;
  4696. }
  4697. #u18875 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:1470px;
  4701. top:140px;
  4702. width:60px;
  4703. height:30px;
  4704. display:flex;
  4705. transition:none;
  4706. transform-origin:50% 50%;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:14px;
  4711. }
  4712. #u18875 .text {
  4713. position:absolute;
  4714. align-self:center;
  4715. padding:2px 2px 2px 2px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u18875_text {
  4720. border-width:0px;
  4721. word-wrap:break-word;
  4722. text-transform:none;
  4723. }
  4724. #u18876 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:0px;
  4730. height:0px;
  4731. }
  4732. #u18877_div {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:140px;
  4738. height:30px;
  4739. background:inherit;
  4740. background-color:rgba(255, 255, 255, 1);
  4741. box-sizing:border-box;
  4742. border-width:1px;
  4743. border-style:solid;
  4744. border-color:rgba(215, 215, 215, 1);
  4745. border-radius:4px;
  4746. filter:drop-shadow(none);
  4747. transition:none;
  4748. font-size:14px;
  4749. }
  4750. #u18877 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:350px;
  4754. top:140px;
  4755. width:140px;
  4756. height:30px;
  4757. display:flex;
  4758. transition:none;
  4759. transform-origin:50% 50%;
  4760. font-size:14px;
  4761. }
  4762. #u18877 .text {
  4763. position:absolute;
  4764. align-self:center;
  4765. padding:2px 2px 2px 2px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u18877_text {
  4770. border-width:0px;
  4771. word-wrap:break-word;
  4772. text-transform:none;
  4773. visibility:hidden;
  4774. }
  4775. #u18878_input {
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:134px;
  4780. height:23px;
  4781. padding:2px 2px 2px 2px;
  4782. font-family:'ArialMT', 'Arial', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:14px;
  4786. letter-spacing:normal;
  4787. color:#AAAAAA;
  4788. vertical-align:none;
  4789. text-align:left;
  4790. text-transform:none;
  4791. background-color:transparent;
  4792. border-color:transparent;
  4793. }
  4794. #u18878_input.disabled {
  4795. position:absolute;
  4796. left:0px;
  4797. top:0px;
  4798. width:134px;
  4799. height:23px;
  4800. padding:2px 2px 2px 2px;
  4801. font-family:'ArialMT', 'Arial', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:14px;
  4805. letter-spacing:normal;
  4806. color:#AAAAAA;
  4807. vertical-align:none;
  4808. text-align:left;
  4809. text-transform:none;
  4810. background-color:transparent;
  4811. border-color:transparent;
  4812. }
  4813. #u18878_div {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:134px;
  4819. height:23px;
  4820. background:inherit;
  4821. background-color:rgba(255, 255, 255, 1);
  4822. border-radius:0px;
  4823. filter:drop-shadow(none);
  4824. transition:none;
  4825. font-size:14px;
  4826. color:#AAAAAA;
  4827. }
  4828. #u18878 {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:354px;
  4832. top:142px;
  4833. width:134px;
  4834. height:23px;
  4835. display:flex;
  4836. transition:none;
  4837. transform-origin:50% 50%;
  4838. font-size:14px;
  4839. color:#AAAAAA;
  4840. }
  4841. #u18878 .text {
  4842. position:absolute;
  4843. align-self:flex-start;
  4844. padding:2px 2px 2px 2px;
  4845. box-sizing:border-box;
  4846. width:100%;
  4847. }
  4848. #u18878_div.disabled {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:134px;
  4854. height:23px;
  4855. background:inherit;
  4856. background-color:rgba(240, 240, 240, 1);
  4857. border-radius:0px;
  4858. filter:drop-shadow(none);
  4859. transition:none;
  4860. font-size:14px;
  4861. color:#AAAAAA;
  4862. }
  4863. #u18878.disabled {
  4864. }
  4865. .u18878_input_option {
  4866. font-size:14px;
  4867. }
  4868. #u18879 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:0px;
  4874. height:0px;
  4875. }
  4876. #u18880_div {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:140px;
  4882. height:30px;
  4883. background:inherit;
  4884. background-color:rgba(255, 255, 255, 1);
  4885. box-sizing:border-box;
  4886. border-width:1px;
  4887. border-style:solid;
  4888. border-color:rgba(201, 201, 201, 1);
  4889. border-radius:4px;
  4890. filter:drop-shadow(none);
  4891. transition:none;
  4892. font-family:"Microsoft YaHei", sans-serif;
  4893. font-weight:400;
  4894. font-style:normal;
  4895. font-size:14px;
  4896. color:#CCCCCC;
  4897. text-align:left;
  4898. }
  4899. #u18880 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:500px;
  4903. top:140px;
  4904. width:140px;
  4905. height:30px;
  4906. display:flex;
  4907. transition:none;
  4908. transform-origin:50% 50%;
  4909. font-family:"Microsoft YaHei", sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:14px;
  4913. color:#CCCCCC;
  4914. text-align:left;
  4915. }
  4916. #u18880 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 8px 2px 8px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u18880_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u18881_input {
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:127px;
  4934. height:25px;
  4935. padding:2px 2px 2px 2px;
  4936. font-family:"Microsoft YaHei", sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:10px;
  4940. letter-spacing:normal;
  4941. color:#000000;
  4942. vertical-align:none;
  4943. text-align:left;
  4944. text-transform:none;
  4945. background-color:transparent;
  4946. border-color:transparent;
  4947. }
  4948. #u18881_input.hint {
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:127px;
  4953. height:25px;
  4954. padding:2px 2px 2px 2px;
  4955. font-family:"Microsoft YaHei", sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:12px;
  4959. letter-spacing:normal;
  4960. color:#AAAAAA;
  4961. vertical-align:none;
  4962. text-align:left;
  4963. text-transform:none;
  4964. background-color:transparent;
  4965. border-color:transparent;
  4966. }
  4967. #u18881_input.disabled {
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:127px;
  4972. height:25px;
  4973. padding:2px 2px 2px 2px;
  4974. font-family:"Microsoft YaHei", sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:10px;
  4978. letter-spacing:normal;
  4979. color:#000000;
  4980. vertical-align:none;
  4981. text-align:left;
  4982. text-transform:none;
  4983. background-color:transparent;
  4984. border-color:transparent;
  4985. }
  4986. #u18881_input.hint.disabled {
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:127px;
  4991. height:25px;
  4992. padding:2px 2px 2px 2px;
  4993. font-family:"Microsoft YaHei", sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:12px;
  4997. letter-spacing:normal;
  4998. color:#AAAAAA;
  4999. vertical-align:none;
  5000. text-align:left;
  5001. text-transform:none;
  5002. background-color:transparent;
  5003. border-color:transparent;
  5004. }
  5005. #u18881_div {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:127px;
  5011. height:25px;
  5012. background:inherit;
  5013. background-color:rgba(255, 255, 255, 1);
  5014. border-radius:0px;
  5015. filter:drop-shadow(none);
  5016. transition:none;
  5017. font-family:"Microsoft YaHei", sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:10px;
  5021. }
  5022. #u18881 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:508px;
  5026. top:141px;
  5027. width:127px;
  5028. height:25px;
  5029. display:flex;
  5030. transition:none;
  5031. transform-origin:50% 50%;
  5032. font-family:"Microsoft YaHei", sans-serif;
  5033. font-weight:400;
  5034. font-style:normal;
  5035. font-size:10px;
  5036. }
  5037. #u18881 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 2px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u18881_div.hint {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:127px;
  5050. height:25px;
  5051. background:inherit;
  5052. background-color:rgba(255, 255, 255, 1);
  5053. border-radius:0px;
  5054. filter:drop-shadow(none);
  5055. transition:none;
  5056. font-family:"Microsoft YaHei", sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:10px;
  5060. }
  5061. #u18881.hint {
  5062. }
  5063. #u18881_div.disabled {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:127px;
  5069. height:25px;
  5070. background:inherit;
  5071. background-color:rgba(240, 240, 240, 1);
  5072. border-radius:0px;
  5073. filter:drop-shadow(none);
  5074. transition:none;
  5075. font-family:"Microsoft YaHei", sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:10px;
  5079. }
  5080. #u18881.disabled {
  5081. }
  5082. #u18881_div.hint.disabled {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:127px;
  5088. height:25px;
  5089. background:inherit;
  5090. background-color:rgba(240, 240, 240, 1);
  5091. border-radius:0px;
  5092. filter:drop-shadow(none);
  5093. transition:none;
  5094. font-family:"Microsoft YaHei", sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:10px;
  5098. }
  5099. #u18881.hint.disabled {
  5100. }
  5101. #u18882 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:0px;
  5107. height:0px;
  5108. }
  5109. #u18883_div {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:140px;
  5115. height:30px;
  5116. background:inherit;
  5117. background-color:rgba(255, 255, 255, 1);
  5118. box-sizing:border-box;
  5119. border-width:1px;
  5120. border-style:solid;
  5121. border-color:rgba(201, 201, 201, 1);
  5122. border-radius:4px;
  5123. filter:drop-shadow(none);
  5124. transition:none;
  5125. font-family:"Microsoft YaHei", sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:14px;
  5129. color:#CCCCCC;
  5130. text-align:left;
  5131. }
  5132. #u18883 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:650px;
  5136. top:140px;
  5137. width:140px;
  5138. height:30px;
  5139. display:flex;
  5140. transition:none;
  5141. transform-origin:50% 50%;
  5142. font-family:"Microsoft YaHei", sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:14px;
  5146. color:#CCCCCC;
  5147. text-align:left;
  5148. }
  5149. #u18883 .text {
  5150. position:absolute;
  5151. align-self:center;
  5152. padding:2px 8px 2px 8px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u18883_text {
  5157. border-width:0px;
  5158. word-wrap:break-word;
  5159. text-transform:none;
  5160. visibility:hidden;
  5161. }
  5162. #u18884_input {
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:127px;
  5167. height:25px;
  5168. padding:2px 2px 2px 2px;
  5169. font-family:"Microsoft YaHei", sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:10px;
  5173. letter-spacing:normal;
  5174. color:#000000;
  5175. vertical-align:none;
  5176. text-align:left;
  5177. text-transform:none;
  5178. background-color:transparent;
  5179. border-color:transparent;
  5180. }
  5181. #u18884_input.hint {
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:127px;
  5186. height:25px;
  5187. padding:2px 2px 2px 2px;
  5188. font-family:"Microsoft YaHei", sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:12px;
  5192. letter-spacing:normal;
  5193. color:#AAAAAA;
  5194. vertical-align:none;
  5195. text-align:left;
  5196. text-transform:none;
  5197. background-color:transparent;
  5198. border-color:transparent;
  5199. }
  5200. #u18884_input.disabled {
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:127px;
  5205. height:25px;
  5206. padding:2px 2px 2px 2px;
  5207. font-family:"Microsoft YaHei", sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:10px;
  5211. letter-spacing:normal;
  5212. color:#000000;
  5213. vertical-align:none;
  5214. text-align:left;
  5215. text-transform:none;
  5216. background-color:transparent;
  5217. border-color:transparent;
  5218. }
  5219. #u18884_input.hint.disabled {
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:127px;
  5224. height:25px;
  5225. padding:2px 2px 2px 2px;
  5226. font-family:"Microsoft YaHei", sans-serif;
  5227. font-weight:400;
  5228. font-style:normal;
  5229. font-size:12px;
  5230. letter-spacing:normal;
  5231. color:#AAAAAA;
  5232. vertical-align:none;
  5233. text-align:left;
  5234. text-transform:none;
  5235. background-color:transparent;
  5236. border-color:transparent;
  5237. }
  5238. #u18884_div {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:127px;
  5244. height:25px;
  5245. background:inherit;
  5246. background-color:rgba(255, 255, 255, 1);
  5247. border-radius:0px;
  5248. filter:drop-shadow(none);
  5249. transition:none;
  5250. font-family:"Microsoft YaHei", sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:10px;
  5254. }
  5255. #u18884 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:658px;
  5259. top:141px;
  5260. width:127px;
  5261. height:25px;
  5262. display:flex;
  5263. transition:none;
  5264. transform-origin:50% 50%;
  5265. font-family:"Microsoft YaHei", sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:10px;
  5269. }
  5270. #u18884 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 2px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u18884_div.hint {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:127px;
  5283. height:25px;
  5284. background:inherit;
  5285. background-color:rgba(255, 255, 255, 1);
  5286. border-radius:0px;
  5287. filter:drop-shadow(none);
  5288. transition:none;
  5289. font-family:"Microsoft YaHei", sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:10px;
  5293. }
  5294. #u18884.hint {
  5295. }
  5296. #u18884_div.disabled {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:127px;
  5302. height:25px;
  5303. background:inherit;
  5304. background-color:rgba(240, 240, 240, 1);
  5305. border-radius:0px;
  5306. filter:drop-shadow(none);
  5307. transition:none;
  5308. font-family:"Microsoft YaHei", sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. font-size:10px;
  5312. }
  5313. #u18884.disabled {
  5314. }
  5315. #u18884_div.hint.disabled {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:127px;
  5321. height:25px;
  5322. background:inherit;
  5323. background-color:rgba(240, 240, 240, 1);
  5324. border-radius:0px;
  5325. filter:drop-shadow(none);
  5326. transition:none;
  5327. font-family:"Microsoft YaHei", sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:10px;
  5331. }
  5332. #u18884.hint.disabled {
  5333. }
  5334. #u18885 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:0px;
  5340. height:0px;
  5341. }
  5342. #u18886_div {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:140px;
  5348. height:30px;
  5349. background:inherit;
  5350. background-color:rgba(255, 255, 255, 1);
  5351. box-sizing:border-box;
  5352. border-width:1px;
  5353. border-style:solid;
  5354. border-color:rgba(201, 201, 201, 1);
  5355. border-radius:4px;
  5356. filter:drop-shadow(none);
  5357. transition:none;
  5358. font-family:"Microsoft YaHei", sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:14px;
  5362. color:#CCCCCC;
  5363. text-align:left;
  5364. }
  5365. #u18886 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:800px;
  5369. top:140px;
  5370. width:140px;
  5371. height:30px;
  5372. display:flex;
  5373. transition:none;
  5374. transform-origin:50% 50%;
  5375. font-family:"Microsoft YaHei", sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:14px;
  5379. color:#CCCCCC;
  5380. text-align:left;
  5381. }
  5382. #u18886 .text {
  5383. position:absolute;
  5384. align-self:center;
  5385. padding:2px 8px 2px 8px;
  5386. box-sizing:border-box;
  5387. width:100%;
  5388. }
  5389. #u18886_text {
  5390. border-width:0px;
  5391. word-wrap:break-word;
  5392. text-transform:none;
  5393. visibility:hidden;
  5394. }
  5395. #u18887_input {
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:127px;
  5400. height:25px;
  5401. padding:2px 2px 2px 2px;
  5402. font-family:"Microsoft YaHei", sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:10px;
  5406. letter-spacing:normal;
  5407. color:#000000;
  5408. vertical-align:none;
  5409. text-align:left;
  5410. text-transform:none;
  5411. background-color:transparent;
  5412. border-color:transparent;
  5413. }
  5414. #u18887_input.hint {
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:127px;
  5419. height:25px;
  5420. padding:2px 2px 2px 2px;
  5421. font-family:"Microsoft YaHei", sans-serif;
  5422. font-weight:400;
  5423. font-style:normal;
  5424. font-size:12px;
  5425. letter-spacing:normal;
  5426. color:#AAAAAA;
  5427. vertical-align:none;
  5428. text-align:left;
  5429. text-transform:none;
  5430. background-color:transparent;
  5431. border-color:transparent;
  5432. }
  5433. #u18887_input.disabled {
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:127px;
  5438. height:25px;
  5439. padding:2px 2px 2px 2px;
  5440. font-family:"Microsoft YaHei", sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:10px;
  5444. letter-spacing:normal;
  5445. color:#000000;
  5446. vertical-align:none;
  5447. text-align:left;
  5448. text-transform:none;
  5449. background-color:transparent;
  5450. border-color:transparent;
  5451. }
  5452. #u18887_input.hint.disabled {
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:127px;
  5457. height:25px;
  5458. padding:2px 2px 2px 2px;
  5459. font-family:"Microsoft YaHei", sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:12px;
  5463. letter-spacing:normal;
  5464. color:#AAAAAA;
  5465. vertical-align:none;
  5466. text-align:left;
  5467. text-transform:none;
  5468. background-color:transparent;
  5469. border-color:transparent;
  5470. }
  5471. #u18887_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:127px;
  5477. height:25px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 1);
  5480. border-radius:0px;
  5481. filter:drop-shadow(none);
  5482. transition:none;
  5483. font-family:"Microsoft YaHei", sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:10px;
  5487. }
  5488. #u18887 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:808px;
  5492. top:141px;
  5493. width:127px;
  5494. height:25px;
  5495. display:flex;
  5496. transition:none;
  5497. transform-origin:50% 50%;
  5498. font-family:"Microsoft YaHei", sans-serif;
  5499. font-weight:400;
  5500. font-style:normal;
  5501. font-size:10px;
  5502. }
  5503. #u18887 .text {
  5504. position:absolute;
  5505. align-self:center;
  5506. padding:2px 2px 2px 2px;
  5507. box-sizing:border-box;
  5508. width:100%;
  5509. }
  5510. #u18887_div.hint {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:127px;
  5516. height:25px;
  5517. background:inherit;
  5518. background-color:rgba(255, 255, 255, 1);
  5519. border-radius:0px;
  5520. filter:drop-shadow(none);
  5521. transition:none;
  5522. font-family:"Microsoft YaHei", sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:10px;
  5526. }
  5527. #u18887.hint {
  5528. }
  5529. #u18887_div.disabled {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:127px;
  5535. height:25px;
  5536. background:inherit;
  5537. background-color:rgba(240, 240, 240, 1);
  5538. border-radius:0px;
  5539. filter:drop-shadow(none);
  5540. transition:none;
  5541. font-family:"Microsoft YaHei", sans-serif;
  5542. font-weight:400;
  5543. font-style:normal;
  5544. font-size:10px;
  5545. }
  5546. #u18887.disabled {
  5547. }
  5548. #u18887_div.hint.disabled {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:127px;
  5554. height:25px;
  5555. background:inherit;
  5556. background-color:rgba(240, 240, 240, 1);
  5557. border-radius:0px;
  5558. filter:drop-shadow(none);
  5559. transition:none;
  5560. font-family:"Microsoft YaHei", sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:10px;
  5564. }
  5565. #u18887.hint.disabled {
  5566. }
  5567. #u18888_div {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:60px;
  5573. height:30px;
  5574. background:inherit;
  5575. background-color:rgba(24, 144, 255, 1);
  5576. border-radius:4px;
  5577. filter:drop-shadow(none);
  5578. transition:none;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:14px;
  5583. color:#FFFFFF;
  5584. }
  5585. #u18888 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:-79px;
  5590. width:60px;
  5591. height:30px;
  5592. display:flex;
  5593. transition:none;
  5594. transform-origin:50% 50%;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:14px;
  5599. color:#FFFFFF;
  5600. }
  5601. #u18888 .text {
  5602. position:absolute;
  5603. align-self:center;
  5604. padding:2px 2px 2px 2px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u18888_text {
  5609. border-width:0px;
  5610. word-wrap:break-word;
  5611. text-transform:none;
  5612. }
  5613. #u18889 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:0px;
  5619. height:0px;
  5620. }
  5621. #u18890_div {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:140px;
  5627. height:30px;
  5628. background:inherit;
  5629. background-color:rgba(255, 255, 255, 1);
  5630. box-sizing:border-box;
  5631. border-width:1px;
  5632. border-style:solid;
  5633. border-color:rgba(215, 215, 215, 1);
  5634. border-radius:4px;
  5635. filter:drop-shadow(none);
  5636. transition:none;
  5637. font-size:14px;
  5638. }
  5639. #u18890 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:1100px;
  5643. top:140px;
  5644. width:140px;
  5645. height:30px;
  5646. display:flex;
  5647. transition:none;
  5648. transform-origin:50% 50%;
  5649. font-size:14px;
  5650. }
  5651. #u18890 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 2px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u18890_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. visibility:hidden;
  5663. }
  5664. #u18891_input {
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:134px;
  5669. height:23px;
  5670. padding:2px 2px 2px 2px;
  5671. font-family:'ArialMT', 'Arial', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:14px;
  5675. letter-spacing:normal;
  5676. color:#AAAAAA;
  5677. vertical-align:none;
  5678. text-align:left;
  5679. text-transform:none;
  5680. background-color:transparent;
  5681. border-color:transparent;
  5682. }
  5683. #u18891_input.disabled {
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:134px;
  5688. height:23px;
  5689. padding:2px 2px 2px 2px;
  5690. font-family:'ArialMT', 'Arial', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:14px;
  5694. letter-spacing:normal;
  5695. color:#AAAAAA;
  5696. vertical-align:none;
  5697. text-align:left;
  5698. text-transform:none;
  5699. background-color:transparent;
  5700. border-color:transparent;
  5701. }
  5702. #u18891_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:134px;
  5708. height:23px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 1);
  5711. border-radius:0px;
  5712. filter:drop-shadow(none);
  5713. transition:none;
  5714. font-size:14px;
  5715. color:#AAAAAA;
  5716. }
  5717. #u18891 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:1104px;
  5721. top:142px;
  5722. width:134px;
  5723. height:23px;
  5724. display:flex;
  5725. transition:none;
  5726. transform-origin:50% 50%;
  5727. font-size:14px;
  5728. color:#AAAAAA;
  5729. }
  5730. #u18891 .text {
  5731. position:absolute;
  5732. align-self:flex-start;
  5733. padding:2px 2px 2px 2px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u18891_div.disabled {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:134px;
  5743. height:23px;
  5744. background:inherit;
  5745. background-color:rgba(240, 240, 240, 1);
  5746. border-radius:0px;
  5747. filter:drop-shadow(none);
  5748. transition:none;
  5749. font-size:14px;
  5750. color:#AAAAAA;
  5751. }
  5752. #u18891.disabled {
  5753. }
  5754. .u18891_input_option {
  5755. font-size:14px;
  5756. }
  5757. #u18892_div {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:1196px;
  5763. height:420px;
  5764. background:inherit;
  5765. background-color:rgba(255, 255, 255, 0);
  5766. border-left:0px;
  5767. border-top:0px;
  5768. border-right:0px;
  5769. border-radius:0px;
  5770. border-bottom-right-radius:0px;
  5771. border-bottom-left-radius:0px;
  5772. filter:drop-shadow(none);
  5773. transition:none;
  5774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:18px;
  5778. line-height:30px;
  5779. }
  5780. #u18892 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:373px;
  5784. top:576px;
  5785. width:1196px;
  5786. height:420px;
  5787. display:flex;
  5788. transition:none;
  5789. transform-origin:50% 50%;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:18px;
  5794. line-height:30px;
  5795. }
  5796. #u18892 .text {
  5797. position:absolute;
  5798. align-self:flex-start;
  5799. padding:0px 0px 0px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u18892_text {
  5804. border-width:0px;
  5805. word-wrap:break-word;
  5806. text-transform:none;
  5807. }
  5808. #u18893 {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:120px;
  5812. top:50px;
  5813. width:201px;
  5814. height:1190px;
  5815. }
  5816. #u18894 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:0px;
  5822. height:0px;
  5823. }
  5824. #u18895_div {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:200px;
  5830. height:1190px;
  5831. background:inherit;
  5832. background-color:rgba(255, 255, 255, 1);
  5833. border-radius:0px;
  5834. filter:drop-shadow(none);
  5835. transition:none;
  5836. }
  5837. #u18895 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:200px;
  5843. height:1190px;
  5844. display:flex;
  5845. transition:none;
  5846. transform-origin:50% 50%;
  5847. }
  5848. #u18895 .text {
  5849. position:absolute;
  5850. align-self:center;
  5851. padding:2px 2px 2px 2px;
  5852. box-sizing:border-box;
  5853. width:100%;
  5854. }
  5855. #u18895_text {
  5856. border-width:0px;
  5857. word-wrap:break-word;
  5858. text-transform:none;
  5859. visibility:hidden;
  5860. }
  5861. #u18896_div {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:200px;
  5867. height:60px;
  5868. background:inherit;
  5869. background-color:rgba(224, 231, 247, 1);
  5870. border-radius:0px;
  5871. filter:drop-shadow(none);
  5872. transition:none;
  5873. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5874. font-weight:500;
  5875. font-style:normal;
  5876. font-size:18px;
  5877. }
  5878. #u18896 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:200px;
  5884. height:60px;
  5885. display:flex;
  5886. transition:none;
  5887. transform-origin:50% 50%;
  5888. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5889. font-weight:500;
  5890. font-style:normal;
  5891. font-size:18px;
  5892. }
  5893. #u18896 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:0px 0px 0px 20px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u18896_text {
  5901. border-width:0px;
  5902. word-wrap:break-word;
  5903. text-transform:none;
  5904. }
  5905. #u18897_div {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:65px;
  5911. height:22px;
  5912. background:inherit;
  5913. background-color:rgba(255, 255, 255, 0);
  5914. border-radius:0px;
  5915. filter:drop-shadow(none);
  5916. transition:none;
  5917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:16px;
  5921. }
  5922. #u18897 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:25px;
  5926. top:526px;
  5927. width:65px;
  5928. height:22px;
  5929. display:flex;
  5930. transition:none;
  5931. transform-origin:50% 50%;
  5932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:16px;
  5936. }
  5937. #u18897 .text {
  5938. position:absolute;
  5939. align-self:flex-start;
  5940. padding:0px 0px 0px 0px;
  5941. box-sizing:border-box;
  5942. width:100%;
  5943. }
  5944. #u18897_text {
  5945. border-width:0px;
  5946. white-space:nowrap;
  5947. text-transform:none;
  5948. }
  5949. #u18898_div {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:49px;
  5955. height:17px;
  5956. background:inherit;
  5957. background-color:rgba(255, 255, 255, 0);
  5958. border-radius:0px;
  5959. filter:drop-shadow(none);
  5960. transition:none;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:12px;
  5965. color:#AAAAAA;
  5966. }
  5967. #u18898 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:23px;
  5971. top:489px;
  5972. width:49px;
  5973. height:17px;
  5974. display:flex;
  5975. transition:none;
  5976. transform-origin:50% 50%;
  5977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. font-size:12px;
  5981. color:#AAAAAA;
  5982. }
  5983. #u18898 .text {
  5984. position:absolute;
  5985. align-self:flex-start;
  5986. padding:0px 0px 0px 0px;
  5987. box-sizing:border-box;
  5988. width:100%;
  5989. }
  5990. #u18898_text {
  5991. border-width:0px;
  5992. white-space:nowrap;
  5993. text-transform:none;
  5994. }
  5995. #u18899_div {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:49px;
  6001. height:17px;
  6002. background:inherit;
  6003. background-color:rgba(255, 255, 255, 0);
  6004. border-radius:0px;
  6005. filter:drop-shadow(none);
  6006. transition:none;
  6007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:12px;
  6011. color:#AAAAAA;
  6012. }
  6013. #u18899 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:24px;
  6017. top:81px;
  6018. width:49px;
  6019. height:17px;
  6020. display:flex;
  6021. transition:none;
  6022. transform-origin:50% 50%;
  6023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6024. font-weight:400;
  6025. font-style:normal;
  6026. font-size:12px;
  6027. color:#AAAAAA;
  6028. }
  6029. #u18899 .text {
  6030. position:absolute;
  6031. align-self:flex-start;
  6032. padding:0px 0px 0px 0px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u18899_text {
  6037. border-width:0px;
  6038. white-space:nowrap;
  6039. text-transform:none;
  6040. }
  6041. #u18900_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:65px;
  6047. height:22px;
  6048. background:inherit;
  6049. background-color:rgba(255, 255, 255, 0);
  6050. border-radius:0px;
  6051. filter:drop-shadow(none);
  6052. transition:none;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:16px;
  6057. }
  6058. #u18900 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:26px;
  6062. top:118px;
  6063. width:65px;
  6064. height:22px;
  6065. display:flex;
  6066. transition:none;
  6067. transform-origin:50% 50%;
  6068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:16px;
  6072. }
  6073. #u18900 .text {
  6074. position:absolute;
  6075. align-self:flex-start;
  6076. padding:0px 0px 0px 0px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u18900_text {
  6081. border-width:0px;
  6082. white-space:nowrap;
  6083. text-transform:none;
  6084. }
  6085. #u18901 {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:0px;
  6089. top:468px;
  6090. width:200px;
  6091. height:1px;
  6092. display:flex;
  6093. transition:none;
  6094. }
  6095. #u18901 .text {
  6096. position:absolute;
  6097. align-self:center;
  6098. padding:2px 2px 2px 2px;
  6099. box-sizing:border-box;
  6100. width:100%;
  6101. }
  6102. #u18901_img {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:201px;
  6108. height:2px;
  6109. }
  6110. #u18901_text {
  6111. border-width:0px;
  6112. word-wrap:break-word;
  6113. text-transform:none;
  6114. visibility:hidden;
  6115. }
  6116. #u18902_div {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:65px;
  6122. height:22px;
  6123. background:inherit;
  6124. background-color:rgba(255, 255, 255, 0);
  6125. border-radius:0px;
  6126. filter:drop-shadow(none);
  6127. transition:none;
  6128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. font-size:16px;
  6132. }
  6133. #u18902 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:25px;
  6137. top:568px;
  6138. width:65px;
  6139. height:22px;
  6140. display:flex;
  6141. transition:none;
  6142. transform-origin:50% 50%;
  6143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. font-size:16px;
  6147. }
  6148. #u18902 .text {
  6149. position:absolute;
  6150. align-self:flex-start;
  6151. padding:0px 0px 0px 0px;
  6152. box-sizing:border-box;
  6153. width:100%;
  6154. }
  6155. #u18902_text {
  6156. border-width:0px;
  6157. white-space:nowrap;
  6158. text-transform:none;
  6159. }
  6160. #u18903_div {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:49px;
  6166. height:17px;
  6167. background:inherit;
  6168. background-color:rgba(255, 255, 255, 0);
  6169. border-radius:0px;
  6170. filter:drop-shadow(none);
  6171. transition:none;
  6172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6173. font-weight:400;
  6174. font-style:normal;
  6175. font-size:12px;
  6176. color:#AAAAAA;
  6177. }
  6178. #u18903 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:24px;
  6182. top:305px;
  6183. width:49px;
  6184. height:17px;
  6185. display:flex;
  6186. transition:none;
  6187. transform-origin:50% 50%;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:12px;
  6192. color:#AAAAAA;
  6193. }
  6194. #u18903 .text {
  6195. position:absolute;
  6196. align-self:flex-start;
  6197. padding:0px 0px 0px 0px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u18903_text {
  6202. border-width:0px;
  6203. white-space:nowrap;
  6204. text-transform:none;
  6205. }
  6206. #u18904 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:1px;
  6210. top:284px;
  6211. width:200px;
  6212. height:1px;
  6213. display:flex;
  6214. transition:none;
  6215. }
  6216. #u18904 .text {
  6217. position:absolute;
  6218. align-self:center;
  6219. padding:2px 2px 2px 2px;
  6220. box-sizing:border-box;
  6221. width:100%;
  6222. }
  6223. #u18904_img {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:201px;
  6229. height:2px;
  6230. }
  6231. #u18904_text {
  6232. border-width:0px;
  6233. word-wrap:break-word;
  6234. text-transform:none;
  6235. visibility:hidden;
  6236. }
  6237. #u18905_div {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:65px;
  6243. height:22px;
  6244. background:inherit;
  6245. background-color:rgba(255, 255, 255, 0);
  6246. border-radius:0px;
  6247. filter:drop-shadow(none);
  6248. transition:none;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:16px;
  6253. }
  6254. #u18905 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:26px;
  6258. top:342px;
  6259. width:65px;
  6260. height:22px;
  6261. display:flex;
  6262. transition:none;
  6263. transform-origin:50% 50%;
  6264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6265. font-weight:400;
  6266. font-style:normal;
  6267. font-size:16px;
  6268. }
  6269. #u18905 .text {
  6270. position:absolute;
  6271. align-self:flex-start;
  6272. padding:0px 0px 0px 0px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u18905_text {
  6277. border-width:0px;
  6278. white-space:nowrap;
  6279. text-transform:none;
  6280. }
  6281. #u18906_div {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:65px;
  6287. height:22px;
  6288. background:inherit;
  6289. background-color:rgba(255, 255, 255, 0);
  6290. border-radius:0px;
  6291. filter:drop-shadow(none);
  6292. transition:none;
  6293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6294. font-weight:400;
  6295. font-style:normal;
  6296. font-size:16px;
  6297. }
  6298. #u18906 {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:26px;
  6302. top:384px;
  6303. width:65px;
  6304. height:22px;
  6305. display:flex;
  6306. transition:none;
  6307. transform-origin:50% 50%;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:16px;
  6312. }
  6313. #u18906 .text {
  6314. position:absolute;
  6315. align-self:flex-start;
  6316. padding:0px 0px 0px 0px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u18906_text {
  6321. border-width:0px;
  6322. white-space:nowrap;
  6323. text-transform:none;
  6324. }
  6325. #u18907_div {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:65px;
  6331. height:22px;
  6332. background:inherit;
  6333. background-color:rgba(255, 255, 255, 0);
  6334. border-radius:0px;
  6335. filter:drop-shadow(none);
  6336. transition:none;
  6337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. font-size:16px;
  6341. }
  6342. #u18907 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:25px;
  6346. top:876px;
  6347. width:65px;
  6348. height:22px;
  6349. display:flex;
  6350. transition:none;
  6351. transform-origin:50% 50%;
  6352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:16px;
  6356. }
  6357. #u18907 .text {
  6358. position:absolute;
  6359. align-self:flex-start;
  6360. padding:0px 0px 0px 0px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u18907_text {
  6365. border-width:0px;
  6366. white-space:nowrap;
  6367. text-transform:none;
  6368. }
  6369. #u18908_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:97px;
  6375. height:22px;
  6376. background:inherit;
  6377. background-color:rgba(255, 255, 255, 0);
  6378. border-radius:0px;
  6379. filter:drop-shadow(none);
  6380. transition:none;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:16px;
  6385. }
  6386. #u18908 {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:25px;
  6390. top:668px;
  6391. width:97px;
  6392. height:22px;
  6393. display:flex;
  6394. transition:none;
  6395. transform-origin:50% 50%;
  6396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6397. font-weight:400;
  6398. font-style:normal;
  6399. font-size:16px;
  6400. }
  6401. #u18908 .text {
  6402. position:absolute;
  6403. align-self:flex-start;
  6404. padding:0px 0px 0px 0px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u18908_text {
  6409. border-width:0px;
  6410. white-space:nowrap;
  6411. text-transform:none;
  6412. }
  6413. #u18909_div {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:49px;
  6419. height:17px;
  6420. background:inherit;
  6421. background-color:rgba(255, 255, 255, 0);
  6422. border-radius:0px;
  6423. filter:drop-shadow(none);
  6424. transition:none;
  6425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6426. font-weight:400;
  6427. font-style:normal;
  6428. font-size:12px;
  6429. color:#AAAAAA;
  6430. }
  6431. #u18909 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:23px;
  6435. top:631px;
  6436. width:49px;
  6437. height:17px;
  6438. display:flex;
  6439. transition:none;
  6440. transform-origin:50% 50%;
  6441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:12px;
  6445. color:#AAAAAA;
  6446. }
  6447. #u18909 .text {
  6448. position:absolute;
  6449. align-self:flex-start;
  6450. padding:0px 0px 0px 0px;
  6451. box-sizing:border-box;
  6452. width:100%;
  6453. }
  6454. #u18909_text {
  6455. border-width:0px;
  6456. white-space:nowrap;
  6457. text-transform:none;
  6458. }
  6459. #u18910 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:0px;
  6463. top:610px;
  6464. width:200px;
  6465. height:1px;
  6466. display:flex;
  6467. transition:none;
  6468. }
  6469. #u18910 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:2px 2px 2px 2px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u18910_img {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:201px;
  6482. height:2px;
  6483. }
  6484. #u18910_text {
  6485. border-width:0px;
  6486. word-wrap:break-word;
  6487. text-transform:none;
  6488. visibility:hidden;
  6489. }
  6490. #u18911_div {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:97px;
  6496. height:22px;
  6497. background:inherit;
  6498. background-color:rgba(255, 255, 255, 0);
  6499. border-radius:0px;
  6500. filter:drop-shadow(none);
  6501. transition:none;
  6502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:16px;
  6506. }
  6507. #u18911 {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:25px;
  6511. top:750px;
  6512. width:97px;
  6513. height:22px;
  6514. display:flex;
  6515. transition:none;
  6516. transform-origin:50% 50%;
  6517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:16px;
  6521. }
  6522. #u18911 .text {
  6523. position:absolute;
  6524. align-self:flex-start;
  6525. padding:0px 0px 0px 0px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u18911_text {
  6530. border-width:0px;
  6531. white-space:nowrap;
  6532. text-transform:none;
  6533. }
  6534. #u18912_div {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:97px;
  6540. height:22px;
  6541. background:inherit;
  6542. background-color:rgba(255, 255, 255, 0);
  6543. border-radius:0px;
  6544. filter:drop-shadow(none);
  6545. transition:none;
  6546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6547. font-weight:400;
  6548. font-style:normal;
  6549. font-size:16px;
  6550. }
  6551. #u18912 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:25px;
  6555. top:792px;
  6556. width:97px;
  6557. height:22px;
  6558. display:flex;
  6559. transition:none;
  6560. transform-origin:50% 50%;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:16px;
  6565. }
  6566. #u18912 .text {
  6567. position:absolute;
  6568. align-self:flex-start;
  6569. padding:0px 0px 0px 0px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u18912_text {
  6574. border-width:0px;
  6575. white-space:nowrap;
  6576. text-transform:none;
  6577. }
  6578. #u18913_div {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:65px;
  6584. height:22px;
  6585. background:inherit;
  6586. background-color:rgba(255, 255, 255, 0);
  6587. border-radius:0px;
  6588. filter:drop-shadow(none);
  6589. transition:none;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:16px;
  6594. }
  6595. #u18913 {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:25px;
  6599. top:976px;
  6600. width:65px;
  6601. height:22px;
  6602. display:flex;
  6603. transition:none;
  6604. transform-origin:50% 50%;
  6605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6606. font-weight:400;
  6607. font-style:normal;
  6608. font-size:16px;
  6609. }
  6610. #u18913 .text {
  6611. position:absolute;
  6612. align-self:flex-start;
  6613. padding:0px 0px 0px 0px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u18913_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u18914_div {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:49px;
  6628. height:17px;
  6629. background:inherit;
  6630. background-color:rgba(255, 255, 255, 0);
  6631. border-radius:0px;
  6632. filter:drop-shadow(none);
  6633. transition:none;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:12px;
  6638. color:#AAAAAA;
  6639. }
  6640. #u18914 {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:23px;
  6644. top:939px;
  6645. width:49px;
  6646. height:17px;
  6647. display:flex;
  6648. transition:none;
  6649. transform-origin:50% 50%;
  6650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:12px;
  6654. color:#AAAAAA;
  6655. }
  6656. #u18914 .text {
  6657. position:absolute;
  6658. align-self:flex-start;
  6659. padding:0px 0px 0px 0px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u18914_text {
  6664. border-width:0px;
  6665. white-space:nowrap;
  6666. text-transform:none;
  6667. }
  6668. #u18915 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:918px;
  6673. width:200px;
  6674. height:1px;
  6675. display:flex;
  6676. transition:none;
  6677. }
  6678. #u18915 .text {
  6679. position:absolute;
  6680. align-self:center;
  6681. padding:2px 2px 2px 2px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u18915_img {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:0px;
  6689. top:0px;
  6690. width:201px;
  6691. height:2px;
  6692. }
  6693. #u18915_text {
  6694. border-width:0px;
  6695. word-wrap:break-word;
  6696. text-transform:none;
  6697. visibility:hidden;
  6698. }
  6699. #u18916_div {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:65px;
  6705. height:22px;
  6706. background:inherit;
  6707. background-color:rgba(255, 255, 255, 0);
  6708. border-radius:0px;
  6709. filter:drop-shadow(none);
  6710. transition:none;
  6711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6712. font-weight:400;
  6713. font-style:normal;
  6714. font-size:16px;
  6715. }
  6716. #u18916 {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:25px;
  6720. top:1018px;
  6721. width:65px;
  6722. height:22px;
  6723. display:flex;
  6724. transition:none;
  6725. transform-origin:50% 50%;
  6726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:16px;
  6730. }
  6731. #u18916 .text {
  6732. position:absolute;
  6733. align-self:flex-start;
  6734. padding:0px 0px 0px 0px;
  6735. box-sizing:border-box;
  6736. width:100%;
  6737. }
  6738. #u18916_text {
  6739. border-width:0px;
  6740. white-space:nowrap;
  6741. text-transform:none;
  6742. }
  6743. #u18917_div {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:0px;
  6747. top:0px;
  6748. width:97px;
  6749. height:22px;
  6750. background:inherit;
  6751. background-color:rgba(255, 255, 255, 0);
  6752. border-radius:0px;
  6753. filter:drop-shadow(none);
  6754. transition:none;
  6755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:16px;
  6759. }
  6760. #u18917 {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:25px;
  6764. top:834px;
  6765. width:97px;
  6766. height:22px;
  6767. display:flex;
  6768. transition:none;
  6769. transform-origin:50% 50%;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:16px;
  6774. }
  6775. #u18917 .text {
  6776. position:absolute;
  6777. align-self:flex-start;
  6778. padding:0px 0px 0px 0px;
  6779. box-sizing:border-box;
  6780. width:100%;
  6781. }
  6782. #u18917_text {
  6783. border-width:0px;
  6784. white-space:nowrap;
  6785. text-transform:none;
  6786. }
  6787. #u18918_div {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:81px;
  6793. height:22px;
  6794. background:inherit;
  6795. background-color:rgba(255, 255, 255, 0);
  6796. border-radius:0px;
  6797. filter:drop-shadow(none);
  6798. transition:none;
  6799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6800. font-weight:400;
  6801. font-style:normal;
  6802. font-size:16px;
  6803. }
  6804. #u18918 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:26px;
  6808. top:426px;
  6809. width:81px;
  6810. height:22px;
  6811. display:flex;
  6812. transition:none;
  6813. transform-origin:50% 50%;
  6814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. font-size:16px;
  6818. }
  6819. #u18918 .text {
  6820. position:absolute;
  6821. align-self:flex-start;
  6822. padding:0px 0px 0px 0px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u18918_text {
  6827. border-width:0px;
  6828. white-space:nowrap;
  6829. text-transform:none;
  6830. }
  6831. #u18919_div {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:97px;
  6837. height:22px;
  6838. background:inherit;
  6839. background-color:rgba(255, 255, 255, 0);
  6840. border-radius:0px;
  6841. filter:drop-shadow(none);
  6842. transition:none;
  6843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. font-size:16px;
  6847. }
  6848. #u18919 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:25px;
  6852. top:710px;
  6853. width:97px;
  6854. height:22px;
  6855. display:flex;
  6856. transition:none;
  6857. transform-origin:50% 50%;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:16px;
  6862. }
  6863. #u18919 .text {
  6864. position:absolute;
  6865. align-self:flex-start;
  6866. padding:0px 0px 0px 0px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u18919_text {
  6871. border-width:0px;
  6872. white-space:nowrap;
  6873. text-transform:none;
  6874. }
  6875. #u18920_div {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:65px;
  6881. height:22px;
  6882. background:inherit;
  6883. background-color:rgba(255, 255, 255, 0);
  6884. border-radius:0px;
  6885. filter:drop-shadow(none);
  6886. transition:none;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. font-size:16px;
  6891. }
  6892. #u18920 {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:25px;
  6896. top:160px;
  6897. width:65px;
  6898. height:22px;
  6899. display:flex;
  6900. transition:none;
  6901. transform-origin:50% 50%;
  6902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6903. font-weight:400;
  6904. font-style:normal;
  6905. font-size:16px;
  6906. }
  6907. #u18920 .text {
  6908. position:absolute;
  6909. align-self:flex-start;
  6910. padding:0px 0px 0px 0px;
  6911. box-sizing:border-box;
  6912. width:100%;
  6913. }
  6914. #u18920_text {
  6915. border-width:0px;
  6916. white-space:nowrap;
  6917. text-transform:none;
  6918. }
  6919. #u18921_div {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:81px;
  6925. height:22px;
  6926. background:inherit;
  6927. background-color:rgba(255, 255, 255, 0);
  6928. border-radius:0px;
  6929. filter:drop-shadow(none);
  6930. transition:none;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:16px;
  6935. }
  6936. #u18921 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:26px;
  6940. top:202px;
  6941. width:81px;
  6942. height:22px;
  6943. display:flex;
  6944. transition:none;
  6945. transform-origin:50% 50%;
  6946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:16px;
  6950. }
  6951. #u18921 .text {
  6952. position:absolute;
  6953. align-self:flex-start;
  6954. padding:0px 0px 0px 0px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u18921_text {
  6959. border-width:0px;
  6960. white-space:nowrap;
  6961. text-transform:none;
  6962. }
  6963. #u18922_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:65px;
  6969. height:22px;
  6970. background:inherit;
  6971. background-color:rgba(255, 255, 255, 0);
  6972. border-radius:0px;
  6973. filter:drop-shadow(none);
  6974. transition:none;
  6975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. font-size:16px;
  6979. }
  6980. #u18922 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:26px;
  6984. top:244px;
  6985. width:65px;
  6986. height:22px;
  6987. display:flex;
  6988. transition:none;
  6989. transform-origin:50% 50%;
  6990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:16px;
  6994. }
  6995. #u18922 .text {
  6996. position:absolute;
  6997. align-self:flex-start;
  6998. padding:0px 0px 0px 0px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u18922_text {
  7003. border-width:0px;
  7004. white-space:nowrap;
  7005. text-transform:none;
  7006. }
  7007. #u18923_div {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:575px;
  7013. height:20px;
  7014. background:inherit;
  7015. background-color:rgba(255, 255, 255, 0);
  7016. border-left:0px;
  7017. border-top:0px;
  7018. border-right:0px;
  7019. border-radius:0px;
  7020. border-bottom-right-radius:0px;
  7021. border-bottom-left-radius:0px;
  7022. filter:drop-shadow(none);
  7023. transition:none;
  7024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:14px;
  7028. color:#7F7F7F;
  7029. }
  7030. #u18923 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:352px;
  7034. top:100px;
  7035. width:575px;
  7036. height:20px;
  7037. display:flex;
  7038. transition:none;
  7039. transform-origin:50% 50%;
  7040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7041. font-weight:400;
  7042. font-style:normal;
  7043. font-size:14px;
  7044. color:#7F7F7F;
  7045. }
  7046. #u18923 .text {
  7047. position:absolute;
  7048. align-self:center;
  7049. padding:0px 0px 0px 0px;
  7050. box-sizing:border-box;
  7051. width:100%;
  7052. }
  7053. #u18923_text {
  7054. border-width:0px;
  7055. white-space:nowrap;
  7056. text-transform:none;
  7057. }
  7058. #u18924 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:0px;
  7064. height:0px;
  7065. }
  7066. #u18925_div {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:80px;
  7072. height:100px;
  7073. background:inherit;
  7074. background-color:rgba(255, 255, 255, 1);
  7075. box-sizing:border-box;
  7076. border-width:1px;
  7077. border-style:solid;
  7078. border-color:rgba(242, 242, 242, 1);
  7079. border-radius:4px;
  7080. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  7081. transition:none;
  7082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:14px;
  7086. text-align:left;
  7087. }
  7088. #u18925 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:1467px;
  7092. top:305px;
  7093. width:80px;
  7094. height:100px;
  7095. display:flex;
  7096. transition:none;
  7097. transform-origin:50% 50%;
  7098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7099. font-weight:400;
  7100. font-style:normal;
  7101. font-size:14px;
  7102. text-align:left;
  7103. }
  7104. #u18925 .text {
  7105. position:absolute;
  7106. align-self:center;
  7107. padding:2px 2px 2px 2px;
  7108. box-sizing:border-box;
  7109. width:100%;
  7110. }
  7111. #u18925_text {
  7112. border-width:0px;
  7113. word-wrap:break-word;
  7114. text-transform:none;
  7115. visibility:hidden;
  7116. }
  7117. #u18926_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:68px;
  7123. height:40px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 1);
  7126. box-sizing:border-box;
  7127. border-width:1px;
  7128. border-style:solid;
  7129. border-color:rgba(215, 215, 215, 1);
  7130. border-left:0px;
  7131. border-top:0px;
  7132. border-right:0px;
  7133. border-radius:0px;
  7134. border-bottom-right-radius:0px;
  7135. border-bottom-left-radius:0px;
  7136. filter:drop-shadow(none);
  7137. transition:none;
  7138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7139. font-weight:400;
  7140. font-style:normal;
  7141. font-size:14px;
  7142. }
  7143. #u18926 {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:1473px;
  7147. top:315px;
  7148. width:68px;
  7149. height:40px;
  7150. display:flex;
  7151. transition:none;
  7152. transform-origin:50% 50%;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:14px;
  7157. }
  7158. #u18926 .text {
  7159. position:absolute;
  7160. align-self:center;
  7161. padding:2px 2px 2px 2px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u18926_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. }
  7170. #u18927_div {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:68px;
  7176. height:40px;
  7177. background:inherit;
  7178. background-color:rgba(255, 255, 255, 1);
  7179. border-left:0px;
  7180. border-top:0px;
  7181. border-right:0px;
  7182. border-radius:0px;
  7183. border-bottom-right-radius:0px;
  7184. border-bottom-left-radius:0px;
  7185. filter:drop-shadow(none);
  7186. transition:none;
  7187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7188. font-weight:400;
  7189. font-style:normal;
  7190. font-size:14px;
  7191. }
  7192. #u18927 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:1473px;
  7196. top:355px;
  7197. width:68px;
  7198. height:40px;
  7199. display:flex;
  7200. transition:none;
  7201. transform-origin:50% 50%;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:14px;
  7206. }
  7207. #u18927 .text {
  7208. position:absolute;
  7209. align-self:center;
  7210. padding:2px 2px 2px 2px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u18927_text {
  7215. border-width:0px;
  7216. word-wrap:break-word;
  7217. text-transform:none;
  7218. }
  7219. #u18928_div {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:55px;
  7225. height:30px;
  7226. background:inherit;
  7227. background-color:rgba(255, 255, 255, 1);
  7228. box-sizing:border-box;
  7229. border-width:1px;
  7230. border-style:solid;
  7231. border-color:rgba(170, 170, 170, 1);
  7232. border-radius:4px;
  7233. filter:drop-shadow(none);
  7234. transition:none;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:12px;
  7239. color:#555555;
  7240. }
  7241. #u18928 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:419px;
  7245. top:190px;
  7246. width:55px;
  7247. height:30px;
  7248. display:flex;
  7249. transition:none;
  7250. transform-origin:50% 50%;
  7251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7252. font-weight:400;
  7253. font-style:normal;
  7254. font-size:12px;
  7255. color:#555555;
  7256. }
  7257. #u18928 .text {
  7258. position:absolute;
  7259. align-self:center;
  7260. padding:5px 15px 5px 15px;
  7261. box-sizing:border-box;
  7262. width:100%;
  7263. }
  7264. #u18928_text {
  7265. border-width:0px;
  7266. white-space:nowrap;
  7267. text-transform:none;
  7268. }
  7269. #u18929_div {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:59px;
  7275. height:30px;
  7276. background:inherit;
  7277. background-color:rgba(255, 255, 255, 1);
  7278. box-sizing:border-box;
  7279. border-width:1px;
  7280. border-style:solid;
  7281. border-color:rgba(170, 170, 170, 1);
  7282. border-radius:4px;
  7283. filter:drop-shadow(none);
  7284. transition:none;
  7285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:14px;
  7289. color:#555555;
  7290. }
  7291. #u18929 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:350px;
  7295. top:190px;
  7296. width:59px;
  7297. height:30px;
  7298. display:flex;
  7299. transition:none;
  7300. transform-origin:50% 50%;
  7301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:14px;
  7305. color:#555555;
  7306. }
  7307. #u18929 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:5px 15px 5px 15px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u18929_text {
  7315. border-width:0px;
  7316. white-space:nowrap;
  7317. text-transform:none;
  7318. }
  7319. #u18930 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:0px;
  7325. height:0px;
  7326. }
  7327. #u18931 {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:0px;
  7333. height:0px;
  7334. }
  7335. #u18932_div {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:380px;
  7341. height:140px;
  7342. background:inherit;
  7343. background-color:rgba(255, 255, 255, 1);
  7344. box-sizing:border-box;
  7345. border-width:1px;
  7346. border-style:solid;
  7347. border-color:rgba(204, 204, 204, 1);
  7348. border-radius:4px;
  7349. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  7350. transition:none;
  7351. font-family:"Microsoft YaHei", sans-serif;
  7352. font-weight:400;
  7353. font-style:normal;
  7354. }
  7355. #u18932 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:1643px;
  7359. top:231px;
  7360. width:380px;
  7361. height:140px;
  7362. display:flex;
  7363. transition:none;
  7364. transform-origin:50% 50%;
  7365. font-family:"Microsoft YaHei", sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. }
  7369. #u18932 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 2px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u18932_text {
  7377. border-width:0px;
  7378. word-wrap:break-word;
  7379. text-transform:none;
  7380. visibility:hidden;
  7381. }
  7382. #u18933_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:299px;
  7388. height:22px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 0);
  7391. border-radius:0px;
  7392. filter:drop-shadow(none);
  7393. transition:none;
  7394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7395. font-weight:400;
  7396. font-style:normal;
  7397. font-size:14px;
  7398. color:#666666;
  7399. line-height:22px;
  7400. }
  7401. #u18933 {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:1703px;
  7405. top:286px;
  7406. width:299px;
  7407. height:22px;
  7408. display:flex;
  7409. transition:none;
  7410. transform-origin:50% 50%;
  7411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7412. font-weight:400;
  7413. font-style:normal;
  7414. font-size:14px;
  7415. color:#666666;
  7416. line-height:22px;
  7417. }
  7418. #u18933 .text {
  7419. position:absolute;
  7420. align-self:flex-start;
  7421. padding:0px 0px 0px 0px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u18933_text {
  7426. border-width:0px;
  7427. word-wrap:break-word;
  7428. text-transform:none;
  7429. }
  7430. #u18934_div {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:127px;
  7436. height:21px;
  7437. background:inherit;
  7438. background-color:rgba(255, 255, 255, 0);
  7439. border-radius:0px;
  7440. filter:drop-shadow(none);
  7441. transition:none;
  7442. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7443. font-weight:650;
  7444. font-style:normal;
  7445. font-size:18px;
  7446. color:#000000;
  7447. line-height:22px;
  7448. }
  7449. #u18934 {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:1703px;
  7453. top:256px;
  7454. width:127px;
  7455. height:21px;
  7456. display:flex;
  7457. transition:none;
  7458. transform-origin:50% 50%;
  7459. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7460. font-weight:650;
  7461. font-style:normal;
  7462. font-size:18px;
  7463. color:#000000;
  7464. line-height:22px;
  7465. }
  7466. #u18934 .text {
  7467. position:absolute;
  7468. align-self:flex-start;
  7469. padding:0px 0px 0px 0px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u18934_text {
  7474. border-width:0px;
  7475. white-space:nowrap;
  7476. text-transform:none;
  7477. }
  7478. #u18935_div {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:61px;
  7484. height:30px;
  7485. background:inherit;
  7486. background-color:rgba(24, 144, 255, 1);
  7487. border-radius:4px;
  7488. filter:drop-shadow(none);
  7489. transition:none;
  7490. font-family:"Microsoft YaHei", sans-serif;
  7491. font-weight:400;
  7492. font-style:normal;
  7493. font-size:14px;
  7494. color:#FFFFFF;
  7495. }
  7496. #u18935 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:1945px;
  7500. top:326px;
  7501. width:61px;
  7502. height:30px;
  7503. display:flex;
  7504. transition:none;
  7505. transform-origin:50% 50%;
  7506. font-family:"Microsoft YaHei", sans-serif;
  7507. font-weight:400;
  7508. font-style:normal;
  7509. font-size:14px;
  7510. color:#FFFFFF;
  7511. }
  7512. #u18935 .text {
  7513. position:absolute;
  7514. align-self:center;
  7515. padding:2px 16px 2px 16px;
  7516. box-sizing:border-box;
  7517. width:100%;
  7518. }
  7519. #u18935_text {
  7520. border-width:0px;
  7521. white-space:nowrap;
  7522. text-transform:none;
  7523. }
  7524. #u18936_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:66px;
  7530. height:30px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 1);
  7533. box-sizing:border-box;
  7534. border-width:1px;
  7535. border-style:solid;
  7536. border-color:rgba(217, 217, 217, 1);
  7537. border-radius:4px;
  7538. filter:drop-shadow(none);
  7539. transition:none;
  7540. font-family:"Microsoft YaHei", sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:14px;
  7544. color:rgba(0, 0, 0, 0.6470588235294118);
  7545. line-height:21px;
  7546. }
  7547. #u18936 {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:1863px;
  7551. top:326px;
  7552. width:66px;
  7553. height:30px;
  7554. display:flex;
  7555. transition:none;
  7556. transform-origin:50% 50%;
  7557. font-family:"Microsoft YaHei", sans-serif;
  7558. font-weight:400;
  7559. font-style:normal;
  7560. font-size:14px;
  7561. color:rgba(0, 0, 0, 0.6470588235294118);
  7562. line-height:21px;
  7563. }
  7564. #u18936 .text {
  7565. position:absolute;
  7566. align-self:center;
  7567. padding:2px 16px 2px 16px;
  7568. box-sizing:border-box;
  7569. width:100%;
  7570. }
  7571. #u18936_text {
  7572. border-width:0px;
  7573. white-space:nowrap;
  7574. text-transform:none;
  7575. }
  7576. #u18937 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:1672px;
  7580. top:260px;
  7581. width:20px;
  7582. height:20px;
  7583. display:flex;
  7584. transition:none;
  7585. }
  7586. #u18937 .text {
  7587. position:absolute;
  7588. align-self:center;
  7589. padding:2px 2px 2px 2px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u18937_img {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:0px;
  7597. top:0px;
  7598. width:20px;
  7599. height:20px;
  7600. }
  7601. #u18937_text {
  7602. border-width:0px;
  7603. word-wrap:break-word;
  7604. text-transform:none;
  7605. visibility:hidden;
  7606. }
  7607. #u18938 {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:0px;
  7613. height:0px;
  7614. }
  7615. #u18939_div {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:380px;
  7621. height:140px;
  7622. background:inherit;
  7623. background-color:rgba(255, 255, 255, 1);
  7624. box-sizing:border-box;
  7625. border-width:1px;
  7626. border-style:solid;
  7627. border-color:rgba(204, 204, 204, 1);
  7628. border-radius:4px;
  7629. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  7630. transition:none;
  7631. font-family:"Microsoft YaHei", sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. }
  7635. #u18939 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:1643px;
  7639. top:385px;
  7640. width:380px;
  7641. height:140px;
  7642. display:flex;
  7643. transition:none;
  7644. transform-origin:50% 50%;
  7645. font-family:"Microsoft YaHei", sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. }
  7649. #u18939 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:2px 2px 2px 2px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u18939_text {
  7657. border-width:0px;
  7658. word-wrap:break-word;
  7659. text-transform:none;
  7660. visibility:hidden;
  7661. }
  7662. #u18940_div {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:288px;
  7668. height:22px;
  7669. background:inherit;
  7670. background-color:rgba(255, 255, 255, 0);
  7671. border-radius:0px;
  7672. filter:drop-shadow(none);
  7673. transition:none;
  7674. font-size:14px;
  7675. color:#666666;
  7676. line-height:22px;
  7677. }
  7678. #u18940 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:1703px;
  7682. top:440px;
  7683. width:288px;
  7684. height:22px;
  7685. display:flex;
  7686. transition:none;
  7687. transform-origin:50% 50%;
  7688. font-size:14px;
  7689. color:#666666;
  7690. line-height:22px;
  7691. }
  7692. #u18940 .text {
  7693. position:absolute;
  7694. align-self:flex-start;
  7695. padding:0px 0px 0px 0px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u18940_text {
  7700. border-width:0px;
  7701. word-wrap:break-word;
  7702. text-transform:none;
  7703. }
  7704. #u18941_div {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:91px;
  7710. height:21px;
  7711. background:inherit;
  7712. background-color:rgba(255, 255, 255, 0);
  7713. border-radius:0px;
  7714. filter:drop-shadow(none);
  7715. transition:none;
  7716. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7717. font-weight:650;
  7718. font-style:normal;
  7719. font-size:18px;
  7720. color:#000000;
  7721. line-height:22px;
  7722. }
  7723. #u18941 {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:1703px;
  7727. top:410px;
  7728. width:91px;
  7729. height:21px;
  7730. display:flex;
  7731. transition:none;
  7732. transform-origin:50% 50%;
  7733. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7734. font-weight:650;
  7735. font-style:normal;
  7736. font-size:18px;
  7737. color:#000000;
  7738. line-height:22px;
  7739. }
  7740. #u18941 .text {
  7741. position:absolute;
  7742. align-self:flex-start;
  7743. padding:0px 0px 0px 0px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u18941_text {
  7748. border-width:0px;
  7749. white-space:nowrap;
  7750. text-transform:none;
  7751. }
  7752. #u18942_div {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:61px;
  7758. height:30px;
  7759. background:inherit;
  7760. background-color:rgba(24, 144, 255, 1);
  7761. border-radius:4px;
  7762. filter:drop-shadow(none);
  7763. transition:none;
  7764. font-family:"Microsoft YaHei", sans-serif;
  7765. font-weight:400;
  7766. font-style:normal;
  7767. font-size:14px;
  7768. color:#FFFFFF;
  7769. }
  7770. #u18942 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:1942px;
  7774. top:480px;
  7775. width:61px;
  7776. height:30px;
  7777. display:flex;
  7778. transition:none;
  7779. transform-origin:50% 50%;
  7780. font-family:"Microsoft YaHei", sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:14px;
  7784. color:#FFFFFF;
  7785. }
  7786. #u18942 .text {
  7787. position:absolute;
  7788. align-self:center;
  7789. padding:2px 16px 2px 16px;
  7790. box-sizing:border-box;
  7791. width:100%;
  7792. }
  7793. #u18942_text {
  7794. border-width:0px;
  7795. white-space:nowrap;
  7796. text-transform:none;
  7797. }
  7798. #u18943_div {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:66px;
  7804. height:30px;
  7805. background:inherit;
  7806. background-color:rgba(255, 255, 255, 1);
  7807. box-sizing:border-box;
  7808. border-width:1px;
  7809. border-style:solid;
  7810. border-color:rgba(217, 217, 217, 1);
  7811. border-radius:4px;
  7812. filter:drop-shadow(none);
  7813. transition:none;
  7814. font-family:"Microsoft YaHei", sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:14px;
  7818. color:rgba(0, 0, 0, 0.6470588235294118);
  7819. line-height:21px;
  7820. }
  7821. #u18943 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:1863px;
  7825. top:480px;
  7826. width:66px;
  7827. height:30px;
  7828. display:flex;
  7829. transition:none;
  7830. transform-origin:50% 50%;
  7831. font-family:"Microsoft YaHei", sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. font-size:14px;
  7835. color:rgba(0, 0, 0, 0.6470588235294118);
  7836. line-height:21px;
  7837. }
  7838. #u18943 .text {
  7839. position:absolute;
  7840. align-self:center;
  7841. padding:2px 16px 2px 16px;
  7842. box-sizing:border-box;
  7843. width:100%;
  7844. }
  7845. #u18943_text {
  7846. border-width:0px;
  7847. white-space:nowrap;
  7848. text-transform:none;
  7849. }
  7850. #u18944 {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:1672px;
  7854. top:412px;
  7855. width:20px;
  7856. height:20px;
  7857. display:flex;
  7858. transition:none;
  7859. }
  7860. #u18944 .text {
  7861. position:absolute;
  7862. align-self:center;
  7863. padding:2px 2px 2px 2px;
  7864. box-sizing:border-box;
  7865. width:100%;
  7866. }
  7867. #u18944_img {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:20px;
  7873. height:20px;
  7874. }
  7875. #u18944_text {
  7876. border-width:0px;
  7877. word-wrap:break-word;
  7878. text-transform:none;
  7879. visibility:hidden;
  7880. }
  7881. #u18945 {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:0px;
  7885. top:0px;
  7886. width:0px;
  7887. height:0px;
  7888. }
  7889. #u18946_div {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:140px;
  7895. height:30px;
  7896. background:inherit;
  7897. background-color:rgba(255, 255, 255, 1);
  7898. box-sizing:border-box;
  7899. border-width:1px;
  7900. border-style:solid;
  7901. border-color:rgba(201, 201, 201, 1);
  7902. border-radius:4px;
  7903. filter:drop-shadow(none);
  7904. transition:none;
  7905. font-family:"Microsoft YaHei", sans-serif;
  7906. font-weight:400;
  7907. font-style:normal;
  7908. font-size:14px;
  7909. color:#CCCCCC;
  7910. text-align:left;
  7911. }
  7912. #u18946 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:950px;
  7916. top:140px;
  7917. width:140px;
  7918. height:30px;
  7919. display:flex;
  7920. transition:none;
  7921. transform-origin:50% 50%;
  7922. font-family:"Microsoft YaHei", sans-serif;
  7923. font-weight:400;
  7924. font-style:normal;
  7925. font-size:14px;
  7926. color:#CCCCCC;
  7927. text-align:left;
  7928. }
  7929. #u18946 .text {
  7930. position:absolute;
  7931. align-self:center;
  7932. padding:2px 8px 2px 8px;
  7933. box-sizing:border-box;
  7934. width:100%;
  7935. }
  7936. #u18946_text {
  7937. border-width:0px;
  7938. word-wrap:break-word;
  7939. text-transform:none;
  7940. visibility:hidden;
  7941. }
  7942. #u18947_input {
  7943. position:absolute;
  7944. left:0px;
  7945. top:0px;
  7946. width:127px;
  7947. height:25px;
  7948. padding:2px 2px 2px 2px;
  7949. font-family:"Microsoft YaHei", sans-serif;
  7950. font-weight:400;
  7951. font-style:normal;
  7952. font-size:10px;
  7953. letter-spacing:normal;
  7954. color:#000000;
  7955. vertical-align:none;
  7956. text-align:left;
  7957. text-transform:none;
  7958. background-color:transparent;
  7959. border-color:transparent;
  7960. }
  7961. #u18947_input.hint {
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:127px;
  7966. height:25px;
  7967. padding:2px 2px 2px 2px;
  7968. font-family:"Microsoft YaHei", sans-serif;
  7969. font-weight:400;
  7970. font-style:normal;
  7971. font-size:12px;
  7972. letter-spacing:normal;
  7973. color:#AAAAAA;
  7974. vertical-align:none;
  7975. text-align:left;
  7976. text-transform:none;
  7977. background-color:transparent;
  7978. border-color:transparent;
  7979. }
  7980. #u18947_input.disabled {
  7981. position:absolute;
  7982. left:0px;
  7983. top:0px;
  7984. width:127px;
  7985. height:25px;
  7986. padding:2px 2px 2px 2px;
  7987. font-family:"Microsoft YaHei", sans-serif;
  7988. font-weight:400;
  7989. font-style:normal;
  7990. font-size:10px;
  7991. letter-spacing:normal;
  7992. color:#000000;
  7993. vertical-align:none;
  7994. text-align:left;
  7995. text-transform:none;
  7996. background-color:transparent;
  7997. border-color:transparent;
  7998. }
  7999. #u18947_input.hint.disabled {
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:127px;
  8004. height:25px;
  8005. padding:2px 2px 2px 2px;
  8006. font-family:"Microsoft YaHei", sans-serif;
  8007. font-weight:400;
  8008. font-style:normal;
  8009. font-size:12px;
  8010. letter-spacing:normal;
  8011. color:#AAAAAA;
  8012. vertical-align:none;
  8013. text-align:left;
  8014. text-transform:none;
  8015. background-color:transparent;
  8016. border-color:transparent;
  8017. }
  8018. #u18947_div {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:0px;
  8022. top:0px;
  8023. width:127px;
  8024. height:25px;
  8025. background:inherit;
  8026. background-color:rgba(255, 255, 255, 1);
  8027. border-radius:0px;
  8028. filter:drop-shadow(none);
  8029. transition:none;
  8030. font-family:"Microsoft YaHei", sans-serif;
  8031. font-weight:400;
  8032. font-style:normal;
  8033. font-size:10px;
  8034. }
  8035. #u18947 {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:958px;
  8039. top:141px;
  8040. width:127px;
  8041. height:25px;
  8042. display:flex;
  8043. transition:none;
  8044. transform-origin:50% 50%;
  8045. font-family:"Microsoft YaHei", sans-serif;
  8046. font-weight:400;
  8047. font-style:normal;
  8048. font-size:10px;
  8049. }
  8050. #u18947 .text {
  8051. position:absolute;
  8052. align-self:center;
  8053. padding:2px 2px 2px 2px;
  8054. box-sizing:border-box;
  8055. width:100%;
  8056. }
  8057. #u18947_div.hint {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:127px;
  8063. height:25px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 1);
  8066. border-radius:0px;
  8067. filter:drop-shadow(none);
  8068. transition:none;
  8069. font-family:"Microsoft YaHei", sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:10px;
  8073. }
  8074. #u18947.hint {
  8075. }
  8076. #u18947_div.disabled {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:0px;
  8080. top:0px;
  8081. width:127px;
  8082. height:25px;
  8083. background:inherit;
  8084. background-color:rgba(240, 240, 240, 1);
  8085. border-radius:0px;
  8086. filter:drop-shadow(none);
  8087. transition:none;
  8088. font-family:"Microsoft YaHei", sans-serif;
  8089. font-weight:400;
  8090. font-style:normal;
  8091. font-size:10px;
  8092. }
  8093. #u18947.disabled {
  8094. }
  8095. #u18947_div.hint.disabled {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:0px;
  8099. top:0px;
  8100. width:127px;
  8101. height:25px;
  8102. background:inherit;
  8103. background-color:rgba(240, 240, 240, 1);
  8104. border-radius:0px;
  8105. filter:drop-shadow(none);
  8106. transition:none;
  8107. font-family:"Microsoft YaHei", sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:10px;
  8111. }
  8112. #u18947.hint.disabled {
  8113. }
  8114. #u18948 {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:0px;
  8118. top:0px;
  8119. width:0px;
  8120. height:0px;
  8121. }
  8122. #u18949_div {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:0px;
  8126. top:0px;
  8127. width:140px;
  8128. height:30px;
  8129. background:inherit;
  8130. background-color:rgba(255, 255, 255, 1);
  8131. box-sizing:border-box;
  8132. border-width:1px;
  8133. border-style:solid;
  8134. border-color:rgba(215, 215, 215, 1);
  8135. border-radius:4px;
  8136. filter:drop-shadow(none);
  8137. transition:none;
  8138. font-size:14px;
  8139. }
  8140. #u18949 {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:1250px;
  8144. top:140px;
  8145. width:140px;
  8146. height:30px;
  8147. display:flex;
  8148. transition:none;
  8149. transform-origin:50% 50%;
  8150. font-size:14px;
  8151. }
  8152. #u18949 .text {
  8153. position:absolute;
  8154. align-self:center;
  8155. padding:2px 2px 2px 2px;
  8156. box-sizing:border-box;
  8157. width:100%;
  8158. }
  8159. #u18949_text {
  8160. border-width:0px;
  8161. word-wrap:break-word;
  8162. text-transform:none;
  8163. visibility:hidden;
  8164. }
  8165. #u18950_input {
  8166. position:absolute;
  8167. left:0px;
  8168. top:0px;
  8169. width:134px;
  8170. height:23px;
  8171. padding:2px 2px 2px 2px;
  8172. font-family:'ArialMT', 'Arial', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:14px;
  8176. letter-spacing:normal;
  8177. color:#AAAAAA;
  8178. vertical-align:none;
  8179. text-align:left;
  8180. text-transform:none;
  8181. background-color:transparent;
  8182. border-color:transparent;
  8183. }
  8184. #u18950_input.disabled {
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:134px;
  8189. height:23px;
  8190. padding:2px 2px 2px 2px;
  8191. font-family:'ArialMT', 'Arial', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:14px;
  8195. letter-spacing:normal;
  8196. color:#AAAAAA;
  8197. vertical-align:none;
  8198. text-align:left;
  8199. text-transform:none;
  8200. background-color:transparent;
  8201. border-color:transparent;
  8202. }
  8203. #u18950_div {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:134px;
  8209. height:23px;
  8210. background:inherit;
  8211. background-color:rgba(255, 255, 255, 1);
  8212. border-radius:0px;
  8213. filter:drop-shadow(none);
  8214. transition:none;
  8215. font-size:14px;
  8216. color:#AAAAAA;
  8217. }
  8218. #u18950 {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:1254px;
  8222. top:142px;
  8223. width:134px;
  8224. height:23px;
  8225. display:flex;
  8226. transition:none;
  8227. transform-origin:50% 50%;
  8228. font-size:14px;
  8229. color:#AAAAAA;
  8230. }
  8231. #u18950 .text {
  8232. position:absolute;
  8233. align-self:flex-start;
  8234. padding:2px 2px 2px 2px;
  8235. box-sizing:border-box;
  8236. width:100%;
  8237. }
  8238. #u18950_div.disabled {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:0px;
  8242. top:0px;
  8243. width:134px;
  8244. height:23px;
  8245. background:inherit;
  8246. background-color:rgba(240, 240, 240, 1);
  8247. border-radius:0px;
  8248. filter:drop-shadow(none);
  8249. transition:none;
  8250. font-size:14px;
  8251. color:#AAAAAA;
  8252. }
  8253. #u18950.disabled {
  8254. }
  8255. .u18950_input_option {
  8256. font-size:14px;
  8257. }