styles.css 114 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2321px;
  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. #u42481_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u42481 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u42481 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u42481_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u42482_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u42482 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u42482 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u42482_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u42483_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u42483 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u42483 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u42483_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u42484 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u42485_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u42485 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u42485 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u42485_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u42486_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u42486 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u42486 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u42486_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u42487_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u42487 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u42487 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u42487_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u42488 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u42489_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. #u42489 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  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. #u42489 .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. #u42489_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u42490_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u42490 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u42490 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u42490_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u42491 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u42492_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. #u42492 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  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. #u42492 .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. #u42492_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u42493_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u42493 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u42493 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u42493_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u42494 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u42495_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u42495 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u42495 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u42495_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u42496_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u42496 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u42496 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u42496_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u42497 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u42498_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u42498 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u42498 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u42498_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u42499_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u42499 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u42499 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u42499_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u42500 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u42501_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u42501 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u42501 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u42501_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u42502_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u42502 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u42502 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u42502_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u42503 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u42504_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u42504 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u42504 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u42504_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u42505_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u42505 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u42505 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u42505_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u42506 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u42507_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u42507 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u42507 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u42507_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u42508_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u42508 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u42508 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u42508_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u42509 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u42510_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u42510 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u42510 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u42510_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u42511_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u42511 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u42511 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u42511_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u42512 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u42513_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u42513 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u42513 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u42513_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u42514_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u42514 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u42514 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u42514_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u42515_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u42515 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u42515 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u42515_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u42516_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u42516 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u42516 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u42516_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u42517_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u42517 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u42517 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u42517_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u42518_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u42518 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u42518 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u42518_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u42519 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u42520_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u42520 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u42520 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u42520_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u42521_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u42521 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u42521 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u42521_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u42522 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u42523_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u42523 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u42523 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u42523_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u42524_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u42524 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u42524 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u42524_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u42525 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u42526_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u42526_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u42526_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u42526 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u42526 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u42526_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u42526.disabled {
  1428. }
  1429. .u42526_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u42527_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u42527 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u42527 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u42527_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u42528_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u42528 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u42528 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u42528_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u42529_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u42529 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u42529 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u42529_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u42530_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1262px;
  1544. height:1191px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1553. font-weight:400;
  1554. font-style:normal;
  1555. font-size:38px;
  1556. color:#D7D7D7;
  1557. }
  1558. #u42530 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:330px;
  1562. top:50px;
  1563. width:1262px;
  1564. height:1191px;
  1565. display:flex;
  1566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1567. font-weight:400;
  1568. font-style:normal;
  1569. font-size:38px;
  1570. color:#D7D7D7;
  1571. }
  1572. #u42530 .text {
  1573. position:absolute;
  1574. align-self:center;
  1575. padding:2px 2px 2px 50px;
  1576. box-sizing:border-box;
  1577. width:100%;
  1578. }
  1579. #u42530_text {
  1580. border-width:0px;
  1581. word-wrap:break-word;
  1582. text-transform:none;
  1583. visibility:hidden;
  1584. }
  1585. #u42531_div {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:73px;
  1591. height:50px;
  1592. background:inherit;
  1593. background-color:rgba(255, 255, 255, 0);
  1594. border:none;
  1595. border-left:0px;
  1596. border-top:0px;
  1597. border-right:0px;
  1598. border-radius:0px;
  1599. border-bottom-right-radius:0px;
  1600. border-bottom-left-radius:0px;
  1601. -moz-box-shadow:none;
  1602. -webkit-box-shadow:none;
  1603. box-shadow:none;
  1604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1605. font-weight:400;
  1606. font-style:normal;
  1607. font-size:18px;
  1608. }
  1609. #u42531 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:349px;
  1613. top:50px;
  1614. width:73px;
  1615. height:50px;
  1616. display:flex;
  1617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1618. font-weight:400;
  1619. font-style:normal;
  1620. font-size:18px;
  1621. }
  1622. #u42531 .text {
  1623. position:absolute;
  1624. align-self:center;
  1625. padding:0px 0px 0px 0px;
  1626. box-sizing:border-box;
  1627. width:100%;
  1628. }
  1629. #u42531_text {
  1630. border-width:0px;
  1631. white-space:nowrap;
  1632. text-transform:none;
  1633. }
  1634. #u42532 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:349px;
  1638. top:191px;
  1639. width:1224px;
  1640. height:238px;
  1641. }
  1642. #u42533_img {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:71px;
  1648. height:34px;
  1649. }
  1650. #u42533 {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:71px;
  1656. height:34px;
  1657. display:flex;
  1658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1659. font-weight:400;
  1660. font-style:normal;
  1661. font-size:14px;
  1662. color:#FFFFFF;
  1663. line-height:30px;
  1664. }
  1665. #u42533 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 0px 2px 0px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u42533_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. }
  1677. #u42534_img {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:141px;
  1683. height:34px;
  1684. }
  1685. #u42534 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:71px;
  1689. top:0px;
  1690. width:141px;
  1691. height:34px;
  1692. display:flex;
  1693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1694. font-weight:400;
  1695. font-style:normal;
  1696. font-size:14px;
  1697. color:#FFFFFF;
  1698. line-height:30px;
  1699. }
  1700. #u42534 .text {
  1701. position:absolute;
  1702. align-self:center;
  1703. padding:2px 0px 2px 0px;
  1704. box-sizing:border-box;
  1705. width:100%;
  1706. }
  1707. #u42534_text {
  1708. border-width:0px;
  1709. word-wrap:break-word;
  1710. text-transform:none;
  1711. }
  1712. #u42535_img {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:141px;
  1718. height:34px;
  1719. }
  1720. #u42535 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:212px;
  1724. top:0px;
  1725. width:141px;
  1726. height:34px;
  1727. display:flex;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:14px;
  1732. color:#FFFFFF;
  1733. line-height:30px;
  1734. }
  1735. #u42535 .text {
  1736. position:absolute;
  1737. align-self:center;
  1738. padding:2px 0px 2px 0px;
  1739. box-sizing:border-box;
  1740. width:100%;
  1741. }
  1742. #u42535_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u42536_img {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:141px;
  1753. height:34px;
  1754. }
  1755. #u42536 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:353px;
  1759. top:0px;
  1760. width:141px;
  1761. height:34px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. color:#FFFFFF;
  1768. line-height:30px;
  1769. }
  1770. #u42536 .text {
  1771. position:absolute;
  1772. align-self:center;
  1773. padding:2px 0px 2px 0px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u42536_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u42537_img {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:141px;
  1788. height:34px;
  1789. }
  1790. #u42537 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:494px;
  1794. top:0px;
  1795. width:141px;
  1796. height:34px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:14px;
  1802. color:#FFFFFF;
  1803. line-height:30px;
  1804. }
  1805. #u42537 .text {
  1806. position:absolute;
  1807. align-self:center;
  1808. padding:2px 0px 2px 0px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u42537_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u42538_img {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:141px;
  1823. height:34px;
  1824. }
  1825. #u42538 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:635px;
  1829. top:0px;
  1830. width:141px;
  1831. height:34px;
  1832. display:flex;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:14px;
  1837. color:#FFFFFF;
  1838. line-height:30px;
  1839. }
  1840. #u42538 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 0px 2px 0px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u42538_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u42539_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:141px;
  1858. height:34px;
  1859. }
  1860. #u42539 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:776px;
  1864. top:0px;
  1865. width:141px;
  1866. height:34px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:14px;
  1872. color:#FFFFFF;
  1873. line-height:30px;
  1874. }
  1875. #u42539 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 0px 2px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u42539_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u42540_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:141px;
  1893. height:34px;
  1894. }
  1895. #u42540 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:917px;
  1899. top:0px;
  1900. width:141px;
  1901. height:34px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:14px;
  1907. color:#FFFFFF;
  1908. line-height:30px;
  1909. }
  1910. #u42540 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:2px 0px 2px 0px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u42540_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u42541_img {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:0px;
  1926. top:0px;
  1927. width:166px;
  1928. height:34px;
  1929. }
  1930. #u42541 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:1058px;
  1934. top:0px;
  1935. width:166px;
  1936. height:34px;
  1937. display:flex;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:14px;
  1942. color:#FFFFFF;
  1943. line-height:30px;
  1944. }
  1945. #u42541 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 0px 2px 0px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u42541_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u42542_img {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:71px;
  1963. height:34px;
  1964. }
  1965. #u42542 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:34px;
  1970. width:71px;
  1971. height:34px;
  1972. display:flex;
  1973. font-size:14px;
  1974. line-height:30px;
  1975. }
  1976. #u42542 .text {
  1977. position:absolute;
  1978. align-self:center;
  1979. padding:2px 0px 2px 0px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u42542_text {
  1984. border-width:0px;
  1985. word-wrap:break-word;
  1986. text-transform:none;
  1987. }
  1988. #u42543_img {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:141px;
  1994. height:34px;
  1995. }
  1996. #u42543 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:71px;
  2000. top:34px;
  2001. width:141px;
  2002. height:34px;
  2003. display:flex;
  2004. font-size:14px;
  2005. line-height:30px;
  2006. }
  2007. #u42543 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 0px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u42543_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. visibility:hidden;
  2019. }
  2020. #u42544_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:141px;
  2026. height:34px;
  2027. }
  2028. #u42544 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:212px;
  2032. top:34px;
  2033. width:141px;
  2034. height:34px;
  2035. display:flex;
  2036. font-size:14px;
  2037. line-height:30px;
  2038. }
  2039. #u42544 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 0px 2px 0px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u42544_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. visibility:hidden;
  2051. }
  2052. #u42545_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:141px;
  2058. height:34px;
  2059. }
  2060. #u42545 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:353px;
  2064. top:34px;
  2065. width:141px;
  2066. height:34px;
  2067. display:flex;
  2068. font-size:14px;
  2069. line-height:30px;
  2070. }
  2071. #u42545 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 0px 2px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u42545_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. visibility:hidden;
  2083. }
  2084. #u42546_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:141px;
  2090. height:34px;
  2091. }
  2092. #u42546 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:494px;
  2096. top:34px;
  2097. width:141px;
  2098. height:34px;
  2099. display:flex;
  2100. font-size:14px;
  2101. line-height:30px;
  2102. }
  2103. #u42546 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:2px 0px 2px 0px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u42546_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. visibility:hidden;
  2115. }
  2116. #u42547_img {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:141px;
  2122. height:34px;
  2123. }
  2124. #u42547 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:635px;
  2128. top:34px;
  2129. width:141px;
  2130. height:34px;
  2131. display:flex;
  2132. font-size:14px;
  2133. line-height:30px;
  2134. }
  2135. #u42547 .text {
  2136. position:absolute;
  2137. align-self:center;
  2138. padding:2px 0px 2px 0px;
  2139. box-sizing:border-box;
  2140. width:100%;
  2141. }
  2142. #u42547_text {
  2143. border-width:0px;
  2144. word-wrap:break-word;
  2145. text-transform:none;
  2146. visibility:hidden;
  2147. }
  2148. #u42548_img {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:0px;
  2152. top:0px;
  2153. width:141px;
  2154. height:34px;
  2155. }
  2156. #u42548 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:776px;
  2160. top:34px;
  2161. width:141px;
  2162. height:34px;
  2163. display:flex;
  2164. font-size:14px;
  2165. line-height:30px;
  2166. }
  2167. #u42548 .text {
  2168. position:absolute;
  2169. align-self:center;
  2170. padding:2px 0px 2px 0px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u42548_text {
  2175. border-width:0px;
  2176. word-wrap:break-word;
  2177. text-transform:none;
  2178. visibility:hidden;
  2179. }
  2180. #u42549_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:141px;
  2186. height:34px;
  2187. }
  2188. #u42549 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:917px;
  2192. top:34px;
  2193. width:141px;
  2194. height:34px;
  2195. display:flex;
  2196. font-size:14px;
  2197. line-height:30px;
  2198. }
  2199. #u42549 .text {
  2200. position:absolute;
  2201. align-self:center;
  2202. padding:2px 0px 2px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u42549_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. visibility:hidden;
  2211. }
  2212. #u42550_img {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:166px;
  2218. height:34px;
  2219. }
  2220. #u42550 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:1058px;
  2224. top:34px;
  2225. width:166px;
  2226. height:34px;
  2227. display:flex;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:14px;
  2232. line-height:30px;
  2233. }
  2234. #u42550 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:2px 0px 2px 0px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u42550_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. }
  2246. #u42551_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:71px;
  2252. height:34px;
  2253. }
  2254. #u42551 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:68px;
  2259. width:71px;
  2260. height:34px;
  2261. display:flex;
  2262. font-size:14px;
  2263. line-height:30px;
  2264. }
  2265. #u42551 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 0px 2px 0px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u42551_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. }
  2277. #u42552_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:141px;
  2283. height:34px;
  2284. }
  2285. #u42552 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:71px;
  2289. top:68px;
  2290. width:141px;
  2291. height:34px;
  2292. display:flex;
  2293. font-size:14px;
  2294. line-height:30px;
  2295. }
  2296. #u42552 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:2px 0px 2px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u42552_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. visibility:hidden;
  2308. }
  2309. #u42553_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:141px;
  2315. height:34px;
  2316. }
  2317. #u42553 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:212px;
  2321. top:68px;
  2322. width:141px;
  2323. height:34px;
  2324. display:flex;
  2325. font-size:14px;
  2326. line-height:30px;
  2327. }
  2328. #u42553 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 0px 2px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u42553_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u42554_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:141px;
  2347. height:34px;
  2348. }
  2349. #u42554 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:353px;
  2353. top:68px;
  2354. width:141px;
  2355. height:34px;
  2356. display:flex;
  2357. font-size:14px;
  2358. line-height:30px;
  2359. }
  2360. #u42554 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 0px 2px 0px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u42554_text {
  2368. border-width:0px;
  2369. word-wrap:break-word;
  2370. text-transform:none;
  2371. visibility:hidden;
  2372. }
  2373. #u42555_img {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:141px;
  2379. height:34px;
  2380. }
  2381. #u42555 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:494px;
  2385. top:68px;
  2386. width:141px;
  2387. height:34px;
  2388. display:flex;
  2389. font-size:14px;
  2390. line-height:30px;
  2391. }
  2392. #u42555 .text {
  2393. position:absolute;
  2394. align-self:center;
  2395. padding:2px 0px 2px 0px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u42555_text {
  2400. border-width:0px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. visibility:hidden;
  2404. }
  2405. #u42556_img {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:141px;
  2411. height:34px;
  2412. }
  2413. #u42556 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:635px;
  2417. top:68px;
  2418. width:141px;
  2419. height:34px;
  2420. display:flex;
  2421. font-size:14px;
  2422. line-height:30px;
  2423. }
  2424. #u42556 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 0px 2px 0px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u42556_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. visibility:hidden;
  2436. }
  2437. #u42557_img {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:141px;
  2443. height:34px;
  2444. }
  2445. #u42557 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:776px;
  2449. top:68px;
  2450. width:141px;
  2451. height:34px;
  2452. display:flex;
  2453. font-size:14px;
  2454. line-height:30px;
  2455. }
  2456. #u42557 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 0px 2px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u42557_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. visibility:hidden;
  2468. }
  2469. #u42558_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:141px;
  2475. height:34px;
  2476. }
  2477. #u42558 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:917px;
  2481. top:68px;
  2482. width:141px;
  2483. height:34px;
  2484. display:flex;
  2485. font-size:14px;
  2486. line-height:30px;
  2487. }
  2488. #u42558 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 0px 2px 0px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u42558_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. visibility:hidden;
  2500. }
  2501. #u42559_img {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:166px;
  2507. height:34px;
  2508. }
  2509. #u42559 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:1058px;
  2513. top:68px;
  2514. width:166px;
  2515. height:34px;
  2516. display:flex;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:14px;
  2521. line-height:30px;
  2522. }
  2523. #u42559 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:2px 0px 2px 0px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u42559_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. }
  2535. #u42560_img {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:71px;
  2541. height:34px;
  2542. }
  2543. #u42560 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:102px;
  2548. width:71px;
  2549. height:34px;
  2550. display:flex;
  2551. font-size:14px;
  2552. line-height:30px;
  2553. }
  2554. #u42560 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 0px 2px 0px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u42560_text {
  2562. border-width:0px;
  2563. word-wrap:break-word;
  2564. text-transform:none;
  2565. visibility:hidden;
  2566. }
  2567. #u42561_img {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:141px;
  2573. height:34px;
  2574. }
  2575. #u42561 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:71px;
  2579. top:102px;
  2580. width:141px;
  2581. height:34px;
  2582. display:flex;
  2583. font-size:14px;
  2584. line-height:30px;
  2585. }
  2586. #u42561 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 0px 2px 0px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u42561_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. visibility:hidden;
  2598. }
  2599. #u42562_img {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:141px;
  2605. height:34px;
  2606. }
  2607. #u42562 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:212px;
  2611. top:102px;
  2612. width:141px;
  2613. height:34px;
  2614. display:flex;
  2615. font-size:14px;
  2616. line-height:30px;
  2617. }
  2618. #u42562 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 0px 2px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u42562_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u42563_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:141px;
  2637. height:34px;
  2638. }
  2639. #u42563 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:353px;
  2643. top:102px;
  2644. width:141px;
  2645. height:34px;
  2646. display:flex;
  2647. font-size:14px;
  2648. line-height:30px;
  2649. }
  2650. #u42563 .text {
  2651. position:absolute;
  2652. align-self:center;
  2653. padding:2px 0px 2px 0px;
  2654. box-sizing:border-box;
  2655. width:100%;
  2656. }
  2657. #u42563_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. visibility:hidden;
  2662. }
  2663. #u42564_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:141px;
  2669. height:34px;
  2670. }
  2671. #u42564 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:494px;
  2675. top:102px;
  2676. width:141px;
  2677. height:34px;
  2678. display:flex;
  2679. font-size:14px;
  2680. line-height:30px;
  2681. }
  2682. #u42564 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 0px 2px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u42564_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u42565_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:141px;
  2701. height:34px;
  2702. }
  2703. #u42565 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:635px;
  2707. top:102px;
  2708. width:141px;
  2709. height:34px;
  2710. display:flex;
  2711. font-size:14px;
  2712. line-height:30px;
  2713. }
  2714. #u42565 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:2px 0px 2px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u42565_text {
  2722. border-width:0px;
  2723. word-wrap:break-word;
  2724. text-transform:none;
  2725. visibility:hidden;
  2726. }
  2727. #u42566_img {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:141px;
  2733. height:34px;
  2734. }
  2735. #u42566 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:776px;
  2739. top:102px;
  2740. width:141px;
  2741. height:34px;
  2742. display:flex;
  2743. font-size:14px;
  2744. line-height:30px;
  2745. }
  2746. #u42566 .text {
  2747. position:absolute;
  2748. align-self:center;
  2749. padding:2px 0px 2px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u42566_text {
  2754. border-width:0px;
  2755. word-wrap:break-word;
  2756. text-transform:none;
  2757. visibility:hidden;
  2758. }
  2759. #u42567_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:141px;
  2765. height:34px;
  2766. }
  2767. #u42567 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:917px;
  2771. top:102px;
  2772. width:141px;
  2773. height:34px;
  2774. display:flex;
  2775. font-size:14px;
  2776. line-height:30px;
  2777. }
  2778. #u42567 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 0px 2px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u42567_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u42568_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:166px;
  2797. height:34px;
  2798. }
  2799. #u42568 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:1058px;
  2803. top:102px;
  2804. width:166px;
  2805. height:34px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:14px;
  2811. line-height:30px;
  2812. }
  2813. #u42568 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 0px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u42568_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. }
  2825. #u42569_img {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:71px;
  2831. height:34px;
  2832. }
  2833. #u42569 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:136px;
  2838. width:71px;
  2839. height:34px;
  2840. display:flex;
  2841. font-size:14px;
  2842. line-height:30px;
  2843. }
  2844. #u42569 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 0px 2px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u42569_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. visibility:hidden;
  2856. }
  2857. #u42570_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:141px;
  2863. height:34px;
  2864. }
  2865. #u42570 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:71px;
  2869. top:136px;
  2870. width:141px;
  2871. height:34px;
  2872. display:flex;
  2873. font-size:14px;
  2874. line-height:30px;
  2875. }
  2876. #u42570 .text {
  2877. position:absolute;
  2878. align-self:center;
  2879. padding:2px 0px 2px 0px;
  2880. box-sizing:border-box;
  2881. width:100%;
  2882. }
  2883. #u42570_text {
  2884. border-width:0px;
  2885. word-wrap:break-word;
  2886. text-transform:none;
  2887. visibility:hidden;
  2888. }
  2889. #u42571_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:141px;
  2895. height:34px;
  2896. }
  2897. #u42571 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:212px;
  2901. top:136px;
  2902. width:141px;
  2903. height:34px;
  2904. display:flex;
  2905. font-size:14px;
  2906. line-height:30px;
  2907. }
  2908. #u42571 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 0px 2px 0px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u42571_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u42572_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:141px;
  2927. height:34px;
  2928. }
  2929. #u42572 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:353px;
  2933. top:136px;
  2934. width:141px;
  2935. height:34px;
  2936. display:flex;
  2937. font-size:14px;
  2938. line-height:30px;
  2939. }
  2940. #u42572 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:2px 0px 2px 0px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u42572_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. visibility:hidden;
  2952. }
  2953. #u42573_img {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:141px;
  2959. height:34px;
  2960. }
  2961. #u42573 {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:494px;
  2965. top:136px;
  2966. width:141px;
  2967. height:34px;
  2968. display:flex;
  2969. font-size:14px;
  2970. line-height:30px;
  2971. }
  2972. #u42573 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 0px 2px 0px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u42573_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. visibility:hidden;
  2984. }
  2985. #u42574_img {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:141px;
  2991. height:34px;
  2992. }
  2993. #u42574 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:635px;
  2997. top:136px;
  2998. width:141px;
  2999. height:34px;
  3000. display:flex;
  3001. font-size:14px;
  3002. line-height:30px;
  3003. }
  3004. #u42574 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 0px 2px 0px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u42574_text {
  3012. border-width:0px;
  3013. word-wrap:break-word;
  3014. text-transform:none;
  3015. visibility:hidden;
  3016. }
  3017. #u42575_img {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:141px;
  3023. height:34px;
  3024. }
  3025. #u42575 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:776px;
  3029. top:136px;
  3030. width:141px;
  3031. height:34px;
  3032. display:flex;
  3033. font-size:14px;
  3034. line-height:30px;
  3035. }
  3036. #u42575 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:2px 0px 2px 0px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u42575_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. visibility:hidden;
  3048. }
  3049. #u42576_img {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:141px;
  3055. height:34px;
  3056. }
  3057. #u42576 {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:917px;
  3061. top:136px;
  3062. width:141px;
  3063. height:34px;
  3064. display:flex;
  3065. font-size:14px;
  3066. line-height:30px;
  3067. }
  3068. #u42576 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 0px 2px 0px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u42576_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. visibility:hidden;
  3080. }
  3081. #u42577_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:166px;
  3087. height:34px;
  3088. }
  3089. #u42577 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:1058px;
  3093. top:136px;
  3094. width:166px;
  3095. height:34px;
  3096. display:flex;
  3097. font-size:14px;
  3098. line-height:30px;
  3099. }
  3100. #u42577 .text {
  3101. position:absolute;
  3102. align-self:center;
  3103. padding:2px 0px 2px 0px;
  3104. box-sizing:border-box;
  3105. width:100%;
  3106. }
  3107. #u42577_text {
  3108. border-width:0px;
  3109. word-wrap:break-word;
  3110. text-transform:none;
  3111. visibility:hidden;
  3112. }
  3113. #u42578_img {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:71px;
  3119. height:34px;
  3120. }
  3121. #u42578 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:170px;
  3126. width:71px;
  3127. height:34px;
  3128. display:flex;
  3129. font-size:14px;
  3130. line-height:30px;
  3131. }
  3132. #u42578 .text {
  3133. position:absolute;
  3134. align-self:center;
  3135. padding:2px 0px 2px 0px;
  3136. box-sizing:border-box;
  3137. width:100%;
  3138. }
  3139. #u42578_text {
  3140. border-width:0px;
  3141. word-wrap:break-word;
  3142. text-transform:none;
  3143. visibility:hidden;
  3144. }
  3145. #u42579_img {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:141px;
  3151. height:34px;
  3152. }
  3153. #u42579 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:71px;
  3157. top:170px;
  3158. width:141px;
  3159. height:34px;
  3160. display:flex;
  3161. font-size:14px;
  3162. line-height:30px;
  3163. }
  3164. #u42579 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 0px 2px 0px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u42579_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. visibility:hidden;
  3176. }
  3177. #u42580_img {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:141px;
  3183. height:34px;
  3184. }
  3185. #u42580 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:212px;
  3189. top:170px;
  3190. width:141px;
  3191. height:34px;
  3192. display:flex;
  3193. font-size:14px;
  3194. line-height:30px;
  3195. }
  3196. #u42580 .text {
  3197. position:absolute;
  3198. align-self:center;
  3199. padding:2px 0px 2px 0px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u42580_text {
  3204. border-width:0px;
  3205. word-wrap:break-word;
  3206. text-transform:none;
  3207. visibility:hidden;
  3208. }
  3209. #u42581_img {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:141px;
  3215. height:34px;
  3216. }
  3217. #u42581 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:353px;
  3221. top:170px;
  3222. width:141px;
  3223. height:34px;
  3224. display:flex;
  3225. font-size:14px;
  3226. line-height:30px;
  3227. }
  3228. #u42581 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 0px 2px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u42581_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u42582_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:141px;
  3247. height:34px;
  3248. }
  3249. #u42582 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:494px;
  3253. top:170px;
  3254. width:141px;
  3255. height:34px;
  3256. display:flex;
  3257. font-size:14px;
  3258. line-height:30px;
  3259. }
  3260. #u42582 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 0px 2px 0px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u42582_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u42583_img {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:141px;
  3279. height:34px;
  3280. }
  3281. #u42583 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:635px;
  3285. top:170px;
  3286. width:141px;
  3287. height:34px;
  3288. display:flex;
  3289. font-size:14px;
  3290. line-height:30px;
  3291. }
  3292. #u42583 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 0px 2px 0px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u42583_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u42584_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:141px;
  3311. height:34px;
  3312. }
  3313. #u42584 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:776px;
  3317. top:170px;
  3318. width:141px;
  3319. height:34px;
  3320. display:flex;
  3321. font-size:14px;
  3322. line-height:30px;
  3323. }
  3324. #u42584 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 0px 2px 0px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u42584_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. visibility:hidden;
  3336. }
  3337. #u42585_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:141px;
  3343. height:34px;
  3344. }
  3345. #u42585 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:917px;
  3349. top:170px;
  3350. width:141px;
  3351. height:34px;
  3352. display:flex;
  3353. font-size:14px;
  3354. line-height:30px;
  3355. }
  3356. #u42585 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 0px 2px 0px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u42585_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u42586_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:166px;
  3375. height:34px;
  3376. }
  3377. #u42586 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:1058px;
  3381. top:170px;
  3382. width:166px;
  3383. height:34px;
  3384. display:flex;
  3385. font-size:14px;
  3386. line-height:30px;
  3387. }
  3388. #u42586 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 0px 2px 0px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u42586_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u42587_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:71px;
  3407. height:34px;
  3408. }
  3409. #u42587 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:204px;
  3414. width:71px;
  3415. height:34px;
  3416. display:flex;
  3417. font-size:14px;
  3418. line-height:30px;
  3419. }
  3420. #u42587 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 0px 2px 0px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u42587_text {
  3428. border-width:0px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. visibility:hidden;
  3432. }
  3433. #u42588_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:141px;
  3439. height:34px;
  3440. }
  3441. #u42588 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:71px;
  3445. top:204px;
  3446. width:141px;
  3447. height:34px;
  3448. display:flex;
  3449. font-size:14px;
  3450. line-height:30px;
  3451. }
  3452. #u42588 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 0px 2px 0px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u42588_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. visibility:hidden;
  3464. }
  3465. #u42589_img {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:141px;
  3471. height:34px;
  3472. }
  3473. #u42589 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:212px;
  3477. top:204px;
  3478. width:141px;
  3479. height:34px;
  3480. display:flex;
  3481. font-size:14px;
  3482. line-height:30px;
  3483. }
  3484. #u42589 .text {
  3485. position:absolute;
  3486. align-self:center;
  3487. padding:2px 0px 2px 0px;
  3488. box-sizing:border-box;
  3489. width:100%;
  3490. }
  3491. #u42589_text {
  3492. border-width:0px;
  3493. word-wrap:break-word;
  3494. text-transform:none;
  3495. visibility:hidden;
  3496. }
  3497. #u42590_img {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:141px;
  3503. height:34px;
  3504. }
  3505. #u42590 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:353px;
  3509. top:204px;
  3510. width:141px;
  3511. height:34px;
  3512. display:flex;
  3513. font-size:14px;
  3514. line-height:30px;
  3515. }
  3516. #u42590 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 0px 2px 0px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u42590_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u42591_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:141px;
  3535. height:34px;
  3536. }
  3537. #u42591 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:494px;
  3541. top:204px;
  3542. width:141px;
  3543. height:34px;
  3544. display:flex;
  3545. font-size:14px;
  3546. line-height:30px;
  3547. }
  3548. #u42591 .text {
  3549. position:absolute;
  3550. align-self:center;
  3551. padding:2px 0px 2px 0px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u42591_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. visibility:hidden;
  3560. }
  3561. #u42592_img {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:141px;
  3567. height:34px;
  3568. }
  3569. #u42592 {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:635px;
  3573. top:204px;
  3574. width:141px;
  3575. height:34px;
  3576. display:flex;
  3577. font-size:14px;
  3578. line-height:30px;
  3579. }
  3580. #u42592 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 0px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u42592_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u42593_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:141px;
  3599. height:34px;
  3600. }
  3601. #u42593 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:776px;
  3605. top:204px;
  3606. width:141px;
  3607. height:34px;
  3608. display:flex;
  3609. font-size:14px;
  3610. line-height:30px;
  3611. }
  3612. #u42593 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 0px 2px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u42593_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. visibility:hidden;
  3624. }
  3625. #u42594_img {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:141px;
  3631. height:34px;
  3632. }
  3633. #u42594 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:917px;
  3637. top:204px;
  3638. width:141px;
  3639. height:34px;
  3640. display:flex;
  3641. font-size:14px;
  3642. line-height:30px;
  3643. }
  3644. #u42594 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 0px 2px 0px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u42594_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u42595_img {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:166px;
  3663. height:34px;
  3664. }
  3665. #u42595 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:1058px;
  3669. top:204px;
  3670. width:166px;
  3671. height:34px;
  3672. display:flex;
  3673. font-size:14px;
  3674. line-height:30px;
  3675. }
  3676. #u42595 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 0px 2px 0px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u42595_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. visibility:hidden;
  3688. }
  3689. #u42596 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:0px;
  3695. height:0px;
  3696. }
  3697. #u42597_div {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:140px;
  3703. height:30px;
  3704. background:inherit;
  3705. background-color:rgba(255, 255, 255, 1);
  3706. box-sizing:border-box;
  3707. border-width:1px;
  3708. border-style:solid;
  3709. border-color:rgba(201, 201, 201, 1);
  3710. border-radius:4px;
  3711. -moz-box-shadow:none;
  3712. -webkit-box-shadow:none;
  3713. box-shadow:none;
  3714. font-family:'Microsoft YaHei', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:14px;
  3718. color:#CCCCCC;
  3719. text-align:left;
  3720. }
  3721. #u42597 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:502px;
  3725. top:100px;
  3726. width:140px;
  3727. height:30px;
  3728. display:flex;
  3729. font-family:'Microsoft YaHei', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:14px;
  3733. color:#CCCCCC;
  3734. text-align:left;
  3735. }
  3736. #u42597 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 8px 2px 8px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u42597_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u42598_input {
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:131px;
  3754. height:28px;
  3755. padding:2px 2px 2px 2px;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:14px;
  3760. letter-spacing:normal;
  3761. color:#000000;
  3762. vertical-align:none;
  3763. text-align:left;
  3764. text-transform:none;
  3765. background-color:transparent;
  3766. border-color:transparent;
  3767. }
  3768. #u42598_input.disabled {
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:131px;
  3773. height:28px;
  3774. padding:2px 2px 2px 2px;
  3775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3776. font-weight:400;
  3777. font-style:normal;
  3778. font-size:14px;
  3779. letter-spacing:normal;
  3780. color:#000000;
  3781. vertical-align:none;
  3782. text-align:left;
  3783. text-transform:none;
  3784. background-color:transparent;
  3785. border-color:transparent;
  3786. }
  3787. #u42598_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:131px;
  3793. height:28px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 1);
  3796. border:none;
  3797. border-radius:0px;
  3798. -moz-box-shadow:none;
  3799. -webkit-box-shadow:none;
  3800. box-shadow:none;
  3801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3802. font-weight:400;
  3803. font-style:normal;
  3804. font-size:14px;
  3805. }
  3806. #u42598 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:507px;
  3810. top:101px;
  3811. width:131px;
  3812. height:28px;
  3813. display:flex;
  3814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:14px;
  3818. }
  3819. #u42598 .text {
  3820. position:absolute;
  3821. align-self:center;
  3822. padding:2px 2px 2px 2px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u42598_div.disabled {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:0px;
  3830. top:0px;
  3831. width:131px;
  3832. height:28px;
  3833. background:inherit;
  3834. background-color:rgba(240, 240, 240, 1);
  3835. border:none;
  3836. border-radius:0px;
  3837. -moz-box-shadow:none;
  3838. -webkit-box-shadow:none;
  3839. box-shadow:none;
  3840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:14px;
  3844. }
  3845. #u42598.disabled {
  3846. }
  3847. #u42599 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:0px;
  3853. height:0px;
  3854. }
  3855. #u42600_div {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:0px;
  3860. width:60px;
  3861. height:30px;
  3862. background:inherit;
  3863. background-color:rgba(24, 144, 255, 1);
  3864. border:none;
  3865. border-radius:4px;
  3866. -moz-box-shadow:none;
  3867. -webkit-box-shadow:none;
  3868. box-shadow:none;
  3869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:14px;
  3873. color:#FFFFFF;
  3874. }
  3875. #u42600 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:952px;
  3879. top:100px;
  3880. width:60px;
  3881. height:30px;
  3882. display:flex;
  3883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. font-size:14px;
  3887. color:#FFFFFF;
  3888. }
  3889. #u42600 .text {
  3890. position:absolute;
  3891. align-self:center;
  3892. padding:2px 2px 2px 2px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u42600_text {
  3897. border-width:0px;
  3898. word-wrap:break-word;
  3899. text-transform:none;
  3900. }
  3901. #u42601_div {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:60px;
  3907. height:30px;
  3908. background:inherit;
  3909. background-color:rgba(255, 255, 255, 1);
  3910. box-sizing:border-box;
  3911. border-width:1px;
  3912. border-style:solid;
  3913. border-color:rgba(170, 170, 170, 1);
  3914. border-radius:4px;
  3915. -moz-box-shadow:none;
  3916. -webkit-box-shadow:none;
  3917. box-shadow:none;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:14px;
  3922. }
  3923. #u42601 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:1022px;
  3927. top:100px;
  3928. width:60px;
  3929. height:30px;
  3930. display:flex;
  3931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. font-size:14px;
  3935. }
  3936. #u42601 .text {
  3937. position:absolute;
  3938. align-self:center;
  3939. padding:2px 2px 2px 2px;
  3940. box-sizing:border-box;
  3941. width:100%;
  3942. }
  3943. #u42601_text {
  3944. border-width:0px;
  3945. word-wrap:break-word;
  3946. text-transform:none;
  3947. }
  3948. #u42602 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:0px;
  3954. height:0px;
  3955. }
  3956. #u42603_div {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:140px;
  3962. height:30px;
  3963. background:inherit;
  3964. background-color:rgba(255, 255, 255, 1);
  3965. box-sizing:border-box;
  3966. border-width:1px;
  3967. border-style:solid;
  3968. border-color:rgba(215, 215, 215, 1);
  3969. border-radius:4px;
  3970. -moz-box-shadow:none;
  3971. -webkit-box-shadow:none;
  3972. box-shadow:none;
  3973. font-size:11px;
  3974. }
  3975. #u42603 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:349px;
  3979. top:100px;
  3980. width:140px;
  3981. height:30px;
  3982. display:flex;
  3983. font-size:11px;
  3984. }
  3985. #u42603 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u42603_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u42604_input {
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:126px;
  4003. height:23px;
  4004. padding:2px 2px 2px 2px;
  4005. font-family:'ArialMT', 'Arial', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:11px;
  4009. letter-spacing:normal;
  4010. color:#AAAAAA;
  4011. vertical-align:none;
  4012. text-align:left;
  4013. text-transform:none;
  4014. background-color:transparent;
  4015. border-color:transparent;
  4016. }
  4017. #u42604_input.disabled {
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:126px;
  4022. height:23px;
  4023. padding:2px 2px 2px 2px;
  4024. font-family:'ArialMT', 'Arial', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:11px;
  4028. letter-spacing:normal;
  4029. color:#AAAAAA;
  4030. vertical-align:none;
  4031. text-align:left;
  4032. text-transform:none;
  4033. background-color:transparent;
  4034. border-color:transparent;
  4035. }
  4036. #u42604_div {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:0px;
  4041. width:126px;
  4042. height:23px;
  4043. background:inherit;
  4044. background-color:rgba(255, 255, 255, 1);
  4045. border:none;
  4046. border-radius:0px;
  4047. -moz-box-shadow:none;
  4048. -webkit-box-shadow:none;
  4049. box-shadow:none;
  4050. font-size:11px;
  4051. color:#AAAAAA;
  4052. }
  4053. #u42604 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:356px;
  4057. top:102px;
  4058. width:126px;
  4059. height:23px;
  4060. display:flex;
  4061. font-size:11px;
  4062. color:#AAAAAA;
  4063. }
  4064. #u42604 .text {
  4065. position:absolute;
  4066. align-self:flex-start;
  4067. padding:2px 2px 2px 2px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u42604_div.disabled {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:126px;
  4077. height:23px;
  4078. background:inherit;
  4079. background-color:rgba(240, 240, 240, 1);
  4080. border:none;
  4081. border-radius:0px;
  4082. -moz-box-shadow:none;
  4083. -webkit-box-shadow:none;
  4084. box-shadow:none;
  4085. font-size:11px;
  4086. color:#AAAAAA;
  4087. }
  4088. #u42604.disabled {
  4089. }
  4090. .u42604_input_option {
  4091. font-size:11px;
  4092. }
  4093. #u42605 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:0px;
  4099. height:0px;
  4100. }
  4101. #u42606_div {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:140px;
  4107. height:30px;
  4108. background:inherit;
  4109. background-color:rgba(255, 255, 255, 1);
  4110. box-sizing:border-box;
  4111. border-width:1px;
  4112. border-style:solid;
  4113. border-color:rgba(201, 201, 201, 1);
  4114. border-radius:4px;
  4115. -moz-box-shadow:none;
  4116. -webkit-box-shadow:none;
  4117. box-shadow:none;
  4118. font-family:'Microsoft YaHei', sans-serif;
  4119. font-weight:400;
  4120. font-style:normal;
  4121. font-size:14px;
  4122. color:#CCCCCC;
  4123. text-align:left;
  4124. }
  4125. #u42606 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:652px;
  4129. top:100px;
  4130. width:140px;
  4131. height:30px;
  4132. display:flex;
  4133. font-family:'Microsoft YaHei', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:14px;
  4137. color:#CCCCCC;
  4138. text-align:left;
  4139. }
  4140. #u42606 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 8px 2px 8px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u42606_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u42607_input {
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:131px;
  4158. height:28px;
  4159. padding:2px 2px 2px 2px;
  4160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:14px;
  4164. letter-spacing:normal;
  4165. color:#000000;
  4166. vertical-align:none;
  4167. text-align:left;
  4168. text-transform:none;
  4169. background-color:transparent;
  4170. border-color:transparent;
  4171. }
  4172. #u42607_input.disabled {
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:131px;
  4177. height:28px;
  4178. padding:2px 2px 2px 2px;
  4179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:14px;
  4183. letter-spacing:normal;
  4184. color:#000000;
  4185. vertical-align:none;
  4186. text-align:left;
  4187. text-transform:none;
  4188. background-color:transparent;
  4189. border-color:transparent;
  4190. }
  4191. #u42607_div {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:0px;
  4195. top:0px;
  4196. width:131px;
  4197. height:28px;
  4198. background:inherit;
  4199. background-color:rgba(255, 255, 255, 1);
  4200. border:none;
  4201. border-radius:0px;
  4202. -moz-box-shadow:none;
  4203. -webkit-box-shadow:none;
  4204. box-shadow:none;
  4205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:14px;
  4209. }
  4210. #u42607 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:657px;
  4214. top:101px;
  4215. width:131px;
  4216. height:28px;
  4217. display:flex;
  4218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:14px;
  4222. }
  4223. #u42607 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u42607_div.disabled {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:131px;
  4236. height:28px;
  4237. background:inherit;
  4238. background-color:rgba(240, 240, 240, 1);
  4239. border:none;
  4240. border-radius:0px;
  4241. -moz-box-shadow:none;
  4242. -webkit-box-shadow:none;
  4243. box-shadow:none;
  4244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:14px;
  4248. }
  4249. #u42607.disabled {
  4250. }
  4251. #u42608_div {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:59px;
  4257. height:30px;
  4258. background:inherit;
  4259. background-color:rgba(24, 144, 255, 1);
  4260. border:none;
  4261. border-radius:4px;
  4262. -moz-box-shadow:none;
  4263. -webkit-box-shadow:none;
  4264. box-shadow:none;
  4265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:14px;
  4269. color:#FFFFFF;
  4270. }
  4271. #u42608 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:348px;
  4275. top:150px;
  4276. width:59px;
  4277. height:30px;
  4278. display:flex;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:14px;
  4283. color:#FFFFFF;
  4284. }
  4285. #u42608 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:5px 15px 5px 15px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u42608_text {
  4293. border-width:0px;
  4294. white-space:nowrap;
  4295. text-transform:none;
  4296. }
  4297. #u42609 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:0px;
  4303. height:0px;
  4304. }
  4305. #u42610_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:680px;
  4311. height:1198px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 1);
  4314. box-sizing:border-box;
  4315. border-width:1px;
  4316. border-style:solid;
  4317. border-color:rgba(215, 215, 215, 1);
  4318. border-radius:0px;
  4319. -moz-box-shadow:none;
  4320. -webkit-box-shadow:none;
  4321. box-shadow:none;
  4322. }
  4323. #u42610 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:1641px;
  4327. top:43px;
  4328. width:680px;
  4329. height:1198px;
  4330. display:flex;
  4331. }
  4332. #u42610 .text {
  4333. position:absolute;
  4334. align-self:center;
  4335. padding:2px 2px 2px 2px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u42610_text {
  4340. border-width:0px;
  4341. word-wrap:break-word;
  4342. text-transform:none;
  4343. visibility:hidden;
  4344. }
  4345. #u42611_div {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:0px;
  4349. top:0px;
  4350. width:73px;
  4351. height:30px;
  4352. background:inherit;
  4353. background-color:rgba(255, 255, 255, 0);
  4354. border:none;
  4355. border-radius:0px;
  4356. -moz-box-shadow:none;
  4357. -webkit-box-shadow:none;
  4358. box-shadow:none;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:18px;
  4363. color:#000000;
  4364. line-height:30px;
  4365. }
  4366. #u42611 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:1661px;
  4370. top:63px;
  4371. width:73px;
  4372. height:30px;
  4373. display:flex;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:18px;
  4378. color:#000000;
  4379. line-height:30px;
  4380. }
  4381. #u42611 .text {
  4382. position:absolute;
  4383. align-self:flex-start;
  4384. padding:0px 0px 0px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u42611_text {
  4389. border-width:0px;
  4390. white-space:nowrap;
  4391. text-transform:none;
  4392. }
  4393. #u42612_div {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:71px;
  4399. height:30px;
  4400. background:inherit;
  4401. background-color:rgba(255, 255, 255, 0);
  4402. border:none;
  4403. border-top:0px;
  4404. border-right:0px;
  4405. border-bottom:0px;
  4406. border-radius:0px;
  4407. border-top-left-radius:0px;
  4408. border-bottom-left-radius:0px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:14px;
  4416. text-align:right;
  4417. }
  4418. #u42612 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:1705px;
  4422. top:276px;
  4423. width:71px;
  4424. height:30px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:14px;
  4430. text-align:right;
  4431. }
  4432. #u42612 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:5px 0px 5px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u42612_text {
  4440. border-width:0px;
  4441. white-space:nowrap;
  4442. text-transform:none;
  4443. }
  4444. #u42613 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:0px;
  4450. height:0px;
  4451. }
  4452. #u42614_div {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:400px;
  4458. height:40px;
  4459. background:inherit;
  4460. background-color:rgba(255, 255, 255, 1);
  4461. box-sizing:border-box;
  4462. border-width:1px;
  4463. border-style:solid;
  4464. border-color:rgba(170, 170, 170, 1);
  4465. border-radius:4px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. text-align:left;
  4473. }
  4474. #u42614 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:1786px;
  4478. top:121px;
  4479. width:400px;
  4480. height:40px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. text-align:left;
  4486. }
  4487. #u42614 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:2px 2px 2px 10px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u42614_text {
  4495. border-width:0px;
  4496. word-wrap:break-word;
  4497. text-transform:none;
  4498. visibility:hidden;
  4499. }
  4500. #u42615_input {
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:188px;
  4505. height:31px;
  4506. padding:2px 2px 2px 2px;
  4507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4508. font-weight:400;
  4509. font-style:normal;
  4510. font-size:13px;
  4511. letter-spacing:normal;
  4512. color:#AAAAAA;
  4513. vertical-align:none;
  4514. text-align:left;
  4515. text-transform:none;
  4516. background-color:transparent;
  4517. border-color:transparent;
  4518. }
  4519. #u42615_input.disabled {
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:188px;
  4524. height:31px;
  4525. padding:2px 2px 2px 2px;
  4526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4527. font-weight:400;
  4528. font-style:normal;
  4529. font-size:13px;
  4530. letter-spacing:normal;
  4531. color:#AAAAAA;
  4532. vertical-align:none;
  4533. text-align:left;
  4534. text-transform:none;
  4535. background-color:transparent;
  4536. border-color:transparent;
  4537. }
  4538. #u42615_div {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:188px;
  4544. height:31px;
  4545. background:inherit;
  4546. background-color:rgba(255, 255, 255, 0);
  4547. border:none;
  4548. border-radius:0px;
  4549. -moz-box-shadow:none;
  4550. -webkit-box-shadow:none;
  4551. box-shadow:none;
  4552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4553. font-weight:400;
  4554. font-style:normal;
  4555. color:#AAAAAA;
  4556. }
  4557. #u42615 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:1796px;
  4561. top:126px;
  4562. width:188px;
  4563. height:31px;
  4564. display:flex;
  4565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. color:#AAAAAA;
  4569. }
  4570. #u42615 .text {
  4571. position:absolute;
  4572. align-self:center;
  4573. padding:2px 2px 2px 2px;
  4574. box-sizing:border-box;
  4575. width:100%;
  4576. }
  4577. #u42615_div.disabled {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:188px;
  4583. height:31px;
  4584. background:inherit;
  4585. background-color:rgba(240, 240, 240, 1);
  4586. border:none;
  4587. border-radius:0px;
  4588. -moz-box-shadow:none;
  4589. -webkit-box-shadow:none;
  4590. box-shadow:none;
  4591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4592. font-weight:400;
  4593. font-style:normal;
  4594. color:#AAAAAA;
  4595. }
  4596. #u42615.disabled {
  4597. }
  4598. #u42616 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:0px;
  4604. height:0px;
  4605. }
  4606. #u42617_div {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:40px;
  4612. height:40px;
  4613. background:inherit;
  4614. background-color:rgba(255, 255, 255, 0);
  4615. border:none;
  4616. border-top:0px;
  4617. border-right:0px;
  4618. border-bottom:0px;
  4619. border-radius:0px;
  4620. border-top-left-radius:0px;
  4621. border-bottom-left-radius:0px;
  4622. -moz-box-shadow:none;
  4623. -webkit-box-shadow:none;
  4624. box-shadow:none;
  4625. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4626. font-weight:500;
  4627. font-style:normal;
  4628. font-size:18px;
  4629. text-align:center;
  4630. }
  4631. #u42617 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:2281px;
  4635. top:43px;
  4636. width:40px;
  4637. height:40px;
  4638. display:flex;
  4639. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4640. font-weight:500;
  4641. font-style:normal;
  4642. font-size:18px;
  4643. text-align:center;
  4644. }
  4645. #u42617 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:5px 10px 5px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u42617_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. }
  4657. #u42618_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:13px;
  4663. height:17px;
  4664. }
  4665. #u42618 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:2268px;
  4669. top:55px;
  4670. width:13px;
  4671. height:17px;
  4672. display:flex;
  4673. }
  4674. #u42618 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 2px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u42618_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u42619 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:0px;
  4693. height:0px;
  4694. }
  4695. #u42620_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:680px;
  4701. height:60px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 1);
  4704. box-sizing:border-box;
  4705. border-width:1px;
  4706. border-style:solid;
  4707. border-color:rgba(215, 215, 215, 1);
  4708. border-radius:0px;
  4709. -moz-box-shadow:none;
  4710. -webkit-box-shadow:none;
  4711. box-shadow:none;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:14px;
  4716. color:#AAAAAA;
  4717. text-align:center;
  4718. line-height:30px;
  4719. }
  4720. #u42620 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:1641px;
  4724. top:1181px;
  4725. width:680px;
  4726. height:60px;
  4727. display:flex;
  4728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4729. font-weight:400;
  4730. font-style:normal;
  4731. font-size:14px;
  4732. color:#AAAAAA;
  4733. text-align:center;
  4734. line-height:30px;
  4735. }
  4736. #u42620 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:5px 10px 5px 10px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u42620_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. visibility:hidden;
  4748. }
  4749. #u42621_div {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:80px;
  4755. height:30px;
  4756. background:inherit;
  4757. background-color:rgba(24, 144, 255, 1);
  4758. border:none;
  4759. border-radius:4px;
  4760. -moz-box-shadow:none;
  4761. -webkit-box-shadow:none;
  4762. box-shadow:none;
  4763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:14px;
  4767. color:#FFFFFF;
  4768. }
  4769. #u42621 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:2196px;
  4773. top:1196px;
  4774. width:80px;
  4775. height:30px;
  4776. display:flex;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:14px;
  4781. color:#FFFFFF;
  4782. }
  4783. #u42621 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 2px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u42621_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. }
  4795. #u42622_div {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:80px;
  4801. height:30px;
  4802. background:inherit;
  4803. background-color:rgba(255, 255, 255, 1);
  4804. box-sizing:border-box;
  4805. border-width:1px;
  4806. border-style:solid;
  4807. border-color:rgba(170, 170, 170, 1);
  4808. border-radius:4px;
  4809. -moz-box-shadow:none;
  4810. -webkit-box-shadow:none;
  4811. box-shadow:none;
  4812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:14px;
  4816. }
  4817. #u42622 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:2097px;
  4821. top:1196px;
  4822. width:80px;
  4823. height:30px;
  4824. display:flex;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:14px;
  4829. }
  4830. #u42622 .text {
  4831. position:absolute;
  4832. align-self:center;
  4833. padding:2px 2px 2px 2px;
  4834. box-sizing:border-box;
  4835. width:100%;
  4836. }
  4837. #u42622_text {
  4838. border-width:0px;
  4839. word-wrap:break-word;
  4840. text-transform:none;
  4841. }
  4842. #u42623 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:0px;
  4848. height:0px;
  4849. }
  4850. #u42624_div {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:400px;
  4856. height:80px;
  4857. background:inherit;
  4858. background-color:rgba(255, 255, 255, 1);
  4859. box-sizing:border-box;
  4860. border-width:1px;
  4861. border-style:solid;
  4862. border-color:rgba(170, 170, 170, 1);
  4863. border-radius:4px;
  4864. -moz-box-shadow:none;
  4865. -webkit-box-shadow:none;
  4866. box-shadow:none;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. text-align:left;
  4871. }
  4872. #u42624 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:1786px;
  4876. top:321px;
  4877. width:400px;
  4878. height:80px;
  4879. display:flex;
  4880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4881. font-weight:400;
  4882. font-style:normal;
  4883. text-align:left;
  4884. }
  4885. #u42624 .text {
  4886. position:absolute;
  4887. align-self:center;
  4888. padding:2px 2px 2px 10px;
  4889. box-sizing:border-box;
  4890. width:100%;
  4891. }
  4892. #u42624_text {
  4893. border-width:0px;
  4894. word-wrap:break-word;
  4895. text-transform:none;
  4896. visibility:hidden;
  4897. }
  4898. #u42625_input {
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:188px;
  4903. height:31px;
  4904. padding:2px 2px 2px 2px;
  4905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4906. font-weight:400;
  4907. font-style:normal;
  4908. font-size:13px;
  4909. letter-spacing:normal;
  4910. color:#AAAAAA;
  4911. vertical-align:none;
  4912. text-align:left;
  4913. text-transform:none;
  4914. background-color:transparent;
  4915. border-color:transparent;
  4916. }
  4917. #u42625_input.disabled {
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:188px;
  4922. height:31px;
  4923. padding:2px 2px 2px 2px;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:13px;
  4928. letter-spacing:normal;
  4929. color:#AAAAAA;
  4930. vertical-align:none;
  4931. text-align:left;
  4932. text-transform:none;
  4933. background-color:transparent;
  4934. border-color:transparent;
  4935. }
  4936. #u42625_div {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:188px;
  4942. height:31px;
  4943. background:inherit;
  4944. background-color:rgba(255, 255, 255, 0);
  4945. border:none;
  4946. border-radius:0px;
  4947. -moz-box-shadow:none;
  4948. -webkit-box-shadow:none;
  4949. box-shadow:none;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. color:#AAAAAA;
  4954. }
  4955. #u42625 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:1796px;
  4959. top:326px;
  4960. width:188px;
  4961. height:31px;
  4962. display:flex;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. color:#AAAAAA;
  4967. }
  4968. #u42625 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 2px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u42625_div.disabled {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:188px;
  4981. height:31px;
  4982. background:inherit;
  4983. background-color:rgba(240, 240, 240, 1);
  4984. border:none;
  4985. border-radius:0px;
  4986. -moz-box-shadow:none;
  4987. -webkit-box-shadow:none;
  4988. box-shadow:none;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. color:#AAAAAA;
  4993. }
  4994. #u42625.disabled {
  4995. }
  4996. #u42626_div {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:39px;
  5002. height:24px;
  5003. background:inherit;
  5004. background-color:rgba(255, 255, 255, 0);
  5005. border:none;
  5006. border-top:0px;
  5007. border-right:0px;
  5008. border-bottom:0px;
  5009. border-radius:0px;
  5010. border-top-left-radius:0px;
  5011. border-bottom-left-radius:0px;
  5012. -moz-box-shadow:none;
  5013. -webkit-box-shadow:none;
  5014. box-shadow:none;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:10px;
  5019. color:#AAAAAA;
  5020. text-align:right;
  5021. }
  5022. #u42626 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:2144px;
  5026. top:376px;
  5027. width:39px;
  5028. height:24px;
  5029. display:flex;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:10px;
  5034. color:#AAAAAA;
  5035. text-align:right;
  5036. }
  5037. #u42626 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:5px 0px 5px 0px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u42626_text {
  5045. border-width:0px;
  5046. white-space:nowrap;
  5047. text-transform:none;
  5048. }
  5049. #u42627 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:0px;
  5055. height:0px;
  5056. }
  5057. #u42628_div {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:400px;
  5063. height:40px;
  5064. background:inherit;
  5065. background-color:rgba(255, 255, 255, 1);
  5066. box-sizing:border-box;
  5067. border-width:1px;
  5068. border-style:solid;
  5069. border-color:rgba(170, 170, 170, 1);
  5070. border-radius:4px;
  5071. -moz-box-shadow:none;
  5072. -webkit-box-shadow:none;
  5073. box-shadow:none;
  5074. }
  5075. #u42628 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:1786px;
  5079. top:271px;
  5080. width:400px;
  5081. height:40px;
  5082. display:flex;
  5083. }
  5084. #u42628 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:2px 2px 2px 0px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u42628_text {
  5092. border-width:0px;
  5093. word-wrap:break-word;
  5094. text-transform:none;
  5095. visibility:hidden;
  5096. }
  5097. #u42629_input {
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:380px;
  5102. height:30px;
  5103. padding:2px 2px 2px 0px;
  5104. font-family:'ArialMT', 'Arial', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:13px;
  5108. letter-spacing:normal;
  5109. color:#AAAAAA;
  5110. vertical-align:none;
  5111. text-align:left;
  5112. text-transform:none;
  5113. background-color:transparent;
  5114. border-color:transparent;
  5115. }
  5116. #u42629_input.disabled {
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:380px;
  5121. height:30px;
  5122. padding:2px 2px 2px 0px;
  5123. font-family:'ArialMT', 'Arial', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:13px;
  5127. letter-spacing:normal;
  5128. color:#AAAAAA;
  5129. vertical-align:none;
  5130. text-align:left;
  5131. text-transform:none;
  5132. background-color:transparent;
  5133. border-color:transparent;
  5134. }
  5135. #u42629_div {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:380px;
  5141. height:30px;
  5142. background:inherit;
  5143. background-color:rgba(255, 255, 255, 1);
  5144. border:none;
  5145. border-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. color:#AAAAAA;
  5150. }
  5151. #u42629 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:1796px;
  5155. top:277px;
  5156. width:380px;
  5157. height:30px;
  5158. display:flex;
  5159. color:#AAAAAA;
  5160. }
  5161. #u42629 .text {
  5162. position:absolute;
  5163. align-self:flex-start;
  5164. padding:2px 2px 2px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u42629_div.disabled {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:380px;
  5174. height:30px;
  5175. background:inherit;
  5176. background-color:rgba(240, 240, 240, 1);
  5177. border:none;
  5178. border-radius:0px;
  5179. -moz-box-shadow:none;
  5180. -webkit-box-shadow:none;
  5181. box-shadow:none;
  5182. color:#AAAAAA;
  5183. }
  5184. #u42629.disabled {
  5185. }
  5186. .u42629_input_option {
  5187. }
  5188. #u42630_div {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:71px;
  5194. height:30px;
  5195. background:inherit;
  5196. background-color:rgba(255, 255, 255, 0);
  5197. border:none;
  5198. border-top:0px;
  5199. border-right:0px;
  5200. border-bottom:0px;
  5201. border-radius:0px;
  5202. border-top-left-radius:0px;
  5203. border-bottom-left-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:14px;
  5211. text-align:right;
  5212. }
  5213. #u42630 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:1705px;
  5217. top:321px;
  5218. width:71px;
  5219. height:30px;
  5220. display:flex;
  5221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5222. font-weight:400;
  5223. font-style:normal;
  5224. font-size:14px;
  5225. text-align:right;
  5226. }
  5227. #u42630 .text {
  5228. position:absolute;
  5229. align-self:center;
  5230. padding:5px 0px 5px 0px;
  5231. box-sizing:border-box;
  5232. width:100%;
  5233. }
  5234. #u42630_text {
  5235. border-width:0px;
  5236. white-space:nowrap;
  5237. text-transform:none;
  5238. }
  5239. #u42631_div {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:78px;
  5245. height:30px;
  5246. background:inherit;
  5247. background-color:rgba(255, 255, 255, 0);
  5248. border:none;
  5249. border-top:0px;
  5250. border-right:0px;
  5251. border-bottom:0px;
  5252. border-radius:0px;
  5253. border-top-left-radius:0px;
  5254. border-bottom-left-radius:0px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. font-size:14px;
  5262. text-align:right;
  5263. }
  5264. #u42631 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:1698px;
  5268. top:126px;
  5269. width:78px;
  5270. height:30px;
  5271. display:flex;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:14px;
  5276. text-align:right;
  5277. }
  5278. #u42631 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:5px 0px 5px 0px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u42631_text {
  5286. border-width:0px;
  5287. white-space:nowrap;
  5288. text-transform:none;
  5289. }
  5290. #u42632 {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:0px;
  5296. height:0px;
  5297. }
  5298. #u42633_div {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:400px;
  5304. height:40px;
  5305. background:inherit;
  5306. background-color:rgba(255, 255, 255, 1);
  5307. box-sizing:border-box;
  5308. border-width:1px;
  5309. border-style:solid;
  5310. border-color:rgba(170, 170, 170, 1);
  5311. border-radius:4px;
  5312. -moz-box-shadow:none;
  5313. -webkit-box-shadow:none;
  5314. box-shadow:none;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. text-align:left;
  5319. }
  5320. #u42633 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:1786px;
  5324. top:171px;
  5325. width:400px;
  5326. height:40px;
  5327. display:flex;
  5328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. text-align:left;
  5332. }
  5333. #u42633 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:2px 2px 2px 10px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u42633_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. visibility:hidden;
  5345. }
  5346. #u42634_input {
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:188px;
  5351. height:31px;
  5352. padding:2px 2px 2px 2px;
  5353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:13px;
  5357. letter-spacing:normal;
  5358. color:#AAAAAA;
  5359. vertical-align:none;
  5360. text-align:left;
  5361. text-transform:none;
  5362. background-color:transparent;
  5363. border-color:transparent;
  5364. }
  5365. #u42634_input.disabled {
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:188px;
  5370. height:31px;
  5371. padding:2px 2px 2px 2px;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:13px;
  5376. letter-spacing:normal;
  5377. color:#AAAAAA;
  5378. vertical-align:none;
  5379. text-align:left;
  5380. text-transform:none;
  5381. background-color:transparent;
  5382. border-color:transparent;
  5383. }
  5384. #u42634_div {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:188px;
  5390. height:31px;
  5391. background:inherit;
  5392. background-color:rgba(255, 255, 255, 0);
  5393. border:none;
  5394. border-radius:0px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. color:#AAAAAA;
  5402. }
  5403. #u42634 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:1796px;
  5407. top:176px;
  5408. width:188px;
  5409. height:31px;
  5410. display:flex;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. color:#AAAAAA;
  5415. }
  5416. #u42634 .text {
  5417. position:absolute;
  5418. align-self:center;
  5419. padding:2px 2px 2px 2px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u42634_div.disabled {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:188px;
  5429. height:31px;
  5430. background:inherit;
  5431. background-color:rgba(240, 240, 240, 1);
  5432. border:none;
  5433. border-radius:0px;
  5434. -moz-box-shadow:none;
  5435. -webkit-box-shadow:none;
  5436. box-shadow:none;
  5437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5438. font-weight:400;
  5439. font-style:normal;
  5440. color:#AAAAAA;
  5441. }
  5442. #u42634.disabled {
  5443. }
  5444. #u42635_div {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:78px;
  5450. height:30px;
  5451. background:inherit;
  5452. background-color:rgba(255, 255, 255, 0);
  5453. border:none;
  5454. border-top:0px;
  5455. border-right:0px;
  5456. border-bottom:0px;
  5457. border-radius:0px;
  5458. border-top-left-radius:0px;
  5459. border-bottom-left-radius:0px;
  5460. -moz-box-shadow:none;
  5461. -webkit-box-shadow:none;
  5462. box-shadow:none;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:14px;
  5467. text-align:right;
  5468. }
  5469. #u42635 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:1698px;
  5473. top:176px;
  5474. width:78px;
  5475. height:30px;
  5476. display:flex;
  5477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:14px;
  5481. text-align:right;
  5482. }
  5483. #u42635 .text {
  5484. position:absolute;
  5485. align-self:center;
  5486. padding:5px 0px 5px 0px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u42635_text {
  5491. border-width:0px;
  5492. white-space:nowrap;
  5493. text-transform:none;
  5494. }
  5495. #u42636_div {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:57px;
  5501. height:35px;
  5502. background:inherit;
  5503. background-color:rgba(255, 255, 255, 0);
  5504. border:none;
  5505. border-top:0px;
  5506. border-right:0px;
  5507. border-bottom:0px;
  5508. border-radius:0px;
  5509. border-top-left-radius:0px;
  5510. border-bottom-left-radius:0px;
  5511. -moz-box-shadow:none;
  5512. -webkit-box-shadow:none;
  5513. box-shadow:none;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:14px;
  5518. color:#1890FF;
  5519. }
  5520. #u42636 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:2196px;
  5524. top:126px;
  5525. width:57px;
  5526. height:35px;
  5527. display:flex;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:14px;
  5532. color:#1890FF;
  5533. }
  5534. #u42636 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:5px 0px 5px 0px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u42636_text {
  5542. border-width:0px;
  5543. white-space:nowrap;
  5544. text-transform:none;
  5545. }
  5546. #u42637 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:0px;
  5552. height:0px;
  5553. }
  5554. #u42638_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:400px;
  5560. height:40px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 1);
  5563. box-sizing:border-box;
  5564. border-width:1px;
  5565. border-style:solid;
  5566. border-color:rgba(170, 170, 170, 1);
  5567. border-radius:4px;
  5568. -moz-box-shadow:none;
  5569. -webkit-box-shadow:none;
  5570. box-shadow:none;
  5571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5572. font-weight:400;
  5573. font-style:normal;
  5574. text-align:left;
  5575. }
  5576. #u42638 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:1786px;
  5580. top:221px;
  5581. width:400px;
  5582. height:40px;
  5583. display:flex;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. text-align:left;
  5588. }
  5589. #u42638 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 2px 2px 10px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u42638_text {
  5597. border-width:0px;
  5598. word-wrap:break-word;
  5599. text-transform:none;
  5600. visibility:hidden;
  5601. }
  5602. #u42639_input {
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:188px;
  5607. height:31px;
  5608. padding:2px 2px 2px 2px;
  5609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:13px;
  5613. letter-spacing:normal;
  5614. color:#AAAAAA;
  5615. vertical-align:none;
  5616. text-align:left;
  5617. text-transform:none;
  5618. background-color:transparent;
  5619. border-color:transparent;
  5620. }
  5621. #u42639_input.disabled {
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:188px;
  5626. height:31px;
  5627. padding:2px 2px 2px 2px;
  5628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. font-size:13px;
  5632. letter-spacing:normal;
  5633. color:#AAAAAA;
  5634. vertical-align:none;
  5635. text-align:left;
  5636. text-transform:none;
  5637. background-color:transparent;
  5638. border-color:transparent;
  5639. }
  5640. #u42639_div {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:188px;
  5646. height:31px;
  5647. background:inherit;
  5648. background-color:rgba(255, 255, 255, 0);
  5649. border:none;
  5650. border-radius:0px;
  5651. -moz-box-shadow:none;
  5652. -webkit-box-shadow:none;
  5653. box-shadow:none;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. color:#AAAAAA;
  5658. }
  5659. #u42639 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:1796px;
  5663. top:226px;
  5664. width:188px;
  5665. height:31px;
  5666. display:flex;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. color:#AAAAAA;
  5671. }
  5672. #u42639 .text {
  5673. position:absolute;
  5674. align-self:center;
  5675. padding:2px 2px 2px 2px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u42639_div.disabled {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:188px;
  5685. height:31px;
  5686. background:inherit;
  5687. background-color:rgba(240, 240, 240, 1);
  5688. border:none;
  5689. border-radius:0px;
  5690. -moz-box-shadow:none;
  5691. -webkit-box-shadow:none;
  5692. box-shadow:none;
  5693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. color:#AAAAAA;
  5697. }
  5698. #u42639.disabled {
  5699. }
  5700. #u42640_div {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:57px;
  5706. height:30px;
  5707. background:inherit;
  5708. background-color:rgba(255, 255, 255, 0);
  5709. border:none;
  5710. border-top:0px;
  5711. border-right:0px;
  5712. border-bottom:0px;
  5713. border-radius:0px;
  5714. border-top-left-radius:0px;
  5715. border-bottom-left-radius:0px;
  5716. -moz-box-shadow:none;
  5717. -webkit-box-shadow:none;
  5718. box-shadow:none;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. text-align:right;
  5724. }
  5725. #u42640 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:1719px;
  5729. top:226px;
  5730. width:57px;
  5731. height:30px;
  5732. display:flex;
  5733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:14px;
  5737. text-align:right;
  5738. }
  5739. #u42640 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:5px 0px 5px 0px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u42640_text {
  5747. border-width:0px;
  5748. white-space:nowrap;
  5749. text-transform:none;
  5750. }
  5751. #u42641_div {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:60px;
  5757. height:30px;
  5758. background:inherit;
  5759. background-color:rgba(255, 255, 255, 1);
  5760. box-sizing:border-box;
  5761. border-width:1px;
  5762. border-style:solid;
  5763. border-color:rgba(170, 170, 170, 1);
  5764. border-radius:4px;
  5765. -moz-box-shadow:none;
  5766. -webkit-box-shadow:none;
  5767. box-shadow:none;
  5768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. }
  5773. #u42641 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:417px;
  5777. top:150px;
  5778. width:60px;
  5779. height:30px;
  5780. display:flex;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:14px;
  5785. }
  5786. #u42641 .text {
  5787. position:absolute;
  5788. align-self:center;
  5789. padding:2px 2px 2px 2px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u42641_text {
  5794. border-width:0px;
  5795. word-wrap:break-word;
  5796. text-transform:none;
  5797. }
  5798. #u42642_div {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:60px;
  5804. height:30px;
  5805. background:inherit;
  5806. background-color:rgba(255, 255, 255, 1);
  5807. box-sizing:border-box;
  5808. border-width:1px;
  5809. border-style:solid;
  5810. border-color:rgba(170, 170, 170, 1);
  5811. border-radius:4px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:14px;
  5819. }
  5820. #u42642 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:487px;
  5824. top:150px;
  5825. width:60px;
  5826. height:30px;
  5827. display:flex;
  5828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:14px;
  5832. }
  5833. #u42642 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 2px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u42642_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. }
  5845. #u42643 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:0px;
  5851. height:0px;
  5852. }
  5853. #u42644_div {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:140px;
  5859. height:30px;
  5860. background:inherit;
  5861. background-color:rgba(255, 255, 255, 1);
  5862. box-sizing:border-box;
  5863. border-width:1px;
  5864. border-style:solid;
  5865. border-color:rgba(201, 201, 201, 1);
  5866. border-radius:4px;
  5867. -moz-box-shadow:none;
  5868. -webkit-box-shadow:none;
  5869. box-shadow:none;
  5870. font-family:'Microsoft YaHei', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:14px;
  5874. color:#CCCCCC;
  5875. text-align:left;
  5876. }
  5877. #u42644 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:802px;
  5881. top:100px;
  5882. width:140px;
  5883. height:30px;
  5884. display:flex;
  5885. font-family:'Microsoft YaHei', sans-serif;
  5886. font-weight:400;
  5887. font-style:normal;
  5888. font-size:14px;
  5889. color:#CCCCCC;
  5890. text-align:left;
  5891. }
  5892. #u42644 .text {
  5893. position:absolute;
  5894. align-self:center;
  5895. padding:2px 8px 2px 8px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u42644_text {
  5900. border-width:0px;
  5901. word-wrap:break-word;
  5902. text-transform:none;
  5903. visibility:hidden;
  5904. }
  5905. #u42645_input {
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:131px;
  5910. height:28px;
  5911. padding:2px 2px 2px 2px;
  5912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:14px;
  5916. letter-spacing:normal;
  5917. color:#000000;
  5918. vertical-align:none;
  5919. text-align:left;
  5920. text-transform:none;
  5921. background-color:transparent;
  5922. border-color:transparent;
  5923. }
  5924. #u42645_input.disabled {
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:131px;
  5929. height:28px;
  5930. padding:2px 2px 2px 2px;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:14px;
  5935. letter-spacing:normal;
  5936. color:#000000;
  5937. vertical-align:none;
  5938. text-align:left;
  5939. text-transform:none;
  5940. background-color:transparent;
  5941. border-color:transparent;
  5942. }
  5943. #u42645_div {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:131px;
  5949. height:28px;
  5950. background:inherit;
  5951. background-color:rgba(255, 255, 255, 1);
  5952. border:none;
  5953. border-radius:0px;
  5954. -moz-box-shadow:none;
  5955. -webkit-box-shadow:none;
  5956. box-shadow:none;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:14px;
  5961. }
  5962. #u42645 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:807px;
  5966. top:101px;
  5967. width:131px;
  5968. height:28px;
  5969. display:flex;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:14px;
  5974. }
  5975. #u42645 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:2px 2px 2px 2px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u42645_div.disabled {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:131px;
  5988. height:28px;
  5989. background:inherit;
  5990. background-color:rgba(240, 240, 240, 1);
  5991. border:none;
  5992. border-radius:0px;
  5993. -moz-box-shadow:none;
  5994. -webkit-box-shadow:none;
  5995. box-shadow:none;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:14px;
  6000. }
  6001. #u42645.disabled {
  6002. }
  6003. #u42646 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:0px;
  6009. height:0px;
  6010. }
  6011. #u42647 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:0px;
  6017. height:0px;
  6018. }
  6019. #u42648_div {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:120px;
  6025. height:100px;
  6026. background:inherit;
  6027. background-color:rgba(255, 255, 255, 1);
  6028. box-sizing:border-box;
  6029. border-width:1px;
  6030. border-style:solid;
  6031. border-color:rgba(242, 242, 242, 1);
  6032. border-left:0px;
  6033. border-right:0px;
  6034. border-radius:3px;
  6035. border-top-left-radius:0px;
  6036. border-top-right-radius:0px;
  6037. border-bottom-right-radius:0px;
  6038. border-bottom-left-radius:0px;
  6039. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6040. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6041. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6042. }
  6043. #u42648 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:533px;
  6047. top:564px;
  6048. width:120px;
  6049. height:100px;
  6050. display:flex;
  6051. }
  6052. #u42648 .text {
  6053. position:absolute;
  6054. align-self:center;
  6055. padding:2px 2px 2px 2px;
  6056. box-sizing:border-box;
  6057. width:100%;
  6058. }
  6059. #u42648_text {
  6060. border-width:0px;
  6061. word-wrap:break-word;
  6062. text-transform:none;
  6063. visibility:hidden;
  6064. }
  6065. #u42649_div {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:100px;
  6071. height:40px;
  6072. background:inherit;
  6073. background-color:rgba(255, 255, 255, 1);
  6074. box-sizing:border-box;
  6075. border-width:1px;
  6076. border-style:solid;
  6077. border-color:rgba(242, 242, 242, 1);
  6078. border-left:0px;
  6079. border-top:0px;
  6080. border-right:0px;
  6081. border-radius:4px;
  6082. border-bottom-right-radius:0px;
  6083. border-bottom-left-radius:0px;
  6084. -moz-box-shadow:none;
  6085. -webkit-box-shadow:none;
  6086. box-shadow:none;
  6087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:14px;
  6091. }
  6092. #u42649 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:543px;
  6096. top:575px;
  6097. width:100px;
  6098. height:40px;
  6099. display:flex;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:14px;
  6104. }
  6105. #u42649 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:5px 0px 5px 0px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u42649_text {
  6113. border-width:0px;
  6114. word-wrap:break-word;
  6115. text-transform:none;
  6116. }
  6117. #u42650_div {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:100px;
  6123. height:40px;
  6124. background:inherit;
  6125. background-color:rgba(255, 255, 255, 1);
  6126. border:none;
  6127. border-left:0px;
  6128. border-top:0px;
  6129. border-right:0px;
  6130. border-radius:4px;
  6131. border-bottom-right-radius:0px;
  6132. border-bottom-left-radius:0px;
  6133. -moz-box-shadow:none;
  6134. -webkit-box-shadow:none;
  6135. box-shadow:none;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:14px;
  6140. }
  6141. #u42650 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:543px;
  6145. top:615px;
  6146. width:100px;
  6147. height:40px;
  6148. display:flex;
  6149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6150. font-weight:400;
  6151. font-style:normal;
  6152. font-size:14px;
  6153. }
  6154. #u42650 .text {
  6155. position:absolute;
  6156. align-self:center;
  6157. padding:5px 0px 5px 0px;
  6158. box-sizing:border-box;
  6159. width:100%;
  6160. }
  6161. #u42650_text {
  6162. border-width:0px;
  6163. word-wrap:break-word;
  6164. text-transform:none;
  6165. }
  6166. #u42651_div {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:59px;
  6172. height:30px;
  6173. background:inherit;
  6174. background-color:rgba(24, 144, 255, 1);
  6175. border:none;
  6176. border-radius:4px;
  6177. -moz-box-shadow:none;
  6178. -webkit-box-shadow:none;
  6179. box-shadow:none;
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:14px;
  6184. color:#FFFFFF;
  6185. }
  6186. #u42651 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:534px;
  6190. top:534px;
  6191. width:59px;
  6192. height:30px;
  6193. display:flex;
  6194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6195. font-weight:400;
  6196. font-style:normal;
  6197. font-size:14px;
  6198. color:#FFFFFF;
  6199. }
  6200. #u42651 .text {
  6201. position:absolute;
  6202. align-self:center;
  6203. padding:5px 15px 5px 15px;
  6204. box-sizing:border-box;
  6205. width:100%;
  6206. }
  6207. #u42651_text {
  6208. border-width:0px;
  6209. white-space:nowrap;
  6210. text-transform:none;
  6211. }
  6212. #u42652 {
  6213. border-width:0px;
  6214. position:absolute;
  6215. left:0px;
  6216. top:0px;
  6217. width:0px;
  6218. height:0px;
  6219. }
  6220. #u42653_div {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:200px;
  6226. height:1180px;
  6227. background:inherit;
  6228. background-color:rgba(255, 255, 255, 1);
  6229. border:none;
  6230. border-radius:0px;
  6231. -moz-box-shadow:none;
  6232. -webkit-box-shadow:none;
  6233. box-shadow:none;
  6234. }
  6235. #u42653 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:119px;
  6239. top:50px;
  6240. width:200px;
  6241. height:1180px;
  6242. display:flex;
  6243. }
  6244. #u42653 .text {
  6245. position:absolute;
  6246. align-self:center;
  6247. padding:2px 2px 2px 2px;
  6248. box-sizing:border-box;
  6249. width:100%;
  6250. }
  6251. #u42653_text {
  6252. border-width:0px;
  6253. word-wrap:break-word;
  6254. text-transform:none;
  6255. visibility:hidden;
  6256. }
  6257. #u42654_div {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:200px;
  6263. height:60px;
  6264. background:inherit;
  6265. background-color:rgba(224, 231, 247, 1);
  6266. border:none;
  6267. border-radius:0px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6272. font-weight:500;
  6273. font-style:normal;
  6274. font-size:18px;
  6275. }
  6276. #u42654 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:119px;
  6280. top:50px;
  6281. width:200px;
  6282. height:60px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6285. font-weight:500;
  6286. font-style:normal;
  6287. font-size:18px;
  6288. }
  6289. #u42654 .text {
  6290. position:absolute;
  6291. align-self:center;
  6292. padding:0px 0px 0px 20px;
  6293. box-sizing:border-box;
  6294. width:100%;
  6295. }
  6296. #u42654_text {
  6297. border-width:0px;
  6298. word-wrap:break-word;
  6299. text-transform:none;
  6300. }
  6301. #u42655_div {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:0px;
  6305. top:0px;
  6306. width:65px;
  6307. height:22px;
  6308. background:inherit;
  6309. background-color:rgba(255, 255, 255, 0);
  6310. border:none;
  6311. border-radius:0px;
  6312. -moz-box-shadow:none;
  6313. -webkit-box-shadow:none;
  6314. box-shadow:none;
  6315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6316. font-weight:400;
  6317. font-style:normal;
  6318. font-size:16px;
  6319. }
  6320. #u42655 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:146px;
  6324. top:250px;
  6325. width:65px;
  6326. height:22px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:16px;
  6332. }
  6333. #u42655 .text {
  6334. position:absolute;
  6335. align-self:flex-start;
  6336. padding:0px 0px 0px 0px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u42655_text {
  6341. border-width:0px;
  6342. white-space:nowrap;
  6343. text-transform:none;
  6344. }
  6345. #u42656_div {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:65px;
  6351. height:22px;
  6352. background:inherit;
  6353. background-color:rgba(255, 255, 255, 0);
  6354. border:none;
  6355. border-radius:0px;
  6356. -moz-box-shadow:none;
  6357. -webkit-box-shadow:none;
  6358. box-shadow:none;
  6359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6360. font-weight:400;
  6361. font-style:normal;
  6362. font-size:16px;
  6363. }
  6364. #u42656 {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:146px;
  6368. top:165px;
  6369. width:65px;
  6370. height:22px;
  6371. display:flex;
  6372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6373. font-weight:400;
  6374. font-style:normal;
  6375. font-size:16px;
  6376. }
  6377. #u42656 .text {
  6378. position:absolute;
  6379. align-self:flex-start;
  6380. padding:0px 0px 0px 0px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u42656_text {
  6385. border-width:0px;
  6386. white-space:nowrap;
  6387. text-transform:none;
  6388. }
  6389. #u42657_div {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:65px;
  6395. height:22px;
  6396. background:inherit;
  6397. background-color:rgba(255, 255, 255, 0);
  6398. border:none;
  6399. border-radius:0px;
  6400. -moz-box-shadow:none;
  6401. -webkit-box-shadow:none;
  6402. box-shadow:none;
  6403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:16px;
  6407. }
  6408. #u42657 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:146px;
  6412. top:207px;
  6413. width:65px;
  6414. height:22px;
  6415. display:flex;
  6416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:16px;
  6420. }
  6421. #u42657 .text {
  6422. position:absolute;
  6423. align-self:flex-start;
  6424. padding:0px 0px 0px 0px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u42657_text {
  6429. border-width:0px;
  6430. white-space:nowrap;
  6431. text-transform:none;
  6432. }
  6433. #u42658_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:49px;
  6439. height:17px;
  6440. background:inherit;
  6441. background-color:rgba(255, 255, 255, 0);
  6442. border:none;
  6443. border-radius:0px;
  6444. -moz-box-shadow:none;
  6445. -webkit-box-shadow:none;
  6446. box-shadow:none;
  6447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:12px;
  6451. color:#AAAAAA;
  6452. }
  6453. #u42658 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:146px;
  6457. top:129px;
  6458. width:49px;
  6459. height:17px;
  6460. display:flex;
  6461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:12px;
  6465. color:#AAAAAA;
  6466. }
  6467. #u42658 .text {
  6468. position:absolute;
  6469. align-self:flex-start;
  6470. padding:0px 0px 0px 0px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u42658_text {
  6475. border-width:0px;
  6476. white-space:nowrap;
  6477. text-transform:none;
  6478. }