styles.css 177 KB

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