styles.css 132 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u19604_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u19604 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u19604 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u19604_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u19605_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u19605 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u19605 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u19605_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u19606 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u19607_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u19607 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u19607 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u19607_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u19608_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u19608 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u19608 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u19608_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u19609_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u19609 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u19609 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u19609_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u19610_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u19610 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u19610 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u19610_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u19611 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u19612_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u19612 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u19612 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u19612_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u19613_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u19613 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u19613 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u19613_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u19614 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u19615_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u19615 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u19615 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u19615_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u19616_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u19616 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u19616 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u19616_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u19617 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u19618_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u19618 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u19618 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u19618_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u19619_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u19619 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u19619 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u19619_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u19620 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u19621_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u19621 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u19621 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u19621_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u19622_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u19622 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u19622 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u19622_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u19623 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u19624_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u19624 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u19624 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u19624_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u19625_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u19625 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u19625 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u19625_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u19626 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u19627_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u19627 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u19627 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u19627_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u19628_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u19628 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u19628 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u19628_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u19629 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u19630_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u19630 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u19630 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u19630_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u19631_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u19631 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u19631 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u19631_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u19632 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u19633_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u19633 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u19633 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u19633_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u19634_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u19634 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u19634 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u19634_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u19635 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u19636_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u19636 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u19636 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u19636_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u19637_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u19637 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u19637 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u19637_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u19638_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u19638_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u19638_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u19638 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u19638 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u19638_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u19638.disabled {
  1100. }
  1101. .u19638_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u19639_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u19639 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u19639 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u19639_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u19640_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u19640 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u19640 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u19640_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u19641_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u19641 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u19641 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u19641_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u19642 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u19643_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u19643 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u19643 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u19643_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u19644_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u19644 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u19644 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u19644_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u19645 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u19646_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u19646 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u19646 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u19646_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u19647_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u19647 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u19647 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u19647_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u19648 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u19649_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u19649 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u19649 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u19649_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u19650_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u19650 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u19650 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u19650_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u19651 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u19652_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u19652 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u19652 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u19652_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u19653_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u19653 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u19653 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u19653_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u19654 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u19655_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u19655 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u19655 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u19655_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u19656_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u19656 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u19656 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u19656_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u19657_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1259px;
  1636. height:160px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. }
  1645. #u19657 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:330px;
  1649. top:50px;
  1650. width:1259px;
  1651. height:160px;
  1652. display:flex;
  1653. }
  1654. #u19657 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u19657_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u19658_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:73px;
  1673. height:50px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 0);
  1676. border:none;
  1677. border-left:0px;
  1678. border-top:0px;
  1679. border-right:0px;
  1680. border-radius:0px;
  1681. border-bottom-right-radius:0px;
  1682. border-bottom-left-radius:0px;
  1683. -moz-box-shadow:none;
  1684. -webkit-box-shadow:none;
  1685. box-shadow:none;
  1686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1687. font-weight:500;
  1688. font-style:normal;
  1689. font-size:18px;
  1690. color:#0089FE;
  1691. }
  1692. #u19658 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:350px;
  1696. top:50px;
  1697. width:73px;
  1698. height:50px;
  1699. display:flex;
  1700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1701. font-weight:500;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. color:#0089FE;
  1705. }
  1706. #u19658 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:0px 0px 0px 0px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u19658_text {
  1714. border-width:0px;
  1715. white-space:nowrap;
  1716. text-transform:none;
  1717. }
  1718. #u19659_div {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:0px;
  1722. top:0px;
  1723. width:73px;
  1724. height:50px;
  1725. background:inherit;
  1726. background-color:rgba(255, 255, 255, 0);
  1727. border:none;
  1728. border-left:0px;
  1729. border-top:0px;
  1730. border-right:0px;
  1731. border-radius:0px;
  1732. border-bottom-right-radius:0px;
  1733. border-bottom-left-radius:0px;
  1734. -moz-box-shadow:none;
  1735. -webkit-box-shadow:none;
  1736. box-shadow:none;
  1737. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1738. font-weight:500;
  1739. font-style:normal;
  1740. font-size:18px;
  1741. }
  1742. #u19659 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:453px;
  1746. top:50px;
  1747. width:73px;
  1748. height:50px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1751. font-weight:500;
  1752. font-style:normal;
  1753. font-size:18px;
  1754. }
  1755. #u19659 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:0px 0px 0px 0px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u19659_text {
  1763. border-width:0px;
  1764. white-space:nowrap;
  1765. text-transform:none;
  1766. }
  1767. #u19660_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:73px;
  1773. height:50px;
  1774. background:inherit;
  1775. background-color:rgba(255, 255, 255, 0);
  1776. border:none;
  1777. border-left:0px;
  1778. border-top:0px;
  1779. border-right:0px;
  1780. border-radius:0px;
  1781. border-bottom-right-radius:0px;
  1782. border-bottom-left-radius:0px;
  1783. -moz-box-shadow:none;
  1784. -webkit-box-shadow:none;
  1785. box-shadow:none;
  1786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1787. font-weight:500;
  1788. font-style:normal;
  1789. font-size:18px;
  1790. }
  1791. #u19660 {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:556px;
  1795. top:50px;
  1796. width:73px;
  1797. height:50px;
  1798. display:flex;
  1799. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1800. font-weight:500;
  1801. font-style:normal;
  1802. font-size:18px;
  1803. }
  1804. #u19660 .text {
  1805. position:absolute;
  1806. align-self:center;
  1807. padding:0px 0px 0px 0px;
  1808. box-sizing:border-box;
  1809. width:100%;
  1810. }
  1811. #u19660_text {
  1812. border-width:0px;
  1813. white-space:nowrap;
  1814. text-transform:none;
  1815. }
  1816. #u19661_div {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:1259px;
  1822. height:1010px;
  1823. background:inherit;
  1824. background-color:rgba(255, 255, 255, 1);
  1825. border:none;
  1826. border-radius:0px;
  1827. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1828. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1829. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1830. }
  1831. #u19661 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:330px;
  1835. top:220px;
  1836. width:1259px;
  1837. height:1010px;
  1838. display:flex;
  1839. }
  1840. #u19661 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 2px 2px 2px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u19661_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. visibility:hidden;
  1852. }
  1853. #u19662 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:0px;
  1859. height:0px;
  1860. }
  1861. #u19663_div {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:200px;
  1867. height:20px;
  1868. background:inherit;
  1869. background-color:rgba(255, 255, 255, 0);
  1870. border:none;
  1871. border-radius:0px;
  1872. -moz-box-shadow:none;
  1873. -webkit-box-shadow:none;
  1874. box-shadow:none;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:14px;
  1879. }
  1880. #u19663 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:387px;
  1884. top:163px;
  1885. width:200px;
  1886. height:20px;
  1887. display:flex;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:14px;
  1892. }
  1893. #u19663 .text {
  1894. position:absolute;
  1895. align-self:flex-start;
  1896. padding:0px 0px 0px 0px;
  1897. box-sizing:border-box;
  1898. width:100%;
  1899. }
  1900. #u19663_text {
  1901. border-width:0px;
  1902. word-wrap:break-word;
  1903. text-transform:none;
  1904. }
  1905. #u19664_div {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:200px;
  1911. height:40px;
  1912. background:inherit;
  1913. background-color:rgba(255, 255, 255, 0);
  1914. border:none;
  1915. border-radius:0px;
  1916. -moz-box-shadow:none;
  1917. -webkit-box-shadow:none;
  1918. box-shadow:none;
  1919. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1920. font-weight:650;
  1921. font-style:normal;
  1922. font-size:28px;
  1923. }
  1924. #u19664 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:387px;
  1928. top:123px;
  1929. width:200px;
  1930. height:40px;
  1931. display:flex;
  1932. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1933. font-weight:650;
  1934. font-style:normal;
  1935. font-size:28px;
  1936. }
  1937. #u19664 .text {
  1938. position:absolute;
  1939. align-self:flex-start;
  1940. padding:0px 0px 0px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u19664_text {
  1945. border-width:0px;
  1946. word-wrap:break-word;
  1947. text-transform:none;
  1948. }
  1949. #u19665 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:0px;
  1955. height:0px;
  1956. }
  1957. #u19666_div {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:200px;
  1963. height:20px;
  1964. background:inherit;
  1965. background-color:rgba(255, 255, 255, 0);
  1966. border:none;
  1967. border-radius:0px;
  1968. -moz-box-shadow:none;
  1969. -webkit-box-shadow:none;
  1970. box-shadow:none;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:14px;
  1975. }
  1976. #u19666 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:625px;
  1980. top:163px;
  1981. width:200px;
  1982. height:20px;
  1983. display:flex;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:14px;
  1988. }
  1989. #u19666 .text {
  1990. position:absolute;
  1991. align-self:flex-start;
  1992. padding:0px 0px 0px 0px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u19666_text {
  1997. border-width:0px;
  1998. word-wrap:break-word;
  1999. text-transform:none;
  2000. }
  2001. #u19667_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:200px;
  2007. height:40px;
  2008. background:inherit;
  2009. background-color:rgba(255, 255, 255, 0);
  2010. border:none;
  2011. border-radius:0px;
  2012. -moz-box-shadow:none;
  2013. -webkit-box-shadow:none;
  2014. box-shadow:none;
  2015. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2016. font-weight:650;
  2017. font-style:normal;
  2018. font-size:28px;
  2019. }
  2020. #u19667 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:625px;
  2024. top:123px;
  2025. width:200px;
  2026. height:40px;
  2027. display:flex;
  2028. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2029. font-weight:650;
  2030. font-style:normal;
  2031. font-size:28px;
  2032. }
  2033. #u19667 .text {
  2034. position:absolute;
  2035. align-self:flex-start;
  2036. padding:0px 0px 0px 0px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u19667_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u19668 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:0px;
  2051. height:0px;
  2052. }
  2053. #u19669_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:200px;
  2059. height:20px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 0);
  2062. border:none;
  2063. border-radius:0px;
  2064. -moz-box-shadow:none;
  2065. -webkit-box-shadow:none;
  2066. box-shadow:none;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. }
  2072. #u19669 {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:863px;
  2076. top:163px;
  2077. width:200px;
  2078. height:20px;
  2079. display:flex;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:14px;
  2084. }
  2085. #u19669 .text {
  2086. position:absolute;
  2087. align-self:flex-start;
  2088. padding:0px 0px 0px 0px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u19669_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. }
  2097. #u19670_div {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:200px;
  2103. height:40px;
  2104. background:inherit;
  2105. background-color:rgba(255, 255, 255, 0);
  2106. border:none;
  2107. border-radius:0px;
  2108. -moz-box-shadow:none;
  2109. -webkit-box-shadow:none;
  2110. box-shadow:none;
  2111. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2112. font-weight:650;
  2113. font-style:normal;
  2114. font-size:28px;
  2115. }
  2116. #u19670 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:863px;
  2120. top:123px;
  2121. width:200px;
  2122. height:40px;
  2123. display:flex;
  2124. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2125. font-weight:650;
  2126. font-style:normal;
  2127. font-size:28px;
  2128. }
  2129. #u19670 .text {
  2130. position:absolute;
  2131. align-self:flex-start;
  2132. padding:0px 0px 0px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u19670_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. }
  2141. #u19671 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:0px;
  2147. height:0px;
  2148. }
  2149. #u19672_div {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:0px;
  2153. top:0px;
  2154. width:200px;
  2155. height:20px;
  2156. background:inherit;
  2157. background-color:rgba(255, 255, 255, 0);
  2158. border:none;
  2159. border-radius:0px;
  2160. -moz-box-shadow:none;
  2161. -webkit-box-shadow:none;
  2162. box-shadow:none;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. }
  2168. #u19672 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:1100px;
  2172. top:163px;
  2173. width:200px;
  2174. height:20px;
  2175. display:flex;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:14px;
  2180. }
  2181. #u19672 .text {
  2182. position:absolute;
  2183. align-self:flex-start;
  2184. padding:0px 0px 0px 0px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u19672_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. }
  2193. #u19673_div {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:200px;
  2199. height:40px;
  2200. background:inherit;
  2201. background-color:rgba(255, 255, 255, 0);
  2202. border:none;
  2203. border-radius:0px;
  2204. -moz-box-shadow:none;
  2205. -webkit-box-shadow:none;
  2206. box-shadow:none;
  2207. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2208. font-weight:650;
  2209. font-style:normal;
  2210. font-size:28px;
  2211. }
  2212. #u19673 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:1100px;
  2216. top:123px;
  2217. width:200px;
  2218. height:40px;
  2219. display:flex;
  2220. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2221. font-weight:650;
  2222. font-style:normal;
  2223. font-size:28px;
  2224. }
  2225. #u19673 .text {
  2226. position:absolute;
  2227. align-self:flex-start;
  2228. padding:0px 0px 0px 0px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u19673_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. }
  2237. #u19674 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:0px;
  2243. height:0px;
  2244. }
  2245. #u19675_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:200px;
  2251. height:20px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 0);
  2254. border:none;
  2255. border-radius:0px;
  2256. -moz-box-shadow:none;
  2257. -webkit-box-shadow:none;
  2258. box-shadow:none;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:14px;
  2263. }
  2264. #u19675 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:1338px;
  2268. top:163px;
  2269. width:200px;
  2270. height:20px;
  2271. display:flex;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:14px;
  2276. }
  2277. #u19675 .text {
  2278. position:absolute;
  2279. align-self:flex-start;
  2280. padding:0px 0px 0px 0px;
  2281. box-sizing:border-box;
  2282. width:100%;
  2283. }
  2284. #u19675_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. }
  2289. #u19676_div {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:200px;
  2295. height:40px;
  2296. background:inherit;
  2297. background-color:rgba(255, 255, 255, 0);
  2298. border:none;
  2299. border-radius:0px;
  2300. -moz-box-shadow:none;
  2301. -webkit-box-shadow:none;
  2302. box-shadow:none;
  2303. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2304. font-weight:650;
  2305. font-style:normal;
  2306. font-size:28px;
  2307. }
  2308. #u19676 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:1338px;
  2312. top:123px;
  2313. width:200px;
  2314. height:40px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2317. font-weight:650;
  2318. font-style:normal;
  2319. font-size:28px;
  2320. }
  2321. #u19676 .text {
  2322. position:absolute;
  2323. align-self:flex-start;
  2324. padding:0px 0px 0px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u19676_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. }
  2333. #u19677 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:0px;
  2339. height:0px;
  2340. }
  2341. #u19678_div {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:60px;
  2347. height:30px;
  2348. background:inherit;
  2349. background-color:rgba(24, 144, 255, 1);
  2350. border:none;
  2351. border-radius:0px;
  2352. -moz-box-shadow:none;
  2353. -webkit-box-shadow:none;
  2354. box-shadow:none;
  2355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2356. font-weight:400;
  2357. font-style:normal;
  2358. color:#FFFFFF;
  2359. text-align:center;
  2360. }
  2361. #u19678 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:1267px;
  2365. top:60px;
  2366. width:60px;
  2367. height:30px;
  2368. display:flex;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. color:#FFFFFF;
  2373. text-align:center;
  2374. }
  2375. #u19678 .text {
  2376. position:absolute;
  2377. align-self:center;
  2378. padding:2px 2px 2px 2px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u19678_text {
  2383. border-width:0px;
  2384. word-wrap:break-word;
  2385. text-transform:none;
  2386. }
  2387. #u19679_div {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:60px;
  2393. height:30px;
  2394. background:inherit;
  2395. background-color:rgba(255, 255, 255, 1);
  2396. box-sizing:border-box;
  2397. border-width:1px;
  2398. border-style:solid;
  2399. border-color:rgba(215, 215, 215, 1);
  2400. border-radius:0px;
  2401. -moz-box-shadow:none;
  2402. -webkit-box-shadow:none;
  2403. box-shadow:none;
  2404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. text-align:center;
  2408. }
  2409. #u19679 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:1386px;
  2413. top:60px;
  2414. width:60px;
  2415. height:30px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. text-align:center;
  2421. }
  2422. #u19679 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u19679_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u19680_div {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:60px;
  2440. height:30px;
  2441. background:inherit;
  2442. background-color:rgba(255, 255, 255, 1);
  2443. box-sizing:border-box;
  2444. border-width:1px;
  2445. border-style:solid;
  2446. border-color:rgba(215, 215, 215, 1);
  2447. border-radius:0px;
  2448. -moz-box-shadow:none;
  2449. -webkit-box-shadow:none;
  2450. box-shadow:none;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. text-align:center;
  2455. }
  2456. #u19680 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:1445px;
  2460. top:60px;
  2461. width:60px;
  2462. height:30px;
  2463. display:flex;
  2464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. text-align:center;
  2468. }
  2469. #u19680 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 2px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u19680_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. }
  2481. #u19681_div {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:60px;
  2487. height:30px;
  2488. background:inherit;
  2489. background-color:rgba(255, 255, 255, 1);
  2490. box-sizing:border-box;
  2491. border-width:1px;
  2492. border-style:solid;
  2493. border-color:rgba(215, 215, 215, 1);
  2494. border-radius:0px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. text-align:center;
  2502. }
  2503. #u19681 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:1327px;
  2507. top:60px;
  2508. width:60px;
  2509. height:30px;
  2510. display:flex;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. text-align:center;
  2515. }
  2516. #u19681 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:2px 2px 2px 2px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u19681_text {
  2524. border-width:0px;
  2525. word-wrap:break-word;
  2526. text-transform:none;
  2527. }
  2528. #u19682_div {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:60px;
  2534. height:30px;
  2535. background:inherit;
  2536. background-color:rgba(255, 255, 255, 1);
  2537. box-sizing:border-box;
  2538. border-width:1px;
  2539. border-style:solid;
  2540. border-color:rgba(215, 215, 215, 1);
  2541. border-radius:0px;
  2542. -moz-box-shadow:none;
  2543. -webkit-box-shadow:none;
  2544. box-shadow:none;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. text-align:center;
  2549. }
  2550. #u19682 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:1504px;
  2554. top:60px;
  2555. width:60px;
  2556. height:30px;
  2557. display:flex;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. text-align:center;
  2562. }
  2563. #u19682 .text {
  2564. position:absolute;
  2565. align-self:center;
  2566. padding:2px 2px 2px 2px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u19682_text {
  2571. border-width:0px;
  2572. word-wrap:break-word;
  2573. text-transform:none;
  2574. }
  2575. #u19683 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:0px;
  2581. height:0px;
  2582. }
  2583. #u19684_div {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:80px;
  2589. height:30px;
  2590. background:inherit;
  2591. background-color:rgba(255, 255, 255, 1);
  2592. box-sizing:border-box;
  2593. border-width:1px;
  2594. border-style:solid;
  2595. border-color:rgba(215, 215, 215, 1);
  2596. border-radius:4px;
  2597. -moz-box-shadow:none;
  2598. -webkit-box-shadow:none;
  2599. box-shadow:none;
  2600. font-size:11px;
  2601. }
  2602. #u19684 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:350px;
  2606. top:239px;
  2607. width:80px;
  2608. height:30px;
  2609. display:flex;
  2610. font-size:11px;
  2611. }
  2612. #u19684 .text {
  2613. position:absolute;
  2614. align-self:center;
  2615. padding:2px 2px 2px 2px;
  2616. box-sizing:border-box;
  2617. width:100%;
  2618. }
  2619. #u19684_text {
  2620. border-width:0px;
  2621. word-wrap:break-word;
  2622. text-transform:none;
  2623. visibility:hidden;
  2624. }
  2625. #u19685_input {
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:70px;
  2630. height:23px;
  2631. padding:2px 2px 2px 2px;
  2632. font-family:'ArialMT', 'Arial', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:11px;
  2636. letter-spacing:normal;
  2637. color:#AAAAAA;
  2638. vertical-align:none;
  2639. text-align:left;
  2640. text-transform:none;
  2641. background-color:transparent;
  2642. border-color:transparent;
  2643. }
  2644. #u19685_input.disabled {
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:70px;
  2649. height:23px;
  2650. padding:2px 2px 2px 2px;
  2651. font-family:'ArialMT', 'Arial', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:11px;
  2655. letter-spacing:normal;
  2656. color:#AAAAAA;
  2657. vertical-align:none;
  2658. text-align:left;
  2659. text-transform:none;
  2660. background-color:transparent;
  2661. border-color:transparent;
  2662. }
  2663. #u19685_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:70px;
  2669. height:23px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 1);
  2672. border:none;
  2673. border-radius:0px;
  2674. -moz-box-shadow:none;
  2675. -webkit-box-shadow:none;
  2676. box-shadow:none;
  2677. font-size:11px;
  2678. color:#AAAAAA;
  2679. }
  2680. #u19685 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:354px;
  2684. top:241px;
  2685. width:70px;
  2686. height:23px;
  2687. display:flex;
  2688. font-size:11px;
  2689. color:#AAAAAA;
  2690. }
  2691. #u19685 .text {
  2692. position:absolute;
  2693. align-self:flex-start;
  2694. padding:2px 2px 2px 2px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u19685_div.disabled {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:70px;
  2704. height:23px;
  2705. background:inherit;
  2706. background-color:rgba(240, 240, 240, 1);
  2707. border:none;
  2708. border-radius:0px;
  2709. -moz-box-shadow:none;
  2710. -webkit-box-shadow:none;
  2711. box-shadow:none;
  2712. font-size:11px;
  2713. color:#AAAAAA;
  2714. }
  2715. #u19685.disabled {
  2716. }
  2717. .u19685_input_option {
  2718. font-size:11px;
  2719. }
  2720. #u19686 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:0px;
  2726. height:0px;
  2727. }
  2728. #u19687_div {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:240px;
  2734. height:30px;
  2735. background:inherit;
  2736. background-color:rgba(255, 255, 255, 1);
  2737. box-sizing:border-box;
  2738. border-width:1px;
  2739. border-style:solid;
  2740. border-color:rgba(215, 215, 215, 1);
  2741. border-radius:4px;
  2742. -moz-box-shadow:none;
  2743. -webkit-box-shadow:none;
  2744. box-shadow:none;
  2745. font-size:11px;
  2746. }
  2747. #u19687 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:440px;
  2751. top:239px;
  2752. width:240px;
  2753. height:30px;
  2754. display:flex;
  2755. font-size:11px;
  2756. }
  2757. #u19687 .text {
  2758. position:absolute;
  2759. align-self:center;
  2760. padding:2px 2px 2px 2px;
  2761. box-sizing:border-box;
  2762. width:100%;
  2763. }
  2764. #u19687_text {
  2765. border-width:0px;
  2766. word-wrap:break-word;
  2767. text-transform:none;
  2768. visibility:hidden;
  2769. }
  2770. #u19688_input {
  2771. position:absolute;
  2772. left:0px;
  2773. top:0px;
  2774. width:100px;
  2775. height:23px;
  2776. padding:2px 2px 2px 2px;
  2777. font-family:'ArialMT', 'Arial', sans-serif;
  2778. font-weight:400;
  2779. font-style:normal;
  2780. font-size:11px;
  2781. letter-spacing:normal;
  2782. color:#AAAAAA;
  2783. vertical-align:none;
  2784. text-align:left;
  2785. text-transform:none;
  2786. background-color:transparent;
  2787. border-color:transparent;
  2788. }
  2789. #u19688_input.disabled {
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:100px;
  2794. height:23px;
  2795. padding:2px 2px 2px 2px;
  2796. font-family:'ArialMT', 'Arial', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:11px;
  2800. letter-spacing:normal;
  2801. color:#AAAAAA;
  2802. vertical-align:none;
  2803. text-align:left;
  2804. text-transform:none;
  2805. background-color:transparent;
  2806. border-color:transparent;
  2807. }
  2808. #u19688_div {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:100px;
  2814. height:23px;
  2815. background:inherit;
  2816. background-color:rgba(255, 255, 255, 1);
  2817. border:none;
  2818. border-radius:0px;
  2819. -moz-box-shadow:none;
  2820. -webkit-box-shadow:none;
  2821. box-shadow:none;
  2822. font-size:11px;
  2823. color:#AAAAAA;
  2824. }
  2825. #u19688 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:447px;
  2829. top:241px;
  2830. width:100px;
  2831. height:23px;
  2832. display:flex;
  2833. font-size:11px;
  2834. color:#AAAAAA;
  2835. }
  2836. #u19688 .text {
  2837. position:absolute;
  2838. align-self:flex-start;
  2839. padding:2px 2px 2px 2px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u19688_div.disabled {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:100px;
  2849. height:23px;
  2850. background:inherit;
  2851. background-color:rgba(240, 240, 240, 1);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. font-size:11px;
  2858. color:#AAAAAA;
  2859. }
  2860. #u19688.disabled {
  2861. }
  2862. .u19688_input_option {
  2863. font-size:11px;
  2864. }
  2865. #u19689_input {
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:100px;
  2870. height:23px;
  2871. padding:2px 2px 2px 2px;
  2872. font-family:'ArialMT', 'Arial', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:11px;
  2876. letter-spacing:normal;
  2877. color:#AAAAAA;
  2878. vertical-align:none;
  2879. text-align:left;
  2880. text-transform:none;
  2881. background-color:transparent;
  2882. border-color:transparent;
  2883. }
  2884. #u19689_input.disabled {
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:100px;
  2889. height:23px;
  2890. padding:2px 2px 2px 2px;
  2891. font-family:'ArialMT', 'Arial', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:11px;
  2895. letter-spacing:normal;
  2896. color:#AAAAAA;
  2897. vertical-align:none;
  2898. text-align:left;
  2899. text-transform:none;
  2900. background-color:transparent;
  2901. border-color:transparent;
  2902. }
  2903. #u19689_div {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:100px;
  2909. height:23px;
  2910. background:inherit;
  2911. background-color:rgba(255, 255, 255, 1);
  2912. border:none;
  2913. border-radius:0px;
  2914. -moz-box-shadow:none;
  2915. -webkit-box-shadow:none;
  2916. box-shadow:none;
  2917. font-size:11px;
  2918. color:#AAAAAA;
  2919. }
  2920. #u19689 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:568px;
  2924. top:241px;
  2925. width:100px;
  2926. height:23px;
  2927. display:flex;
  2928. font-size:11px;
  2929. color:#AAAAAA;
  2930. }
  2931. #u19689 .text {
  2932. position:absolute;
  2933. align-self:flex-start;
  2934. padding:2px 2px 2px 2px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u19689_div.disabled {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:100px;
  2944. height:23px;
  2945. background:inherit;
  2946. background-color:rgba(240, 240, 240, 1);
  2947. border:none;
  2948. border-radius:0px;
  2949. -moz-box-shadow:none;
  2950. -webkit-box-shadow:none;
  2951. box-shadow:none;
  2952. font-size:11px;
  2953. color:#AAAAAA;
  2954. }
  2955. #u19689.disabled {
  2956. }
  2957. .u19689_input_option {
  2958. font-size:11px;
  2959. }
  2960. #u19690 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:350px;
  2964. top:329px;
  2965. width:1219px;
  2966. height:292px;
  2967. }
  2968. #u19691_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:41px;
  2974. height:38px;
  2975. }
  2976. #u19691 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:41px;
  2982. height:38px;
  2983. display:flex;
  2984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. color:#FFFFFF;
  2989. }
  2990. #u19691 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u19691_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. }
  3002. #u19692_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:145px;
  3008. height:38px;
  3009. }
  3010. #u19692 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:41px;
  3014. top:0px;
  3015. width:145px;
  3016. height:38px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:12px;
  3022. color:#FFFFFF;
  3023. }
  3024. #u19692 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 0px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u19692_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. }
  3036. #u19693_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:145px;
  3042. height:38px;
  3043. }
  3044. #u19693 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:186px;
  3048. top:0px;
  3049. width:145px;
  3050. height:38px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. color:#FFFFFF;
  3057. }
  3058. #u19693 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 0px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u19693_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. }
  3070. #u19694_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:145px;
  3076. height:38px;
  3077. }
  3078. #u19694 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:331px;
  3082. top:0px;
  3083. width:145px;
  3084. height:38px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. color:#FFFFFF;
  3091. }
  3092. #u19694 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u19694_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. }
  3104. #u19695_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:145px;
  3110. height:38px;
  3111. }
  3112. #u19695 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:476px;
  3116. top:0px;
  3117. width:145px;
  3118. height:38px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#FFFFFF;
  3125. }
  3126. #u19695 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u19695_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. }
  3138. #u19696_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:145px;
  3144. height:38px;
  3145. }
  3146. #u19696 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:621px;
  3150. top:0px;
  3151. width:145px;
  3152. height:38px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#FFFFFF;
  3159. }
  3160. #u19696 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u19696_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. }
  3172. #u19697_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:145px;
  3178. height:38px;
  3179. }
  3180. #u19697 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:766px;
  3184. top:0px;
  3185. width:145px;
  3186. height:38px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#FFFFFF;
  3193. }
  3194. #u19697 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u19697_text {
  3202. border-width:0px;
  3203. word-wrap:break-word;
  3204. text-transform:none;
  3205. }
  3206. #u19698_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:145px;
  3212. height:38px;
  3213. }
  3214. #u19698 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:911px;
  3218. top:0px;
  3219. width:145px;
  3220. height:38px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. color:#FFFFFF;
  3227. }
  3228. #u19698 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u19698_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. }
  3240. #u19699_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:163px;
  3246. height:38px;
  3247. }
  3248. #u19699 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:1056px;
  3252. top:0px;
  3253. width:163px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. color:#FFFFFF;
  3261. }
  3262. #u19699 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u19699_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. }
  3274. #u19700_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:41px;
  3280. height:38px;
  3281. }
  3282. #u19700 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:38px;
  3287. width:41px;
  3288. height:38px;
  3289. display:flex;
  3290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. }
  3295. #u19700 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u19700_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. }
  3307. #u19701_img {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:145px;
  3313. height:38px;
  3314. }
  3315. #u19701 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:41px;
  3319. top:38px;
  3320. width:145px;
  3321. height:38px;
  3322. display:flex;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:12px;
  3327. }
  3328. #u19701 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:2px 2px 2px 0px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u19701_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. visibility:hidden;
  3340. }
  3341. #u19702_img {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:145px;
  3347. height:38px;
  3348. }
  3349. #u19702 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:186px;
  3353. top:38px;
  3354. width:145px;
  3355. height:38px;
  3356. display:flex;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:12px;
  3361. }
  3362. #u19702 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 2px 2px 0px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u19702_text {
  3370. border-width:0px;
  3371. word-wrap:break-word;
  3372. text-transform:none;
  3373. visibility:hidden;
  3374. }
  3375. #u19703_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:145px;
  3381. height:38px;
  3382. }
  3383. #u19703 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:331px;
  3387. top:38px;
  3388. width:145px;
  3389. height:38px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:12px;
  3395. }
  3396. #u19703 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u19703_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u19704_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:145px;
  3415. height:38px;
  3416. }
  3417. #u19704 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:476px;
  3421. top:38px;
  3422. width:145px;
  3423. height:38px;
  3424. display:flex;
  3425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. }
  3430. #u19704 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u19704_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u19705_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:145px;
  3449. height:38px;
  3450. }
  3451. #u19705 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:621px;
  3455. top:38px;
  3456. width:145px;
  3457. height:38px;
  3458. display:flex;
  3459. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. }
  3464. #u19705 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 0px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u19705_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u19706_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:145px;
  3483. height:38px;
  3484. }
  3485. #u19706 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:766px;
  3489. top:38px;
  3490. width:145px;
  3491. height:38px;
  3492. display:flex;
  3493. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:12px;
  3497. }
  3498. #u19706 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 0px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u19706_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u19707_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:145px;
  3517. height:38px;
  3518. }
  3519. #u19707 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:911px;
  3523. top:38px;
  3524. width:145px;
  3525. height:38px;
  3526. display:flex;
  3527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. }
  3532. #u19707 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u19707_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u19708_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:163px;
  3551. height:38px;
  3552. }
  3553. #u19708 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:1056px;
  3557. top:38px;
  3558. width:163px;
  3559. height:38px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. color:#1890FF;
  3566. }
  3567. #u19708 .text {
  3568. position:absolute;
  3569. align-self:center;
  3570. padding:2px 2px 2px 0px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u19708_text {
  3575. border-width:0px;
  3576. word-wrap:break-word;
  3577. text-transform:none;
  3578. }
  3579. #u19709_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:41px;
  3585. height:38px;
  3586. }
  3587. #u19709 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:76px;
  3592. width:41px;
  3593. height:38px;
  3594. display:flex;
  3595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. color:#606266;
  3600. }
  3601. #u19709 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u19709_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. }
  3613. #u19710_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:145px;
  3619. height:38px;
  3620. }
  3621. #u19710 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:41px;
  3625. top:76px;
  3626. width:145px;
  3627. height:38px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. color:#606266;
  3634. }
  3635. #u19710 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u19710_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u19711_img {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:145px;
  3654. height:38px;
  3655. }
  3656. #u19711 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:186px;
  3660. top:76px;
  3661. width:145px;
  3662. height:38px;
  3663. display:flex;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. color:#606266;
  3669. }
  3670. #u19711 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 0px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u19711_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. visibility:hidden;
  3682. }
  3683. #u19712_img {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:145px;
  3689. height:38px;
  3690. }
  3691. #u19712 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:331px;
  3695. top:76px;
  3696. width:145px;
  3697. height:38px;
  3698. display:flex;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:12px;
  3703. color:#606266;
  3704. }
  3705. #u19712 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 0px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u19712_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u19713_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:145px;
  3724. height:38px;
  3725. }
  3726. #u19713 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:476px;
  3730. top:76px;
  3731. width:145px;
  3732. height:38px;
  3733. display:flex;
  3734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:12px;
  3738. color:#606266;
  3739. }
  3740. #u19713 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 0px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u19713_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. visibility:hidden;
  3752. }
  3753. #u19714_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:145px;
  3759. height:38px;
  3760. }
  3761. #u19714 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:621px;
  3765. top:76px;
  3766. width:145px;
  3767. height:38px;
  3768. display:flex;
  3769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:12px;
  3773. color:#606266;
  3774. }
  3775. #u19714 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u19714_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u19715_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:145px;
  3794. height:38px;
  3795. }
  3796. #u19715 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:766px;
  3800. top:76px;
  3801. width:145px;
  3802. height:38px;
  3803. display:flex;
  3804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:12px;
  3808. color:#606266;
  3809. }
  3810. #u19715 .text {
  3811. position:absolute;
  3812. align-self:center;
  3813. padding:2px 2px 2px 0px;
  3814. box-sizing:border-box;
  3815. width:100%;
  3816. }
  3817. #u19715_text {
  3818. border-width:0px;
  3819. word-wrap:break-word;
  3820. text-transform:none;
  3821. visibility:hidden;
  3822. }
  3823. #u19716_img {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:145px;
  3829. height:38px;
  3830. }
  3831. #u19716 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:911px;
  3835. top:76px;
  3836. width:145px;
  3837. height:38px;
  3838. display:flex;
  3839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:12px;
  3843. color:#606266;
  3844. }
  3845. #u19716 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u19716_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u19717_img {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:163px;
  3864. height:38px;
  3865. }
  3866. #u19717 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:1056px;
  3870. top:76px;
  3871. width:163px;
  3872. height:38px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. color:#1890FF;
  3879. }
  3880. #u19717 .text {
  3881. position:absolute;
  3882. align-self:center;
  3883. padding:2px 2px 2px 0px;
  3884. box-sizing:border-box;
  3885. width:100%;
  3886. }
  3887. #u19717_text {
  3888. border-width:0px;
  3889. word-wrap:break-word;
  3890. text-transform:none;
  3891. }
  3892. #u19718_img {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:41px;
  3898. height:38px;
  3899. }
  3900. #u19718 {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:114px;
  3905. width:41px;
  3906. height:38px;
  3907. display:flex;
  3908. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:12px;
  3912. color:#606266;
  3913. }
  3914. #u19718 .text {
  3915. position:absolute;
  3916. align-self:center;
  3917. padding:2px 2px 2px 0px;
  3918. box-sizing:border-box;
  3919. width:100%;
  3920. }
  3921. #u19718_text {
  3922. border-width:0px;
  3923. word-wrap:break-word;
  3924. text-transform:none;
  3925. }
  3926. #u19719_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:145px;
  3932. height:38px;
  3933. }
  3934. #u19719 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:41px;
  3938. top:114px;
  3939. width:145px;
  3940. height:38px;
  3941. display:flex;
  3942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:12px;
  3946. color:#606266;
  3947. }
  3948. #u19719 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u19719_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u19720_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:145px;
  3967. height:38px;
  3968. }
  3969. #u19720 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:186px;
  3973. top:114px;
  3974. width:145px;
  3975. height:38px;
  3976. display:flex;
  3977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:12px;
  3981. color:#606266;
  3982. }
  3983. #u19720 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u19720_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u19721_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:145px;
  4002. height:38px;
  4003. }
  4004. #u19721 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:331px;
  4008. top:114px;
  4009. width:145px;
  4010. height:38px;
  4011. display:flex;
  4012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:12px;
  4016. color:#606266;
  4017. }
  4018. #u19721 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u19721_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u19722_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:145px;
  4037. height:38px;
  4038. }
  4039. #u19722 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:476px;
  4043. top:114px;
  4044. width:145px;
  4045. height:38px;
  4046. display:flex;
  4047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#606266;
  4052. }
  4053. #u19722 .text {
  4054. position:absolute;
  4055. align-self:center;
  4056. padding:2px 2px 2px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u19722_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u19723_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:145px;
  4072. height:38px;
  4073. }
  4074. #u19723 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:621px;
  4078. top:114px;
  4079. width:145px;
  4080. height:38px;
  4081. display:flex;
  4082. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:12px;
  4086. color:#606266;
  4087. }
  4088. #u19723 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u19723_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u19724_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:145px;
  4107. height:38px;
  4108. }
  4109. #u19724 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:766px;
  4113. top:114px;
  4114. width:145px;
  4115. height:38px;
  4116. display:flex;
  4117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. color:#606266;
  4122. }
  4123. #u19724 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 0px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u19724_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u19725_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:145px;
  4142. height:38px;
  4143. }
  4144. #u19725 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:911px;
  4148. top:114px;
  4149. width:145px;
  4150. height:38px;
  4151. display:flex;
  4152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. color:#606266;
  4157. }
  4158. #u19725 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 0px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u19725_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u19726_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:163px;
  4177. height:38px;
  4178. }
  4179. #u19726 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:1056px;
  4183. top:114px;
  4184. width:163px;
  4185. height:38px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#1890FF;
  4192. }
  4193. #u19726 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 0px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u19726_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. }
  4205. #u19727_img {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:41px;
  4211. height:35px;
  4212. }
  4213. #u19727 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:152px;
  4218. width:41px;
  4219. height:35px;
  4220. display:flex;
  4221. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:12px;
  4225. color:#606266;
  4226. }
  4227. #u19727 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 0px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u19727_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. }
  4239. #u19728_img {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:145px;
  4245. height:35px;
  4246. }
  4247. #u19728 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:41px;
  4251. top:152px;
  4252. width:145px;
  4253. height:35px;
  4254. display:flex;
  4255. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:12px;
  4259. color:#606266;
  4260. }
  4261. #u19728 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 0px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u19728_text {
  4269. border-width:0px;
  4270. word-wrap:break-word;
  4271. text-transform:none;
  4272. visibility:hidden;
  4273. }
  4274. #u19729_img {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:145px;
  4280. height:35px;
  4281. }
  4282. #u19729 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:186px;
  4286. top:152px;
  4287. width:145px;
  4288. height:35px;
  4289. display:flex;
  4290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. color:#606266;
  4295. }
  4296. #u19729 .text {
  4297. position:absolute;
  4298. align-self:center;
  4299. padding:2px 2px 2px 0px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u19729_text {
  4304. border-width:0px;
  4305. word-wrap:break-word;
  4306. text-transform:none;
  4307. visibility:hidden;
  4308. }
  4309. #u19730_img {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:145px;
  4315. height:35px;
  4316. }
  4317. #u19730 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:331px;
  4321. top:152px;
  4322. width:145px;
  4323. height:35px;
  4324. display:flex;
  4325. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4326. font-weight:400;
  4327. font-style:normal;
  4328. font-size:12px;
  4329. color:#606266;
  4330. }
  4331. #u19730 .text {
  4332. position:absolute;
  4333. align-self:center;
  4334. padding:2px 2px 2px 0px;
  4335. box-sizing:border-box;
  4336. width:100%;
  4337. }
  4338. #u19730_text {
  4339. border-width:0px;
  4340. word-wrap:break-word;
  4341. text-transform:none;
  4342. visibility:hidden;
  4343. }
  4344. #u19731_img {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:145px;
  4350. height:35px;
  4351. }
  4352. #u19731 {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:476px;
  4356. top:152px;
  4357. width:145px;
  4358. height:35px;
  4359. display:flex;
  4360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:12px;
  4364. color:#606266;
  4365. }
  4366. #u19731 .text {
  4367. position:absolute;
  4368. align-self:center;
  4369. padding:2px 2px 2px 0px;
  4370. box-sizing:border-box;
  4371. width:100%;
  4372. }
  4373. #u19731_text {
  4374. border-width:0px;
  4375. word-wrap:break-word;
  4376. text-transform:none;
  4377. visibility:hidden;
  4378. }
  4379. #u19732_img {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:145px;
  4385. height:35px;
  4386. }
  4387. #u19732 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:621px;
  4391. top:152px;
  4392. width:145px;
  4393. height:35px;
  4394. display:flex;
  4395. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:12px;
  4399. color:#606266;
  4400. }
  4401. #u19732 .text {
  4402. position:absolute;
  4403. align-self:center;
  4404. padding:2px 2px 2px 0px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u19732_text {
  4409. border-width:0px;
  4410. word-wrap:break-word;
  4411. text-transform:none;
  4412. visibility:hidden;
  4413. }
  4414. #u19733_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:145px;
  4420. height:35px;
  4421. }
  4422. #u19733 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:766px;
  4426. top:152px;
  4427. width:145px;
  4428. height:35px;
  4429. display:flex;
  4430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:12px;
  4434. color:#606266;
  4435. }
  4436. #u19733 .text {
  4437. position:absolute;
  4438. align-self:center;
  4439. padding:2px 2px 2px 0px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u19733_text {
  4444. border-width:0px;
  4445. word-wrap:break-word;
  4446. text-transform:none;
  4447. visibility:hidden;
  4448. }
  4449. #u19734_img {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:145px;
  4455. height:35px;
  4456. }
  4457. #u19734 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:911px;
  4461. top:152px;
  4462. width:145px;
  4463. height:35px;
  4464. display:flex;
  4465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4466. font-weight:400;
  4467. font-style:normal;
  4468. font-size:12px;
  4469. color:#606266;
  4470. }
  4471. #u19734 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 0px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u19734_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u19735_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:163px;
  4490. height:35px;
  4491. }
  4492. #u19735 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:1056px;
  4496. top:152px;
  4497. width:163px;
  4498. height:35px;
  4499. display:flex;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:12px;
  4504. color:#02A7F0;
  4505. }
  4506. #u19735 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:2px 2px 2px 0px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u19735_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }
  4519. #u19736_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:41px;
  4525. height:35px;
  4526. }
  4527. #u19736 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:187px;
  4532. width:41px;
  4533. height:35px;
  4534. display:flex;
  4535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. color:#606266;
  4540. }
  4541. #u19736 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:2px 2px 2px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u19736_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. visibility:hidden;
  4553. }
  4554. #u19737_img {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:145px;
  4560. height:35px;
  4561. }
  4562. #u19737 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:41px;
  4566. top:187px;
  4567. width:145px;
  4568. height:35px;
  4569. display:flex;
  4570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:12px;
  4574. color:#606266;
  4575. }
  4576. #u19737 .text {
  4577. position:absolute;
  4578. align-self:center;
  4579. padding:2px 2px 2px 0px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u19737_text {
  4584. border-width:0px;
  4585. word-wrap:break-word;
  4586. text-transform:none;
  4587. visibility:hidden;
  4588. }
  4589. #u19738_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:145px;
  4595. height:35px;
  4596. }
  4597. #u19738 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:186px;
  4601. top:187px;
  4602. width:145px;
  4603. height:35px;
  4604. display:flex;
  4605. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:12px;
  4609. color:#606266;
  4610. }
  4611. #u19738 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 0px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u19738_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u19739_img {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:145px;
  4630. height:35px;
  4631. }
  4632. #u19739 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:331px;
  4636. top:187px;
  4637. width:145px;
  4638. height:35px;
  4639. display:flex;
  4640. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:12px;
  4644. color:#606266;
  4645. }
  4646. #u19739 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:2px 2px 2px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u19739_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. visibility:hidden;
  4658. }
  4659. #u19740_img {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:145px;
  4665. height:35px;
  4666. }
  4667. #u19740 {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:476px;
  4671. top:187px;
  4672. width:145px;
  4673. height:35px;
  4674. display:flex;
  4675. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4676. font-weight:400;
  4677. font-style:normal;
  4678. font-size:12px;
  4679. color:#606266;
  4680. }
  4681. #u19740 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 2px 2px 0px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u19740_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u19741_img {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:145px;
  4700. height:35px;
  4701. }
  4702. #u19741 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:621px;
  4706. top:187px;
  4707. width:145px;
  4708. height:35px;
  4709. display:flex;
  4710. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:12px;
  4714. color:#606266;
  4715. }
  4716. #u19741 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:2px 2px 2px 0px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u19741_text {
  4724. border-width:0px;
  4725. word-wrap:break-word;
  4726. text-transform:none;
  4727. visibility:hidden;
  4728. }
  4729. #u19742_img {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:145px;
  4735. height:35px;
  4736. }
  4737. #u19742 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:766px;
  4741. top:187px;
  4742. width:145px;
  4743. height:35px;
  4744. display:flex;
  4745. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. font-size:12px;
  4749. color:#606266;
  4750. }
  4751. #u19742 .text {
  4752. position:absolute;
  4753. align-self:center;
  4754. padding:2px 2px 2px 0px;
  4755. box-sizing:border-box;
  4756. width:100%;
  4757. }
  4758. #u19742_text {
  4759. border-width:0px;
  4760. word-wrap:break-word;
  4761. text-transform:none;
  4762. visibility:hidden;
  4763. }
  4764. #u19743_img {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:145px;
  4770. height:35px;
  4771. }
  4772. #u19743 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:911px;
  4776. top:187px;
  4777. width:145px;
  4778. height:35px;
  4779. display:flex;
  4780. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4781. font-weight:400;
  4782. font-style:normal;
  4783. font-size:12px;
  4784. color:#606266;
  4785. }
  4786. #u19743 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:2px 2px 2px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u19743_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. visibility:hidden;
  4798. }
  4799. #u19744_img {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:0px;
  4804. width:163px;
  4805. height:35px;
  4806. }
  4807. #u19744 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:1056px;
  4811. top:187px;
  4812. width:163px;
  4813. height:35px;
  4814. display:flex;
  4815. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4816. font-weight:400;
  4817. font-style:normal;
  4818. font-size:12px;
  4819. color:#606266;
  4820. }
  4821. #u19744 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 2px 2px 0px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u19744_text {
  4829. border-width:0px;
  4830. word-wrap:break-word;
  4831. text-transform:none;
  4832. visibility:hidden;
  4833. }
  4834. #u19745_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:41px;
  4840. height:38px;
  4841. }
  4842. #u19745 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:222px;
  4847. width:41px;
  4848. height:38px;
  4849. display:flex;
  4850. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:12px;
  4854. color:#606266;
  4855. }
  4856. #u19745 .text {
  4857. position:absolute;
  4858. align-self:center;
  4859. padding:2px 2px 2px 0px;
  4860. box-sizing:border-box;
  4861. width:100%;
  4862. }
  4863. #u19745_text {
  4864. border-width:0px;
  4865. word-wrap:break-word;
  4866. text-transform:none;
  4867. visibility:hidden;
  4868. }
  4869. #u19746_img {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:145px;
  4875. height:38px;
  4876. }
  4877. #u19746 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:41px;
  4881. top:222px;
  4882. width:145px;
  4883. height:38px;
  4884. display:flex;
  4885. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:12px;
  4889. color:#606266;
  4890. }
  4891. #u19746 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 0px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u19746_text {
  4899. border-width:0px;
  4900. word-wrap:break-word;
  4901. text-transform:none;
  4902. visibility:hidden;
  4903. }
  4904. #u19747_img {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:145px;
  4910. height:38px;
  4911. }
  4912. #u19747 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:186px;
  4916. top:222px;
  4917. width:145px;
  4918. height:38px;
  4919. display:flex;
  4920. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4921. font-weight:400;
  4922. font-style:normal;
  4923. font-size:12px;
  4924. color:#606266;
  4925. }
  4926. #u19747 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 0px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u19747_text {
  4934. border-width:0px;
  4935. word-wrap:break-word;
  4936. text-transform:none;
  4937. visibility:hidden;
  4938. }
  4939. #u19748_img {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:145px;
  4945. height:38px;
  4946. }
  4947. #u19748 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:331px;
  4951. top:222px;
  4952. width:145px;
  4953. height:38px;
  4954. display:flex;
  4955. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:12px;
  4959. color:#606266;
  4960. }
  4961. #u19748 .text {
  4962. position:absolute;
  4963. align-self:center;
  4964. padding:2px 2px 2px 0px;
  4965. box-sizing:border-box;
  4966. width:100%;
  4967. }
  4968. #u19748_text {
  4969. border-width:0px;
  4970. word-wrap:break-word;
  4971. text-transform:none;
  4972. visibility:hidden;
  4973. }
  4974. #u19749_img {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:145px;
  4980. height:38px;
  4981. }
  4982. #u19749 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:476px;
  4986. top:222px;
  4987. width:145px;
  4988. height:38px;
  4989. display:flex;
  4990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:12px;
  4994. color:#606266;
  4995. }
  4996. #u19749 .text {
  4997. position:absolute;
  4998. align-self:center;
  4999. padding:2px 2px 2px 0px;
  5000. box-sizing:border-box;
  5001. width:100%;
  5002. }
  5003. #u19749_text {
  5004. border-width:0px;
  5005. word-wrap:break-word;
  5006. text-transform:none;
  5007. visibility:hidden;
  5008. }
  5009. #u19750_img {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:145px;
  5015. height:38px;
  5016. }
  5017. #u19750 {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:621px;
  5021. top:222px;
  5022. width:145px;
  5023. height:38px;
  5024. display:flex;
  5025. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5026. font-weight:400;
  5027. font-style:normal;
  5028. font-size:12px;
  5029. color:#606266;
  5030. }
  5031. #u19750 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 2px 2px 0px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u19750_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. visibility:hidden;
  5043. }
  5044. #u19751_img {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:145px;
  5050. height:38px;
  5051. }
  5052. #u19751 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:766px;
  5056. top:222px;
  5057. width:145px;
  5058. height:38px;
  5059. display:flex;
  5060. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. font-size:12px;
  5064. color:#606266;
  5065. }
  5066. #u19751 .text {
  5067. position:absolute;
  5068. align-self:center;
  5069. padding:2px 2px 2px 0px;
  5070. box-sizing:border-box;
  5071. width:100%;
  5072. }
  5073. #u19751_text {
  5074. border-width:0px;
  5075. word-wrap:break-word;
  5076. text-transform:none;
  5077. visibility:hidden;
  5078. }
  5079. #u19752_img {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:145px;
  5085. height:38px;
  5086. }
  5087. #u19752 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:911px;
  5091. top:222px;
  5092. width:145px;
  5093. height:38px;
  5094. display:flex;
  5095. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5096. font-weight:400;
  5097. font-style:normal;
  5098. font-size:12px;
  5099. color:#606266;
  5100. }
  5101. #u19752 .text {
  5102. position:absolute;
  5103. align-self:center;
  5104. padding:2px 2px 2px 0px;
  5105. box-sizing:border-box;
  5106. width:100%;
  5107. }
  5108. #u19752_text {
  5109. border-width:0px;
  5110. word-wrap:break-word;
  5111. text-transform:none;
  5112. visibility:hidden;
  5113. }
  5114. #u19753_img {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:163px;
  5120. height:38px;
  5121. }
  5122. #u19753 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:1056px;
  5126. top:222px;
  5127. width:163px;
  5128. height:38px;
  5129. display:flex;
  5130. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:12px;
  5134. color:#606266;
  5135. }
  5136. #u19753 .text {
  5137. position:absolute;
  5138. align-self:center;
  5139. padding:2px 2px 2px 0px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u19753_text {
  5144. border-width:0px;
  5145. word-wrap:break-word;
  5146. text-transform:none;
  5147. visibility:hidden;
  5148. }
  5149. #u19754_img {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:41px;
  5155. height:32px;
  5156. }
  5157. #u19754 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:260px;
  5162. width:41px;
  5163. height:32px;
  5164. display:flex;
  5165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5166. font-weight:400;
  5167. font-style:normal;
  5168. font-size:12px;
  5169. color:#606266;
  5170. }
  5171. #u19754 .text {
  5172. position:absolute;
  5173. align-self:center;
  5174. padding:2px 2px 2px 0px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u19754_text {
  5179. border-width:0px;
  5180. word-wrap:break-word;
  5181. text-transform:none;
  5182. visibility:hidden;
  5183. }
  5184. #u19755_img {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:145px;
  5190. height:32px;
  5191. }
  5192. #u19755 {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:41px;
  5196. top:260px;
  5197. width:145px;
  5198. height:32px;
  5199. display:flex;
  5200. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:12px;
  5204. color:#606266;
  5205. }
  5206. #u19755 .text {
  5207. position:absolute;
  5208. align-self:center;
  5209. padding:2px 2px 2px 0px;
  5210. box-sizing:border-box;
  5211. width:100%;
  5212. }
  5213. #u19755_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. visibility:hidden;
  5218. }
  5219. #u19756_img {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:145px;
  5225. height:32px;
  5226. }
  5227. #u19756 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:186px;
  5231. top:260px;
  5232. width:145px;
  5233. height:32px;
  5234. display:flex;
  5235. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5236. font-weight:400;
  5237. font-style:normal;
  5238. font-size:12px;
  5239. color:#606266;
  5240. }
  5241. #u19756 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 0px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u19756_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u19757_img {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:145px;
  5260. height:32px;
  5261. }
  5262. #u19757 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:331px;
  5266. top:260px;
  5267. width:145px;
  5268. height:32px;
  5269. display:flex;
  5270. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:12px;
  5274. color:#606266;
  5275. }
  5276. #u19757 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:2px 2px 2px 0px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u19757_text {
  5284. border-width:0px;
  5285. word-wrap:break-word;
  5286. text-transform:none;
  5287. visibility:hidden;
  5288. }
  5289. #u19758_img {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:145px;
  5295. height:32px;
  5296. }
  5297. #u19758 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:476px;
  5301. top:260px;
  5302. width:145px;
  5303. height:32px;
  5304. display:flex;
  5305. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:12px;
  5309. color:#606266;
  5310. }
  5311. #u19758 .text {
  5312. position:absolute;
  5313. align-self:center;
  5314. padding:2px 2px 2px 0px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u19758_text {
  5319. border-width:0px;
  5320. word-wrap:break-word;
  5321. text-transform:none;
  5322. visibility:hidden;
  5323. }
  5324. #u19759_img {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:145px;
  5330. height:32px;
  5331. }
  5332. #u19759 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:621px;
  5336. top:260px;
  5337. width:145px;
  5338. height:32px;
  5339. display:flex;
  5340. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:12px;
  5344. color:#606266;
  5345. }
  5346. #u19759 .text {
  5347. position:absolute;
  5348. align-self:center;
  5349. padding:2px 2px 2px 0px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u19759_text {
  5354. border-width:0px;
  5355. word-wrap:break-word;
  5356. text-transform:none;
  5357. visibility:hidden;
  5358. }
  5359. #u19760_img {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:145px;
  5365. height:32px;
  5366. }
  5367. #u19760 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:766px;
  5371. top:260px;
  5372. width:145px;
  5373. height:32px;
  5374. display:flex;
  5375. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:12px;
  5379. color:#606266;
  5380. }
  5381. #u19760 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 0px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u19760_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u19761_img {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:145px;
  5400. height:32px;
  5401. }
  5402. #u19761 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:911px;
  5406. top:260px;
  5407. width:145px;
  5408. height:32px;
  5409. display:flex;
  5410. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5411. font-weight:400;
  5412. font-style:normal;
  5413. font-size:12px;
  5414. color:#606266;
  5415. }
  5416. #u19761 .text {
  5417. position:absolute;
  5418. align-self:center;
  5419. padding:2px 2px 2px 0px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u19761_text {
  5424. border-width:0px;
  5425. word-wrap:break-word;
  5426. text-transform:none;
  5427. visibility:hidden;
  5428. }
  5429. #u19762_img {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:163px;
  5435. height:32px;
  5436. }
  5437. #u19762 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:1056px;
  5441. top:260px;
  5442. width:163px;
  5443. height:32px;
  5444. display:flex;
  5445. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:12px;
  5449. color:#606266;
  5450. }
  5451. #u19762 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:2px 2px 2px 0px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u19762_text {
  5459. border-width:0px;
  5460. word-wrap:break-word;
  5461. text-transform:none;
  5462. visibility:hidden;
  5463. }
  5464. #u19763 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:0px;
  5470. height:0px;
  5471. }
  5472. #u19764_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:59px;
  5478. height:30px;
  5479. background:inherit;
  5480. background-color:rgba(0, 153, 255, 1);
  5481. box-sizing:border-box;
  5482. border-width:1px;
  5483. border-style:solid;
  5484. border-color:rgba(0, 153, 255, 1);
  5485. border-radius:4px;
  5486. -moz-box-shadow:none;
  5487. -webkit-box-shadow:none;
  5488. box-shadow:none;
  5489. font-family:'Microsoft YaHei', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:14px;
  5493. color:#FFFFFF;
  5494. }
  5495. #u19764 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:1439px;
  5499. top:239px;
  5500. width:59px;
  5501. height:30px;
  5502. display:flex;
  5503. font-family:'Microsoft YaHei', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:14px;
  5507. color:#FFFFFF;
  5508. }
  5509. #u19764 .text {
  5510. position:absolute;
  5511. align-self:center;
  5512. padding:5px 15px 5px 15px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u19764_text {
  5517. border-width:0px;
  5518. white-space:nowrap;
  5519. text-transform:none;
  5520. }
  5521. #u19765_div {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:55px;
  5527. height:30px;
  5528. background:inherit;
  5529. background-color:rgba(255, 255, 255, 1);
  5530. box-sizing:border-box;
  5531. border-width:1px;
  5532. border-style:solid;
  5533. border-color:rgba(170, 170, 170, 1);
  5534. border-radius:4px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:12px;
  5542. color:#555555;
  5543. }
  5544. #u19765 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:1508px;
  5548. top:239px;
  5549. width:55px;
  5550. height:30px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:12px;
  5556. color:#555555;
  5557. }
  5558. #u19765 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:5px 15px 5px 15px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u19765_text {
  5566. border-width:0px;
  5567. white-space:nowrap;
  5568. text-transform:none;
  5569. }
  5570. #u19766 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:0px;
  5576. height:0px;
  5577. }
  5578. #u19767_div {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:140px;
  5584. height:30px;
  5585. background:inherit;
  5586. background-color:rgba(255, 255, 255, 1);
  5587. box-sizing:border-box;
  5588. border-width:1px;
  5589. border-style:solid;
  5590. border-color:rgba(215, 215, 215, 1);
  5591. border-radius:4px;
  5592. -moz-box-shadow:none;
  5593. -webkit-box-shadow:none;
  5594. box-shadow:none;
  5595. font-size:11px;
  5596. }
  5597. #u19767 {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:690px;
  5601. top:239px;
  5602. width:140px;
  5603. height:30px;
  5604. display:flex;
  5605. font-size:11px;
  5606. }
  5607. #u19767 .text {
  5608. position:absolute;
  5609. align-self:center;
  5610. padding:2px 2px 2px 2px;
  5611. box-sizing:border-box;
  5612. width:100%;
  5613. }
  5614. #u19767_text {
  5615. border-width:0px;
  5616. word-wrap:break-word;
  5617. text-transform:none;
  5618. visibility:hidden;
  5619. }
  5620. #u19768_input {
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:120px;
  5625. height:23px;
  5626. padding:2px 2px 2px 2px;
  5627. font-family:'ArialMT', 'Arial', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:11px;
  5631. letter-spacing:normal;
  5632. color:#AAAAAA;
  5633. vertical-align:none;
  5634. text-align:left;
  5635. text-transform:none;
  5636. background-color:transparent;
  5637. border-color:transparent;
  5638. }
  5639. #u19768_input.disabled {
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:120px;
  5644. height:23px;
  5645. padding:2px 2px 2px 2px;
  5646. font-family:'ArialMT', 'Arial', sans-serif;
  5647. font-weight:400;
  5648. font-style:normal;
  5649. font-size:11px;
  5650. letter-spacing:normal;
  5651. color:#AAAAAA;
  5652. vertical-align:none;
  5653. text-align:left;
  5654. text-transform:none;
  5655. background-color:transparent;
  5656. border-color:transparent;
  5657. }
  5658. #u19768_div {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:120px;
  5664. height:23px;
  5665. background:inherit;
  5666. background-color:rgba(255, 255, 255, 1);
  5667. border:none;
  5668. border-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-size:11px;
  5673. color:#AAAAAA;
  5674. }
  5675. #u19768 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:697px;
  5679. top:241px;
  5680. width:120px;
  5681. height:23px;
  5682. display:flex;
  5683. font-size:11px;
  5684. color:#AAAAAA;
  5685. }
  5686. #u19768 .text {
  5687. position:absolute;
  5688. align-self:flex-start;
  5689. padding:2px 2px 2px 2px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u19768_div.disabled {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:0px;
  5697. top:0px;
  5698. width:120px;
  5699. height:23px;
  5700. background:inherit;
  5701. background-color:rgba(240, 240, 240, 1);
  5702. border:none;
  5703. border-radius:0px;
  5704. -moz-box-shadow:none;
  5705. -webkit-box-shadow:none;
  5706. box-shadow:none;
  5707. font-size:11px;
  5708. color:#AAAAAA;
  5709. }
  5710. #u19768.disabled {
  5711. }
  5712. .u19768_input_option {
  5713. font-size:11px;
  5714. }
  5715. #u19769 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:0px;
  5721. height:0px;
  5722. }
  5723. #u19770_div {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:140px;
  5729. height:30px;
  5730. background:inherit;
  5731. background-color:rgba(255, 255, 255, 1);
  5732. box-sizing:border-box;
  5733. border-width:1px;
  5734. border-style:solid;
  5735. border-color:rgba(215, 215, 215, 1);
  5736. border-radius:4px;
  5737. -moz-box-shadow:none;
  5738. -webkit-box-shadow:none;
  5739. box-shadow:none;
  5740. font-size:11px;
  5741. }
  5742. #u19770 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:989px;
  5746. top:239px;
  5747. width:140px;
  5748. height:30px;
  5749. display:flex;
  5750. font-size:11px;
  5751. }
  5752. #u19770 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:2px 2px 2px 2px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u19770_text {
  5760. border-width:0px;
  5761. word-wrap:break-word;
  5762. text-transform:none;
  5763. visibility:hidden;
  5764. }
  5765. #u19771_input {
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:120px;
  5770. height:23px;
  5771. padding:2px 2px 2px 2px;
  5772. font-family:'ArialMT', 'Arial', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:11px;
  5776. letter-spacing:normal;
  5777. color:#AAAAAA;
  5778. vertical-align:none;
  5779. text-align:left;
  5780. text-transform:none;
  5781. background-color:transparent;
  5782. border-color:transparent;
  5783. }
  5784. #u19771_input.disabled {
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:120px;
  5789. height:23px;
  5790. padding:2px 2px 2px 2px;
  5791. font-family:'ArialMT', 'Arial', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:11px;
  5795. letter-spacing:normal;
  5796. color:#AAAAAA;
  5797. vertical-align:none;
  5798. text-align:left;
  5799. text-transform:none;
  5800. background-color:transparent;
  5801. border-color:transparent;
  5802. }
  5803. #u19771_div {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:120px;
  5809. height:23px;
  5810. background:inherit;
  5811. background-color:rgba(255, 255, 255, 1);
  5812. border:none;
  5813. border-radius:0px;
  5814. -moz-box-shadow:none;
  5815. -webkit-box-shadow:none;
  5816. box-shadow:none;
  5817. font-size:11px;
  5818. color:#AAAAAA;
  5819. }
  5820. #u19771 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:996px;
  5824. top:241px;
  5825. width:120px;
  5826. height:23px;
  5827. display:flex;
  5828. font-size:11px;
  5829. color:#AAAAAA;
  5830. }
  5831. #u19771 .text {
  5832. position:absolute;
  5833. align-self:flex-start;
  5834. padding:2px 2px 2px 2px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u19771_div.disabled {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:120px;
  5844. height:23px;
  5845. background:inherit;
  5846. background-color:rgba(240, 240, 240, 1);
  5847. border:none;
  5848. border-radius:0px;
  5849. -moz-box-shadow:none;
  5850. -webkit-box-shadow:none;
  5851. box-shadow:none;
  5852. font-size:11px;
  5853. color:#AAAAAA;
  5854. }
  5855. #u19771.disabled {
  5856. }
  5857. .u19771_input_option {
  5858. font-size:11px;
  5859. }
  5860. #u19772 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:0px;
  5866. height:0px;
  5867. }
  5868. #u19773_div {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:140px;
  5874. height:30px;
  5875. background:inherit;
  5876. background-color:rgba(255, 255, 255, 1);
  5877. box-sizing:border-box;
  5878. border-width:1px;
  5879. border-style:solid;
  5880. border-color:rgba(215, 215, 215, 1);
  5881. border-radius:4px;
  5882. -moz-box-shadow:none;
  5883. -webkit-box-shadow:none;
  5884. box-shadow:none;
  5885. font-size:11px;
  5886. }
  5887. #u19773 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:839px;
  5891. top:239px;
  5892. width:140px;
  5893. height:30px;
  5894. display:flex;
  5895. font-size:11px;
  5896. }
  5897. #u19773 .text {
  5898. position:absolute;
  5899. align-self:center;
  5900. padding:2px 2px 2px 2px;
  5901. box-sizing:border-box;
  5902. width:100%;
  5903. }
  5904. #u19773_text {
  5905. border-width:0px;
  5906. word-wrap:break-word;
  5907. text-transform:none;
  5908. visibility:hidden;
  5909. }
  5910. #u19774_input {
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:120px;
  5915. height:23px;
  5916. padding:2px 2px 2px 2px;
  5917. font-family:'ArialMT', 'Arial', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:11px;
  5921. letter-spacing:normal;
  5922. color:#AAAAAA;
  5923. vertical-align:none;
  5924. text-align:left;
  5925. text-transform:none;
  5926. background-color:transparent;
  5927. border-color:transparent;
  5928. }
  5929. #u19774_input.disabled {
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:120px;
  5934. height:23px;
  5935. padding:2px 2px 2px 2px;
  5936. font-family:'ArialMT', 'Arial', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:11px;
  5940. letter-spacing:normal;
  5941. color:#AAAAAA;
  5942. vertical-align:none;
  5943. text-align:left;
  5944. text-transform:none;
  5945. background-color:transparent;
  5946. border-color:transparent;
  5947. }
  5948. #u19774_div {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:120px;
  5954. height:23px;
  5955. background:inherit;
  5956. background-color:rgba(255, 255, 255, 1);
  5957. border:none;
  5958. border-radius:0px;
  5959. -moz-box-shadow:none;
  5960. -webkit-box-shadow:none;
  5961. box-shadow:none;
  5962. font-size:11px;
  5963. color:#AAAAAA;
  5964. }
  5965. #u19774 {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:846px;
  5969. top:241px;
  5970. width:120px;
  5971. height:23px;
  5972. display:flex;
  5973. font-size:11px;
  5974. color:#AAAAAA;
  5975. }
  5976. #u19774 .text {
  5977. position:absolute;
  5978. align-self:flex-start;
  5979. padding:2px 2px 2px 2px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u19774_div.disabled {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:120px;
  5989. height:23px;
  5990. background:inherit;
  5991. background-color:rgba(240, 240, 240, 1);
  5992. border:none;
  5993. border-radius:0px;
  5994. -moz-box-shadow:none;
  5995. -webkit-box-shadow:none;
  5996. box-shadow:none;
  5997. font-size:11px;
  5998. color:#AAAAAA;
  5999. }
  6000. #u19774.disabled {
  6001. }
  6002. .u19774_input_option {
  6003. font-size:11px;
  6004. }
  6005. #u19775 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:0px;
  6011. height:0px;
  6012. }
  6013. #u19776_div {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:1219px;
  6019. height:40px;
  6020. background:inherit;
  6021. background-color:rgba(255, 255, 255, 1);
  6022. box-sizing:border-box;
  6023. border-width:1px;
  6024. border-style:solid;
  6025. border-color:rgba(242, 242, 242, 1);
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-size:11px;
  6031. }
  6032. #u19776 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:350px;
  6036. top:289px;
  6037. width:1219px;
  6038. height:40px;
  6039. display:flex;
  6040. font-size:11px;
  6041. }
  6042. #u19776 .text {
  6043. position:absolute;
  6044. align-self:center;
  6045. padding:2px 2px 2px 2px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u19776_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. visibility:hidden;
  6054. }
  6055. #u19777 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:0px;
  6061. height:0px;
  6062. }
  6063. #u19778_div {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:0px;
  6067. top:0px;
  6068. width:101px;
  6069. height:21px;
  6070. background:inherit;
  6071. background-color:rgba(255, 255, 255, 0);
  6072. border:none;
  6073. border-left:0px;
  6074. border-radius:0px;
  6075. border-top-left-radius:0px;
  6076. border-bottom-left-radius:0px;
  6077. -moz-box-shadow:none;
  6078. -webkit-box-shadow:none;
  6079. box-shadow:none;
  6080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:12px;
  6084. text-align:left;
  6085. }
  6086. #u19778 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:360px;
  6090. top:298px;
  6091. width:101px;
  6092. height:21px;
  6093. display:flex;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:12px;
  6098. text-align:left;
  6099. }
  6100. #u19778 .text {
  6101. position:absolute;
  6102. align-self:center;
  6103. padding:2px 2px 2px 2px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u19778_text {
  6108. border-width:0px;
  6109. white-space:nowrap;
  6110. text-transform:none;
  6111. }
  6112. #u19779_img {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:12px;
  6118. height:12px;
  6119. }
  6120. #u19779 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:461px;
  6124. top:303px;
  6125. width:12px;
  6126. height:12px;
  6127. display:flex;
  6128. }
  6129. #u19779 .text {
  6130. position:absolute;
  6131. align-self:center;
  6132. padding:2px 2px 2px 2px;
  6133. box-sizing:border-box;
  6134. width:100%;
  6135. }
  6136. #u19779_text {
  6137. border-width:0px;
  6138. word-wrap:break-word;
  6139. text-transform:none;
  6140. visibility:hidden;
  6141. }
  6142. #u19780 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:0px;
  6148. height:0px;
  6149. }
  6150. #u19781_div {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:46px;
  6156. height:24px;
  6157. background:inherit;
  6158. background-color:rgba(0, 153, 255, 1);
  6159. box-sizing:border-box;
  6160. border-width:1px;
  6161. border-style:solid;
  6162. border-color:rgba(0, 153, 255, 1);
  6163. border-right:0px;
  6164. border-radius:4px;
  6165. border-top-right-radius:0px;
  6166. border-bottom-right-radius:0px;
  6167. -moz-box-shadow:none;
  6168. -webkit-box-shadow:none;
  6169. box-shadow:none;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:12px;
  6174. color:#FFFFFF;
  6175. }
  6176. #u19781 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:1461px;
  6180. top:297px;
  6181. width:46px;
  6182. height:24px;
  6183. display:flex;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:12px;
  6188. color:#FFFFFF;
  6189. }
  6190. #u19781 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:0px 0px 0px 0px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u19781_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. }
  6202. #u19782_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:46px;
  6208. height:24px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. box-sizing:border-box;
  6212. border-width:1px;
  6213. border-style:solid;
  6214. border-color:rgba(170, 170, 170, 1);
  6215. border-left:0px;
  6216. border-radius:4px;
  6217. border-top-left-radius:0px;
  6218. border-bottom-left-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:12px;
  6226. color:#555555;
  6227. }
  6228. #u19782 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:1507px;
  6232. top:297px;
  6233. width:46px;
  6234. height:24px;
  6235. display:flex;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:12px;
  6240. color:#555555;
  6241. }
  6242. #u19782 .text {
  6243. position:absolute;
  6244. align-self:center;
  6245. padding:0px 0px 0px 0px;
  6246. box-sizing:border-box;
  6247. width:100%;
  6248. }
  6249. #u19782_text {
  6250. border-width:0px;
  6251. word-wrap:break-word;
  6252. text-transform:none;
  6253. }
  6254. #u19783 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:0px;
  6258. top:0px;
  6259. width:0px;
  6260. height:0px;
  6261. }
  6262. #u19784_div {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:140px;
  6268. height:30px;
  6269. background:inherit;
  6270. background-color:rgba(255, 255, 255, 1);
  6271. box-sizing:border-box;
  6272. border-width:1px;
  6273. border-style:solid;
  6274. border-color:rgba(215, 215, 215, 1);
  6275. border-radius:4px;
  6276. -moz-box-shadow:none;
  6277. -webkit-box-shadow:none;
  6278. box-shadow:none;
  6279. font-size:11px;
  6280. }
  6281. #u19784 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:1289px;
  6285. top:239px;
  6286. width:140px;
  6287. height:30px;
  6288. display:flex;
  6289. font-size:11px;
  6290. }
  6291. #u19784 .text {
  6292. position:absolute;
  6293. align-self:center;
  6294. padding:2px 2px 2px 2px;
  6295. box-sizing:border-box;
  6296. width:100%;
  6297. }
  6298. #u19784_text {
  6299. border-width:0px;
  6300. word-wrap:break-word;
  6301. text-transform:none;
  6302. visibility:hidden;
  6303. }
  6304. #u19785_input {
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:120px;
  6309. height:23px;
  6310. padding:2px 2px 2px 2px;
  6311. font-family:'ArialMT', 'Arial', sans-serif;
  6312. font-weight:400;
  6313. font-style:normal;
  6314. font-size:11px;
  6315. letter-spacing:normal;
  6316. color:#AAAAAA;
  6317. vertical-align:none;
  6318. text-align:left;
  6319. text-transform:none;
  6320. background-color:transparent;
  6321. border-color:transparent;
  6322. }
  6323. #u19785_input.disabled {
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:120px;
  6328. height:23px;
  6329. padding:2px 2px 2px 2px;
  6330. font-family:'ArialMT', 'Arial', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. font-size:11px;
  6334. letter-spacing:normal;
  6335. color:#AAAAAA;
  6336. vertical-align:none;
  6337. text-align:left;
  6338. text-transform:none;
  6339. background-color:transparent;
  6340. border-color:transparent;
  6341. }
  6342. #u19785_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:120px;
  6348. height:23px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 1);
  6351. border:none;
  6352. border-radius:0px;
  6353. -moz-box-shadow:none;
  6354. -webkit-box-shadow:none;
  6355. box-shadow:none;
  6356. font-size:11px;
  6357. color:#AAAAAA;
  6358. }
  6359. #u19785 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:1296px;
  6363. top:241px;
  6364. width:120px;
  6365. height:23px;
  6366. display:flex;
  6367. font-size:11px;
  6368. color:#AAAAAA;
  6369. }
  6370. #u19785 .text {
  6371. position:absolute;
  6372. align-self:flex-start;
  6373. padding:2px 2px 2px 2px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u19785_div.disabled {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:120px;
  6383. height:23px;
  6384. background:inherit;
  6385. background-color:rgba(240, 240, 240, 1);
  6386. border:none;
  6387. border-radius:0px;
  6388. -moz-box-shadow:none;
  6389. -webkit-box-shadow:none;
  6390. box-shadow:none;
  6391. font-size:11px;
  6392. color:#AAAAAA;
  6393. }
  6394. #u19785.disabled {
  6395. }
  6396. .u19785_input_option {
  6397. font-size:11px;
  6398. }
  6399. #u19786 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:0px;
  6405. height:0px;
  6406. }
  6407. #u19787_div {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:140px;
  6413. height:30px;
  6414. background:inherit;
  6415. background-color:rgba(255, 255, 255, 1);
  6416. box-sizing:border-box;
  6417. border-width:1px;
  6418. border-style:solid;
  6419. border-color:rgba(215, 215, 215, 1);
  6420. border-radius:4px;
  6421. -moz-box-shadow:none;
  6422. -webkit-box-shadow:none;
  6423. box-shadow:none;
  6424. font-size:11px;
  6425. }
  6426. #u19787 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:1139px;
  6430. top:239px;
  6431. width:140px;
  6432. height:30px;
  6433. display:flex;
  6434. font-size:11px;
  6435. }
  6436. #u19787 .text {
  6437. position:absolute;
  6438. align-self:center;
  6439. padding:2px 2px 2px 2px;
  6440. box-sizing:border-box;
  6441. width:100%;
  6442. }
  6443. #u19787_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. visibility:hidden;
  6448. }
  6449. #u19788_input {
  6450. position:absolute;
  6451. left:0px;
  6452. top:0px;
  6453. width:120px;
  6454. height:23px;
  6455. padding:2px 2px 2px 2px;
  6456. font-family:'ArialMT', 'Arial', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. font-size:11px;
  6460. letter-spacing:normal;
  6461. color:#AAAAAA;
  6462. vertical-align:none;
  6463. text-align:left;
  6464. text-transform:none;
  6465. background-color:transparent;
  6466. border-color:transparent;
  6467. }
  6468. #u19788_input.disabled {
  6469. position:absolute;
  6470. left:0px;
  6471. top:0px;
  6472. width:120px;
  6473. height:23px;
  6474. padding:2px 2px 2px 2px;
  6475. font-family:'ArialMT', 'Arial', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:11px;
  6479. letter-spacing:normal;
  6480. color:#AAAAAA;
  6481. vertical-align:none;
  6482. text-align:left;
  6483. text-transform:none;
  6484. background-color:transparent;
  6485. border-color:transparent;
  6486. }
  6487. #u19788_div {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:120px;
  6493. height:23px;
  6494. background:inherit;
  6495. background-color:rgba(255, 255, 255, 1);
  6496. border:none;
  6497. border-radius:0px;
  6498. -moz-box-shadow:none;
  6499. -webkit-box-shadow:none;
  6500. box-shadow:none;
  6501. font-size:11px;
  6502. color:#AAAAAA;
  6503. }
  6504. #u19788 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:1146px;
  6508. top:241px;
  6509. width:120px;
  6510. height:23px;
  6511. display:flex;
  6512. font-size:11px;
  6513. color:#AAAAAA;
  6514. }
  6515. #u19788 .text {
  6516. position:absolute;
  6517. align-self:flex-start;
  6518. padding:2px 2px 2px 2px;
  6519. box-sizing:border-box;
  6520. width:100%;
  6521. }
  6522. #u19788_div.disabled {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:120px;
  6528. height:23px;
  6529. background:inherit;
  6530. background-color:rgba(240, 240, 240, 1);
  6531. border:none;
  6532. border-radius:0px;
  6533. -moz-box-shadow:none;
  6534. -webkit-box-shadow:none;
  6535. box-shadow:none;
  6536. font-size:11px;
  6537. color:#AAAAAA;
  6538. }
  6539. #u19788.disabled {
  6540. }
  6541. .u19788_input_option {
  6542. font-size:11px;
  6543. }
  6544. #u19789 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:0px;
  6550. height:0px;
  6551. }
  6552. #u19790_div {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:200px;
  6558. height:1180px;
  6559. background:inherit;
  6560. background-color:rgba(255, 255, 255, 1);
  6561. border:none;
  6562. border-radius:0px;
  6563. -moz-box-shadow:none;
  6564. -webkit-box-shadow:none;
  6565. box-shadow:none;
  6566. }
  6567. #u19790 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:120px;
  6571. top:50px;
  6572. width:200px;
  6573. height:1180px;
  6574. display:flex;
  6575. }
  6576. #u19790 .text {
  6577. position:absolute;
  6578. align-self:center;
  6579. padding:2px 2px 2px 2px;
  6580. box-sizing:border-box;
  6581. width:100%;
  6582. }
  6583. #u19790_text {
  6584. border-width:0px;
  6585. word-wrap:break-word;
  6586. text-transform:none;
  6587. visibility:hidden;
  6588. }
  6589. #u19791_div {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:200px;
  6595. height:60px;
  6596. background:inherit;
  6597. background-color:rgba(224, 231, 247, 1);
  6598. border:none;
  6599. border-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6604. font-weight:500;
  6605. font-style:normal;
  6606. font-size:18px;
  6607. }
  6608. #u19791 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:120px;
  6612. top:50px;
  6613. width:200px;
  6614. height:60px;
  6615. display:flex;
  6616. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6617. font-weight:500;
  6618. font-style:normal;
  6619. font-size:18px;
  6620. }
  6621. #u19791 .text {
  6622. position:absolute;
  6623. align-self:center;
  6624. padding:0px 0px 0px 20px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u19791_text {
  6629. border-width:0px;
  6630. word-wrap:break-word;
  6631. text-transform:none;
  6632. }
  6633. #u19792_div {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:65px;
  6639. height:22px;
  6640. background:inherit;
  6641. background-color:rgba(255, 255, 255, 0);
  6642. border:none;
  6643. border-radius:0px;
  6644. -moz-box-shadow:none;
  6645. -webkit-box-shadow:none;
  6646. box-shadow:none;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:16px;
  6651. }
  6652. #u19792 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:147px;
  6656. top:130px;
  6657. width:65px;
  6658. height:22px;
  6659. display:flex;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:16px;
  6664. }
  6665. #u19792 .text {
  6666. position:absolute;
  6667. align-self:flex-start;
  6668. padding:0px 0px 0px 0px;
  6669. box-sizing:border-box;
  6670. width:100%;
  6671. }
  6672. #u19792_text {
  6673. border-width:0px;
  6674. white-space:nowrap;
  6675. text-transform:none;
  6676. }
  6677. #u19793_div {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:65px;
  6683. height:22px;
  6684. background:inherit;
  6685. background-color:rgba(255, 255, 255, 0);
  6686. border:none;
  6687. border-radius:0px;
  6688. -moz-box-shadow:none;
  6689. -webkit-box-shadow:none;
  6690. box-shadow:none;
  6691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6692. font-weight:400;
  6693. font-style:normal;
  6694. font-size:16px;
  6695. }
  6696. #u19793 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:147px;
  6700. top:229px;
  6701. width:65px;
  6702. height:22px;
  6703. display:flex;
  6704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:16px;
  6708. }
  6709. #u19793 .text {
  6710. position:absolute;
  6711. align-self:flex-start;
  6712. padding:0px 0px 0px 0px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u19793_text {
  6717. border-width:0px;
  6718. white-space:nowrap;
  6719. text-transform:none;
  6720. }
  6721. #u19794_div {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:65px;
  6727. height:22px;
  6728. background:inherit;
  6729. background-color:rgba(255, 255, 255, 0);
  6730. border:none;
  6731. border-radius:0px;
  6732. -moz-box-shadow:none;
  6733. -webkit-box-shadow:none;
  6734. box-shadow:none;
  6735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:16px;
  6739. }
  6740. #u19794 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:147px;
  6744. top:271px;
  6745. width:65px;
  6746. height:22px;
  6747. display:flex;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:16px;
  6752. }
  6753. #u19794 .text {
  6754. position:absolute;
  6755. align-self:flex-start;
  6756. padding:0px 0px 0px 0px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u19794_text {
  6761. border-width:0px;
  6762. white-space:nowrap;
  6763. text-transform:none;
  6764. }
  6765. #u19795_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:65px;
  6771. height:22px;
  6772. background:inherit;
  6773. background-color:rgba(255, 255, 255, 0);
  6774. border:none;
  6775. border-radius:0px;
  6776. -moz-box-shadow:none;
  6777. -webkit-box-shadow:none;
  6778. box-shadow:none;
  6779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6780. font-weight:400;
  6781. font-style:normal;
  6782. font-size:16px;
  6783. }
  6784. #u19795 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:147px;
  6788. top:770px;
  6789. width:65px;
  6790. height:22px;
  6791. display:flex;
  6792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:16px;
  6796. }
  6797. #u19795 .text {
  6798. position:absolute;
  6799. align-self:flex-start;
  6800. padding:0px 0px 0px 0px;
  6801. box-sizing:border-box;
  6802. width:100%;
  6803. }
  6804. #u19795_text {
  6805. border-width:0px;
  6806. white-space:nowrap;
  6807. text-transform:none;
  6808. }
  6809. #u19796_div {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:65px;
  6815. height:22px;
  6816. background:inherit;
  6817. background-color:rgba(255, 255, 255, 0);
  6818. border:none;
  6819. border-radius:0px;
  6820. -moz-box-shadow:none;
  6821. -webkit-box-shadow:none;
  6822. box-shadow:none;
  6823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:16px;
  6827. }
  6828. #u19796 {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:147px;
  6832. top:812px;
  6833. width:65px;
  6834. height:22px;
  6835. display:flex;
  6836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6837. font-weight:400;
  6838. font-style:normal;
  6839. font-size:16px;
  6840. }
  6841. #u19796 .text {
  6842. position:absolute;
  6843. align-self:flex-start;
  6844. padding:0px 0px 0px 0px;
  6845. box-sizing:border-box;
  6846. width:100%;
  6847. }
  6848. #u19796_text {
  6849. border-width:0px;
  6850. white-space:nowrap;
  6851. text-transform:none;
  6852. }
  6853. #u19797_div {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:0px;
  6858. width:49px;
  6859. height:17px;
  6860. background:inherit;
  6861. background-color:rgba(255, 255, 255, 0);
  6862. border:none;
  6863. border-radius:0px;
  6864. -moz-box-shadow:none;
  6865. -webkit-box-shadow:none;
  6866. box-shadow:none;
  6867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6868. font-weight:400;
  6869. font-style:normal;
  6870. font-size:12px;
  6871. color:#AAAAAA;
  6872. }
  6873. #u19797 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:147px;
  6877. top:192px;
  6878. width:49px;
  6879. height:17px;
  6880. display:flex;
  6881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:12px;
  6885. color:#AAAAAA;
  6886. }
  6887. #u19797 .text {
  6888. position:absolute;
  6889. align-self:flex-start;
  6890. padding:0px 0px 0px 0px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u19797_text {
  6895. border-width:0px;
  6896. white-space:nowrap;
  6897. text-transform:none;
  6898. }
  6899. #u19798_img {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:201px;
  6905. height:2px;
  6906. }
  6907. #u19798 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:121px;
  6911. top:712px;
  6912. width:200px;
  6913. height:1px;
  6914. display:flex;
  6915. }
  6916. #u19798 .text {
  6917. position:absolute;
  6918. align-self:center;
  6919. padding:2px 2px 2px 2px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u19798_text {
  6924. border-width:0px;
  6925. word-wrap:break-word;
  6926. text-transform:none;
  6927. visibility:hidden;
  6928. }
  6929. #u19799_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:49px;
  6935. height:17px;
  6936. background:inherit;
  6937. background-color:rgba(255, 255, 255, 0);
  6938. border:none;
  6939. border-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:12px;
  6947. color:#AAAAAA;
  6948. }
  6949. #u19799 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:147px;
  6953. top:733px;
  6954. width:49px;
  6955. height:17px;
  6956. display:flex;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:12px;
  6961. color:#AAAAAA;
  6962. }
  6963. #u19799 .text {
  6964. position:absolute;
  6965. align-self:flex-start;
  6966. padding:0px 0px 0px 0px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u19799_text {
  6971. border-width:0px;
  6972. white-space:nowrap;
  6973. text-transform:none;
  6974. }
  6975. #u19800_img {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:201px;
  6981. height:2px;
  6982. }
  6983. #u19800 {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:121px;
  6987. top:171px;
  6988. width:200px;
  6989. height:1px;
  6990. display:flex;
  6991. }
  6992. #u19800 .text {
  6993. position:absolute;
  6994. align-self:center;
  6995. padding:2px 2px 2px 2px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u19800_text {
  7000. border-width:0px;
  7001. word-wrap:break-word;
  7002. text-transform:none;
  7003. visibility:hidden;
  7004. }
  7005. #u19801_div {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:0px;
  7009. top:0px;
  7010. width:81px;
  7011. height:22px;
  7012. background:inherit;
  7013. background-color:rgba(255, 255, 255, 0);
  7014. border:none;
  7015. border-radius:0px;
  7016. -moz-box-shadow:none;
  7017. -webkit-box-shadow:none;
  7018. box-shadow:none;
  7019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7020. font-weight:400;
  7021. font-style:normal;
  7022. font-size:16px;
  7023. }
  7024. #u19801 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:147px;
  7028. top:315px;
  7029. width:81px;
  7030. height:22px;
  7031. display:flex;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:16px;
  7036. }
  7037. #u19801 .text {
  7038. position:absolute;
  7039. align-self:flex-start;
  7040. padding:0px 0px 0px 0px;
  7041. box-sizing:border-box;
  7042. width:100%;
  7043. }
  7044. #u19801_text {
  7045. border-width:0px;
  7046. white-space:nowrap;
  7047. text-transform:none;
  7048. }
  7049. #u19802_div {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:0px;
  7053. top:0px;
  7054. width:81px;
  7055. height:22px;
  7056. background:inherit;
  7057. background-color:rgba(255, 255, 255, 0);
  7058. border:none;
  7059. border-radius:0px;
  7060. -moz-box-shadow:none;
  7061. -webkit-box-shadow:none;
  7062. box-shadow:none;
  7063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7064. font-weight:400;
  7065. font-style:normal;
  7066. font-size:16px;
  7067. }
  7068. #u19802 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:147px;
  7072. top:357px;
  7073. width:81px;
  7074. height:22px;
  7075. display:flex;
  7076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7077. font-weight:400;
  7078. font-style:normal;
  7079. font-size:16px;
  7080. }
  7081. #u19802 .text {
  7082. position:absolute;
  7083. align-self:flex-start;
  7084. padding:0px 0px 0px 0px;
  7085. box-sizing:border-box;
  7086. width:100%;
  7087. }
  7088. #u19802_text {
  7089. border-width:0px;
  7090. white-space:nowrap;
  7091. text-transform:none;
  7092. }
  7093. #u19803_div {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:81px;
  7099. height:22px;
  7100. background:inherit;
  7101. background-color:rgba(255, 255, 255, 0);
  7102. border:none;
  7103. border-radius:0px;
  7104. -moz-box-shadow:none;
  7105. -webkit-box-shadow:none;
  7106. box-shadow:none;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:16px;
  7111. }
  7112. #u19803 {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:147px;
  7116. top:399px;
  7117. width:81px;
  7118. height:22px;
  7119. display:flex;
  7120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. font-size:16px;
  7124. }
  7125. #u19803 .text {
  7126. position:absolute;
  7127. align-self:flex-start;
  7128. padding:0px 0px 0px 0px;
  7129. box-sizing:border-box;
  7130. width:100%;
  7131. }
  7132. #u19803_text {
  7133. border-width:0px;
  7134. white-space:nowrap;
  7135. text-transform:none;
  7136. }
  7137. #u19804_div {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:97px;
  7143. height:22px;
  7144. background:inherit;
  7145. background-color:rgba(255, 255, 255, 0);
  7146. border:none;
  7147. border-radius:0px;
  7148. -moz-box-shadow:none;
  7149. -webkit-box-shadow:none;
  7150. box-shadow:none;
  7151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7152. font-weight:400;
  7153. font-style:normal;
  7154. font-size:16px;
  7155. }
  7156. #u19804 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:146px;
  7160. top:499px;
  7161. width:97px;
  7162. height:22px;
  7163. display:flex;
  7164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7165. font-weight:400;
  7166. font-style:normal;
  7167. font-size:16px;
  7168. }
  7169. #u19804 .text {
  7170. position:absolute;
  7171. align-self:flex-start;
  7172. padding:0px 0px 0px 0px;
  7173. box-sizing:border-box;
  7174. width:100%;
  7175. }
  7176. #u19804_text {
  7177. border-width:0px;
  7178. white-space:nowrap;
  7179. text-transform:none;
  7180. }
  7181. #u19805_div {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:0px;
  7185. top:0px;
  7186. width:65px;
  7187. height:22px;
  7188. background:inherit;
  7189. background-color:rgba(255, 255, 255, 0);
  7190. border:none;
  7191. border-radius:0px;
  7192. -moz-box-shadow:none;
  7193. -webkit-box-shadow:none;
  7194. box-shadow:none;
  7195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7196. font-weight:400;
  7197. font-style:normal;
  7198. font-size:16px;
  7199. }
  7200. #u19805 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:146px;
  7204. top:581px;
  7205. width:65px;
  7206. height:22px;
  7207. display:flex;
  7208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7209. font-weight:400;
  7210. font-style:normal;
  7211. font-size:16px;
  7212. }
  7213. #u19805 .text {
  7214. position:absolute;
  7215. align-self:flex-start;
  7216. padding:0px 0px 0px 0px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u19805_text {
  7221. border-width:0px;
  7222. white-space:nowrap;
  7223. text-transform:none;
  7224. }
  7225. #u19806_div {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:65px;
  7231. height:22px;
  7232. background:inherit;
  7233. background-color:rgba(255, 255, 255, 0);
  7234. border:none;
  7235. border-radius:0px;
  7236. -moz-box-shadow:none;
  7237. -webkit-box-shadow:none;
  7238. box-shadow:none;
  7239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7240. font-weight:400;
  7241. font-style:normal;
  7242. font-size:16px;
  7243. }
  7244. #u19806 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:146px;
  7248. top:623px;
  7249. width:65px;
  7250. height:22px;
  7251. display:flex;
  7252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:16px;
  7256. }
  7257. #u19806 .text {
  7258. position:absolute;
  7259. align-self:flex-start;
  7260. padding:0px 0px 0px 0px;
  7261. box-sizing:border-box;
  7262. width:100%;
  7263. }
  7264. #u19806_text {
  7265. border-width:0px;
  7266. white-space:nowrap;
  7267. text-transform:none;
  7268. }
  7269. #u19807_div {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:49px;
  7275. height:17px;
  7276. background:inherit;
  7277. background-color:rgba(255, 255, 255, 0);
  7278. border:none;
  7279. border-radius:0px;
  7280. -moz-box-shadow:none;
  7281. -webkit-box-shadow:none;
  7282. box-shadow:none;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:12px;
  7287. color:#AAAAAA;
  7288. }
  7289. #u19807 {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:146px;
  7293. top:462px;
  7294. width:49px;
  7295. height:17px;
  7296. display:flex;
  7297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. font-size:12px;
  7301. color:#AAAAAA;
  7302. }
  7303. #u19807 .text {
  7304. position:absolute;
  7305. align-self:flex-start;
  7306. padding:0px 0px 0px 0px;
  7307. box-sizing:border-box;
  7308. width:100%;
  7309. }
  7310. #u19807_text {
  7311. border-width:0px;
  7312. white-space:nowrap;
  7313. text-transform:none;
  7314. }
  7315. #u19808_img {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:201px;
  7321. height:2px;
  7322. }
  7323. #u19808 {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:120px;
  7327. top:441px;
  7328. width:200px;
  7329. height:1px;
  7330. display:flex;
  7331. }
  7332. #u19808 .text {
  7333. position:absolute;
  7334. align-self:center;
  7335. padding:2px 2px 2px 2px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u19808_text {
  7340. border-width:0px;
  7341. word-wrap:break-word;
  7342. text-transform:none;
  7343. visibility:hidden;
  7344. }
  7345. #u19809_div {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:65px;
  7351. height:22px;
  7352. background:inherit;
  7353. background-color:rgba(255, 255, 255, 0);
  7354. border:none;
  7355. border-radius:0px;
  7356. -moz-box-shadow:none;
  7357. -webkit-box-shadow:none;
  7358. box-shadow:none;
  7359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. font-size:16px;
  7363. }
  7364. #u19809 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:146px;
  7368. top:665px;
  7369. width:65px;
  7370. height:22px;
  7371. display:flex;
  7372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:16px;
  7376. }
  7377. #u19809 .text {
  7378. position:absolute;
  7379. align-self:flex-start;
  7380. padding:0px 0px 0px 0px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u19809_text {
  7385. border-width:0px;
  7386. white-space:nowrap;
  7387. text-transform:none;
  7388. }
  7389. #u19810_div {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:0px;
  7393. top:0px;
  7394. width:97px;
  7395. height:22px;
  7396. background:inherit;
  7397. background-color:rgba(255, 255, 255, 0);
  7398. border:none;
  7399. border-radius:0px;
  7400. -moz-box-shadow:none;
  7401. -webkit-box-shadow:none;
  7402. box-shadow:none;
  7403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7404. font-weight:400;
  7405. font-style:normal;
  7406. font-size:16px;
  7407. }
  7408. #u19810 {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:146px;
  7412. top:541px;
  7413. width:97px;
  7414. height:22px;
  7415. display:flex;
  7416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7417. font-weight:400;
  7418. font-style:normal;
  7419. font-size:16px;
  7420. }
  7421. #u19810 .text {
  7422. position:absolute;
  7423. align-self:flex-start;
  7424. padding:0px 0px 0px 0px;
  7425. box-sizing:border-box;
  7426. width:100%;
  7427. }
  7428. #u19810_text {
  7429. border-width:0px;
  7430. white-space:nowrap;
  7431. text-transform:none;
  7432. }