styles.css 143 KB

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