styles.css 172 KB

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