styles.css 182 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2442px;
  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. #u4648 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u4649_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u4649 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u4649 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u4649_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u4650_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u4650 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u4650 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u4650_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u4651_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u4651 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u4651 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u4651_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u4652 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u4653 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u4653 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u4653_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u4653_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u4654_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u4654 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u4654 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u4654_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u4655_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u4655 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u4655 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u4655_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u4656 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u4657_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u4657 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u4657 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u4657_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u4658 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u4658 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u4658_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u4658_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u4659 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u4660_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u4660 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u4660 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u4660_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u4661 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u4661 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u4661_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u4661_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u4662 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u4663_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u4663 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u4663 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u4663_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u4664 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u4664 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u4664_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u4664_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u4665 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u4666_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u4666 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u4666 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u4666_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u4667 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u4667 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u4667_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u4667_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u4668 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u4669_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u4669 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u4669 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u4669_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u4670 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u4670 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u4670_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u4670_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u4671 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u4672_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u4672 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u4672 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u4672_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u4673 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u4673 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u4673_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u4673_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u4674 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u4675_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u4675 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u4675 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u4675_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u4676 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u4676 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u4676_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u4676_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u4677 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u4678_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u4678 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u4678 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u4678_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u4679 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u4679 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u4679_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u4679_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u4680 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u4681_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u4681 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u4681 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u4681_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u4682 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u4682 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u4682_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u4682_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u4683 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u4684_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u4684 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u4684 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u4684_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u4685 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u4685 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u4685_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u4685_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u4686 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u4687_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u4687 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u4687 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u4687_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u4688 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u4688 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u4688_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u4688_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u4689 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u4690_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:'ArialMT', 'Arial', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u4690_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:'ArialMT', 'Arial', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u4690_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u4690 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u4690 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u4690_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u4690.disabled {
  1294. }
  1295. .u4690_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u4691 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u4691 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u4691_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u4691_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u4692_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u4692 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u4692 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u4692_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u4693 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u4693 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u4693_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u4693_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u4694 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u4695_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u4695 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u4695 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u4695_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u4696 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u4696 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u4696_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u4696_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u4697 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u4697 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u4697_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u4697_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u4698 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u4698 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u4698_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u4698_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u4699 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u4699 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u4699_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u4699_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u4700 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u4701_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u4701 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u4701 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u4701_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u4702 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u4702 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u4702_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u4702_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u4703_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1258px;
  1673. height:1190px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1678. transition:none;
  1679. }
  1680. #u4703 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:331px;
  1684. top:50px;
  1685. width:1258px;
  1686. height:1190px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u4703 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u4703_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u4704 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:362px;
  1708. top:182px;
  1709. width:1209px;
  1710. height:170px;
  1711. }
  1712. #u4705 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:120px;
  1718. height:34px;
  1719. display:flex;
  1720. transition:none;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:14px;
  1725. color:#FFFFFF;
  1726. text-align:left;
  1727. line-height:30px;
  1728. }
  1729. #u4705 .text {
  1730. position:absolute;
  1731. align-self:center;
  1732. padding:2px 10px 2px 10px;
  1733. box-sizing:border-box;
  1734. width:100%;
  1735. }
  1736. #u4705_img {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:120px;
  1742. height:34px;
  1743. }
  1744. #u4705_text {
  1745. border-width:0px;
  1746. word-wrap:break-word;
  1747. text-transform:none;
  1748. }
  1749. #u4706 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:120px;
  1753. top:0px;
  1754. width:100px;
  1755. height:34px;
  1756. display:flex;
  1757. transition:none;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:14px;
  1762. color:#FFFFFF;
  1763. text-align:left;
  1764. line-height:30px;
  1765. }
  1766. #u4706 .text {
  1767. position:absolute;
  1768. align-self:center;
  1769. padding:2px 10px 2px 10px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u4706_img {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:100px;
  1779. height:34px;
  1780. }
  1781. #u4706_text {
  1782. border-width:0px;
  1783. word-wrap:break-word;
  1784. text-transform:none;
  1785. }
  1786. #u4707 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:220px;
  1790. top:0px;
  1791. width:100px;
  1792. height:34px;
  1793. display:flex;
  1794. transition:none;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:14px;
  1799. color:#FFFFFF;
  1800. text-align:left;
  1801. line-height:30px;
  1802. }
  1803. #u4707 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 10px 2px 10px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u4707_img {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:100px;
  1816. height:34px;
  1817. }
  1818. #u4707_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u4708 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:320px;
  1827. top:0px;
  1828. width:109px;
  1829. height:34px;
  1830. display:flex;
  1831. transition:none;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:14px;
  1836. color:#FFFFFF;
  1837. text-align:left;
  1838. line-height:30px;
  1839. }
  1840. #u4708 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 10px 2px 10px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u4708_img {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:109px;
  1853. height:34px;
  1854. }
  1855. #u4708_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. }
  1860. #u4709 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:429px;
  1864. top:0px;
  1865. width:100px;
  1866. height:34px;
  1867. display:flex;
  1868. transition:none;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:14px;
  1873. color:#FFFFFF;
  1874. text-align:left;
  1875. line-height:30px;
  1876. }
  1877. #u4709 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:2px 10px 2px 10px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u4709_img {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:100px;
  1890. height:34px;
  1891. }
  1892. #u4709_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. }
  1897. #u4710 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:529px;
  1901. top:0px;
  1902. width:100px;
  1903. height:34px;
  1904. display:flex;
  1905. transition:none;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:14px;
  1910. color:#FFFFFF;
  1911. text-align:left;
  1912. line-height:30px;
  1913. }
  1914. #u4710 .text {
  1915. position:absolute;
  1916. align-self:center;
  1917. padding:2px 10px 2px 10px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u4710_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:100px;
  1927. height:34px;
  1928. }
  1929. #u4710_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. }
  1934. #u4711 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:629px;
  1938. top:0px;
  1939. width:100px;
  1940. height:34px;
  1941. display:flex;
  1942. transition:none;
  1943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:14px;
  1947. color:#FFFFFF;
  1948. text-align:left;
  1949. line-height:30px;
  1950. }
  1951. #u4711 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 10px 2px 10px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u4711_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:100px;
  1964. height:34px;
  1965. }
  1966. #u4711_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. }
  1971. #u4712 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:729px;
  1975. top:0px;
  1976. width:100px;
  1977. height:34px;
  1978. display:flex;
  1979. transition:none;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:14px;
  1984. color:#FFFFFF;
  1985. text-align:left;
  1986. line-height:30px;
  1987. }
  1988. #u4712 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 10px 2px 10px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u4712_img {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:100px;
  2001. height:34px;
  2002. }
  2003. #u4712_text {
  2004. border-width:0px;
  2005. word-wrap:break-word;
  2006. text-transform:none;
  2007. }
  2008. #u4713 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:829px;
  2012. top:0px;
  2013. width:100px;
  2014. height:34px;
  2015. display:flex;
  2016. transition:none;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:14px;
  2021. color:#FFFFFF;
  2022. text-align:left;
  2023. line-height:30px;
  2024. }
  2025. #u4713 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 10px 2px 10px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u4713_img {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:100px;
  2038. height:34px;
  2039. }
  2040. #u4713_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u4714 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:929px;
  2049. top:0px;
  2050. width:100px;
  2051. height:34px;
  2052. display:flex;
  2053. transition:none;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:14px;
  2058. color:#FFFFFF;
  2059. text-align:left;
  2060. line-height:30px;
  2061. }
  2062. #u4714 .text {
  2063. position:absolute;
  2064. align-self:center;
  2065. padding:2px 10px 2px 10px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u4714_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:100px;
  2075. height:34px;
  2076. }
  2077. #u4714_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. }
  2082. #u4715 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:1029px;
  2086. top:0px;
  2087. width:100px;
  2088. height:34px;
  2089. display:flex;
  2090. transition:none;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:14px;
  2095. color:#FFFFFF;
  2096. text-align:left;
  2097. line-height:30px;
  2098. }
  2099. #u4715 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:2px 10px 2px 10px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u4715_img {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:100px;
  2112. height:34px;
  2113. }
  2114. #u4715_text {
  2115. border-width:0px;
  2116. word-wrap:break-word;
  2117. text-transform:none;
  2118. }
  2119. #u4716 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:1129px;
  2123. top:0px;
  2124. width:80px;
  2125. height:34px;
  2126. display:flex;
  2127. transition:none;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:14px;
  2132. color:#FFFFFF;
  2133. text-align:left;
  2134. line-height:30px;
  2135. }
  2136. #u4716 .text {
  2137. position:absolute;
  2138. align-self:center;
  2139. padding:2px 10px 2px 10px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u4716_img {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:80px;
  2149. height:34px;
  2150. }
  2151. #u4716_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. }
  2156. #u4717 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:34px;
  2161. width:120px;
  2162. height:34px;
  2163. display:flex;
  2164. transition:none;
  2165. font-size:14px;
  2166. text-align:left;
  2167. line-height:30px;
  2168. }
  2169. #u4717 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 10px 2px 10px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u4717_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:120px;
  2182. height:34px;
  2183. }
  2184. #u4717_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u4718 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:120px;
  2194. top:34px;
  2195. width:100px;
  2196. height:34px;
  2197. display:flex;
  2198. transition:none;
  2199. font-size:14px;
  2200. text-align:left;
  2201. line-height:30px;
  2202. }
  2203. #u4718 .text {
  2204. position:absolute;
  2205. align-self:center;
  2206. padding:2px 10px 2px 10px;
  2207. box-sizing:border-box;
  2208. width:100%;
  2209. }
  2210. #u4718_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:100px;
  2216. height:34px;
  2217. }
  2218. #u4718_text {
  2219. border-width:0px;
  2220. word-wrap:break-word;
  2221. text-transform:none;
  2222. visibility:hidden;
  2223. }
  2224. #u4719 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:220px;
  2228. top:34px;
  2229. width:100px;
  2230. height:34px;
  2231. display:flex;
  2232. transition:none;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:14px;
  2237. text-align:left;
  2238. line-height:30px;
  2239. }
  2240. #u4719 .text {
  2241. position:absolute;
  2242. align-self:center;
  2243. padding:2px 10px 2px 10px;
  2244. box-sizing:border-box;
  2245. width:100%;
  2246. }
  2247. #u4719_img {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:100px;
  2253. height:34px;
  2254. }
  2255. #u4719_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. }
  2260. #u4720 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:320px;
  2264. top:34px;
  2265. width:109px;
  2266. height:34px;
  2267. display:flex;
  2268. transition:none;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:14px;
  2273. text-align:left;
  2274. line-height:30px;
  2275. }
  2276. #u4720 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:2px 10px 2px 10px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u4720_img {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:109px;
  2289. height:34px;
  2290. }
  2291. #u4720_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u4721 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:429px;
  2300. top:34px;
  2301. width:100px;
  2302. height:34px;
  2303. display:flex;
  2304. transition:none;
  2305. font-size:14px;
  2306. text-align:left;
  2307. line-height:30px;
  2308. }
  2309. #u4721 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:2px 10px 2px 10px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u4721_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:100px;
  2322. height:34px;
  2323. }
  2324. #u4721_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. visibility:hidden;
  2329. }
  2330. #u4722 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:529px;
  2334. top:34px;
  2335. width:100px;
  2336. height:34px;
  2337. display:flex;
  2338. transition:none;
  2339. font-size:14px;
  2340. text-align:left;
  2341. line-height:30px;
  2342. }
  2343. #u4722 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:2px 10px 2px 10px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u4722_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:100px;
  2356. height:34px;
  2357. }
  2358. #u4722_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. visibility:hidden;
  2363. }
  2364. #u4723 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:629px;
  2368. top:34px;
  2369. width:100px;
  2370. height:34px;
  2371. display:flex;
  2372. transition:none;
  2373. font-size:14px;
  2374. text-align:left;
  2375. line-height:30px;
  2376. }
  2377. #u4723 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:2px 10px 2px 10px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u4723_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:100px;
  2390. height:34px;
  2391. }
  2392. #u4723_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. visibility:hidden;
  2397. }
  2398. #u4724 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:729px;
  2402. top:34px;
  2403. width:100px;
  2404. height:34px;
  2405. display:flex;
  2406. transition:none;
  2407. font-size:14px;
  2408. text-align:left;
  2409. line-height:30px;
  2410. }
  2411. #u4724 .text {
  2412. position:absolute;
  2413. align-self:center;
  2414. padding:2px 10px 2px 10px;
  2415. box-sizing:border-box;
  2416. width:100%;
  2417. }
  2418. #u4724_img {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:100px;
  2424. height:34px;
  2425. }
  2426. #u4724_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. visibility:hidden;
  2431. }
  2432. #u4725 {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:829px;
  2436. top:34px;
  2437. width:100px;
  2438. height:34px;
  2439. display:flex;
  2440. transition:none;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:14px;
  2445. text-align:left;
  2446. line-height:30px;
  2447. }
  2448. #u4725 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 10px 2px 10px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u4725_img {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:100px;
  2461. height:34px;
  2462. }
  2463. #u4725_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u4726 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:929px;
  2472. top:34px;
  2473. width:100px;
  2474. height:34px;
  2475. display:flex;
  2476. transition:none;
  2477. font-size:14px;
  2478. text-align:left;
  2479. line-height:30px;
  2480. }
  2481. #u4726 .text {
  2482. position:absolute;
  2483. align-self:center;
  2484. padding:2px 10px 2px 10px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u4726_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:100px;
  2494. height:34px;
  2495. }
  2496. #u4726_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. visibility:hidden;
  2501. }
  2502. #u4727 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:1029px;
  2506. top:34px;
  2507. width:100px;
  2508. height:34px;
  2509. display:flex;
  2510. transition:none;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:14px;
  2515. text-align:left;
  2516. line-height:30px;
  2517. }
  2518. #u4727 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 10px 2px 10px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u4727_img {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:100px;
  2531. height:34px;
  2532. }
  2533. #u4727_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. }
  2538. #u4728 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:1129px;
  2542. top:34px;
  2543. width:80px;
  2544. height:34px;
  2545. display:flex;
  2546. transition:none;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. color:#1890FF;
  2552. text-align:left;
  2553. line-height:30px;
  2554. }
  2555. #u4728 .text {
  2556. position:absolute;
  2557. align-self:center;
  2558. padding:2px 10px 2px 10px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u4728_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:80px;
  2568. height:34px;
  2569. }
  2570. #u4728_text {
  2571. border-width:0px;
  2572. word-wrap:break-word;
  2573. text-transform:none;
  2574. }
  2575. #u4729 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:68px;
  2580. width:120px;
  2581. height:34px;
  2582. display:flex;
  2583. transition:none;
  2584. font-size:14px;
  2585. text-align:left;
  2586. line-height:30px;
  2587. }
  2588. #u4729 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 10px 2px 10px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u4729_img {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:120px;
  2601. height:34px;
  2602. }
  2603. #u4729_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. visibility:hidden;
  2608. }
  2609. #u4730 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:120px;
  2613. top:68px;
  2614. width:100px;
  2615. height:34px;
  2616. display:flex;
  2617. transition:none;
  2618. font-size:14px;
  2619. text-align:left;
  2620. line-height:30px;
  2621. }
  2622. #u4730 .text {
  2623. position:absolute;
  2624. align-self:center;
  2625. padding:2px 10px 2px 10px;
  2626. box-sizing:border-box;
  2627. width:100%;
  2628. }
  2629. #u4730_img {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:100px;
  2635. height:34px;
  2636. }
  2637. #u4730_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. visibility:hidden;
  2642. }
  2643. #u4731 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:220px;
  2647. top:68px;
  2648. width:100px;
  2649. height:34px;
  2650. display:flex;
  2651. transition:none;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:14px;
  2656. text-align:left;
  2657. line-height:30px;
  2658. }
  2659. #u4731 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 10px 2px 10px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u4731_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:100px;
  2672. height:34px;
  2673. }
  2674. #u4731_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. }
  2679. #u4732 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:320px;
  2683. top:68px;
  2684. width:109px;
  2685. height:34px;
  2686. display:flex;
  2687. transition:none;
  2688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:14px;
  2692. text-align:left;
  2693. line-height:30px;
  2694. }
  2695. #u4732 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 10px 2px 10px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u4732_img {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:109px;
  2708. height:34px;
  2709. }
  2710. #u4732_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u4733 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:429px;
  2719. top:68px;
  2720. width:100px;
  2721. height:34px;
  2722. display:flex;
  2723. transition:none;
  2724. font-size:14px;
  2725. text-align:left;
  2726. line-height:30px;
  2727. }
  2728. #u4733 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 10px 2px 10px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u4733_img {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:100px;
  2741. height:34px;
  2742. }
  2743. #u4733_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. visibility:hidden;
  2748. }
  2749. #u4734 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:529px;
  2753. top:68px;
  2754. width:100px;
  2755. height:34px;
  2756. display:flex;
  2757. transition:none;
  2758. font-size:14px;
  2759. text-align:left;
  2760. line-height:30px;
  2761. }
  2762. #u4734 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 10px 2px 10px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u4734_img {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:0px;
  2773. top:0px;
  2774. width:100px;
  2775. height:34px;
  2776. }
  2777. #u4734_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u4735 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:629px;
  2787. top:68px;
  2788. width:100px;
  2789. height:34px;
  2790. display:flex;
  2791. transition:none;
  2792. font-size:14px;
  2793. text-align:left;
  2794. line-height:30px;
  2795. }
  2796. #u4735 .text {
  2797. position:absolute;
  2798. align-self:center;
  2799. padding:2px 10px 2px 10px;
  2800. box-sizing:border-box;
  2801. width:100%;
  2802. }
  2803. #u4735_img {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:100px;
  2809. height:34px;
  2810. }
  2811. #u4735_text {
  2812. border-width:0px;
  2813. word-wrap:break-word;
  2814. text-transform:none;
  2815. visibility:hidden;
  2816. }
  2817. #u4736 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:729px;
  2821. top:68px;
  2822. width:100px;
  2823. height:34px;
  2824. display:flex;
  2825. transition:none;
  2826. font-size:14px;
  2827. text-align:left;
  2828. line-height:30px;
  2829. }
  2830. #u4736 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 10px 2px 10px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u4736_img {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:100px;
  2843. height:34px;
  2844. }
  2845. #u4736_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u4737 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:829px;
  2855. top:68px;
  2856. width:100px;
  2857. height:34px;
  2858. display:flex;
  2859. transition:none;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:14px;
  2864. text-align:left;
  2865. line-height:30px;
  2866. }
  2867. #u4737 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 10px 2px 10px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u4737_img {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:100px;
  2880. height:34px;
  2881. }
  2882. #u4737_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. }
  2887. #u4738 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:929px;
  2891. top:68px;
  2892. width:100px;
  2893. height:34px;
  2894. display:flex;
  2895. transition:none;
  2896. font-size:14px;
  2897. text-align:left;
  2898. line-height:30px;
  2899. }
  2900. #u4738 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 10px 2px 10px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u4738_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:100px;
  2913. height:34px;
  2914. }
  2915. #u4738_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u4739 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:1029px;
  2925. top:68px;
  2926. width:100px;
  2927. height:34px;
  2928. display:flex;
  2929. transition:none;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:14px;
  2934. text-align:left;
  2935. line-height:30px;
  2936. }
  2937. #u4739 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 10px 2px 10px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u4739_img {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:100px;
  2950. height:34px;
  2951. }
  2952. #u4739_text {
  2953. border-width:0px;
  2954. word-wrap:break-word;
  2955. text-transform:none;
  2956. }
  2957. #u4740 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:1129px;
  2961. top:68px;
  2962. width:80px;
  2963. height:34px;
  2964. display:flex;
  2965. transition:none;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:14px;
  2970. color:#1890FF;
  2971. text-align:left;
  2972. line-height:30px;
  2973. }
  2974. #u4740 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:2px 10px 2px 10px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u4740_img {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:80px;
  2987. height:34px;
  2988. }
  2989. #u4740_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. }
  2994. #u4741 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:102px;
  2999. width:120px;
  3000. height:34px;
  3001. display:flex;
  3002. transition:none;
  3003. font-size:14px;
  3004. text-align:left;
  3005. line-height:30px;
  3006. }
  3007. #u4741 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:2px 10px 2px 10px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u4741_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:120px;
  3020. height:34px;
  3021. }
  3022. #u4741_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. visibility:hidden;
  3027. }
  3028. #u4742 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:120px;
  3032. top:102px;
  3033. width:100px;
  3034. height:34px;
  3035. display:flex;
  3036. transition:none;
  3037. font-size:14px;
  3038. text-align:left;
  3039. line-height:30px;
  3040. }
  3041. #u4742 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 10px 2px 10px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u4742_img {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:100px;
  3054. height:34px;
  3055. }
  3056. #u4742_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u4743 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:220px;
  3066. top:102px;
  3067. width:100px;
  3068. height:34px;
  3069. display:flex;
  3070. transition:none;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:14px;
  3075. text-align:left;
  3076. line-height:30px;
  3077. }
  3078. #u4743 .text {
  3079. position:absolute;
  3080. align-self:center;
  3081. padding:2px 10px 2px 10px;
  3082. box-sizing:border-box;
  3083. width:100%;
  3084. }
  3085. #u4743_img {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:100px;
  3091. height:34px;
  3092. }
  3093. #u4743_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u4744 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:320px;
  3103. top:102px;
  3104. width:109px;
  3105. height:34px;
  3106. display:flex;
  3107. transition:none;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. text-align:left;
  3113. line-height:30px;
  3114. }
  3115. #u4744 .text {
  3116. position:absolute;
  3117. align-self:center;
  3118. padding:2px 10px 2px 10px;
  3119. box-sizing:border-box;
  3120. width:100%;
  3121. }
  3122. #u4744_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:109px;
  3128. height:34px;
  3129. }
  3130. #u4744_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u4745 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:429px;
  3140. top:102px;
  3141. width:100px;
  3142. height:34px;
  3143. display:flex;
  3144. transition:none;
  3145. font-size:14px;
  3146. text-align:left;
  3147. line-height:30px;
  3148. }
  3149. #u4745 .text {
  3150. position:absolute;
  3151. align-self:center;
  3152. padding:2px 10px 2px 10px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u4745_img {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:100px;
  3162. height:34px;
  3163. }
  3164. #u4745_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u4746 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:529px;
  3174. top:102px;
  3175. width:100px;
  3176. height:34px;
  3177. display:flex;
  3178. transition:none;
  3179. font-size:14px;
  3180. text-align:left;
  3181. line-height:30px;
  3182. }
  3183. #u4746 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 10px 2px 10px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u4746_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:100px;
  3196. height:34px;
  3197. }
  3198. #u4746_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u4747 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:629px;
  3208. top:102px;
  3209. width:100px;
  3210. height:34px;
  3211. display:flex;
  3212. transition:none;
  3213. font-size:14px;
  3214. text-align:left;
  3215. line-height:30px;
  3216. }
  3217. #u4747 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:2px 10px 2px 10px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u4747_img {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:100px;
  3230. height:34px;
  3231. }
  3232. #u4747_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u4748 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:729px;
  3242. top:102px;
  3243. width:100px;
  3244. height:34px;
  3245. display:flex;
  3246. transition:none;
  3247. font-size:14px;
  3248. text-align:left;
  3249. line-height:30px;
  3250. }
  3251. #u4748 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:2px 10px 2px 10px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u4748_img {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:100px;
  3264. height:34px;
  3265. }
  3266. #u4748_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. visibility:hidden;
  3271. }
  3272. #u4749 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:829px;
  3276. top:102px;
  3277. width:100px;
  3278. height:34px;
  3279. display:flex;
  3280. transition:none;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:14px;
  3285. text-align:left;
  3286. line-height:30px;
  3287. }
  3288. #u4749 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 10px 2px 10px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u4749_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:100px;
  3301. height:34px;
  3302. }
  3303. #u4749_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. }
  3308. #u4750 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:929px;
  3312. top:102px;
  3313. width:100px;
  3314. height:34px;
  3315. display:flex;
  3316. transition:none;
  3317. font-size:14px;
  3318. text-align:left;
  3319. line-height:30px;
  3320. }
  3321. #u4750 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 10px 2px 10px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u4750_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:100px;
  3334. height:34px;
  3335. }
  3336. #u4750_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u4751 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:1029px;
  3346. top:102px;
  3347. width:100px;
  3348. height:34px;
  3349. display:flex;
  3350. transition:none;
  3351. font-size:14px;
  3352. text-align:left;
  3353. line-height:30px;
  3354. }
  3355. #u4751 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 10px 2px 10px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u4751_img {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:100px;
  3368. height:34px;
  3369. }
  3370. #u4751_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. visibility:hidden;
  3375. }
  3376. #u4752 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:1129px;
  3380. top:102px;
  3381. width:80px;
  3382. height:34px;
  3383. display:flex;
  3384. transition:none;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:14px;
  3389. color:#1890FF;
  3390. text-align:left;
  3391. line-height:30px;
  3392. }
  3393. #u4752 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 10px 2px 10px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u4752_img {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:80px;
  3406. height:34px;
  3407. }
  3408. #u4752_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. }
  3413. #u4753 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:136px;
  3418. width:120px;
  3419. height:34px;
  3420. display:flex;
  3421. transition:none;
  3422. font-size:14px;
  3423. text-align:left;
  3424. line-height:30px;
  3425. }
  3426. #u4753 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 10px 2px 10px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u4753_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:120px;
  3439. height:34px;
  3440. }
  3441. #u4753_text {
  3442. border-width:0px;
  3443. word-wrap:break-word;
  3444. text-transform:none;
  3445. visibility:hidden;
  3446. }
  3447. #u4754 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:120px;
  3451. top:136px;
  3452. width:100px;
  3453. height:34px;
  3454. display:flex;
  3455. transition:none;
  3456. font-size:14px;
  3457. text-align:left;
  3458. line-height:30px;
  3459. }
  3460. #u4754 .text {
  3461. position:absolute;
  3462. align-self:center;
  3463. padding:2px 10px 2px 10px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u4754_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:100px;
  3473. height:34px;
  3474. }
  3475. #u4754_text {
  3476. border-width:0px;
  3477. word-wrap:break-word;
  3478. text-transform:none;
  3479. visibility:hidden;
  3480. }
  3481. #u4755 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:220px;
  3485. top:136px;
  3486. width:100px;
  3487. height:34px;
  3488. display:flex;
  3489. transition:none;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:14px;
  3494. text-align:left;
  3495. line-height:30px;
  3496. }
  3497. #u4755 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 10px 2px 10px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u4755_img {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:100px;
  3510. height:34px;
  3511. }
  3512. #u4755_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u4756 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:320px;
  3522. top:136px;
  3523. width:109px;
  3524. height:34px;
  3525. display:flex;
  3526. transition:none;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:14px;
  3531. text-align:left;
  3532. line-height:30px;
  3533. }
  3534. #u4756 .text {
  3535. position:absolute;
  3536. align-self:center;
  3537. padding:2px 10px 2px 10px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u4756_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:109px;
  3547. height:34px;
  3548. }
  3549. #u4756_text {
  3550. border-width:0px;
  3551. word-wrap:break-word;
  3552. text-transform:none;
  3553. visibility:hidden;
  3554. }
  3555. #u4757 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:429px;
  3559. top:136px;
  3560. width:100px;
  3561. height:34px;
  3562. display:flex;
  3563. transition:none;
  3564. font-size:14px;
  3565. text-align:left;
  3566. line-height:30px;
  3567. }
  3568. #u4757 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 10px 2px 10px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u4757_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:100px;
  3581. height:34px;
  3582. }
  3583. #u4757_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u4758 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:529px;
  3593. top:136px;
  3594. width:100px;
  3595. height:34px;
  3596. display:flex;
  3597. transition:none;
  3598. font-size:14px;
  3599. text-align:left;
  3600. line-height:30px;
  3601. }
  3602. #u4758 .text {
  3603. position:absolute;
  3604. align-self:center;
  3605. padding:2px 10px 2px 10px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u4758_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:100px;
  3615. height:34px;
  3616. }
  3617. #u4758_text {
  3618. border-width:0px;
  3619. word-wrap:break-word;
  3620. text-transform:none;
  3621. visibility:hidden;
  3622. }
  3623. #u4759 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:629px;
  3627. top:136px;
  3628. width:100px;
  3629. height:34px;
  3630. display:flex;
  3631. transition:none;
  3632. font-size:14px;
  3633. text-align:left;
  3634. line-height:30px;
  3635. }
  3636. #u4759 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:2px 10px 2px 10px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u4759_img {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:100px;
  3649. height:34px;
  3650. }
  3651. #u4759_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u4760 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:729px;
  3661. top:136px;
  3662. width:100px;
  3663. height:34px;
  3664. display:flex;
  3665. transition:none;
  3666. font-size:14px;
  3667. text-align:left;
  3668. line-height:30px;
  3669. }
  3670. #u4760 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 10px 2px 10px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u4760_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:100px;
  3683. height:34px;
  3684. }
  3685. #u4760_text {
  3686. border-width:0px;
  3687. word-wrap:break-word;
  3688. text-transform:none;
  3689. visibility:hidden;
  3690. }
  3691. #u4761 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:829px;
  3695. top:136px;
  3696. width:100px;
  3697. height:34px;
  3698. display:flex;
  3699. transition:none;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:14px;
  3704. text-align:left;
  3705. line-height:30px;
  3706. }
  3707. #u4761 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 10px 2px 10px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u4761_img {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:0px;
  3718. top:0px;
  3719. width:100px;
  3720. height:34px;
  3721. }
  3722. #u4761_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. }
  3727. #u4762 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:929px;
  3731. top:136px;
  3732. width:100px;
  3733. height:34px;
  3734. display:flex;
  3735. transition:none;
  3736. font-size:14px;
  3737. text-align:left;
  3738. line-height:30px;
  3739. }
  3740. #u4762 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 10px 2px 10px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u4762_img {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:100px;
  3753. height:34px;
  3754. }
  3755. #u4762_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u4763 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:1029px;
  3765. top:136px;
  3766. width:100px;
  3767. height:34px;
  3768. display:flex;
  3769. transition:none;
  3770. font-size:14px;
  3771. text-align:left;
  3772. line-height:30px;
  3773. }
  3774. #u4763 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:2px 10px 2px 10px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u4763_img {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:100px;
  3787. height:34px;
  3788. }
  3789. #u4763_text {
  3790. border-width:0px;
  3791. word-wrap:break-word;
  3792. text-transform:none;
  3793. visibility:hidden;
  3794. }
  3795. #u4764 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:1129px;
  3799. top:136px;
  3800. width:80px;
  3801. height:34px;
  3802. display:flex;
  3803. transition:none;
  3804. font-size:14px;
  3805. color:#1890FF;
  3806. text-align:left;
  3807. line-height:30px;
  3808. }
  3809. #u4764 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 10px 2px 10px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u4764_img {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:80px;
  3822. height:34px;
  3823. }
  3824. #u4764_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u4765_div {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:73px;
  3836. height:50px;
  3837. background:inherit;
  3838. background-color:rgba(255, 255, 255, 0);
  3839. border-radius:0px;
  3840. filter:drop-shadow(none);
  3841. transition:none;
  3842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. font-size:18px;
  3846. }
  3847. #u4765 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:362px;
  3851. top:50px;
  3852. width:73px;
  3853. height:50px;
  3854. display:flex;
  3855. transition:none;
  3856. transform-origin:50% 50%;
  3857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:18px;
  3861. }
  3862. #u4765 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:0px 0px 0px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u4765_text {
  3870. border-width:0px;
  3871. white-space:nowrap;
  3872. text-transform:none;
  3873. }
  3874. #u4766 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:0px;
  3880. height:0px;
  3881. }
  3882. #u4767_div {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:100px;
  3888. height:140px;
  3889. background:inherit;
  3890. background-color:rgba(255, 255, 255, 1);
  3891. box-sizing:border-box;
  3892. border-width:1px;
  3893. border-style:solid;
  3894. border-color:rgba(242, 242, 242, 1);
  3895. border-radius:4px;
  3896. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  3897. transition:none;
  3898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:14px;
  3902. text-align:left;
  3903. }
  3904. #u4767 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:1395px;
  3908. top:315px;
  3909. width:100px;
  3910. height:140px;
  3911. display:flex;
  3912. transition:none;
  3913. transform-origin:50% 50%;
  3914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:14px;
  3918. text-align:left;
  3919. }
  3920. #u4767 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 2px 2px 2px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u4767_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u4768_div {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:85px;
  3939. height:40px;
  3940. background:inherit;
  3941. background-color:rgba(255, 255, 255, 1);
  3942. box-sizing:border-box;
  3943. border-width:1px;
  3944. border-style:solid;
  3945. border-color:rgba(215, 215, 215, 1);
  3946. border-left:0px;
  3947. border-top:0px;
  3948. border-right:0px;
  3949. border-radius:0px;
  3950. border-bottom-right-radius:0px;
  3951. border-bottom-left-radius:0px;
  3952. filter:drop-shadow(none);
  3953. transition:none;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:14px;
  3958. }
  3959. #u4768 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:1402px;
  3963. top:365px;
  3964. width:85px;
  3965. height:40px;
  3966. display:flex;
  3967. transition:none;
  3968. transform-origin:50% 50%;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:14px;
  3973. }
  3974. #u4768 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:2px 2px 2px 2px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u4768_text {
  3982. border-width:0px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. }
  3986. #u4769_div {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:85px;
  3992. height:40px;
  3993. background:inherit;
  3994. background-color:rgba(255, 255, 255, 1);
  3995. box-sizing:border-box;
  3996. border-width:1px;
  3997. border-style:solid;
  3998. border-color:rgba(215, 215, 215, 1);
  3999. border-left:0px;
  4000. border-top:0px;
  4001. border-right:0px;
  4002. border-radius:0px;
  4003. border-bottom-right-radius:0px;
  4004. border-bottom-left-radius:0px;
  4005. filter:drop-shadow(none);
  4006. transition:none;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:14px;
  4011. }
  4012. #u4769 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:1402px;
  4016. top:325px;
  4017. width:85px;
  4018. height:40px;
  4019. display:flex;
  4020. transition:none;
  4021. transform-origin:50% 50%;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:14px;
  4026. }
  4027. #u4769 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 2px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u4769_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. }
  4039. #u4770_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:85px;
  4045. height:40px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 1);
  4048. border-left:0px;
  4049. border-top:0px;
  4050. border-right:0px;
  4051. border-radius:0px;
  4052. border-bottom-right-radius:0px;
  4053. border-bottom-left-radius:0px;
  4054. filter:drop-shadow(none);
  4055. transition:none;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:14px;
  4060. }
  4061. #u4770 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:1402px;
  4065. top:405px;
  4066. width:85px;
  4067. height:40px;
  4068. display:flex;
  4069. transition:none;
  4070. transform-origin:50% 50%;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:14px;
  4075. }
  4076. #u4770 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u4770_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. }
  4088. #u4771 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:0px;
  4094. height:0px;
  4095. }
  4096. #u4772 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:0px;
  4102. height:0px;
  4103. }
  4104. #u4773_div {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:0px;
  4108. top:0px;
  4109. width:380px;
  4110. height:164px;
  4111. background:inherit;
  4112. background-color:rgba(255, 255, 255, 1);
  4113. box-sizing:border-box;
  4114. border-width:1px;
  4115. border-style:solid;
  4116. border-color:rgba(204, 204, 204, 1);
  4117. border-radius:4px;
  4118. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  4119. transition:none;
  4120. font-family:"Microsoft YaHei", sans-serif;
  4121. font-weight:400;
  4122. font-style:normal;
  4123. }
  4124. #u4773 {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:2043px;
  4128. top:364px;
  4129. width:380px;
  4130. height:164px;
  4131. display:flex;
  4132. transition:none;
  4133. transform-origin:50% 50%;
  4134. font-family:"Microsoft YaHei", sans-serif;
  4135. font-weight:400;
  4136. font-style:normal;
  4137. }
  4138. #u4773 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:2px 2px 2px 2px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u4773_text {
  4146. border-width:0px;
  4147. word-wrap:break-word;
  4148. text-transform:none;
  4149. visibility:hidden;
  4150. }
  4151. #u4774_div {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:300px;
  4157. height:44px;
  4158. background:inherit;
  4159. background-color:rgba(255, 255, 255, 0);
  4160. border-radius:0px;
  4161. filter:drop-shadow(none);
  4162. transition:none;
  4163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4164. font-weight:400;
  4165. font-style:normal;
  4166. font-size:14px;
  4167. color:#666666;
  4168. line-height:22px;
  4169. }
  4170. #u4774 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:2093px;
  4174. top:419px;
  4175. width:300px;
  4176. height:44px;
  4177. display:flex;
  4178. transition:none;
  4179. transform-origin:50% 50%;
  4180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:14px;
  4184. color:#666666;
  4185. line-height:22px;
  4186. }
  4187. #u4774 .text {
  4188. position:absolute;
  4189. align-self:flex-start;
  4190. padding:0px 0px 0px 0px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u4774_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. }
  4199. #u4775_div {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:73px;
  4205. height:21px;
  4206. background:inherit;
  4207. background-color:rgba(255, 255, 255, 0);
  4208. border-radius:0px;
  4209. filter:drop-shadow(none);
  4210. transition:none;
  4211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4212. font-weight:500;
  4213. font-style:normal;
  4214. font-size:18px;
  4215. color:#000000;
  4216. line-height:22px;
  4217. }
  4218. #u4775 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:2093px;
  4222. top:389px;
  4223. width:73px;
  4224. height:21px;
  4225. display:flex;
  4226. transition:none;
  4227. transform-origin:50% 50%;
  4228. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4229. font-weight:500;
  4230. font-style:normal;
  4231. font-size:18px;
  4232. color:#000000;
  4233. line-height:22px;
  4234. }
  4235. #u4775 .text {
  4236. position:absolute;
  4237. align-self:flex-start;
  4238. padding:0px 0px 0px 0px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u4775_text {
  4243. border-width:0px;
  4244. white-space:nowrap;
  4245. text-transform:none;
  4246. }
  4247. #u4776_div {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:61px;
  4253. height:32px;
  4254. background:inherit;
  4255. background-color:rgba(24, 144, 255, 1);
  4256. border-radius:4px;
  4257. filter:drop-shadow(none);
  4258. transition:none;
  4259. font-family:"Microsoft YaHei", sans-serif;
  4260. font-weight:400;
  4261. font-style:normal;
  4262. font-size:14px;
  4263. color:#FFFFFF;
  4264. }
  4265. #u4776 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:2345px;
  4269. top:479px;
  4270. width:61px;
  4271. height:32px;
  4272. display:flex;
  4273. transition:none;
  4274. transform-origin:50% 50%;
  4275. font-family:"Microsoft YaHei", sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:14px;
  4279. color:#FFFFFF;
  4280. }
  4281. #u4776 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 16px 2px 16px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u4776_text {
  4289. border-width:0px;
  4290. white-space:nowrap;
  4291. text-transform:none;
  4292. }
  4293. #u4777 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:2062px;
  4297. top:389px;
  4298. width:20px;
  4299. height:20px;
  4300. display:flex;
  4301. transition:none;
  4302. }
  4303. #u4777 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 2px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u4777_img {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:20px;
  4316. height:20px;
  4317. }
  4318. #u4777_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u4778_div {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:61px;
  4330. height:32px;
  4331. background:inherit;
  4332. background-color:rgba(24, 144, 255, 1);
  4333. border-radius:4px;
  4334. filter:drop-shadow(none);
  4335. transition:none;
  4336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4337. font-weight:400;
  4338. font-style:normal;
  4339. font-size:14px;
  4340. color:#FFFFFF;
  4341. }
  4342. #u4778 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:362px;
  4346. top:140px;
  4347. width:61px;
  4348. height:32px;
  4349. display:flex;
  4350. transition:none;
  4351. transform-origin:50% 50%;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:14px;
  4356. color:#FFFFFF;
  4357. }
  4358. #u4778 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:2px 16px 2px 16px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u4778_text {
  4366. border-width:0px;
  4367. white-space:nowrap;
  4368. text-transform:none;
  4369. }
  4370. #u4779_div {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:735px;
  4376. height:540px;
  4377. background:inherit;
  4378. background-color:rgba(255, 255, 255, 0);
  4379. border-radius:0px;
  4380. filter:drop-shadow(none);
  4381. transition:none;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:14px;
  4386. color:#D9001B;
  4387. line-height:30px;
  4388. }
  4389. #u4779 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:375px;
  4393. top:385px;
  4394. width:735px;
  4395. height:540px;
  4396. display:flex;
  4397. transition:none;
  4398. transform-origin:50% 50%;
  4399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4400. font-weight:400;
  4401. font-style:normal;
  4402. font-size:14px;
  4403. color:#D9001B;
  4404. line-height:30px;
  4405. }
  4406. #u4779 .text {
  4407. position:absolute;
  4408. align-self:flex-start;
  4409. padding:0px 0px 0px 0px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u4779_text {
  4414. border-width:0px;
  4415. word-wrap:break-word;
  4416. text-transform:none;
  4417. }
  4418. #u4780 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:0px;
  4424. height:0px;
  4425. }
  4426. #u4781_div {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:100px;
  4432. height:140px;
  4433. background:inherit;
  4434. background-color:rgba(255, 255, 255, 1);
  4435. box-sizing:border-box;
  4436. border-width:1px;
  4437. border-style:solid;
  4438. border-color:rgba(242, 242, 242, 1);
  4439. border-radius:4px;
  4440. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  4441. transition:none;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:14px;
  4446. text-align:left;
  4447. }
  4448. #u4781 {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:1511px;
  4452. top:315px;
  4453. width:100px;
  4454. height:140px;
  4455. display:flex;
  4456. transition:none;
  4457. transform-origin:50% 50%;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:14px;
  4462. text-align:left;
  4463. }
  4464. #u4781 .text {
  4465. position:absolute;
  4466. align-self:center;
  4467. padding:2px 2px 2px 2px;
  4468. box-sizing:border-box;
  4469. width:100%;
  4470. }
  4471. #u4781_text {
  4472. border-width:0px;
  4473. word-wrap:break-word;
  4474. text-transform:none;
  4475. visibility:hidden;
  4476. }
  4477. #u4782_div {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:85px;
  4483. height:40px;
  4484. background:inherit;
  4485. background-color:rgba(255, 255, 255, 1);
  4486. box-sizing:border-box;
  4487. border-width:1px;
  4488. border-style:solid;
  4489. border-color:rgba(215, 215, 215, 1);
  4490. border-left:0px;
  4491. border-top:0px;
  4492. border-right:0px;
  4493. border-radius:0px;
  4494. border-bottom-right-radius:0px;
  4495. border-bottom-left-radius:0px;
  4496. filter:drop-shadow(none);
  4497. transition:none;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:14px;
  4502. }
  4503. #u4782 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:1518px;
  4507. top:365px;
  4508. width:85px;
  4509. height:40px;
  4510. display:flex;
  4511. transition:none;
  4512. transform-origin:50% 50%;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:14px;
  4517. }
  4518. #u4782 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 2px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u4782_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. }
  4530. #u4783_div {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:85px;
  4536. height:40px;
  4537. background:inherit;
  4538. background-color:rgba(255, 255, 255, 1);
  4539. box-sizing:border-box;
  4540. border-width:1px;
  4541. border-style:solid;
  4542. border-color:rgba(215, 215, 215, 1);
  4543. border-left:0px;
  4544. border-top:0px;
  4545. border-right:0px;
  4546. border-radius:0px;
  4547. border-bottom-right-radius:0px;
  4548. border-bottom-left-radius:0px;
  4549. filter:drop-shadow(none);
  4550. transition:none;
  4551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:14px;
  4555. }
  4556. #u4783 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:1518px;
  4560. top:325px;
  4561. width:85px;
  4562. height:40px;
  4563. display:flex;
  4564. transition:none;
  4565. transform-origin:50% 50%;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:14px;
  4570. }
  4571. #u4783 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:2px 2px 2px 2px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u4783_text {
  4579. border-width:0px;
  4580. word-wrap:break-word;
  4581. text-transform:none;
  4582. }
  4583. #u4784_div {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:85px;
  4589. height:40px;
  4590. background:inherit;
  4591. background-color:rgba(255, 255, 255, 1);
  4592. border-left:0px;
  4593. border-top:0px;
  4594. border-right:0px;
  4595. border-radius:0px;
  4596. border-bottom-right-radius:0px;
  4597. border-bottom-left-radius:0px;
  4598. filter:drop-shadow(none);
  4599. transition:none;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:14px;
  4604. color:#AAAAAA;
  4605. }
  4606. #u4784 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:1518px;
  4610. top:405px;
  4611. width:85px;
  4612. height:40px;
  4613. display:flex;
  4614. transition:none;
  4615. transform-origin:50% 50%;
  4616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4617. font-weight:400;
  4618. font-style:normal;
  4619. font-size:14px;
  4620. color:#AAAAAA;
  4621. }
  4622. #u4784 .text {
  4623. position:absolute;
  4624. align-self:center;
  4625. padding:2px 2px 2px 2px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u4784_text {
  4630. border-width:0px;
  4631. word-wrap:break-word;
  4632. text-transform:none;
  4633. }
  4634. #u4785 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:0px;
  4640. height:0px;
  4641. }
  4642. #u4786 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:0px;
  4648. height:0px;
  4649. }
  4650. #u4787_div {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:380px;
  4656. height:164px;
  4657. background:inherit;
  4658. background-color:rgba(255, 255, 255, 1);
  4659. box-sizing:border-box;
  4660. border-width:1px;
  4661. border-style:solid;
  4662. border-color:rgba(204, 204, 204, 1);
  4663. border-radius:4px;
  4664. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  4665. transition:none;
  4666. font-family:"Microsoft YaHei", sans-serif;
  4667. font-weight:400;
  4668. font-style:normal;
  4669. }
  4670. #u4787 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:1642px;
  4674. top:817px;
  4675. width:380px;
  4676. height:164px;
  4677. display:flex;
  4678. transition:none;
  4679. transform-origin:50% 50%;
  4680. font-family:"Microsoft YaHei", sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. }
  4684. #u4787 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:2px 2px 2px 2px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u4787_text {
  4692. border-width:0px;
  4693. word-wrap:break-word;
  4694. text-transform:none;
  4695. visibility:hidden;
  4696. }
  4697. #u4788_div {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:302px;
  4703. height:22px;
  4704. background:inherit;
  4705. background-color:rgba(255, 255, 255, 0);
  4706. border-radius:0px;
  4707. filter:drop-shadow(none);
  4708. transition:none;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:14px;
  4713. color:#666666;
  4714. line-height:22px;
  4715. }
  4716. #u4788 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:1692px;
  4720. top:872px;
  4721. width:302px;
  4722. height:22px;
  4723. display:flex;
  4724. transition:none;
  4725. transform-origin:50% 50%;
  4726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4727. font-weight:400;
  4728. font-style:normal;
  4729. font-size:14px;
  4730. color:#666666;
  4731. line-height:22px;
  4732. }
  4733. #u4788 .text {
  4734. position:absolute;
  4735. align-self:flex-start;
  4736. padding:0px 0px 0px 0px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u4788_text {
  4741. border-width:0px;
  4742. word-wrap:break-word;
  4743. text-transform:none;
  4744. }
  4745. #u4789_div {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:91px;
  4751. height:21px;
  4752. background:inherit;
  4753. background-color:rgba(255, 255, 255, 0);
  4754. border-radius:0px;
  4755. filter:drop-shadow(none);
  4756. transition:none;
  4757. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4758. font-weight:500;
  4759. font-style:normal;
  4760. font-size:18px;
  4761. color:#000000;
  4762. line-height:22px;
  4763. }
  4764. #u4789 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:1692px;
  4768. top:842px;
  4769. width:91px;
  4770. height:21px;
  4771. display:flex;
  4772. transition:none;
  4773. transform-origin:50% 50%;
  4774. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4775. font-weight:500;
  4776. font-style:normal;
  4777. font-size:18px;
  4778. color:#000000;
  4779. line-height:22px;
  4780. }
  4781. #u4789 .text {
  4782. position:absolute;
  4783. align-self:flex-start;
  4784. padding:0px 0px 0px 0px;
  4785. box-sizing:border-box;
  4786. width:100%;
  4787. }
  4788. #u4789_text {
  4789. border-width:0px;
  4790. white-space:nowrap;
  4791. text-transform:none;
  4792. }
  4793. #u4790_div {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:0px;
  4797. top:0px;
  4798. width:61px;
  4799. height:32px;
  4800. background:inherit;
  4801. background-color:rgba(24, 144, 255, 1);
  4802. border-radius:4px;
  4803. filter:drop-shadow(none);
  4804. transition:none;
  4805. font-family:"Microsoft YaHei", sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:14px;
  4809. color:#FFFFFF;
  4810. }
  4811. #u4790 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:1944px;
  4815. top:932px;
  4816. width:61px;
  4817. height:32px;
  4818. display:flex;
  4819. transition:none;
  4820. transform-origin:50% 50%;
  4821. font-family:"Microsoft YaHei", sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. font-size:14px;
  4825. color:#FFFFFF;
  4826. }
  4827. #u4790 .text {
  4828. position:absolute;
  4829. align-self:center;
  4830. padding:2px 16px 2px 16px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u4790_text {
  4835. border-width:0px;
  4836. white-space:nowrap;
  4837. text-transform:none;
  4838. }
  4839. #u4791 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:1661px;
  4843. top:842px;
  4844. width:20px;
  4845. height:20px;
  4846. display:flex;
  4847. transition:none;
  4848. }
  4849. #u4791 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 2px 2px 2px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u4791_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:20px;
  4862. height:20px;
  4863. }
  4864. #u4791_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. visibility:hidden;
  4869. }
  4870. #u4792_div {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:283px;
  4876. height:17px;
  4877. background:inherit;
  4878. background-color:rgba(255, 255, 255, 0);
  4879. border-radius:0px;
  4880. filter:drop-shadow(none);
  4881. transition:none;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#7F7F7F;
  4887. }
  4888. #u4792 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:362px;
  4892. top:100px;
  4893. width:283px;
  4894. height:17px;
  4895. display:flex;
  4896. transition:none;
  4897. transform-origin:50% 50%;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:12px;
  4902. color:#7F7F7F;
  4903. }
  4904. #u4792 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:0px 0px 0px 0px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u4792_text {
  4912. border-width:0px;
  4913. white-space:nowrap;
  4914. text-transform:none;
  4915. }
  4916. #u4793 {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:970px;
  4920. top:1189px;
  4921. width:600px;
  4922. height:30px;
  4923. }
  4924. #u4794 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:0px;
  4930. height:0px;
  4931. }
  4932. #u4795_div {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:30px;
  4938. height:30px;
  4939. background:inherit;
  4940. background-color:rgba(255, 255, 255, 1);
  4941. box-sizing:border-box;
  4942. border-width:1px;
  4943. border-style:solid;
  4944. border-color:rgba(228, 228, 228, 1);
  4945. border-radius:4px;
  4946. filter:drop-shadow(none);
  4947. transition:none;
  4948. font-family:"Microsoft YaHei", sans-serif;
  4949. font-weight:400;
  4950. font-style:normal;
  4951. font-size:14px;
  4952. }
  4953. #u4795 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:35px;
  4957. top:0px;
  4958. width:30px;
  4959. height:30px;
  4960. display:flex;
  4961. transition:none;
  4962. transform-origin:50% 50%;
  4963. font-family:"Microsoft YaHei", sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:14px;
  4967. }
  4968. #u4795 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 2px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u4795_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. }
  4980. #u4796_div {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:49px;
  4986. height:30px;
  4987. background:inherit;
  4988. background-color:rgba(255, 255, 255, 0);
  4989. box-sizing:border-box;
  4990. border-width:1px;
  4991. border-style:solid;
  4992. border-color:rgba(188, 188, 188, 1);
  4993. border-radius:4px;
  4994. filter:drop-shadow(none);
  4995. transition:none;
  4996. font-family:"Microsoft YaHei", sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:14px;
  5000. color:#1E1E1E;
  5001. }
  5002. #u4796 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:551px;
  5006. top:0px;
  5007. width:49px;
  5008. height:30px;
  5009. display:flex;
  5010. transition:none;
  5011. transform-origin:50% 50%;
  5012. font-family:"Microsoft YaHei", sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:14px;
  5016. color:#1E1E1E;
  5017. }
  5018. #u4796 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:5px 10px 5px 10px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u4796_text {
  5026. border-width:0px;
  5027. white-space:nowrap;
  5028. text-transform:none;
  5029. }
  5030. #u4797 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:0px;
  5036. height:0px;
  5037. }
  5038. #u4798_div {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:33px;
  5044. height:24px;
  5045. background:inherit;
  5046. background-color:rgba(255, 255, 255, 1);
  5047. border-radius:0px;
  5048. filter:drop-shadow(none);
  5049. transition:none;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:14px;
  5054. color:#BCBCBC;
  5055. text-align:left;
  5056. }
  5057. #u4798 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:319px;
  5061. top:3px;
  5062. width:33px;
  5063. height:24px;
  5064. display:flex;
  5065. transition:none;
  5066. transform-origin:50% 50%;
  5067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5068. font-weight:400;
  5069. font-style:normal;
  5070. font-size:14px;
  5071. color:#BCBCBC;
  5072. text-align:left;
  5073. }
  5074. #u4798 .text {
  5075. position:absolute;
  5076. align-self:center;
  5077. padding:2px 2px 2px 2px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u4798_text {
  5082. border-width:0px;
  5083. white-space:nowrap;
  5084. text-transform:none;
  5085. }
  5086. #u4799_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:40px;
  5092. height:30px;
  5093. background:inherit;
  5094. background-color:rgba(255, 255, 255, 1);
  5095. box-sizing:border-box;
  5096. border-width:1px;
  5097. border-style:solid;
  5098. border-color:rgba(228, 228, 228, 1);
  5099. border-radius:4px;
  5100. filter:drop-shadow(none);
  5101. transition:none;
  5102. font-family:"Microsoft YaHei", sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:14px;
  5106. }
  5107. #u4799 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:354px;
  5111. top:0px;
  5112. width:40px;
  5113. height:30px;
  5114. display:flex;
  5115. transition:none;
  5116. transform-origin:50% 50%;
  5117. font-family:"Microsoft YaHei", sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:14px;
  5121. }
  5122. #u4799 .text {
  5123. position:absolute;
  5124. align-self:center;
  5125. padding:2px 2px 2px 2px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u4799_text {
  5130. border-width:0px;
  5131. word-wrap:break-word;
  5132. text-transform:none;
  5133. visibility:hidden;
  5134. }
  5135. #u4800_div {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:19px;
  5141. height:24px;
  5142. background:inherit;
  5143. background-color:rgba(255, 255, 255, 1);
  5144. border-radius:0px;
  5145. filter:drop-shadow(none);
  5146. transition:none;
  5147. font-family:"Microsoft YaHei", sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:14px;
  5151. color:#BCBCBC;
  5152. text-align:left;
  5153. }
  5154. #u4800 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:396px;
  5158. top:4px;
  5159. width:19px;
  5160. height:24px;
  5161. display:flex;
  5162. transition:none;
  5163. transform-origin:50% 50%;
  5164. font-family:"Microsoft YaHei", sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:14px;
  5168. color:#BCBCBC;
  5169. text-align:left;
  5170. }
  5171. #u4800 .text {
  5172. position:absolute;
  5173. align-self:center;
  5174. padding:2px 2px 2px 2px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u4800_text {
  5179. border-width:0px;
  5180. white-space:nowrap;
  5181. text-transform:none;
  5182. }
  5183. #u4801_input {
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:34px;
  5188. height:25px;
  5189. padding:2px 2px 2px 2px;
  5190. font-family:"Microsoft YaHei", sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:13px;
  5194. letter-spacing:normal;
  5195. color:#000000;
  5196. vertical-align:none;
  5197. text-align:left;
  5198. text-transform:none;
  5199. background-color:transparent;
  5200. border-color:transparent;
  5201. }
  5202. #u4801_input.hint {
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:34px;
  5207. height:25px;
  5208. padding:2px 2px 2px 2px;
  5209. font-family:"Microsoft YaHei", sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:13px;
  5213. letter-spacing:normal;
  5214. color:#999999;
  5215. vertical-align:none;
  5216. text-align:left;
  5217. text-transform:none;
  5218. background-color:transparent;
  5219. border-color:transparent;
  5220. }
  5221. #u4801_input.disabled {
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:34px;
  5226. height:25px;
  5227. padding:2px 2px 2px 2px;
  5228. font-family:"Microsoft YaHei", sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:13px;
  5232. letter-spacing:normal;
  5233. color:#000000;
  5234. vertical-align:none;
  5235. text-align:left;
  5236. text-transform:none;
  5237. background-color:transparent;
  5238. border-color:transparent;
  5239. }
  5240. #u4801_input.hint.disabled {
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:34px;
  5245. height:25px;
  5246. padding:2px 2px 2px 2px;
  5247. font-family:"Microsoft YaHei", sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:13px;
  5251. letter-spacing:normal;
  5252. color:#999999;
  5253. vertical-align:none;
  5254. text-align:left;
  5255. text-transform:none;
  5256. background-color:transparent;
  5257. border-color:transparent;
  5258. }
  5259. #u4801_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:34px;
  5265. height:25px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 1);
  5268. border-radius:0px;
  5269. filter:drop-shadow(none);
  5270. transition:none;
  5271. font-family:"Microsoft YaHei", sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. }
  5275. #u4801 {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:357px;
  5279. top:2px;
  5280. width:34px;
  5281. height:25px;
  5282. display:flex;
  5283. transition:none;
  5284. transform-origin:50% 50%;
  5285. font-family:"Microsoft YaHei", sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. }
  5289. #u4801 .text {
  5290. position:absolute;
  5291. align-self:center;
  5292. padding:2px 2px 2px 2px;
  5293. box-sizing:border-box;
  5294. width:100%;
  5295. }
  5296. #u4801_div.hint {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:34px;
  5302. height:25px;
  5303. background:inherit;
  5304. background-color:rgba(255, 255, 255, 1);
  5305. border-radius:0px;
  5306. filter:drop-shadow(none);
  5307. transition:none;
  5308. font-family:"Microsoft YaHei", sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. }
  5312. #u4801.hint {
  5313. }
  5314. #u4801_div.disabled {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:34px;
  5320. height:25px;
  5321. background:inherit;
  5322. background-color:rgba(240, 240, 240, 1);
  5323. border-radius:0px;
  5324. filter:drop-shadow(none);
  5325. transition:none;
  5326. font-family:"Microsoft YaHei", sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. }
  5330. #u4801.disabled {
  5331. }
  5332. #u4801_div.hint.disabled {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:34px;
  5338. height:25px;
  5339. background:inherit;
  5340. background-color:rgba(240, 240, 240, 1);
  5341. border-radius:0px;
  5342. filter:drop-shadow(none);
  5343. transition:none;
  5344. font-family:"Microsoft YaHei", sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. }
  5348. #u4801.hint.disabled {
  5349. }
  5350. #u4802_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:30px;
  5356. height:30px;
  5357. background:inherit;
  5358. background-color:rgba(41, 143, 255, 1);
  5359. border-radius:4px;
  5360. filter:drop-shadow(none);
  5361. transition:none;
  5362. font-family:"Microsoft YaHei", sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:14px;
  5366. color:#FFFFFF;
  5367. }
  5368. #u4802 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:69px;
  5372. top:0px;
  5373. width:30px;
  5374. height:30px;
  5375. display:flex;
  5376. transition:none;
  5377. transform-origin:50% 50%;
  5378. font-family:"Microsoft YaHei", sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:14px;
  5382. color:#FFFFFF;
  5383. }
  5384. #u4802 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:2px 2px 2px 2px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u4802_text {
  5392. border-width:0px;
  5393. word-wrap:break-word;
  5394. text-transform:none;
  5395. }
  5396. #u4803_div {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:30px;
  5402. height:30px;
  5403. background:inherit;
  5404. background-color:rgba(255, 255, 255, 1);
  5405. box-sizing:border-box;
  5406. border-width:1px;
  5407. border-style:solid;
  5408. border-color:rgba(228, 228, 228, 1);
  5409. border-radius:4px;
  5410. filter:drop-shadow(none);
  5411. transition:none;
  5412. font-family:"Microsoft YaHei", sans-serif;
  5413. font-weight:400;
  5414. font-style:normal;
  5415. font-size:14px;
  5416. }
  5417. #u4803 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:103px;
  5421. top:0px;
  5422. width:30px;
  5423. height:30px;
  5424. display:flex;
  5425. transition:none;
  5426. transform-origin:50% 50%;
  5427. font-family:"Microsoft YaHei", sans-serif;
  5428. font-weight:400;
  5429. font-style:normal;
  5430. font-size:14px;
  5431. }
  5432. #u4803 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:2px 2px 2px 2px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u4803_text {
  5440. border-width:0px;
  5441. word-wrap:break-word;
  5442. text-transform:none;
  5443. }
  5444. #u4804_div {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:30px;
  5450. height:30px;
  5451. background:inherit;
  5452. background-color:rgba(255, 255, 255, 1);
  5453. box-sizing:border-box;
  5454. border-width:1px;
  5455. border-style:solid;
  5456. border-color:rgba(228, 228, 228, 1);
  5457. border-radius:4px;
  5458. filter:drop-shadow(none);
  5459. transition:none;
  5460. font-family:"Microsoft YaHei", sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:14px;
  5464. }
  5465. #u4804 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:137px;
  5469. top:0px;
  5470. width:30px;
  5471. height:30px;
  5472. display:flex;
  5473. transition:none;
  5474. transform-origin:50% 50%;
  5475. font-family:"Microsoft YaHei", sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:14px;
  5479. }
  5480. #u4804 .text {
  5481. position:absolute;
  5482. align-self:center;
  5483. padding:2px 2px 2px 2px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u4804_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. }
  5492. #u4805_div {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:30px;
  5498. height:30px;
  5499. background:inherit;
  5500. background-color:rgba(255, 255, 255, 1);
  5501. border-radius:4px;
  5502. filter:drop-shadow(none);
  5503. transition:none;
  5504. font-family:"Microsoft YaHei", sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:14px;
  5508. }
  5509. #u4805 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:167px;
  5513. top:0px;
  5514. width:30px;
  5515. height:30px;
  5516. display:flex;
  5517. transition:none;
  5518. transform-origin:50% 50%;
  5519. font-family:"Microsoft YaHei", sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:14px;
  5523. }
  5524. #u4805 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:2px 2px 2px 2px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u4805_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. }
  5536. #u4806_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:30px;
  5542. height:30px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 1);
  5545. box-sizing:border-box;
  5546. border-width:1px;
  5547. border-style:solid;
  5548. border-color:rgba(228, 228, 228, 1);
  5549. border-radius:4px;
  5550. filter:drop-shadow(none);
  5551. transition:none;
  5552. font-family:"Microsoft YaHei", sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:14px;
  5556. }
  5557. #u4806 {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:201px;
  5561. top:0px;
  5562. width:30px;
  5563. height:30px;
  5564. display:flex;
  5565. transition:none;
  5566. transform-origin:50% 50%;
  5567. font-family:"Microsoft YaHei", sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:14px;
  5571. }
  5572. #u4806 .text {
  5573. position:absolute;
  5574. align-self:center;
  5575. padding:2px 2px 2px 2px;
  5576. box-sizing:border-box;
  5577. width:100%;
  5578. }
  5579. #u4806_text {
  5580. border-width:0px;
  5581. word-wrap:break-word;
  5582. text-transform:none;
  5583. }
  5584. #u4807_div {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:32px;
  5590. height:21px;
  5591. background:inherit;
  5592. background-color:rgba(255, 255, 255, 1);
  5593. border-radius:15px;
  5594. filter:drop-shadow(none);
  5595. transition:none;
  5596. font-family:"Microsoft YaHei", sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:14px;
  5600. color:#1E1E1E;
  5601. }
  5602. #u4807 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:275px;
  5606. top:5px;
  5607. width:32px;
  5608. height:21px;
  5609. display:flex;
  5610. transition:none;
  5611. transform-origin:50% 50%;
  5612. font-family:"Microsoft YaHei", sans-serif;
  5613. font-weight:400;
  5614. font-style:normal;
  5615. font-size:14px;
  5616. color:#1E1E1E;
  5617. }
  5618. #u4807 .text {
  5619. position:absolute;
  5620. align-self:center;
  5621. padding:2px 2px 2px 2px;
  5622. box-sizing:border-box;
  5623. width:100%;
  5624. }
  5625. #u4807_text {
  5626. border-width:0px;
  5627. white-space:nowrap;
  5628. text-transform:none;
  5629. }
  5630. #u4808 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:0px;
  5636. height:0px;
  5637. }
  5638. #u4809_div {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:31px;
  5644. height:30px;
  5645. background:inherit;
  5646. background-color:rgba(255, 255, 255, 1);
  5647. box-sizing:border-box;
  5648. border-width:1px;
  5649. border-style:solid;
  5650. border-color:rgba(228, 228, 228, 1);
  5651. border-radius:4px;
  5652. filter:drop-shadow(none);
  5653. transition:none;
  5654. font-family:"Microsoft YaHei", sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:12px;
  5658. }
  5659. #u4809 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:31px;
  5665. height:30px;
  5666. display:flex;
  5667. transition:none;
  5668. transform-origin:50% 50%;
  5669. font-family:"Microsoft YaHei", sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:12px;
  5673. }
  5674. #u4809 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:2px 2px 2px 2px;
  5678. box-sizing:border-box;
  5679. width:100%;
  5680. }
  5681. #u4809_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. visibility:hidden;
  5686. }
  5687. #u4810 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:12px;
  5691. top:8px;
  5692. width:8px;
  5693. height:14px;
  5694. display:flex;
  5695. transition:none;
  5696. font-family:"Microsoft YaHei", sans-serif;
  5697. font-weight:400;
  5698. font-style:normal;
  5699. font-size:12px;
  5700. }
  5701. #u4810 .text {
  5702. position:absolute;
  5703. align-self:center;
  5704. padding:2px 2px 2px 2px;
  5705. box-sizing:border-box;
  5706. width:100%;
  5707. }
  5708. #u4810_img {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:8px;
  5714. height:14px;
  5715. }
  5716. #u4810_text {
  5717. border-width:0px;
  5718. word-wrap:break-word;
  5719. text-transform:none;
  5720. visibility:hidden;
  5721. }
  5722. #u4811 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:0px;
  5728. height:0px;
  5729. }
  5730. #u4812_div {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:31px;
  5736. height:30px;
  5737. background:inherit;
  5738. background-color:rgba(255, 255, 255, 1);
  5739. box-sizing:border-box;
  5740. border-width:1px;
  5741. border-style:solid;
  5742. border-color:rgba(228, 228, 228, 1);
  5743. border-radius:4px;
  5744. filter:drop-shadow(none);
  5745. transition:none;
  5746. font-family:"Microsoft YaHei", sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:12px;
  5750. }
  5751. #u4812 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:234px;
  5755. top:0px;
  5756. width:31px;
  5757. height:30px;
  5758. display:flex;
  5759. transition:none;
  5760. transform-origin:50% 50%;
  5761. font-family:"Microsoft YaHei", sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:12px;
  5765. }
  5766. #u4812 .text {
  5767. position:absolute;
  5768. align-self:center;
  5769. padding:2px 2px 2px 2px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u4812_text {
  5774. border-width:0px;
  5775. word-wrap:break-word;
  5776. text-transform:none;
  5777. visibility:hidden;
  5778. }
  5779. #u4813 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:247px;
  5783. top:8px;
  5784. width:8px;
  5785. height:14px;
  5786. display:flex;
  5787. transition:none;
  5788. font-family:"Microsoft YaHei", sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:12px;
  5792. }
  5793. #u4813 .text {
  5794. position:absolute;
  5795. align-self:center;
  5796. padding:2px 2px 2px 2px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u4813_img {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:8px;
  5806. height:14px;
  5807. }
  5808. #u4813_text {
  5809. border-width:0px;
  5810. word-wrap:break-word;
  5811. text-transform:none;
  5812. visibility:hidden;
  5813. }
  5814. #u4814 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:0px;
  5820. height:0px;
  5821. }
  5822. #u4815_div {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:33px;
  5828. height:24px;
  5829. background:inherit;
  5830. background-color:rgba(255, 255, 255, 1);
  5831. border-radius:0px;
  5832. filter:drop-shadow(none);
  5833. transition:none;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:14px;
  5838. color:#BCBCBC;
  5839. text-align:left;
  5840. }
  5841. #u4815 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:435px;
  5845. top:3px;
  5846. width:33px;
  5847. height:24px;
  5848. display:flex;
  5849. transition:none;
  5850. transform-origin:50% 50%;
  5851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:14px;
  5855. color:#BCBCBC;
  5856. text-align:left;
  5857. }
  5858. #u4815 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 2px 2px 2px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u4815_text {
  5866. border-width:0px;
  5867. white-space:nowrap;
  5868. text-transform:none;
  5869. }
  5870. #u4816_div {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:40px;
  5876. height:30px;
  5877. background:inherit;
  5878. background-color:rgba(255, 255, 255, 1);
  5879. box-sizing:border-box;
  5880. border-width:1px;
  5881. border-style:solid;
  5882. border-color:rgba(228, 228, 228, 1);
  5883. border-radius:4px;
  5884. filter:drop-shadow(none);
  5885. transition:none;
  5886. font-family:"Microsoft YaHei", sans-serif;
  5887. font-weight:400;
  5888. font-style:normal;
  5889. font-size:14px;
  5890. }
  5891. #u4816 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:470px;
  5895. top:0px;
  5896. width:40px;
  5897. height:30px;
  5898. display:flex;
  5899. transition:none;
  5900. transform-origin:50% 50%;
  5901. font-family:"Microsoft YaHei", sans-serif;
  5902. font-weight:400;
  5903. font-style:normal;
  5904. font-size:14px;
  5905. }
  5906. #u4816 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:2px 2px 2px 2px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u4816_text {
  5914. border-width:0px;
  5915. word-wrap:break-word;
  5916. text-transform:none;
  5917. visibility:hidden;
  5918. }
  5919. #u4817_div {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:19px;
  5925. height:24px;
  5926. background:inherit;
  5927. background-color:rgba(255, 255, 255, 1);
  5928. border-radius:0px;
  5929. filter:drop-shadow(none);
  5930. transition:none;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:14px;
  5935. color:#BCBCBC;
  5936. text-align:left;
  5937. }
  5938. #u4817 {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:512px;
  5942. top:4px;
  5943. width:19px;
  5944. height:24px;
  5945. display:flex;
  5946. transition:none;
  5947. transform-origin:50% 50%;
  5948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5949. font-weight:400;
  5950. font-style:normal;
  5951. font-size:14px;
  5952. color:#BCBCBC;
  5953. text-align:left;
  5954. }
  5955. #u4817 .text {
  5956. position:absolute;
  5957. align-self:center;
  5958. padding:2px 2px 2px 2px;
  5959. box-sizing:border-box;
  5960. width:100%;
  5961. }
  5962. #u4817_text {
  5963. border-width:0px;
  5964. white-space:nowrap;
  5965. text-transform:none;
  5966. }
  5967. #u4818_input {
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:34px;
  5972. height:25px;
  5973. padding:2px 2px 2px 2px;
  5974. font-family:"Microsoft YaHei", sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:13px;
  5978. letter-spacing:normal;
  5979. color:#000000;
  5980. vertical-align:none;
  5981. text-align:left;
  5982. text-transform:none;
  5983. background-color:transparent;
  5984. border-color:transparent;
  5985. }
  5986. #u4818_input.hint {
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:34px;
  5991. height:25px;
  5992. padding:2px 2px 2px 2px;
  5993. font-family:"Microsoft YaHei", sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:13px;
  5997. letter-spacing:normal;
  5998. color:#999999;
  5999. vertical-align:none;
  6000. text-align:left;
  6001. text-transform:none;
  6002. background-color:transparent;
  6003. border-color:transparent;
  6004. }
  6005. #u4818_input.disabled {
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:34px;
  6010. height:25px;
  6011. padding:2px 2px 2px 2px;
  6012. font-family:"Microsoft YaHei", sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:13px;
  6016. letter-spacing:normal;
  6017. color:#000000;
  6018. vertical-align:none;
  6019. text-align:left;
  6020. text-transform:none;
  6021. background-color:transparent;
  6022. border-color:transparent;
  6023. }
  6024. #u4818_input.hint.disabled {
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:34px;
  6029. height:25px;
  6030. padding:2px 2px 2px 2px;
  6031. font-family:"Microsoft YaHei", sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:13px;
  6035. letter-spacing:normal;
  6036. color:#999999;
  6037. vertical-align:none;
  6038. text-align:left;
  6039. text-transform:none;
  6040. background-color:transparent;
  6041. border-color:transparent;
  6042. }
  6043. #u4818_div {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:34px;
  6049. height:25px;
  6050. background:inherit;
  6051. background-color:rgba(255, 255, 255, 1);
  6052. border-radius:0px;
  6053. filter:drop-shadow(none);
  6054. transition:none;
  6055. font-family:"Microsoft YaHei", sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. }
  6059. #u4818 {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:473px;
  6063. top:2px;
  6064. width:34px;
  6065. height:25px;
  6066. display:flex;
  6067. transition:none;
  6068. transform-origin:50% 50%;
  6069. font-family:"Microsoft YaHei", sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. }
  6073. #u4818 .text {
  6074. position:absolute;
  6075. align-self:center;
  6076. padding:2px 2px 2px 2px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u4818_div.hint {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:34px;
  6086. height:25px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 1);
  6089. border-radius:0px;
  6090. filter:drop-shadow(none);
  6091. transition:none;
  6092. font-family:"Microsoft YaHei", sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. }
  6096. #u4818.hint {
  6097. }
  6098. #u4818_div.disabled {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:34px;
  6104. height:25px;
  6105. background:inherit;
  6106. background-color:rgba(240, 240, 240, 1);
  6107. border-radius:0px;
  6108. filter:drop-shadow(none);
  6109. transition:none;
  6110. font-family:"Microsoft YaHei", sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. }
  6114. #u4818.disabled {
  6115. }
  6116. #u4818_div.hint.disabled {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:34px;
  6122. height:25px;
  6123. background:inherit;
  6124. background-color:rgba(240, 240, 240, 1);
  6125. border-radius:0px;
  6126. filter:drop-shadow(none);
  6127. transition:none;
  6128. font-family:"Microsoft YaHei", sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. }
  6132. #u4818.hint.disabled {
  6133. }
  6134. #u4819 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:0px;
  6140. height:0px;
  6141. }
  6142. #u4820 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:0px;
  6148. height:0px;
  6149. }
  6150. #u4821_div {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:800px;
  6156. height:229px;
  6157. background:inherit;
  6158. background-color:rgba(255, 255, 255, 1);
  6159. border-radius:4px;
  6160. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  6161. transition:none;
  6162. }
  6163. #u4821 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:1642px;
  6167. top:38px;
  6168. width:800px;
  6169. height:229px;
  6170. display:flex;
  6171. transition:none;
  6172. transform-origin:50% 50%;
  6173. }
  6174. #u4821 .text {
  6175. position:absolute;
  6176. align-self:center;
  6177. padding:2px 2px 2px 2px;
  6178. box-sizing:border-box;
  6179. width:100%;
  6180. }
  6181. #u4821_text {
  6182. border-width:0px;
  6183. word-wrap:break-word;
  6184. text-transform:none;
  6185. visibility:hidden;
  6186. }
  6187. #u4822_div {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:117px;
  6193. height:24px;
  6194. background:inherit;
  6195. background-color:rgba(255, 255, 255, 1);
  6196. border-left:0px;
  6197. border-top:0px;
  6198. border-right:0px;
  6199. border-radius:0px;
  6200. border-bottom-right-radius:0px;
  6201. border-bottom-left-radius:0px;
  6202. filter:drop-shadow(none);
  6203. transition:none;
  6204. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6205. font-weight:500;
  6206. font-style:normal;
  6207. font-size:14px;
  6208. text-align:left;
  6209. }
  6210. #u4822 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:1661px;
  6214. top:53px;
  6215. width:117px;
  6216. height:24px;
  6217. display:flex;
  6218. transition:none;
  6219. transform-origin:50% 50%;
  6220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6221. font-weight:500;
  6222. font-style:normal;
  6223. font-size:14px;
  6224. text-align:left;
  6225. }
  6226. #u4822 .text {
  6227. position:absolute;
  6228. align-self:center;
  6229. padding:2px 2px 2px 2px;
  6230. box-sizing:border-box;
  6231. width:100%;
  6232. }
  6233. #u4822_text {
  6234. border-width:0px;
  6235. white-space:nowrap;
  6236. text-transform:none;
  6237. }
  6238. #u4823 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:1666px;
  6242. top:106px;
  6243. width:165px;
  6244. height:116px;
  6245. display:flex;
  6246. transition:none;
  6247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:18px;
  6251. }
  6252. #u4823 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 2px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u4823_img {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:165px;
  6265. height:116px;
  6266. }
  6267. #u4823_text {
  6268. border-width:0px;
  6269. word-wrap:break-word;
  6270. text-transform:none;
  6271. }
  6272. #u4824_div {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:40px;
  6278. height:40px;
  6279. background:inherit;
  6280. background-color:rgba(255, 255, 255, 0);
  6281. border-top:0px;
  6282. border-right:0px;
  6283. border-bottom:0px;
  6284. border-radius:0px;
  6285. border-top-left-radius:0px;
  6286. border-bottom-left-radius:0px;
  6287. filter:drop-shadow(none);
  6288. transition:none;
  6289. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6290. font-weight:500;
  6291. font-style:normal;
  6292. font-size:18px;
  6293. text-align:center;
  6294. }
  6295. #u4824 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:2402px;
  6299. top:38px;
  6300. width:40px;
  6301. height:40px;
  6302. display:flex;
  6303. transition:none;
  6304. transform-origin:50% 50%;
  6305. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6306. font-weight:500;
  6307. font-style:normal;
  6308. font-size:18px;
  6309. text-align:center;
  6310. }
  6311. #u4824 .text {
  6312. position:absolute;
  6313. align-self:center;
  6314. padding:5px 10px 5px 0px;
  6315. box-sizing:border-box;
  6316. width:100%;
  6317. }
  6318. #u4824_text {
  6319. border-width:0px;
  6320. word-wrap:break-word;
  6321. text-transform:none;
  6322. }
  6323. #u4825 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:1861px;
  6327. top:106px;
  6328. width:165px;
  6329. height:116px;
  6330. display:flex;
  6331. transition:none;
  6332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:18px;
  6336. }
  6337. #u4825 .text {
  6338. position:absolute;
  6339. align-self:center;
  6340. padding:2px 2px 2px 2px;
  6341. box-sizing:border-box;
  6342. width:100%;
  6343. }
  6344. #u4825_img {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:165px;
  6350. height:116px;
  6351. }
  6352. #u4825_text {
  6353. border-width:0px;
  6354. word-wrap:break-word;
  6355. text-transform:none;
  6356. }
  6357. #u4826 {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:2056px;
  6361. top:106px;
  6362. width:165px;
  6363. height:116px;
  6364. display:flex;
  6365. transition:none;
  6366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:18px;
  6370. }
  6371. #u4826 .text {
  6372. position:absolute;
  6373. align-self:center;
  6374. padding:2px 2px 2px 2px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u4826_img {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:165px;
  6384. height:116px;
  6385. }
  6386. #u4826_text {
  6387. border-width:0px;
  6388. word-wrap:break-word;
  6389. text-transform:none;
  6390. }
  6391. #u4827_div {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:525px;
  6397. height:30px;
  6398. background:inherit;
  6399. background-color:rgba(255, 255, 255, 0);
  6400. border-radius:0px;
  6401. filter:drop-shadow(none);
  6402. transition:none;
  6403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:14px;
  6407. color:#D9001B;
  6408. line-height:30px;
  6409. }
  6410. #u4827 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:1798px;
  6414. top:58px;
  6415. width:525px;
  6416. height:30px;
  6417. display:flex;
  6418. transition:none;
  6419. transform-origin:50% 50%;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:14px;
  6424. color:#D9001B;
  6425. line-height:30px;
  6426. }
  6427. #u4827 .text {
  6428. position:absolute;
  6429. align-self:flex-start;
  6430. padding:0px 0px 0px 0px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u4827_text {
  6435. border-width:0px;
  6436. white-space:nowrap;
  6437. text-transform:none;
  6438. }
  6439. #u4828 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:423px;
  6443. top:156px;
  6444. width:0px;
  6445. height:0px;
  6446. transition:none;
  6447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:12px;
  6451. color:#333333;
  6452. }
  6453. #u4828_seg0 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:0px;
  6457. top:-5px;
  6458. width:624px;
  6459. height:10px;
  6460. }
  6461. #u4828_seg1 {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:614px;
  6465. top:-96px;
  6466. width:10px;
  6467. height:101px;
  6468. }
  6469. #u4828_seg2 {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:614px;
  6473. top:-96px;
  6474. width:624px;
  6475. height:10px;
  6476. }
  6477. #u4828_seg3 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:1228px;
  6481. top:-100px;
  6482. width:18px;
  6483. height:18px;
  6484. }
  6485. #u4828_text {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:569px;
  6489. top:-54px;
  6490. width:100px;
  6491. word-wrap:break-word;
  6492. text-transform:none;
  6493. visibility:hidden;
  6494. }
  6495. #u4829 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:0px;
  6501. height:0px;
  6502. }
  6503. #u4830 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:0px;
  6509. height:0px;
  6510. }
  6511. #u4831_div {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:380px;
  6517. height:164px;
  6518. background:inherit;
  6519. background-color:rgba(255, 255, 255, 1);
  6520. box-sizing:border-box;
  6521. border-width:1px;
  6522. border-style:solid;
  6523. border-color:rgba(204, 204, 204, 1);
  6524. border-radius:4px;
  6525. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  6526. transition:none;
  6527. font-family:"Microsoft YaHei", sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. }
  6531. #u4831 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:1642px;
  6535. top:603px;
  6536. width:380px;
  6537. height:164px;
  6538. display:flex;
  6539. transition:none;
  6540. transform-origin:50% 50%;
  6541. font-family:"Microsoft YaHei", sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. }
  6545. #u4831 .text {
  6546. position:absolute;
  6547. align-self:center;
  6548. padding:2px 2px 2px 2px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u4831_text {
  6553. border-width:0px;
  6554. word-wrap:break-word;
  6555. text-transform:none;
  6556. visibility:hidden;
  6557. }
  6558. #u4832_div {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:0px;
  6562. top:0px;
  6563. width:302px;
  6564. height:22px;
  6565. background:inherit;
  6566. background-color:rgba(255, 255, 255, 0);
  6567. border-radius:0px;
  6568. filter:drop-shadow(none);
  6569. transition:none;
  6570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6571. font-weight:400;
  6572. font-style:normal;
  6573. font-size:14px;
  6574. color:#666666;
  6575. line-height:22px;
  6576. }
  6577. #u4832 {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:1692px;
  6581. top:658px;
  6582. width:302px;
  6583. height:22px;
  6584. display:flex;
  6585. transition:none;
  6586. transform-origin:50% 50%;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:14px;
  6591. color:#666666;
  6592. line-height:22px;
  6593. }
  6594. #u4832 .text {
  6595. position:absolute;
  6596. align-self:flex-start;
  6597. padding:0px 0px 0px 0px;
  6598. box-sizing:border-box;
  6599. width:100%;
  6600. }
  6601. #u4832_text {
  6602. border-width:0px;
  6603. word-wrap:break-word;
  6604. text-transform:none;
  6605. }
  6606. #u4833_div {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:127px;
  6612. height:21px;
  6613. background:inherit;
  6614. background-color:rgba(255, 255, 255, 0);
  6615. border-radius:0px;
  6616. filter:drop-shadow(none);
  6617. transition:none;
  6618. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6619. font-weight:500;
  6620. font-style:normal;
  6621. font-size:18px;
  6622. color:#000000;
  6623. line-height:22px;
  6624. }
  6625. #u4833 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:1692px;
  6629. top:628px;
  6630. width:127px;
  6631. height:21px;
  6632. display:flex;
  6633. transition:none;
  6634. transform-origin:50% 50%;
  6635. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6636. font-weight:500;
  6637. font-style:normal;
  6638. font-size:18px;
  6639. color:#000000;
  6640. line-height:22px;
  6641. }
  6642. #u4833 .text {
  6643. position:absolute;
  6644. align-self:flex-start;
  6645. padding:0px 0px 0px 0px;
  6646. box-sizing:border-box;
  6647. width:100%;
  6648. }
  6649. #u4833_text {
  6650. border-width:0px;
  6651. white-space:nowrap;
  6652. text-transform:none;
  6653. }
  6654. #u4834_div {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:61px;
  6660. height:32px;
  6661. background:inherit;
  6662. background-color:rgba(24, 144, 255, 1);
  6663. border-radius:4px;
  6664. filter:drop-shadow(none);
  6665. transition:none;
  6666. font-family:"Microsoft YaHei", sans-serif;
  6667. font-weight:400;
  6668. font-style:normal;
  6669. font-size:14px;
  6670. color:#FFFFFF;
  6671. }
  6672. #u4834 {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:1944px;
  6676. top:718px;
  6677. width:61px;
  6678. height:32px;
  6679. display:flex;
  6680. transition:none;
  6681. transform-origin:50% 50%;
  6682. font-family:"Microsoft YaHei", sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:14px;
  6686. color:#FFFFFF;
  6687. }
  6688. #u4834 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:2px 16px 2px 16px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u4834_text {
  6696. border-width:0px;
  6697. white-space:nowrap;
  6698. text-transform:none;
  6699. }
  6700. #u4835 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:1661px;
  6704. top:628px;
  6705. width:20px;
  6706. height:20px;
  6707. display:flex;
  6708. transition:none;
  6709. }
  6710. #u4835 .text {
  6711. position:absolute;
  6712. align-self:center;
  6713. padding:2px 2px 2px 2px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u4835_img {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:20px;
  6723. height:20px;
  6724. }
  6725. #u4835_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u4836 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:0px;
  6737. height:0px;
  6738. }
  6739. #u4837 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:0px;
  6745. height:0px;
  6746. }
  6747. #u4838_div {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:380px;
  6753. height:180px;
  6754. background:inherit;
  6755. background-color:rgba(255, 255, 255, 1);
  6756. box-sizing:border-box;
  6757. border-width:1px;
  6758. border-style:solid;
  6759. border-color:rgba(204, 204, 204, 1);
  6760. border-radius:4px;
  6761. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  6762. transition:none;
  6763. font-family:"Microsoft YaHei", sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. }
  6767. #u4838 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:1653px;
  6771. top:364px;
  6772. width:380px;
  6773. height:180px;
  6774. display:flex;
  6775. transition:none;
  6776. transform-origin:50% 50%;
  6777. font-family:"Microsoft YaHei", sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. }
  6781. #u4838 .text {
  6782. position:absolute;
  6783. align-self:center;
  6784. padding:2px 2px 2px 2px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u4838_text {
  6789. border-width:0px;
  6790. word-wrap:break-word;
  6791. text-transform:none;
  6792. visibility:hidden;
  6793. }
  6794. #u4839_div {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:302px;
  6800. height:66px;
  6801. background:inherit;
  6802. background-color:rgba(255, 255, 255, 0);
  6803. border-radius:0px;
  6804. filter:drop-shadow(none);
  6805. transition:none;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:14px;
  6810. color:#666666;
  6811. line-height:22px;
  6812. }
  6813. #u4839 {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:1703px;
  6817. top:419px;
  6818. width:302px;
  6819. height:66px;
  6820. display:flex;
  6821. transition:none;
  6822. transform-origin:50% 50%;
  6823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:14px;
  6827. color:#666666;
  6828. line-height:22px;
  6829. }
  6830. #u4839 .text {
  6831. position:absolute;
  6832. align-self:flex-start;
  6833. padding:0px 0px 0px 0px;
  6834. box-sizing:border-box;
  6835. width:100%;
  6836. }
  6837. #u4839_text {
  6838. border-width:0px;
  6839. word-wrap:break-word;
  6840. text-transform:none;
  6841. }
  6842. #u4840_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:127px;
  6848. height:21px;
  6849. background:inherit;
  6850. background-color:rgba(255, 255, 255, 0);
  6851. border-radius:0px;
  6852. filter:drop-shadow(none);
  6853. transition:none;
  6854. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6855. font-weight:500;
  6856. font-style:normal;
  6857. font-size:18px;
  6858. color:#000000;
  6859. line-height:22px;
  6860. }
  6861. #u4840 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:1703px;
  6865. top:389px;
  6866. width:127px;
  6867. height:21px;
  6868. display:flex;
  6869. transition:none;
  6870. transform-origin:50% 50%;
  6871. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6872. font-weight:500;
  6873. font-style:normal;
  6874. font-size:18px;
  6875. color:#000000;
  6876. line-height:22px;
  6877. }
  6878. #u4840 .text {
  6879. position:absolute;
  6880. align-self:flex-start;
  6881. padding:0px 0px 0px 0px;
  6882. box-sizing:border-box;
  6883. width:100%;
  6884. }
  6885. #u4840_text {
  6886. border-width:0px;
  6887. white-space:nowrap;
  6888. text-transform:none;
  6889. }
  6890. #u4841_div {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:61px;
  6896. height:32px;
  6897. background:inherit;
  6898. background-color:rgba(24, 144, 255, 1);
  6899. border-radius:4px;
  6900. filter:drop-shadow(none);
  6901. transition:none;
  6902. font-family:"Microsoft YaHei", sans-serif;
  6903. font-weight:400;
  6904. font-style:normal;
  6905. font-size:14px;
  6906. color:#FFFFFF;
  6907. }
  6908. #u4841 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:1955px;
  6912. top:491px;
  6913. width:61px;
  6914. height:32px;
  6915. display:flex;
  6916. transition:none;
  6917. transform-origin:50% 50%;
  6918. font-family:"Microsoft YaHei", sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. font-size:14px;
  6922. color:#FFFFFF;
  6923. }
  6924. #u4841 .text {
  6925. position:absolute;
  6926. align-self:center;
  6927. padding:2px 16px 2px 16px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u4841_text {
  6932. border-width:0px;
  6933. white-space:nowrap;
  6934. text-transform:none;
  6935. }
  6936. #u4842 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:1672px;
  6940. top:389px;
  6941. width:20px;
  6942. height:20px;
  6943. display:flex;
  6944. transition:none;
  6945. }
  6946. #u4842 .text {
  6947. position:absolute;
  6948. align-self:center;
  6949. padding:2px 2px 2px 2px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u4842_img {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:20px;
  6959. height:20px;
  6960. }
  6961. #u4842_text {
  6962. border-width:0px;
  6963. word-wrap:break-word;
  6964. text-transform:none;
  6965. visibility:hidden;
  6966. }
  6967. #u4843_div {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:578px;
  6973. height:480px;
  6974. background:inherit;
  6975. background-color:rgba(255, 255, 255, 0);
  6976. border-radius:0px;
  6977. filter:drop-shadow(none);
  6978. transition:none;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:14px;
  6983. color:#D9001B;
  6984. line-height:30px;
  6985. }
  6986. #u4843 {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:1642px;
  6990. top:330px;
  6991. width:578px;
  6992. height:480px;
  6993. display:flex;
  6994. transition:none;
  6995. transform-origin:50% 50%;
  6996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6997. font-weight:400;
  6998. font-style:normal;
  6999. font-size:14px;
  7000. color:#D9001B;
  7001. line-height:30px;
  7002. }
  7003. #u4843 .text {
  7004. position:absolute;
  7005. align-self:flex-start;
  7006. padding:0px 0px 0px 0px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u4843_text {
  7011. border-width:0px;
  7012. word-wrap:break-word;
  7013. text-transform:none;
  7014. }
  7015. #u4844 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:0px;
  7021. height:0px;
  7022. }
  7023. #u4845 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:1661px;
  7027. top:-656px;
  7028. width:160px;
  7029. height:140px;
  7030. display:flex;
  7031. transition:none;
  7032. font-size:18px;
  7033. color:#1890FF;
  7034. }
  7035. #u4845 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:2px 2px 2px 2px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u4845_img {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:160px;
  7048. height:140px;
  7049. }
  7050. #u4845_text {
  7051. border-width:0px;
  7052. word-wrap:break-word;
  7053. text-transform:none;
  7054. }
  7055. #u4846 {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:0px;
  7061. height:0px;
  7062. }
  7063. #u4847_div {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:0px;
  7067. top:0px;
  7068. width:800px;
  7069. height:345px;
  7070. background:inherit;
  7071. background-color:rgba(255, 255, 255, 1);
  7072. border-radius:4px;
  7073. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  7074. transition:none;
  7075. }
  7076. #u4847 {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:1642px;
  7080. top:-494px;
  7081. width:800px;
  7082. height:345px;
  7083. display:flex;
  7084. transition:none;
  7085. transform-origin:50% 50%;
  7086. }
  7087. #u4847 .text {
  7088. position:absolute;
  7089. align-self:center;
  7090. padding:2px 2px 2px 2px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u4847_text {
  7095. border-width:0px;
  7096. word-wrap:break-word;
  7097. text-transform:none;
  7098. visibility:hidden;
  7099. }
  7100. #u4848_div {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:117px;
  7106. height:24px;
  7107. background:inherit;
  7108. background-color:rgba(255, 255, 255, 1);
  7109. border-left:0px;
  7110. border-top:0px;
  7111. border-right:0px;
  7112. border-radius:0px;
  7113. border-bottom-right-radius:0px;
  7114. border-bottom-left-radius:0px;
  7115. filter:drop-shadow(none);
  7116. transition:none;
  7117. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7118. font-weight:500;
  7119. font-style:normal;
  7120. font-size:14px;
  7121. text-align:left;
  7122. }
  7123. #u4848 {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:1661px;
  7127. top:-479px;
  7128. width:117px;
  7129. height:24px;
  7130. display:flex;
  7131. transition:none;
  7132. transform-origin:50% 50%;
  7133. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7134. font-weight:500;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. text-align:left;
  7138. }
  7139. #u4848 .text {
  7140. position:absolute;
  7141. align-self:center;
  7142. padding:2px 2px 2px 2px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u4848_text {
  7147. border-width:0px;
  7148. white-space:nowrap;
  7149. text-transform:none;
  7150. }
  7151. #u4849 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:1666px;
  7155. top:-426px;
  7156. width:165px;
  7157. height:116px;
  7158. display:flex;
  7159. transition:none;
  7160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7161. font-weight:400;
  7162. font-style:normal;
  7163. font-size:18px;
  7164. }
  7165. #u4849 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:2px 2px 2px 2px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u4849_img {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:165px;
  7178. height:116px;
  7179. }
  7180. #u4849_text {
  7181. border-width:0px;
  7182. word-wrap:break-word;
  7183. text-transform:none;
  7184. }
  7185. #u4850_div {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:0px;
  7190. width:40px;
  7191. height:40px;
  7192. background:inherit;
  7193. background-color:rgba(255, 255, 255, 0);
  7194. border-top:0px;
  7195. border-right:0px;
  7196. border-bottom:0px;
  7197. border-radius:0px;
  7198. border-top-left-radius:0px;
  7199. border-bottom-left-radius:0px;
  7200. filter:drop-shadow(none);
  7201. transition:none;
  7202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7203. font-weight:500;
  7204. font-style:normal;
  7205. font-size:18px;
  7206. text-align:center;
  7207. }
  7208. #u4850 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:2402px;
  7212. top:-494px;
  7213. width:40px;
  7214. height:40px;
  7215. display:flex;
  7216. transition:none;
  7217. transform-origin:50% 50%;
  7218. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7219. font-weight:500;
  7220. font-style:normal;
  7221. font-size:18px;
  7222. text-align:center;
  7223. }
  7224. #u4850 .text {
  7225. position:absolute;
  7226. align-self:center;
  7227. padding:5px 10px 5px 0px;
  7228. box-sizing:border-box;
  7229. width:100%;
  7230. }
  7231. #u4850_text {
  7232. border-width:0px;
  7233. word-wrap:break-word;
  7234. text-transform:none;
  7235. }
  7236. #u4851 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:1861px;
  7240. top:-426px;
  7241. width:165px;
  7242. height:116px;
  7243. display:flex;
  7244. transition:none;
  7245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:18px;
  7249. }
  7250. #u4851 .text {
  7251. position:absolute;
  7252. align-self:center;
  7253. padding:2px 2px 2px 2px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u4851_img {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:165px;
  7263. height:116px;
  7264. }
  7265. #u4851_text {
  7266. border-width:0px;
  7267. word-wrap:break-word;
  7268. text-transform:none;
  7269. }
  7270. #u4852 {
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:2056px;
  7274. top:-426px;
  7275. width:165px;
  7276. height:116px;
  7277. display:flex;
  7278. transition:none;
  7279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7280. font-weight:400;
  7281. font-style:normal;
  7282. font-size:18px;
  7283. }
  7284. #u4852 .text {
  7285. position:absolute;
  7286. align-self:center;
  7287. padding:2px 2px 2px 2px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u4852_img {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:165px;
  7297. height:116px;
  7298. }
  7299. #u4852_text {
  7300. border-width:0px;
  7301. word-wrap:break-word;
  7302. text-transform:none;
  7303. }
  7304. #u4853 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:2251px;
  7308. top:-426px;
  7309. width:165px;
  7310. height:116px;
  7311. display:flex;
  7312. transition:none;
  7313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7314. font-weight:400;
  7315. font-style:normal;
  7316. font-size:18px;
  7317. }
  7318. #u4853 .text {
  7319. position:absolute;
  7320. align-self:center;
  7321. padding:2px 2px 2px 2px;
  7322. box-sizing:border-box;
  7323. width:100%;
  7324. }
  7325. #u4853_img {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:0px;
  7329. top:0px;
  7330. width:165px;
  7331. height:116px;
  7332. }
  7333. #u4853_text {
  7334. border-width:0px;
  7335. word-wrap:break-word;
  7336. text-transform:none;
  7337. }
  7338. #u4854 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:1666px;
  7342. top:-290px;
  7343. width:165px;
  7344. height:116px;
  7345. display:flex;
  7346. transition:none;
  7347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:18px;
  7351. }
  7352. #u4854 .text {
  7353. position:absolute;
  7354. align-self:center;
  7355. padding:2px 2px 2px 2px;
  7356. box-sizing:border-box;
  7357. width:100%;
  7358. }
  7359. #u4854_img {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:165px;
  7365. height:116px;
  7366. }
  7367. #u4854_text {
  7368. border-width:0px;
  7369. word-wrap:break-word;
  7370. text-transform:none;
  7371. }
  7372. #u4855 {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:1861px;
  7376. top:-290px;
  7377. width:165px;
  7378. height:116px;
  7379. display:flex;
  7380. transition:none;
  7381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7382. font-weight:400;
  7383. font-style:normal;
  7384. font-size:18px;
  7385. }
  7386. #u4855 .text {
  7387. position:absolute;
  7388. align-self:center;
  7389. padding:2px 2px 2px 2px;
  7390. box-sizing:border-box;
  7391. width:100%;
  7392. }
  7393. #u4855_img {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:0px;
  7397. top:0px;
  7398. width:165px;
  7399. height:116px;
  7400. }
  7401. #u4855_text {
  7402. border-width:0px;
  7403. word-wrap:break-word;
  7404. text-transform:none;
  7405. }
  7406. #u4856 {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:120px;
  7410. top:50px;
  7411. width:201px;
  7412. height:1190px;
  7413. }
  7414. #u4857 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:0px;
  7420. height:0px;
  7421. }
  7422. #u4858_div {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:200px;
  7428. height:1190px;
  7429. background:inherit;
  7430. background-color:rgba(255, 255, 255, 1);
  7431. border-radius:0px;
  7432. filter:drop-shadow(none);
  7433. transition:none;
  7434. }
  7435. #u4858 {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:200px;
  7441. height:1190px;
  7442. display:flex;
  7443. transition:none;
  7444. transform-origin:50% 50%;
  7445. }
  7446. #u4858 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:2px 2px 2px 2px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u4858_text {
  7454. border-width:0px;
  7455. word-wrap:break-word;
  7456. text-transform:none;
  7457. visibility:hidden;
  7458. }
  7459. #u4859_div {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:0px;
  7463. top:0px;
  7464. width:200px;
  7465. height:60px;
  7466. background:inherit;
  7467. background-color:rgba(224, 231, 247, 1);
  7468. border-radius:0px;
  7469. filter:drop-shadow(none);
  7470. transition:none;
  7471. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7472. font-weight:500;
  7473. font-style:normal;
  7474. font-size:18px;
  7475. }
  7476. #u4859 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:0px;
  7480. top:0px;
  7481. width:200px;
  7482. height:60px;
  7483. display:flex;
  7484. transition:none;
  7485. transform-origin:50% 50%;
  7486. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7487. font-weight:500;
  7488. font-style:normal;
  7489. font-size:18px;
  7490. }
  7491. #u4859 .text {
  7492. position:absolute;
  7493. align-self:center;
  7494. padding:0px 0px 0px 20px;
  7495. box-sizing:border-box;
  7496. width:100%;
  7497. }
  7498. #u4859_text {
  7499. border-width:0px;
  7500. word-wrap:break-word;
  7501. text-transform:none;
  7502. }
  7503. #u4860_div {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:65px;
  7509. height:22px;
  7510. background:inherit;
  7511. background-color:rgba(255, 255, 255, 0);
  7512. border-radius:0px;
  7513. filter:drop-shadow(none);
  7514. transition:none;
  7515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7516. font-weight:400;
  7517. font-style:normal;
  7518. font-size:16px;
  7519. }
  7520. #u4860 {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:27px;
  7524. top:179px;
  7525. width:65px;
  7526. height:22px;
  7527. display:flex;
  7528. transition:none;
  7529. transform-origin:50% 50%;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:16px;
  7534. }
  7535. #u4860 .text {
  7536. position:absolute;
  7537. align-self:flex-start;
  7538. padding:0px 0px 0px 0px;
  7539. box-sizing:border-box;
  7540. width:100%;
  7541. }
  7542. #u4860_text {
  7543. border-width:0px;
  7544. white-space:nowrap;
  7545. text-transform:none;
  7546. }
  7547. #u4861 {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:1px;
  7551. top:122px;
  7552. width:200px;
  7553. height:1px;
  7554. display:flex;
  7555. transition:none;
  7556. }
  7557. #u4861 .text {
  7558. position:absolute;
  7559. align-self:center;
  7560. padding:2px 2px 2px 2px;
  7561. box-sizing:border-box;
  7562. width:100%;
  7563. }
  7564. #u4861_img {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:201px;
  7570. height:2px;
  7571. }
  7572. #u4861_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. visibility:hidden;
  7577. }
  7578. #u4862_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:65px;
  7584. height:22px;
  7585. background:inherit;
  7586. background-color:rgba(255, 255, 255, 0);
  7587. border-radius:0px;
  7588. filter:drop-shadow(none);
  7589. transition:none;
  7590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:16px;
  7594. }
  7595. #u4862 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:27px;
  7599. top:80px;
  7600. width:65px;
  7601. height:22px;
  7602. display:flex;
  7603. transition:none;
  7604. transform-origin:50% 50%;
  7605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:16px;
  7609. }
  7610. #u4862 .text {
  7611. position:absolute;
  7612. align-self:flex-start;
  7613. padding:0px 0px 0px 0px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u4862_text {
  7618. border-width:0px;
  7619. white-space:nowrap;
  7620. text-transform:none;
  7621. }
  7622. #u4863_div {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:49px;
  7628. height:17px;
  7629. background:inherit;
  7630. background-color:rgba(255, 255, 255, 0);
  7631. border-radius:0px;
  7632. filter:drop-shadow(none);
  7633. transition:none;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:12px;
  7638. color:#AAAAAA;
  7639. }
  7640. #u4863 {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:27px;
  7644. top:142px;
  7645. width:49px;
  7646. height:17px;
  7647. display:flex;
  7648. transition:none;
  7649. transform-origin:50% 50%;
  7650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:12px;
  7654. color:#AAAAAA;
  7655. }
  7656. #u4863 .text {
  7657. position:absolute;
  7658. align-self:flex-start;
  7659. padding:0px 0px 0px 0px;
  7660. box-sizing:border-box;
  7661. width:100%;
  7662. }
  7663. #u4863_text {
  7664. border-width:0px;
  7665. white-space:nowrap;
  7666. text-transform:none;
  7667. }
  7668. #u4864 {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:0px;
  7674. height:0px;
  7675. }
  7676. #u4865_div {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:87px;
  7682. height:30px;
  7683. background:inherit;
  7684. background-color:rgba(255, 255, 255, 1);
  7685. box-sizing:border-box;
  7686. border-width:1px;
  7687. border-style:solid;
  7688. border-color:rgba(170, 170, 170, 1);
  7689. border-radius:4px;
  7690. filter:drop-shadow(none);
  7691. transition:none;
  7692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:14px;
  7696. color:#555555;
  7697. }
  7698. #u4865 {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:1482px;
  7702. top:60px;
  7703. width:87px;
  7704. height:30px;
  7705. display:flex;
  7706. transition:none;
  7707. transform-origin:50% 50%;
  7708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7709. font-weight:400;
  7710. font-style:normal;
  7711. font-size:14px;
  7712. color:#555555;
  7713. }
  7714. #u4865 .text {
  7715. position:absolute;
  7716. align-self:center;
  7717. padding:5px 15px 5px 15px;
  7718. box-sizing:border-box;
  7719. width:100%;
  7720. }
  7721. #u4865_text {
  7722. border-width:0px;
  7723. white-space:nowrap;
  7724. text-transform:none;
  7725. }
  7726. #u4866_div {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:0px;
  7730. top:0px;
  7731. width:600px;
  7732. height:1196px;
  7733. background:inherit;
  7734. background-color:rgba(255, 255, 255, 1);
  7735. box-sizing:border-box;
  7736. border-width:1px;
  7737. border-style:solid;
  7738. border-color:rgba(215, 215, 215, 1);
  7739. border-radius:0px;
  7740. filter:drop-shadow(none);
  7741. transition:none;
  7742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7743. font-weight:400;
  7744. font-style:normal;
  7745. font-size:14px;
  7746. color:#AAAAAA;
  7747. text-align:center;
  7748. line-height:30px;
  7749. }
  7750. #u4866 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:989px;
  7754. top:-1224px;
  7755. width:600px;
  7756. height:1196px;
  7757. display:flex;
  7758. transition:none;
  7759. transform-origin:50% 50%;
  7760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7761. font-weight:400;
  7762. font-style:normal;
  7763. font-size:14px;
  7764. color:#AAAAAA;
  7765. text-align:center;
  7766. line-height:30px;
  7767. }
  7768. #u4866 .text {
  7769. position:absolute;
  7770. align-self:center;
  7771. padding:5px 10px 5px 10px;
  7772. box-sizing:border-box;
  7773. width:100%;
  7774. }
  7775. #u4866_text {
  7776. border-width:0px;
  7777. word-wrap:break-word;
  7778. text-transform:none;
  7779. visibility:hidden;
  7780. }
  7781. #u4867_div {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:83px;
  7787. height:35px;
  7788. background:inherit;
  7789. background-color:rgba(255, 255, 255, 0);
  7790. border-top:0px;
  7791. border-right:0px;
  7792. border-bottom:0px;
  7793. border-radius:0px;
  7794. border-top-left-radius:0px;
  7795. border-bottom-left-radius:0px;
  7796. filter:drop-shadow(none);
  7797. transition:none;
  7798. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7799. font-weight:500;
  7800. font-style:normal;
  7801. font-size:18px;
  7802. }
  7803. #u4867 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:1009px;
  7807. top:-1206px;
  7808. width:83px;
  7809. height:35px;
  7810. display:flex;
  7811. transition:none;
  7812. transform-origin:50% 50%;
  7813. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7814. font-weight:500;
  7815. font-style:normal;
  7816. font-size:18px;
  7817. }
  7818. #u4867 .text {
  7819. position:absolute;
  7820. align-self:center;
  7821. padding:5px 10px 5px 0px;
  7822. box-sizing:border-box;
  7823. width:100%;
  7824. }
  7825. #u4867_text {
  7826. border-width:0px;
  7827. white-space:nowrap;
  7828. text-transform:none;
  7829. }
  7830. #u4868 {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:0px;
  7834. top:0px;
  7835. width:0px;
  7836. height:0px;
  7837. }
  7838. #u4869_div {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:0px;
  7842. top:0px;
  7843. width:40px;
  7844. height:40px;
  7845. background:inherit;
  7846. background-color:rgba(255, 255, 255, 0);
  7847. border-top:0px;
  7848. border-right:0px;
  7849. border-bottom:0px;
  7850. border-radius:0px;
  7851. border-top-left-radius:0px;
  7852. border-bottom-left-radius:0px;
  7853. filter:drop-shadow(none);
  7854. transition:none;
  7855. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7856. font-weight:500;
  7857. font-style:normal;
  7858. font-size:18px;
  7859. text-align:center;
  7860. }
  7861. #u4869 {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:1549px;
  7865. top:-1224px;
  7866. width:40px;
  7867. height:40px;
  7868. display:flex;
  7869. transition:none;
  7870. transform-origin:50% 50%;
  7871. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7872. font-weight:500;
  7873. font-style:normal;
  7874. font-size:18px;
  7875. text-align:center;
  7876. }
  7877. #u4869 .text {
  7878. position:absolute;
  7879. align-self:center;
  7880. padding:5px 10px 5px 0px;
  7881. box-sizing:border-box;
  7882. width:100%;
  7883. }
  7884. #u4869_text {
  7885. border-width:0px;
  7886. word-wrap:break-word;
  7887. text-transform:none;
  7888. }
  7889. #u4870 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:1537px;
  7893. top:-1208px;
  7894. width:13px;
  7895. height:13px;
  7896. display:flex;
  7897. transition:none;
  7898. }
  7899. #u4870 .text {
  7900. position:absolute;
  7901. align-self:center;
  7902. padding:2px 2px 2px 2px;
  7903. box-sizing:border-box;
  7904. width:100%;
  7905. }
  7906. #u4870_img {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:13px;
  7912. height:13px;
  7913. }
  7914. #u4870_text {
  7915. border-width:0px;
  7916. word-wrap:break-word;
  7917. text-transform:none;
  7918. visibility:hidden;
  7919. }
  7920. #u4871 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:0px;
  7926. height:0px;
  7927. }
  7928. #u4872_div {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:0px;
  7932. top:0px;
  7933. width:600px;
  7934. height:50px;
  7935. background:inherit;
  7936. background-color:rgba(255, 255, 255, 1);
  7937. box-sizing:border-box;
  7938. border-width:1px;
  7939. border-style:solid;
  7940. border-color:rgba(215, 215, 215, 1);
  7941. border-radius:0px;
  7942. filter:drop-shadow(none);
  7943. transition:none;
  7944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7945. font-weight:400;
  7946. font-style:normal;
  7947. font-size:14px;
  7948. color:#AAAAAA;
  7949. text-align:center;
  7950. line-height:30px;
  7951. }
  7952. #u4872 {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:989px;
  7956. top:-78px;
  7957. width:600px;
  7958. height:50px;
  7959. display:flex;
  7960. transition:none;
  7961. transform-origin:50% 50%;
  7962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7963. font-weight:400;
  7964. font-style:normal;
  7965. font-size:14px;
  7966. color:#AAAAAA;
  7967. text-align:center;
  7968. line-height:30px;
  7969. }
  7970. #u4872 .text {
  7971. position:absolute;
  7972. align-self:center;
  7973. padding:5px 10px 5px 10px;
  7974. box-sizing:border-box;
  7975. width:100%;
  7976. }
  7977. #u4872_text {
  7978. border-width:0px;
  7979. word-wrap:break-word;
  7980. text-transform:none;
  7981. visibility:hidden;
  7982. }
  7983. #u4873_div {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:80px;
  7989. height:30px;
  7990. background:inherit;
  7991. background-color:rgba(24, 144, 255, 1);
  7992. border-radius:4px;
  7993. filter:drop-shadow(none);
  7994. transition:none;
  7995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7996. font-weight:400;
  7997. font-style:normal;
  7998. font-size:14px;
  7999. color:#FFFFFF;
  8000. }
  8001. #u4873 {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:1487px;
  8005. top:-68px;
  8006. width:80px;
  8007. height:30px;
  8008. display:flex;
  8009. transition:none;
  8010. transform-origin:50% 50%;
  8011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8012. font-weight:400;
  8013. font-style:normal;
  8014. font-size:14px;
  8015. color:#FFFFFF;
  8016. }
  8017. #u4873 .text {
  8018. position:absolute;
  8019. align-self:center;
  8020. padding:2px 2px 2px 2px;
  8021. box-sizing:border-box;
  8022. width:100%;
  8023. }
  8024. #u4873_text {
  8025. border-width:0px;
  8026. word-wrap:break-word;
  8027. text-transform:none;
  8028. }
  8029. #u4874_div {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:80px;
  8035. height:30px;
  8036. background:inherit;
  8037. background-color:rgba(255, 255, 255, 1);
  8038. box-sizing:border-box;
  8039. border-width:1px;
  8040. border-style:solid;
  8041. border-color:rgba(121, 121, 121, 1);
  8042. border-radius:4px;
  8043. filter:drop-shadow(none);
  8044. transition:none;
  8045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8046. font-weight:400;
  8047. font-style:normal;
  8048. font-size:14px;
  8049. }
  8050. #u4874 {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:1397px;
  8054. top:-68px;
  8055. width:80px;
  8056. height:30px;
  8057. display:flex;
  8058. transition:none;
  8059. transform-origin:50% 50%;
  8060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:14px;
  8064. }
  8065. #u4874 .text {
  8066. position:absolute;
  8067. align-self:center;
  8068. padding:2px 2px 2px 2px;
  8069. box-sizing:border-box;
  8070. width:100%;
  8071. }
  8072. #u4874_text {
  8073. border-width:0px;
  8074. word-wrap:break-word;
  8075. text-transform:none;
  8076. }
  8077. #u4875_div {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:0px;
  8081. top:0px;
  8082. width:80px;
  8083. height:30px;
  8084. background:inherit;
  8085. background-color:rgba(255, 255, 255, 0);
  8086. border-top:0px;
  8087. border-right:0px;
  8088. border-bottom:0px;
  8089. border-radius:0px;
  8090. border-top-left-radius:0px;
  8091. border-bottom-left-radius:0px;
  8092. filter:drop-shadow(none);
  8093. transition:none;
  8094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:14px;
  8098. }
  8099. #u4875 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:1038px;
  8103. top:-1070px;
  8104. width:80px;
  8105. height:30px;
  8106. display:flex;
  8107. transition:none;
  8108. transform-origin:50% 50%;
  8109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8110. font-weight:400;
  8111. font-style:normal;
  8112. font-size:14px;
  8113. }
  8114. #u4875 .text {
  8115. position:absolute;
  8116. align-self:center;
  8117. padding:5px 10px 5px 0px;
  8118. box-sizing:border-box;
  8119. width:100%;
  8120. }
  8121. #u4875_text {
  8122. border-width:0px;
  8123. white-space:nowrap;
  8124. text-transform:none;
  8125. }
  8126. #u4876 {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:0px;
  8130. top:0px;
  8131. width:0px;
  8132. height:0px;
  8133. }
  8134. #u4877_div {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:0px;
  8138. top:0px;
  8139. width:280px;
  8140. height:40px;
  8141. background:inherit;
  8142. background-color:rgba(255, 255, 255, 1);
  8143. box-sizing:border-box;
  8144. border-width:1px;
  8145. border-style:solid;
  8146. border-color:rgba(201, 201, 201, 1);
  8147. border-radius:4px;
  8148. filter:drop-shadow(none);
  8149. transition:none;
  8150. font-family:"Microsoft YaHei", sans-serif;
  8151. font-weight:400;
  8152. font-style:normal;
  8153. font-size:14px;
  8154. color:#CCCCCC;
  8155. text-align:left;
  8156. }
  8157. #u4877 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:1038px;
  8161. top:-1040px;
  8162. width:280px;
  8163. height:40px;
  8164. display:flex;
  8165. transition:none;
  8166. transform-origin:50% 50%;
  8167. font-family:"Microsoft YaHei", sans-serif;
  8168. font-weight:400;
  8169. font-style:normal;
  8170. font-size:14px;
  8171. color:#CCCCCC;
  8172. text-align:left;
  8173. }
  8174. #u4877 .text {
  8175. position:absolute;
  8176. align-self:center;
  8177. padding:2px 8px 2px 8px;
  8178. box-sizing:border-box;
  8179. width:100%;
  8180. }
  8181. #u4877_text {
  8182. border-width:0px;
  8183. word-wrap:break-word;
  8184. text-transform:none;
  8185. visibility:hidden;
  8186. }
  8187. #u4878_input {
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:266px;
  8192. height:38px;
  8193. padding:2px 2px 2px 2px;
  8194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8195. font-weight:400;
  8196. font-style:normal;
  8197. font-size:14px;
  8198. letter-spacing:normal;
  8199. color:#000000;
  8200. vertical-align:none;
  8201. text-align:left;
  8202. text-transform:none;
  8203. background-color:transparent;
  8204. border-color:transparent;
  8205. }
  8206. #u4878_input.hint {
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:266px;
  8211. height:38px;
  8212. padding:2px 2px 2px 2px;
  8213. font-family:"Microsoft YaHei", sans-serif;
  8214. font-weight:400;
  8215. font-style:normal;
  8216. font-size:12px;
  8217. letter-spacing:normal;
  8218. color:#AAAAAA;
  8219. vertical-align:none;
  8220. text-align:left;
  8221. text-transform:none;
  8222. background-color:transparent;
  8223. border-color:transparent;
  8224. }
  8225. #u4878_input.disabled {
  8226. position:absolute;
  8227. left:0px;
  8228. top:0px;
  8229. width:266px;
  8230. height:38px;
  8231. padding:2px 2px 2px 2px;
  8232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8233. font-weight:400;
  8234. font-style:normal;
  8235. font-size:14px;
  8236. letter-spacing:normal;
  8237. color:#000000;
  8238. vertical-align:none;
  8239. text-align:left;
  8240. text-transform:none;
  8241. background-color:transparent;
  8242. border-color:transparent;
  8243. }
  8244. #u4878_input.hint.disabled {
  8245. position:absolute;
  8246. left:0px;
  8247. top:0px;
  8248. width:266px;
  8249. height:38px;
  8250. padding:2px 2px 2px 2px;
  8251. font-family:"Microsoft YaHei", sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. font-size:12px;
  8255. letter-spacing:normal;
  8256. color:#AAAAAA;
  8257. vertical-align:none;
  8258. text-align:left;
  8259. text-transform:none;
  8260. background-color:transparent;
  8261. border-color:transparent;
  8262. }
  8263. #u4878_div {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:0px;
  8267. top:0px;
  8268. width:266px;
  8269. height:38px;
  8270. background:inherit;
  8271. background-color:rgba(255, 255, 255, 1);
  8272. border-radius:0px;
  8273. filter:drop-shadow(none);
  8274. transition:none;
  8275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8276. font-weight:400;
  8277. font-style:normal;
  8278. font-size:14px;
  8279. }
  8280. #u4878 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:1046px;
  8284. top:-1039px;
  8285. width:266px;
  8286. height:38px;
  8287. display:flex;
  8288. transition:none;
  8289. transform-origin:50% 50%;
  8290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8291. font-weight:400;
  8292. font-style:normal;
  8293. font-size:14px;
  8294. }
  8295. #u4878 .text {
  8296. position:absolute;
  8297. align-self:center;
  8298. padding:2px 2px 2px 2px;
  8299. box-sizing:border-box;
  8300. width:100%;
  8301. }
  8302. #u4878_div.hint {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:0px;
  8306. top:0px;
  8307. width:266px;
  8308. height:38px;
  8309. background:inherit;
  8310. background-color:rgba(255, 255, 255, 1);
  8311. border-radius:0px;
  8312. filter:drop-shadow(none);
  8313. transition:none;
  8314. font-family:"Microsoft YaHei", sans-serif;
  8315. font-weight:400;
  8316. font-style:normal;
  8317. font-size:14px;
  8318. }
  8319. #u4878.hint {
  8320. }
  8321. #u4878_div.disabled {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:0px;
  8325. top:0px;
  8326. width:266px;
  8327. height:38px;
  8328. background:inherit;
  8329. background-color:rgba(240, 240, 240, 1);
  8330. border-radius:0px;
  8331. filter:drop-shadow(none);
  8332. transition:none;
  8333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8334. font-weight:400;
  8335. font-style:normal;
  8336. font-size:14px;
  8337. }
  8338. #u4878.disabled {
  8339. }
  8340. #u4878_div.hint.disabled {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:0px;
  8344. top:0px;
  8345. width:266px;
  8346. height:38px;
  8347. background:inherit;
  8348. background-color:rgba(240, 240, 240, 1);
  8349. border-radius:0px;
  8350. filter:drop-shadow(none);
  8351. transition:none;
  8352. font-family:"Microsoft YaHei", sans-serif;
  8353. font-weight:400;
  8354. font-style:normal;
  8355. font-size:14px;
  8356. }
  8357. #u4878.hint.disabled {
  8358. }
  8359. #u4879_div {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:0px;
  8364. width:82px;
  8365. height:30px;
  8366. background:inherit;
  8367. background-color:rgba(255, 255, 255, 0);
  8368. border-top:0px;
  8369. border-right:0px;
  8370. border-bottom:0px;
  8371. border-radius:0px;
  8372. border-top-left-radius:0px;
  8373. border-bottom-left-radius:0px;
  8374. filter:drop-shadow(none);
  8375. transition:none;
  8376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8377. font-weight:400;
  8378. font-style:normal;
  8379. font-size:14px;
  8380. }
  8381. #u4879 {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:1038px;
  8385. top:-980px;
  8386. width:82px;
  8387. height:30px;
  8388. display:flex;
  8389. transition:none;
  8390. transform-origin:50% 50%;
  8391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8392. font-weight:400;
  8393. font-style:normal;
  8394. font-size:14px;
  8395. }
  8396. #u4879 .text {
  8397. position:absolute;
  8398. align-self:center;
  8399. padding:5px 10px 5px 0px;
  8400. box-sizing:border-box;
  8401. width:100%;
  8402. }
  8403. #u4879_text {
  8404. border-width:0px;
  8405. white-space:nowrap;
  8406. text-transform:none;
  8407. }
  8408. #u4880 {
  8409. border-width:0px;
  8410. position:absolute;
  8411. left:0px;
  8412. top:0px;
  8413. width:0px;
  8414. height:0px;
  8415. }
  8416. #u4881_div {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:280px;
  8422. height:40px;
  8423. background:inherit;
  8424. background-color:rgba(255, 255, 255, 1);
  8425. box-sizing:border-box;
  8426. border-width:1px;
  8427. border-style:solid;
  8428. border-color:rgba(201, 201, 201, 1);
  8429. border-radius:4px;
  8430. filter:drop-shadow(none);
  8431. transition:none;
  8432. font-family:"Microsoft YaHei", sans-serif;
  8433. font-weight:400;
  8434. font-style:normal;
  8435. font-size:14px;
  8436. color:#CCCCCC;
  8437. text-align:left;
  8438. }
  8439. #u4881 {
  8440. border-width:0px;
  8441. position:absolute;
  8442. left:1038px;
  8443. top:-950px;
  8444. width:280px;
  8445. height:40px;
  8446. display:flex;
  8447. transition:none;
  8448. transform-origin:50% 50%;
  8449. font-family:"Microsoft YaHei", sans-serif;
  8450. font-weight:400;
  8451. font-style:normal;
  8452. font-size:14px;
  8453. color:#CCCCCC;
  8454. text-align:left;
  8455. }
  8456. #u4881 .text {
  8457. position:absolute;
  8458. align-self:center;
  8459. padding:2px 8px 2px 8px;
  8460. box-sizing:border-box;
  8461. width:100%;
  8462. }
  8463. #u4881_text {
  8464. border-width:0px;
  8465. word-wrap:break-word;
  8466. text-transform:none;
  8467. visibility:hidden;
  8468. }
  8469. #u4882_input {
  8470. position:absolute;
  8471. left:0px;
  8472. top:0px;
  8473. width:266px;
  8474. height:38px;
  8475. padding:2px 2px 2px 2px;
  8476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8477. font-weight:400;
  8478. font-style:normal;
  8479. font-size:14px;
  8480. letter-spacing:normal;
  8481. color:#000000;
  8482. vertical-align:none;
  8483. text-align:left;
  8484. text-transform:none;
  8485. background-color:transparent;
  8486. border-color:transparent;
  8487. }
  8488. #u4882_input.hint {
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:266px;
  8493. height:38px;
  8494. padding:2px 2px 2px 2px;
  8495. font-family:"Microsoft YaHei", sans-serif;
  8496. font-weight:400;
  8497. font-style:normal;
  8498. font-size:12px;
  8499. letter-spacing:normal;
  8500. color:#AAAAAA;
  8501. vertical-align:none;
  8502. text-align:left;
  8503. text-transform:none;
  8504. background-color:transparent;
  8505. border-color:transparent;
  8506. }
  8507. #u4882_input.disabled {
  8508. position:absolute;
  8509. left:0px;
  8510. top:0px;
  8511. width:266px;
  8512. height:38px;
  8513. padding:2px 2px 2px 2px;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:14px;
  8518. letter-spacing:normal;
  8519. color:#000000;
  8520. vertical-align:none;
  8521. text-align:left;
  8522. text-transform:none;
  8523. background-color:transparent;
  8524. border-color:transparent;
  8525. }
  8526. #u4882_input.hint.disabled {
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:266px;
  8531. height:38px;
  8532. padding:2px 2px 2px 2px;
  8533. font-family:"Microsoft YaHei", sans-serif;
  8534. font-weight:400;
  8535. font-style:normal;
  8536. font-size:12px;
  8537. letter-spacing:normal;
  8538. color:#AAAAAA;
  8539. vertical-align:none;
  8540. text-align:left;
  8541. text-transform:none;
  8542. background-color:transparent;
  8543. border-color:transparent;
  8544. }
  8545. #u4882_div {
  8546. border-width:0px;
  8547. position:absolute;
  8548. left:0px;
  8549. top:0px;
  8550. width:266px;
  8551. height:38px;
  8552. background:inherit;
  8553. background-color:rgba(255, 255, 255, 1);
  8554. border-radius:0px;
  8555. filter:drop-shadow(none);
  8556. transition:none;
  8557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:14px;
  8561. }
  8562. #u4882 {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:1046px;
  8566. top:-949px;
  8567. width:266px;
  8568. height:38px;
  8569. display:flex;
  8570. transition:none;
  8571. transform-origin:50% 50%;
  8572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:14px;
  8576. }
  8577. #u4882 .text {
  8578. position:absolute;
  8579. align-self:center;
  8580. padding:2px 2px 2px 2px;
  8581. box-sizing:border-box;
  8582. width:100%;
  8583. }
  8584. #u4882_div.hint {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:0px;
  8588. top:0px;
  8589. width:266px;
  8590. height:38px;
  8591. background:inherit;
  8592. background-color:rgba(255, 255, 255, 1);
  8593. border-radius:0px;
  8594. filter:drop-shadow(none);
  8595. transition:none;
  8596. font-family:"Microsoft YaHei", sans-serif;
  8597. font-weight:400;
  8598. font-style:normal;
  8599. font-size:14px;
  8600. }
  8601. #u4882.hint {
  8602. }
  8603. #u4882_div.disabled {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:266px;
  8609. height:38px;
  8610. background:inherit;
  8611. background-color:rgba(240, 240, 240, 1);
  8612. border-radius:0px;
  8613. filter:drop-shadow(none);
  8614. transition:none;
  8615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8616. font-weight:400;
  8617. font-style:normal;
  8618. font-size:14px;
  8619. }
  8620. #u4882.disabled {
  8621. }
  8622. #u4882_div.hint.disabled {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:0px;
  8626. top:0px;
  8627. width:266px;
  8628. height:38px;
  8629. background:inherit;
  8630. background-color:rgba(240, 240, 240, 1);
  8631. border-radius:0px;
  8632. filter:drop-shadow(none);
  8633. transition:none;
  8634. font-family:"Microsoft YaHei", sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:14px;
  8638. }
  8639. #u4882.hint.disabled {
  8640. }
  8641. #u4883_div {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:0px;
  8645. top:0px;
  8646. width:82px;
  8647. height:30px;
  8648. background:inherit;
  8649. background-color:rgba(255, 255, 255, 0);
  8650. border-top:0px;
  8651. border-right:0px;
  8652. border-bottom:0px;
  8653. border-radius:0px;
  8654. border-top-left-radius:0px;
  8655. border-bottom-left-radius:0px;
  8656. filter:drop-shadow(none);
  8657. transition:none;
  8658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8659. font-weight:400;
  8660. font-style:normal;
  8661. font-size:14px;
  8662. }
  8663. #u4883 {
  8664. border-width:0px;
  8665. position:absolute;
  8666. left:1038px;
  8667. top:-890px;
  8668. width:82px;
  8669. height:30px;
  8670. display:flex;
  8671. transition:none;
  8672. transform-origin:50% 50%;
  8673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8674. font-weight:400;
  8675. font-style:normal;
  8676. font-size:14px;
  8677. }
  8678. #u4883 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:5px 10px 5px 0px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u4883_text {
  8686. border-width:0px;
  8687. white-space:nowrap;
  8688. text-transform:none;
  8689. }
  8690. #u4884 {
  8691. border-width:0px;
  8692. position:absolute;
  8693. left:0px;
  8694. top:0px;
  8695. width:0px;
  8696. height:0px;
  8697. }
  8698. #u4885_div {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:0px;
  8702. top:0px;
  8703. width:280px;
  8704. height:40px;
  8705. background:inherit;
  8706. background-color:rgba(255, 255, 255, 1);
  8707. box-sizing:border-box;
  8708. border-width:1px;
  8709. border-style:solid;
  8710. border-color:rgba(201, 201, 201, 1);
  8711. border-radius:4px;
  8712. filter:drop-shadow(none);
  8713. transition:none;
  8714. font-family:"Microsoft YaHei", sans-serif;
  8715. font-weight:400;
  8716. font-style:normal;
  8717. font-size:14px;
  8718. color:#CCCCCC;
  8719. text-align:left;
  8720. }
  8721. #u4885 {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:1038px;
  8725. top:-860px;
  8726. width:280px;
  8727. height:40px;
  8728. display:flex;
  8729. transition:none;
  8730. transform-origin:50% 50%;
  8731. font-family:"Microsoft YaHei", sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:14px;
  8735. color:#CCCCCC;
  8736. text-align:left;
  8737. }
  8738. #u4885 .text {
  8739. position:absolute;
  8740. align-self:center;
  8741. padding:2px 8px 2px 8px;
  8742. box-sizing:border-box;
  8743. width:100%;
  8744. }
  8745. #u4885_text {
  8746. border-width:0px;
  8747. word-wrap:break-word;
  8748. text-transform:none;
  8749. visibility:hidden;
  8750. }
  8751. #u4886_input {
  8752. position:absolute;
  8753. left:0px;
  8754. top:0px;
  8755. width:266px;
  8756. height:38px;
  8757. padding:2px 2px 2px 2px;
  8758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8759. font-weight:400;
  8760. font-style:normal;
  8761. font-size:14px;
  8762. letter-spacing:normal;
  8763. color:#000000;
  8764. vertical-align:none;
  8765. text-align:left;
  8766. text-transform:none;
  8767. background-color:transparent;
  8768. border-color:transparent;
  8769. }
  8770. #u4886_input.hint {
  8771. position:absolute;
  8772. left:0px;
  8773. top:0px;
  8774. width:266px;
  8775. height:38px;
  8776. padding:2px 2px 2px 2px;
  8777. font-family:"Microsoft YaHei", sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:12px;
  8781. letter-spacing:normal;
  8782. color:#AAAAAA;
  8783. vertical-align:none;
  8784. text-align:left;
  8785. text-transform:none;
  8786. background-color:transparent;
  8787. border-color:transparent;
  8788. }
  8789. #u4886_input.disabled {
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:266px;
  8794. height:38px;
  8795. padding:2px 2px 2px 2px;
  8796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8797. font-weight:400;
  8798. font-style:normal;
  8799. font-size:14px;
  8800. letter-spacing:normal;
  8801. color:#000000;
  8802. vertical-align:none;
  8803. text-align:left;
  8804. text-transform:none;
  8805. background-color:transparent;
  8806. border-color:transparent;
  8807. }
  8808. #u4886_input.hint.disabled {
  8809. position:absolute;
  8810. left:0px;
  8811. top:0px;
  8812. width:266px;
  8813. height:38px;
  8814. padding:2px 2px 2px 2px;
  8815. font-family:"Microsoft YaHei", sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. font-size:12px;
  8819. letter-spacing:normal;
  8820. color:#AAAAAA;
  8821. vertical-align:none;
  8822. text-align:left;
  8823. text-transform:none;
  8824. background-color:transparent;
  8825. border-color:transparent;
  8826. }
  8827. #u4886_div {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:0px;
  8831. top:0px;
  8832. width:266px;
  8833. height:38px;
  8834. background:inherit;
  8835. background-color:rgba(255, 255, 255, 1);
  8836. border-radius:0px;
  8837. filter:drop-shadow(none);
  8838. transition:none;
  8839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8840. font-weight:400;
  8841. font-style:normal;
  8842. font-size:14px;
  8843. }
  8844. #u4886 {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:1046px;
  8848. top:-859px;
  8849. width:266px;
  8850. height:38px;
  8851. display:flex;
  8852. transition:none;
  8853. transform-origin:50% 50%;
  8854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8855. font-weight:400;
  8856. font-style:normal;
  8857. font-size:14px;
  8858. }
  8859. #u4886 .text {
  8860. position:absolute;
  8861. align-self:center;
  8862. padding:2px 2px 2px 2px;
  8863. box-sizing:border-box;
  8864. width:100%;
  8865. }
  8866. #u4886_div.hint {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:0px;
  8870. top:0px;
  8871. width:266px;
  8872. height:38px;
  8873. background:inherit;
  8874. background-color:rgba(255, 255, 255, 1);
  8875. border-radius:0px;
  8876. filter:drop-shadow(none);
  8877. transition:none;
  8878. font-family:"Microsoft YaHei", sans-serif;
  8879. font-weight:400;
  8880. font-style:normal;
  8881. font-size:14px;
  8882. }
  8883. #u4886.hint {
  8884. }
  8885. #u4886_div.disabled {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:0px;
  8889. top:0px;
  8890. width:266px;
  8891. height:38px;
  8892. background:inherit;
  8893. background-color:rgba(240, 240, 240, 1);
  8894. border-radius:0px;
  8895. filter:drop-shadow(none);
  8896. transition:none;
  8897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8898. font-weight:400;
  8899. font-style:normal;
  8900. font-size:14px;
  8901. }
  8902. #u4886.disabled {
  8903. }
  8904. #u4886_div.hint.disabled {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:266px;
  8910. height:38px;
  8911. background:inherit;
  8912. background-color:rgba(240, 240, 240, 1);
  8913. border-radius:0px;
  8914. filter:drop-shadow(none);
  8915. transition:none;
  8916. font-family:"Microsoft YaHei", sans-serif;
  8917. font-weight:400;
  8918. font-style:normal;
  8919. font-size:14px;
  8920. }
  8921. #u4886.hint.disabled {
  8922. }
  8923. #u4887_div {
  8924. border-width:0px;
  8925. position:absolute;
  8926. left:0px;
  8927. top:0px;
  8928. width:137px;
  8929. height:30px;
  8930. background:inherit;
  8931. background-color:rgba(255, 255, 255, 0);
  8932. border-top:0px;
  8933. border-right:0px;
  8934. border-bottom:0px;
  8935. border-radius:0px;
  8936. border-top-left-radius:0px;
  8937. border-bottom-left-radius:0px;
  8938. filter:drop-shadow(none);
  8939. transition:none;
  8940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8941. font-weight:400;
  8942. font-style:normal;
  8943. font-size:14px;
  8944. color:#298FFF;
  8945. }
  8946. #u4887 {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:1038px;
  8950. top:-814px;
  8951. width:137px;
  8952. height:30px;
  8953. display:flex;
  8954. transition:none;
  8955. transform-origin:50% 50%;
  8956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8957. font-weight:400;
  8958. font-style:normal;
  8959. font-size:14px;
  8960. color:#298FFF;
  8961. }
  8962. #u4887 .text {
  8963. position:absolute;
  8964. align-self:center;
  8965. padding:5px 10px 5px 0px;
  8966. box-sizing:border-box;
  8967. width:100%;
  8968. }
  8969. #u4887_text {
  8970. border-width:0px;
  8971. word-wrap:break-word;
  8972. text-transform:none;
  8973. }
  8974. #u4888_div {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:39px;
  8980. height:30px;
  8981. background:inherit;
  8982. background-color:rgba(255, 255, 255, 0);
  8983. border-top:0px;
  8984. border-right:0px;
  8985. border-bottom:0px;
  8986. border-radius:0px;
  8987. border-top-left-radius:0px;
  8988. border-bottom-left-radius:0px;
  8989. filter:drop-shadow(none);
  8990. transition:none;
  8991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8992. font-weight:400;
  8993. font-style:normal;
  8994. font-size:14px;
  8995. color:#298FFF;
  8996. }
  8997. #u4888 {
  8998. border-width:0px;
  8999. position:absolute;
  9000. left:1327px;
  9001. top:-857px;
  9002. width:39px;
  9003. height:30px;
  9004. display:flex;
  9005. transition:none;
  9006. transform-origin:50% 50%;
  9007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9008. font-weight:400;
  9009. font-style:normal;
  9010. font-size:14px;
  9011. color:#298FFF;
  9012. }
  9013. #u4888 .text {
  9014. position:absolute;
  9015. align-self:center;
  9016. padding:5px 10px 5px 0px;
  9017. box-sizing:border-box;
  9018. width:100%;
  9019. }
  9020. #u4888_text {
  9021. border-width:0px;
  9022. white-space:nowrap;
  9023. text-transform:none;
  9024. }
  9025. #u4889_div {
  9026. border-width:0px;
  9027. position:absolute;
  9028. left:0px;
  9029. top:0px;
  9030. width:39px;
  9031. height:30px;
  9032. background:inherit;
  9033. background-color:rgba(255, 255, 255, 0);
  9034. border-top:0px;
  9035. border-right:0px;
  9036. border-bottom:0px;
  9037. border-radius:0px;
  9038. border-top-left-radius:0px;
  9039. border-bottom-left-radius:0px;
  9040. filter:drop-shadow(none);
  9041. transition:none;
  9042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9043. font-weight:400;
  9044. font-style:normal;
  9045. font-size:14px;
  9046. color:#298FFF;
  9047. }
  9048. #u4889 {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:1327px;
  9052. top:-945px;
  9053. width:39px;
  9054. height:30px;
  9055. display:flex;
  9056. transition:none;
  9057. transform-origin:50% 50%;
  9058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9059. font-weight:400;
  9060. font-style:normal;
  9061. font-size:14px;
  9062. color:#298FFF;
  9063. }
  9064. #u4889 .text {
  9065. position:absolute;
  9066. align-self:center;
  9067. padding:5px 10px 5px 0px;
  9068. box-sizing:border-box;
  9069. width:100%;
  9070. }
  9071. #u4889_text {
  9072. border-width:0px;
  9073. white-space:nowrap;
  9074. text-transform:none;
  9075. }
  9076. #u4890_div {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:0px;
  9080. top:0px;
  9081. width:39px;
  9082. height:30px;
  9083. background:inherit;
  9084. background-color:rgba(255, 255, 255, 0);
  9085. border-top:0px;
  9086. border-right:0px;
  9087. border-bottom:0px;
  9088. border-radius:0px;
  9089. border-top-left-radius:0px;
  9090. border-bottom-left-radius:0px;
  9091. filter:drop-shadow(none);
  9092. transition:none;
  9093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9094. font-weight:400;
  9095. font-style:normal;
  9096. font-size:14px;
  9097. color:#298FFF;
  9098. }
  9099. #u4890 {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:1327px;
  9103. top:-1035px;
  9104. width:39px;
  9105. height:30px;
  9106. display:flex;
  9107. transition:none;
  9108. transform-origin:50% 50%;
  9109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9110. font-weight:400;
  9111. font-style:normal;
  9112. font-size:14px;
  9113. color:#298FFF;
  9114. }
  9115. #u4890 .text {
  9116. position:absolute;
  9117. align-self:center;
  9118. padding:5px 10px 5px 0px;
  9119. box-sizing:border-box;
  9120. width:100%;
  9121. }
  9122. #u4890_text {
  9123. border-width:0px;
  9124. white-space:nowrap;
  9125. text-transform:none;
  9126. }
  9127. #u4891_div {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:0px;
  9131. top:0px;
  9132. width:543px;
  9133. height:70px;
  9134. background:inherit;
  9135. background-color:rgba(255, 255, 255, 0);
  9136. border-top:0px;
  9137. border-right:0px;
  9138. border-bottom:0px;
  9139. border-radius:0px;
  9140. border-top-left-radius:0px;
  9141. border-bottom-left-radius:0px;
  9142. filter:drop-shadow(none);
  9143. transition:none;
  9144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9145. font-weight:400;
  9146. font-style:normal;
  9147. font-size:14px;
  9148. color:#D9001B;
  9149. }
  9150. #u4891 {
  9151. border-width:0px;
  9152. position:absolute;
  9153. left:1021px;
  9154. top:-760px;
  9155. width:543px;
  9156. height:70px;
  9157. display:flex;
  9158. transition:none;
  9159. transform-origin:50% 50%;
  9160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9161. font-weight:400;
  9162. font-style:normal;
  9163. font-size:14px;
  9164. color:#D9001B;
  9165. }
  9166. #u4891 .text {
  9167. position:absolute;
  9168. align-self:center;
  9169. padding:5px 10px 5px 0px;
  9170. box-sizing:border-box;
  9171. width:100%;
  9172. }
  9173. #u4891_text {
  9174. border-width:0px;
  9175. word-wrap:break-word;
  9176. text-transform:none;
  9177. }
  9178. #u4892 {
  9179. border-width:0px;
  9180. position:absolute;
  9181. left:0px;
  9182. top:0px;
  9183. width:0px;
  9184. height:0px;
  9185. }
  9186. #u4893 {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:0px;
  9190. top:0px;
  9191. width:0px;
  9192. height:0px;
  9193. }
  9194. #u4894_div {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:0px;
  9198. top:0px;
  9199. width:380px;
  9200. height:140px;
  9201. background:inherit;
  9202. background-color:rgba(255, 255, 255, 1);
  9203. border-radius:4px;
  9204. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  9205. transition:none;
  9206. font-family:"Microsoft YaHei", sans-serif;
  9207. font-weight:400;
  9208. font-style:normal;
  9209. }
  9210. #u4894 {
  9211. border-width:0px;
  9212. position:absolute;
  9213. left:1057px;
  9214. top:-675px;
  9215. width:380px;
  9216. height:140px;
  9217. display:flex;
  9218. transition:none;
  9219. transform-origin:50% 50%;
  9220. font-family:"Microsoft YaHei", sans-serif;
  9221. font-weight:400;
  9222. font-style:normal;
  9223. }
  9224. #u4894 .text {
  9225. position:absolute;
  9226. align-self:center;
  9227. padding:2px 2px 2px 2px;
  9228. box-sizing:border-box;
  9229. width:100%;
  9230. }
  9231. #u4894_text {
  9232. border-width:0px;
  9233. word-wrap:break-word;
  9234. text-transform:none;
  9235. visibility:hidden;
  9236. }
  9237. #u4895_div {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:0px;
  9241. top:0px;
  9242. width:299px;
  9243. height:22px;
  9244. background:inherit;
  9245. background-color:rgba(255, 255, 255, 0);
  9246. border-radius:0px;
  9247. filter:drop-shadow(none);
  9248. transition:none;
  9249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:14px;
  9253. color:#666666;
  9254. line-height:22px;
  9255. }
  9256. #u4895 {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:1117px;
  9260. top:-620px;
  9261. width:299px;
  9262. height:22px;
  9263. display:flex;
  9264. transition:none;
  9265. transform-origin:50% 50%;
  9266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9267. font-weight:400;
  9268. font-style:normal;
  9269. font-size:14px;
  9270. color:#666666;
  9271. line-height:22px;
  9272. }
  9273. #u4895 .text {
  9274. position:absolute;
  9275. align-self:flex-start;
  9276. padding:0px 0px 0px 0px;
  9277. box-sizing:border-box;
  9278. width:100%;
  9279. }
  9280. #u4895_text {
  9281. border-width:0px;
  9282. word-wrap:break-word;
  9283. text-transform:none;
  9284. }
  9285. #u4896_div {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:0px;
  9289. top:0px;
  9290. width:127px;
  9291. height:21px;
  9292. background:inherit;
  9293. background-color:rgba(255, 255, 255, 0);
  9294. border-radius:0px;
  9295. filter:drop-shadow(none);
  9296. transition:none;
  9297. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9298. font-weight:650;
  9299. font-style:normal;
  9300. font-size:18px;
  9301. color:#000000;
  9302. line-height:22px;
  9303. }
  9304. #u4896 {
  9305. border-width:0px;
  9306. position:absolute;
  9307. left:1117px;
  9308. top:-650px;
  9309. width:127px;
  9310. height:21px;
  9311. display:flex;
  9312. transition:none;
  9313. transform-origin:50% 50%;
  9314. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9315. font-weight:650;
  9316. font-style:normal;
  9317. font-size:18px;
  9318. color:#000000;
  9319. line-height:22px;
  9320. }
  9321. #u4896 .text {
  9322. position:absolute;
  9323. align-self:flex-start;
  9324. padding:0px 0px 0px 0px;
  9325. box-sizing:border-box;
  9326. width:100%;
  9327. }
  9328. #u4896_text {
  9329. border-width:0px;
  9330. white-space:nowrap;
  9331. text-transform:none;
  9332. }
  9333. #u4897_div {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:61px;
  9339. height:32px;
  9340. background:inherit;
  9341. background-color:rgba(24, 144, 255, 1);
  9342. border-radius:4px;
  9343. filter:drop-shadow(none);
  9344. transition:none;
  9345. font-family:"Microsoft YaHei", sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:14px;
  9349. color:#FFFFFF;
  9350. }
  9351. #u4897 {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:1359px;
  9355. top:-586px;
  9356. width:61px;
  9357. height:32px;
  9358. display:flex;
  9359. transition:none;
  9360. transform-origin:50% 50%;
  9361. font-family:"Microsoft YaHei", sans-serif;
  9362. font-weight:400;
  9363. font-style:normal;
  9364. font-size:14px;
  9365. color:#FFFFFF;
  9366. }
  9367. #u4897 .text {
  9368. position:absolute;
  9369. align-self:center;
  9370. padding:2px 16px 2px 16px;
  9371. box-sizing:border-box;
  9372. width:100%;
  9373. }
  9374. #u4897_text {
  9375. border-width:0px;
  9376. white-space:nowrap;
  9377. text-transform:none;
  9378. }
  9379. #u4898_div {
  9380. border-width:0px;
  9381. position:absolute;
  9382. left:0px;
  9383. top:0px;
  9384. width:66px;
  9385. height:32px;
  9386. background:inherit;
  9387. background-color:rgba(255, 255, 255, 1);
  9388. box-sizing:border-box;
  9389. border-width:1px;
  9390. border-style:solid;
  9391. border-color:rgba(217, 217, 217, 1);
  9392. border-radius:4px;
  9393. filter:drop-shadow(none);
  9394. transition:none;
  9395. font-family:"Microsoft YaHei", sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:14px;
  9399. color:rgba(0, 0, 0, 0.6470588235294118);
  9400. line-height:21px;
  9401. }
  9402. #u4898 {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:1277px;
  9406. top:-586px;
  9407. width:66px;
  9408. height:32px;
  9409. display:flex;
  9410. transition:none;
  9411. transform-origin:50% 50%;
  9412. font-family:"Microsoft YaHei", sans-serif;
  9413. font-weight:400;
  9414. font-style:normal;
  9415. font-size:14px;
  9416. color:rgba(0, 0, 0, 0.6470588235294118);
  9417. line-height:21px;
  9418. }
  9419. #u4898 .text {
  9420. position:absolute;
  9421. align-self:center;
  9422. padding:2px 16px 2px 16px;
  9423. box-sizing:border-box;
  9424. width:100%;
  9425. }
  9426. #u4898_text {
  9427. border-width:0px;
  9428. white-space:nowrap;
  9429. text-transform:none;
  9430. }
  9431. #u4899 {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:1086px;
  9435. top:-646px;
  9436. width:20px;
  9437. height:20px;
  9438. display:flex;
  9439. transition:none;
  9440. }
  9441. #u4899 .text {
  9442. position:absolute;
  9443. align-self:center;
  9444. padding:2px 2px 2px 2px;
  9445. box-sizing:border-box;
  9446. width:100%;
  9447. }
  9448. #u4899_img {
  9449. border-width:0px;
  9450. position:absolute;
  9451. left:0px;
  9452. top:0px;
  9453. width:20px;
  9454. height:20px;
  9455. }
  9456. #u4899_text {
  9457. border-width:0px;
  9458. word-wrap:break-word;
  9459. text-transform:none;
  9460. visibility:hidden;
  9461. }
  9462. #u4900 {
  9463. border-width:0px;
  9464. position:absolute;
  9465. left:0px;
  9466. top:0px;
  9467. width:0px;
  9468. height:0px;
  9469. }
  9470. #u4901_div {
  9471. border-width:0px;
  9472. position:absolute;
  9473. left:0px;
  9474. top:0px;
  9475. width:380px;
  9476. height:140px;
  9477. background:inherit;
  9478. background-color:rgba(255, 255, 255, 1);
  9479. border-radius:4px;
  9480. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  9481. transition:none;
  9482. font-family:"Microsoft YaHei", sans-serif;
  9483. font-weight:400;
  9484. font-style:normal;
  9485. }
  9486. #u4901 {
  9487. border-width:0px;
  9488. position:absolute;
  9489. left:1057px;
  9490. top:-514px;
  9491. width:380px;
  9492. height:140px;
  9493. display:flex;
  9494. transition:none;
  9495. transform-origin:50% 50%;
  9496. font-family:"Microsoft YaHei", sans-serif;
  9497. font-weight:400;
  9498. font-style:normal;
  9499. }
  9500. #u4901 .text {
  9501. position:absolute;
  9502. align-self:center;
  9503. padding:2px 2px 2px 2px;
  9504. box-sizing:border-box;
  9505. width:100%;
  9506. }
  9507. #u4901_text {
  9508. border-width:0px;
  9509. word-wrap:break-word;
  9510. text-transform:none;
  9511. visibility:hidden;
  9512. }
  9513. #u4902_div {
  9514. border-width:0px;
  9515. position:absolute;
  9516. left:0px;
  9517. top:0px;
  9518. width:288px;
  9519. height:22px;
  9520. background:inherit;
  9521. background-color:rgba(255, 255, 255, 0);
  9522. border-radius:0px;
  9523. filter:drop-shadow(none);
  9524. transition:none;
  9525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9526. font-weight:400;
  9527. font-style:normal;
  9528. font-size:14px;
  9529. color:#666666;
  9530. line-height:22px;
  9531. }
  9532. #u4902 {
  9533. border-width:0px;
  9534. position:absolute;
  9535. left:1117px;
  9536. top:-459px;
  9537. width:288px;
  9538. height:22px;
  9539. display:flex;
  9540. transition:none;
  9541. transform-origin:50% 50%;
  9542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9543. font-weight:400;
  9544. font-style:normal;
  9545. font-size:14px;
  9546. color:#666666;
  9547. line-height:22px;
  9548. }
  9549. #u4902 .text {
  9550. position:absolute;
  9551. align-self:flex-start;
  9552. padding:0px 0px 0px 0px;
  9553. box-sizing:border-box;
  9554. width:100%;
  9555. }
  9556. #u4902_text {
  9557. border-width:0px;
  9558. word-wrap:break-word;
  9559. text-transform:none;
  9560. }
  9561. #u4903_div {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:0px;
  9565. top:0px;
  9566. width:91px;
  9567. height:21px;
  9568. background:inherit;
  9569. background-color:rgba(255, 255, 255, 0);
  9570. border-radius:0px;
  9571. filter:drop-shadow(none);
  9572. transition:none;
  9573. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9574. font-weight:650;
  9575. font-style:normal;
  9576. font-size:18px;
  9577. color:#000000;
  9578. line-height:22px;
  9579. }
  9580. #u4903 {
  9581. border-width:0px;
  9582. position:absolute;
  9583. left:1117px;
  9584. top:-489px;
  9585. width:91px;
  9586. height:21px;
  9587. display:flex;
  9588. transition:none;
  9589. transform-origin:50% 50%;
  9590. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9591. font-weight:650;
  9592. font-style:normal;
  9593. font-size:18px;
  9594. color:#000000;
  9595. line-height:22px;
  9596. }
  9597. #u4903 .text {
  9598. position:absolute;
  9599. align-self:flex-start;
  9600. padding:0px 0px 0px 0px;
  9601. box-sizing:border-box;
  9602. width:100%;
  9603. }
  9604. #u4903_text {
  9605. border-width:0px;
  9606. white-space:nowrap;
  9607. text-transform:none;
  9608. }
  9609. #u4904_div {
  9610. border-width:0px;
  9611. position:absolute;
  9612. left:0px;
  9613. top:0px;
  9614. width:61px;
  9615. height:32px;
  9616. background:inherit;
  9617. background-color:rgba(24, 144, 255, 1);
  9618. border-radius:4px;
  9619. filter:drop-shadow(none);
  9620. transition:none;
  9621. font-family:"Microsoft YaHei", sans-serif;
  9622. font-weight:400;
  9623. font-style:normal;
  9624. font-size:14px;
  9625. color:#FFFFFF;
  9626. }
  9627. #u4904 {
  9628. border-width:0px;
  9629. position:absolute;
  9630. left:1356px;
  9631. top:-425px;
  9632. width:61px;
  9633. height:32px;
  9634. display:flex;
  9635. transition:none;
  9636. transform-origin:50% 50%;
  9637. font-family:"Microsoft YaHei", sans-serif;
  9638. font-weight:400;
  9639. font-style:normal;
  9640. font-size:14px;
  9641. color:#FFFFFF;
  9642. }
  9643. #u4904 .text {
  9644. position:absolute;
  9645. align-self:center;
  9646. padding:2px 16px 2px 16px;
  9647. box-sizing:border-box;
  9648. width:100%;
  9649. }
  9650. #u4904_text {
  9651. border-width:0px;
  9652. white-space:nowrap;
  9653. text-transform:none;
  9654. }
  9655. #u4905_div {
  9656. border-width:0px;
  9657. position:absolute;
  9658. left:0px;
  9659. top:0px;
  9660. width:66px;
  9661. height:32px;
  9662. background:inherit;
  9663. background-color:rgba(255, 255, 255, 1);
  9664. box-sizing:border-box;
  9665. border-width:1px;
  9666. border-style:solid;
  9667. border-color:rgba(217, 217, 217, 1);
  9668. border-radius:4px;
  9669. filter:drop-shadow(none);
  9670. transition:none;
  9671. font-family:"Microsoft YaHei", sans-serif;
  9672. font-weight:400;
  9673. font-style:normal;
  9674. font-size:14px;
  9675. color:rgba(0, 0, 0, 0.6470588235294118);
  9676. line-height:21px;
  9677. }
  9678. #u4905 {
  9679. border-width:0px;
  9680. position:absolute;
  9681. left:1277px;
  9682. top:-425px;
  9683. width:66px;
  9684. height:32px;
  9685. display:flex;
  9686. transition:none;
  9687. transform-origin:50% 50%;
  9688. font-family:"Microsoft YaHei", sans-serif;
  9689. font-weight:400;
  9690. font-style:normal;
  9691. font-size:14px;
  9692. color:rgba(0, 0, 0, 0.6470588235294118);
  9693. line-height:21px;
  9694. }
  9695. #u4905 .text {
  9696. position:absolute;
  9697. align-self:center;
  9698. padding:2px 16px 2px 16px;
  9699. box-sizing:border-box;
  9700. width:100%;
  9701. }
  9702. #u4905_text {
  9703. border-width:0px;
  9704. white-space:nowrap;
  9705. text-transform:none;
  9706. }
  9707. #u4906 {
  9708. border-width:0px;
  9709. position:absolute;
  9710. left:1086px;
  9711. top:-487px;
  9712. width:20px;
  9713. height:20px;
  9714. display:flex;
  9715. transition:none;
  9716. }
  9717. #u4906 .text {
  9718. position:absolute;
  9719. align-self:center;
  9720. padding:2px 2px 2px 2px;
  9721. box-sizing:border-box;
  9722. width:100%;
  9723. }
  9724. #u4906_img {
  9725. border-width:0px;
  9726. position:absolute;
  9727. left:0px;
  9728. top:0px;
  9729. width:20px;
  9730. height:20px;
  9731. }
  9732. #u4906_text {
  9733. border-width:0px;
  9734. word-wrap:break-word;
  9735. text-transform:none;
  9736. visibility:hidden;
  9737. }
  9738. #u4907 {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:0px;
  9744. height:0px;
  9745. }
  9746. #u4908_div {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:0px;
  9750. top:0px;
  9751. width:279px;
  9752. height:40px;
  9753. background:inherit;
  9754. background-color:rgba(255, 255, 255, 1);
  9755. box-sizing:border-box;
  9756. border-width:1px;
  9757. border-style:solid;
  9758. border-color:rgba(215, 215, 215, 1);
  9759. border-radius:4px;
  9760. filter:drop-shadow(none);
  9761. transition:none;
  9762. font-size:11px;
  9763. }
  9764. #u4908 {
  9765. border-width:0px;
  9766. position:absolute;
  9767. left:1039px;
  9768. top:-1133px;
  9769. width:279px;
  9770. height:40px;
  9771. display:flex;
  9772. transition:none;
  9773. transform-origin:50% 50%;
  9774. font-size:11px;
  9775. }
  9776. #u4908 .text {
  9777. position:absolute;
  9778. align-self:center;
  9779. padding:2px 2px 2px 2px;
  9780. box-sizing:border-box;
  9781. width:100%;
  9782. }
  9783. #u4908_text {
  9784. border-width:0px;
  9785. word-wrap:break-word;
  9786. text-transform:none;
  9787. visibility:hidden;
  9788. }
  9789. #u4909_input {
  9790. position:absolute;
  9791. left:0px;
  9792. top:0px;
  9793. width:239px;
  9794. height:31px;
  9795. padding:2px 2px 2px 2px;
  9796. font-family:'ArialMT', 'Arial', sans-serif;
  9797. font-weight:400;
  9798. font-style:normal;
  9799. font-size:11px;
  9800. letter-spacing:normal;
  9801. color:#AAAAAA;
  9802. vertical-align:none;
  9803. text-align:left;
  9804. text-transform:none;
  9805. background-color:transparent;
  9806. border-color:transparent;
  9807. }
  9808. #u4909_input.disabled {
  9809. position:absolute;
  9810. left:0px;
  9811. top:0px;
  9812. width:239px;
  9813. height:31px;
  9814. padding:2px 2px 2px 2px;
  9815. font-family:'ArialMT', 'Arial', sans-serif;
  9816. font-weight:400;
  9817. font-style:normal;
  9818. font-size:11px;
  9819. letter-spacing:normal;
  9820. color:#AAAAAA;
  9821. vertical-align:none;
  9822. text-align:left;
  9823. text-transform:none;
  9824. background-color:transparent;
  9825. border-color:transparent;
  9826. }
  9827. #u4909_div {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:0px;
  9831. top:0px;
  9832. width:239px;
  9833. height:31px;
  9834. background:inherit;
  9835. background-color:rgba(255, 255, 255, 1);
  9836. border-radius:0px;
  9837. filter:drop-shadow(none);
  9838. transition:none;
  9839. font-size:11px;
  9840. color:#AAAAAA;
  9841. }
  9842. #u4909 {
  9843. border-width:0px;
  9844. position:absolute;
  9845. left:1053px;
  9846. top:-1130px;
  9847. width:239px;
  9848. height:31px;
  9849. display:flex;
  9850. transition:none;
  9851. transform-origin:50% 50%;
  9852. font-size:11px;
  9853. color:#AAAAAA;
  9854. }
  9855. #u4909 .text {
  9856. position:absolute;
  9857. align-self:flex-start;
  9858. padding:2px 2px 2px 2px;
  9859. box-sizing:border-box;
  9860. width:100%;
  9861. }
  9862. #u4909_div.disabled {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:239px;
  9868. height:31px;
  9869. background:inherit;
  9870. background-color:rgba(240, 240, 240, 1);
  9871. border-radius:0px;
  9872. filter:drop-shadow(none);
  9873. transition:none;
  9874. font-size:11px;
  9875. color:#AAAAAA;
  9876. }
  9877. #u4909.disabled {
  9878. }
  9879. .u4909_input_option {
  9880. font-size:11px;
  9881. }
  9882. #u4910_div {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:0px;
  9886. top:0px;
  9887. width:74px;
  9888. height:30px;
  9889. background:inherit;
  9890. background-color:rgba(255, 255, 255, 0);
  9891. border-top:0px;
  9892. border-right:0px;
  9893. border-bottom:0px;
  9894. border-radius:0px;
  9895. border-top-left-radius:0px;
  9896. border-bottom-left-radius:0px;
  9897. filter:drop-shadow(none);
  9898. transition:none;
  9899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9900. font-weight:400;
  9901. font-style:normal;
  9902. font-size:14px;
  9903. }
  9904. #u4910 {
  9905. border-width:0px;
  9906. position:absolute;
  9907. left:1039px;
  9908. top:-1163px;
  9909. width:74px;
  9910. height:30px;
  9911. display:flex;
  9912. transition:none;
  9913. transform-origin:50% 50%;
  9914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9915. font-weight:400;
  9916. font-style:normal;
  9917. font-size:14px;
  9918. }
  9919. #u4910 .text {
  9920. position:absolute;
  9921. align-self:center;
  9922. padding:5px 10px 5px 0px;
  9923. box-sizing:border-box;
  9924. width:100%;
  9925. }
  9926. #u4910_text {
  9927. border-width:0px;
  9928. white-space:nowrap;
  9929. text-transform:none;
  9930. }
  9931. #u4911 {
  9932. border-width:0px;
  9933. position:absolute;
  9934. left:0px;
  9935. top:0px;
  9936. width:0px;
  9937. height:0px;
  9938. }
  9939. #u4912 {
  9940. border-width:0px;
  9941. position:absolute;
  9942. left:0px;
  9943. top:0px;
  9944. width:0px;
  9945. height:0px;
  9946. }
  9947. #u4913_div {
  9948. border-width:0px;
  9949. position:absolute;
  9950. left:0px;
  9951. top:0px;
  9952. width:380px;
  9953. height:164px;
  9954. background:inherit;
  9955. background-color:rgba(255, 255, 255, 1);
  9956. box-sizing:border-box;
  9957. border-width:1px;
  9958. border-style:solid;
  9959. border-color:rgba(204, 204, 204, 1);
  9960. border-radius:4px;
  9961. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  9962. transition:none;
  9963. font-family:"Microsoft YaHei", sans-serif;
  9964. font-weight:400;
  9965. font-style:normal;
  9966. }
  9967. #u4913 {
  9968. border-width:0px;
  9969. position:absolute;
  9970. left:2036px;
  9971. top:817px;
  9972. width:380px;
  9973. height:164px;
  9974. display:flex;
  9975. transition:none;
  9976. transform-origin:50% 50%;
  9977. font-family:"Microsoft YaHei", sans-serif;
  9978. font-weight:400;
  9979. font-style:normal;
  9980. }
  9981. #u4913 .text {
  9982. position:absolute;
  9983. align-self:center;
  9984. padding:2px 2px 2px 2px;
  9985. box-sizing:border-box;
  9986. width:100%;
  9987. }
  9988. #u4913_text {
  9989. border-width:0px;
  9990. word-wrap:break-word;
  9991. text-transform:none;
  9992. visibility:hidden;
  9993. }
  9994. #u4914_div {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:0px;
  9998. top:0px;
  9999. width:300px;
  10000. height:22px;
  10001. background:inherit;
  10002. background-color:rgba(255, 255, 255, 0);
  10003. border-radius:0px;
  10004. filter:drop-shadow(none);
  10005. transition:none;
  10006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10007. font-weight:400;
  10008. font-style:normal;
  10009. font-size:14px;
  10010. color:#666666;
  10011. line-height:22px;
  10012. }
  10013. #u4914 {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:2086px;
  10017. top:872px;
  10018. width:300px;
  10019. height:22px;
  10020. display:flex;
  10021. transition:none;
  10022. transform-origin:50% 50%;
  10023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10024. font-weight:400;
  10025. font-style:normal;
  10026. font-size:14px;
  10027. color:#666666;
  10028. line-height:22px;
  10029. }
  10030. #u4914 .text {
  10031. position:absolute;
  10032. align-self:flex-start;
  10033. padding:0px 0px 0px 0px;
  10034. box-sizing:border-box;
  10035. width:100%;
  10036. }
  10037. #u4914_text {
  10038. border-width:0px;
  10039. word-wrap:break-word;
  10040. text-transform:none;
  10041. }
  10042. #u4915_div {
  10043. border-width:0px;
  10044. position:absolute;
  10045. left:0px;
  10046. top:0px;
  10047. width:91px;
  10048. height:21px;
  10049. background:inherit;
  10050. background-color:rgba(255, 255, 255, 0);
  10051. border-radius:0px;
  10052. filter:drop-shadow(none);
  10053. transition:none;
  10054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10055. font-weight:500;
  10056. font-style:normal;
  10057. font-size:18px;
  10058. color:#000000;
  10059. line-height:22px;
  10060. }
  10061. #u4915 {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:2086px;
  10065. top:842px;
  10066. width:91px;
  10067. height:21px;
  10068. display:flex;
  10069. transition:none;
  10070. transform-origin:50% 50%;
  10071. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10072. font-weight:500;
  10073. font-style:normal;
  10074. font-size:18px;
  10075. color:#000000;
  10076. line-height:22px;
  10077. }
  10078. #u4915 .text {
  10079. position:absolute;
  10080. align-self:flex-start;
  10081. padding:0px 0px 0px 0px;
  10082. box-sizing:border-box;
  10083. width:100%;
  10084. }
  10085. #u4915_text {
  10086. border-width:0px;
  10087. white-space:nowrap;
  10088. text-transform:none;
  10089. }
  10090. #u4916_div {
  10091. border-width:0px;
  10092. position:absolute;
  10093. left:0px;
  10094. top:0px;
  10095. width:61px;
  10096. height:32px;
  10097. background:inherit;
  10098. background-color:rgba(24, 144, 255, 1);
  10099. border-radius:4px;
  10100. filter:drop-shadow(none);
  10101. transition:none;
  10102. font-family:"Microsoft YaHei", sans-serif;
  10103. font-weight:400;
  10104. font-style:normal;
  10105. font-size:14px;
  10106. color:#FFFFFF;
  10107. }
  10108. #u4916 {
  10109. border-width:0px;
  10110. position:absolute;
  10111. left:2338px;
  10112. top:932px;
  10113. width:61px;
  10114. height:32px;
  10115. display:flex;
  10116. transition:none;
  10117. transform-origin:50% 50%;
  10118. font-family:"Microsoft YaHei", sans-serif;
  10119. font-weight:400;
  10120. font-style:normal;
  10121. font-size:14px;
  10122. color:#FFFFFF;
  10123. }
  10124. #u4916 .text {
  10125. position:absolute;
  10126. align-self:center;
  10127. padding:2px 16px 2px 16px;
  10128. box-sizing:border-box;
  10129. width:100%;
  10130. }
  10131. #u4916_text {
  10132. border-width:0px;
  10133. white-space:nowrap;
  10134. text-transform:none;
  10135. }
  10136. #u4917 {
  10137. border-width:0px;
  10138. position:absolute;
  10139. left:2055px;
  10140. top:842px;
  10141. width:20px;
  10142. height:20px;
  10143. display:flex;
  10144. transition:none;
  10145. }
  10146. #u4917 .text {
  10147. position:absolute;
  10148. align-self:center;
  10149. padding:2px 2px 2px 2px;
  10150. box-sizing:border-box;
  10151. width:100%;
  10152. }
  10153. #u4917_img {
  10154. border-width:0px;
  10155. position:absolute;
  10156. left:0px;
  10157. top:0px;
  10158. width:20px;
  10159. height:20px;
  10160. }
  10161. #u4917_text {
  10162. border-width:0px;
  10163. word-wrap:break-word;
  10164. text-transform:none;
  10165. visibility:hidden;
  10166. }