styles.css 132 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2098px;
  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. #u139879_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u139879 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u139879 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u139879_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u139880_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u139880 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u139880 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u139880_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u139881_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u139881 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u139881 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u139881_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u139882 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u139883_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u139883 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u139883 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u139883_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u139884_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u139884 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u139884 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u139884_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u139885_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u139885 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u139885 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u139885_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u139886 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u139887_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u139887_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u139887_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u139887 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u139887 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u139887_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u139887.disabled {
  356. }
  357. .u139887_input_option {
  358. font-size:14px;
  359. }
  360. #u139888_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u139888 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u139888 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u139888_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u139889_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u139889 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u139889 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u139889_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u139890_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u139890 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u139890 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u139890_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u139891 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u139892_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u139892 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u139892 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u139892_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u139893_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u139893 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u139893 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u139893_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u139894 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u139895_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u139895 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u139895 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u139895_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u139896_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u139896 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u139896 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u139896_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u139897 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u139898_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u139898 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u139898 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u139898_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u139899_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u139899 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u139899 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u139899_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u139900 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u139901_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u139901 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u139901 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u139901_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u139902_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u139902 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u139902 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u139902_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u139903 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u139904_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u139904 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u139904 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u139904_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u139905_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u139905 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u139905 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u139905_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u139906 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u139907_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u139907 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u139907 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u139907_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u139908_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u139908 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u139908 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u139908_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u139909 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u139910_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u139910 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u139910 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u139910_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u139911_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u139911 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u139911 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u139911_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u139912 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u139913_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u139913 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u139913 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u139913_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u139914_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u139914 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u139914 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u139914_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u139915 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u139916_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u139916 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u139916 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u139916_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u139917_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u139917 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u139917 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u139917_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u139918 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u139919_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u139919 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u139919 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u139919_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u139920_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u139920 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u139920 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u139920_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u139921_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u139921 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u139921 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u139921_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u139922_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u139922 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u139922 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u139922_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u139923_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u139923 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u139923 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u139923_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u139924_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u139924 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u139924 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u139924_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u139925 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u139926_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u139926 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u139926 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u139926_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u139927_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u139927 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u139927 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u139927_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u139928 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u139929_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u139929 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u139929 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u139929_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u139930_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u139930 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u139930 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u139930_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u139931 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u139932_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:200px;
  1652. height:1187px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. }
  1661. #u139932 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:120px;
  1665. top:50px;
  1666. width:200px;
  1667. height:1187px;
  1668. display:flex;
  1669. }
  1670. #u139932 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u139932_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u139933_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:60px;
  1690. background:inherit;
  1691. background-color:rgba(224, 231, 247, 1);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1698. font-weight:500;
  1699. font-style:normal;
  1700. font-size:18px;
  1701. }
  1702. #u139933 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:120px;
  1706. top:50px;
  1707. width:200px;
  1708. height:60px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1711. font-weight:500;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. }
  1715. #u139933 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:0px 0px 0px 20px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u139933_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u139934_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:97px;
  1733. height:22px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:16px;
  1745. }
  1746. #u139934 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:147px;
  1750. top:167px;
  1751. width:97px;
  1752. height:22px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:16px;
  1758. }
  1759. #u139934 .text {
  1760. position:absolute;
  1761. align-self:flex-start;
  1762. padding:0px 0px 0px 0px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u139934_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. }
  1771. #u139935_img {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:201px;
  1777. height:2px;
  1778. }
  1779. #u139935 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:120px;
  1783. top:255px;
  1784. width:200px;
  1785. height:1px;
  1786. display:flex;
  1787. }
  1788. #u139935 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:2px 2px 2px 2px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u139935_text {
  1796. border-width:0px;
  1797. word-wrap:break-word;
  1798. text-transform:none;
  1799. visibility:hidden;
  1800. }
  1801. #u139936_div {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:97px;
  1807. height:22px;
  1808. background:inherit;
  1809. background-color:rgba(255, 255, 255, 0);
  1810. border:none;
  1811. border-radius:0px;
  1812. -moz-box-shadow:none;
  1813. -webkit-box-shadow:none;
  1814. box-shadow:none;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:16px;
  1819. }
  1820. #u139936 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:147px;
  1824. top:208px;
  1825. width:97px;
  1826. height:22px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:16px;
  1832. }
  1833. #u139936 .text {
  1834. position:absolute;
  1835. align-self:flex-start;
  1836. padding:0px 0px 0px 0px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u139936_text {
  1841. border-width:0px;
  1842. white-space:nowrap;
  1843. text-transform:none;
  1844. }
  1845. #u139937_div {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:65px;
  1851. height:22px;
  1852. background:inherit;
  1853. background-color:rgba(255, 255, 255, 0);
  1854. border:none;
  1855. border-radius:0px;
  1856. -moz-box-shadow:none;
  1857. -webkit-box-shadow:none;
  1858. box-shadow:none;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:16px;
  1863. }
  1864. #u139937 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:147px;
  1868. top:312px;
  1869. width:65px;
  1870. height:22px;
  1871. display:flex;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:16px;
  1876. }
  1877. #u139937 .text {
  1878. position:absolute;
  1879. align-self:flex-start;
  1880. padding:0px 0px 0px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u139937_text {
  1885. border-width:0px;
  1886. white-space:nowrap;
  1887. text-transform:none;
  1888. }
  1889. #u139938_div {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:49px;
  1895. height:17px;
  1896. background:inherit;
  1897. background-color:rgba(255, 255, 255, 0);
  1898. border:none;
  1899. border-radius:0px;
  1900. -moz-box-shadow:none;
  1901. -webkit-box-shadow:none;
  1902. box-shadow:none;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. color:#AAAAAA;
  1908. }
  1909. #u139938 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:147px;
  1913. top:275px;
  1914. width:49px;
  1915. height:17px;
  1916. display:flex;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#AAAAAA;
  1922. }
  1923. #u139938 .text {
  1924. position:absolute;
  1925. align-self:flex-start;
  1926. padding:0px 0px 0px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u139938_text {
  1931. border-width:0px;
  1932. white-space:nowrap;
  1933. text-transform:none;
  1934. }
  1935. #u139939_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:49px;
  1941. height:17px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 0);
  1944. border:none;
  1945. border-radius:0px;
  1946. -moz-box-shadow:none;
  1947. -webkit-box-shadow:none;
  1948. box-shadow:none;
  1949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:12px;
  1953. color:#AAAAAA;
  1954. }
  1955. #u139939 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:147px;
  1959. top:130px;
  1960. width:49px;
  1961. height:17px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. color:#AAAAAA;
  1968. }
  1969. #u139939 .text {
  1970. position:absolute;
  1971. align-self:flex-start;
  1972. padding:0px 0px 0px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u139939_text {
  1977. border-width:0px;
  1978. white-space:nowrap;
  1979. text-transform:none;
  1980. }
  1981. #u139940_img {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:201px;
  1987. height:2px;
  1988. }
  1989. #u139940 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:120px;
  1993. top:1017px;
  1994. width:200px;
  1995. height:1px;
  1996. display:flex;
  1997. }
  1998. #u139940 .text {
  1999. position:absolute;
  2000. align-self:center;
  2001. padding:2px 2px 2px 2px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u139940_text {
  2006. border-width:0px;
  2007. word-wrap:break-word;
  2008. text-transform:none;
  2009. visibility:hidden;
  2010. }
  2011. #u139941_div {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:65px;
  2017. height:22px;
  2018. background:inherit;
  2019. background-color:rgba(255, 255, 255, 0);
  2020. border:none;
  2021. border-radius:0px;
  2022. -moz-box-shadow:none;
  2023. -webkit-box-shadow:none;
  2024. box-shadow:none;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:16px;
  2029. }
  2030. #u139941 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:147px;
  2034. top:1074px;
  2035. width:65px;
  2036. height:22px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:16px;
  2042. }
  2043. #u139941 .text {
  2044. position:absolute;
  2045. align-self:flex-start;
  2046. padding:0px 0px 0px 0px;
  2047. box-sizing:border-box;
  2048. width:100%;
  2049. }
  2050. #u139941_text {
  2051. border-width:0px;
  2052. white-space:nowrap;
  2053. text-transform:none;
  2054. }
  2055. #u139942_div {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:49px;
  2061. height:17px;
  2062. background:inherit;
  2063. background-color:rgba(255, 255, 255, 0);
  2064. border:none;
  2065. border-radius:0px;
  2066. -moz-box-shadow:none;
  2067. -webkit-box-shadow:none;
  2068. box-shadow:none;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:12px;
  2073. color:#AAAAAA;
  2074. }
  2075. #u139942 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:147px;
  2079. top:1037px;
  2080. width:49px;
  2081. height:17px;
  2082. display:flex;
  2083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:12px;
  2087. color:#AAAAAA;
  2088. }
  2089. #u139942 .text {
  2090. position:absolute;
  2091. align-self:flex-start;
  2092. padding:0px 0px 0px 0px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u139942_text {
  2097. border-width:0px;
  2098. white-space:nowrap;
  2099. text-transform:none;
  2100. }
  2101. #u139943_img {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:201px;
  2107. height:2px;
  2108. }
  2109. #u139943 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:120px;
  2113. top:481px;
  2114. width:200px;
  2115. height:1px;
  2116. display:flex;
  2117. }
  2118. #u139943 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u139943_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. visibility:hidden;
  2130. }
  2131. #u139944_div {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:65px;
  2137. height:22px;
  2138. background:inherit;
  2139. background-color:rgba(255, 255, 255, 0);
  2140. border:none;
  2141. border-radius:0px;
  2142. -moz-box-shadow:none;
  2143. -webkit-box-shadow:none;
  2144. box-shadow:none;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:16px;
  2149. }
  2150. #u139944 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:147px;
  2154. top:538px;
  2155. width:65px;
  2156. height:22px;
  2157. display:flex;
  2158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2159. font-weight:400;
  2160. font-style:normal;
  2161. font-size:16px;
  2162. }
  2163. #u139944 .text {
  2164. position:absolute;
  2165. align-self:flex-start;
  2166. padding:0px 0px 0px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u139944_text {
  2171. border-width:0px;
  2172. white-space:nowrap;
  2173. text-transform:none;
  2174. }
  2175. #u139945_div {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:49px;
  2181. height:17px;
  2182. background:inherit;
  2183. background-color:rgba(255, 255, 255, 0);
  2184. border:none;
  2185. border-radius:0px;
  2186. -moz-box-shadow:none;
  2187. -webkit-box-shadow:none;
  2188. box-shadow:none;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. color:#AAAAAA;
  2194. }
  2195. #u139945 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:147px;
  2199. top:501px;
  2200. width:49px;
  2201. height:17px;
  2202. display:flex;
  2203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2204. font-weight:400;
  2205. font-style:normal;
  2206. font-size:12px;
  2207. color:#AAAAAA;
  2208. }
  2209. #u139945 .text {
  2210. position:absolute;
  2211. align-self:flex-start;
  2212. padding:0px 0px 0px 0px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u139945_text {
  2217. border-width:0px;
  2218. white-space:nowrap;
  2219. text-transform:none;
  2220. }
  2221. #u139946_div {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:97px;
  2227. height:22px;
  2228. background:inherit;
  2229. background-color:rgba(255, 255, 255, 0);
  2230. border:none;
  2231. border-radius:0px;
  2232. -moz-box-shadow:none;
  2233. -webkit-box-shadow:none;
  2234. box-shadow:none;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:16px;
  2239. }
  2240. #u139946 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:147px;
  2244. top:579px;
  2245. width:97px;
  2246. height:22px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:16px;
  2252. }
  2253. #u139946 .text {
  2254. position:absolute;
  2255. align-self:flex-start;
  2256. padding:0px 0px 0px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u139946_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. }
  2265. #u139947_div {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:65px;
  2271. height:22px;
  2272. background:inherit;
  2273. background-color:rgba(255, 255, 255, 0);
  2274. border:none;
  2275. border-radius:0px;
  2276. -moz-box-shadow:none;
  2277. -webkit-box-shadow:none;
  2278. box-shadow:none;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:16px;
  2283. }
  2284. #u139947 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:147px;
  2288. top:354px;
  2289. width:65px;
  2290. height:22px;
  2291. display:flex;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:16px;
  2296. }
  2297. #u139947 .text {
  2298. position:absolute;
  2299. align-self:flex-start;
  2300. padding:0px 0px 0px 0px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u139947_text {
  2305. border-width:0px;
  2306. white-space:nowrap;
  2307. text-transform:none;
  2308. }
  2309. #u139948_div {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:97px;
  2315. height:22px;
  2316. background:inherit;
  2317. background-color:rgba(255, 255, 255, 0);
  2318. border:none;
  2319. border-radius:0px;
  2320. -moz-box-shadow:none;
  2321. -webkit-box-shadow:none;
  2322. box-shadow:none;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:16px;
  2327. }
  2328. #u139948 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:147px;
  2332. top:621px;
  2333. width:97px;
  2334. height:22px;
  2335. display:flex;
  2336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2337. font-weight:400;
  2338. font-style:normal;
  2339. font-size:16px;
  2340. }
  2341. #u139948 .text {
  2342. position:absolute;
  2343. align-self:flex-start;
  2344. padding:0px 0px 0px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u139948_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. }
  2353. #u139949_div {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:97px;
  2359. height:22px;
  2360. background:inherit;
  2361. background-color:rgba(255, 255, 255, 0);
  2362. border:none;
  2363. border-radius:0px;
  2364. -moz-box-shadow:none;
  2365. -webkit-box-shadow:none;
  2366. box-shadow:none;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:16px;
  2371. }
  2372. #u139949 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:147px;
  2376. top:663px;
  2377. width:97px;
  2378. height:22px;
  2379. display:flex;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:16px;
  2384. }
  2385. #u139949 .text {
  2386. position:absolute;
  2387. align-self:flex-start;
  2388. padding:0px 0px 0px 0px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u139949_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. }
  2397. #u139950_img {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:201px;
  2403. height:2px;
  2404. }
  2405. #u139950 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:120px;
  2409. top:708px;
  2410. width:200px;
  2411. height:1px;
  2412. display:flex;
  2413. }
  2414. #u139950 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 2px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u139950_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. visibility:hidden;
  2426. }
  2427. #u139951_div {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:65px;
  2433. height:22px;
  2434. background:inherit;
  2435. background-color:rgba(255, 255, 255, 0);
  2436. border:none;
  2437. border-radius:0px;
  2438. -moz-box-shadow:none;
  2439. -webkit-box-shadow:none;
  2440. box-shadow:none;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:16px;
  2445. }
  2446. #u139951 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:147px;
  2450. top:765px;
  2451. width:65px;
  2452. height:22px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:16px;
  2458. }
  2459. #u139951 .text {
  2460. position:absolute;
  2461. align-self:flex-start;
  2462. padding:0px 0px 0px 0px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u139951_text {
  2467. border-width:0px;
  2468. white-space:nowrap;
  2469. text-transform:none;
  2470. }
  2471. #u139952_div {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:49px;
  2477. height:17px;
  2478. background:inherit;
  2479. background-color:rgba(255, 255, 255, 0);
  2480. border:none;
  2481. border-radius:0px;
  2482. -moz-box-shadow:none;
  2483. -webkit-box-shadow:none;
  2484. box-shadow:none;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. color:#AAAAAA;
  2490. }
  2491. #u139952 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:147px;
  2495. top:728px;
  2496. width:49px;
  2497. height:17px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#AAAAAA;
  2504. }
  2505. #u139952 .text {
  2506. position:absolute;
  2507. align-self:flex-start;
  2508. padding:0px 0px 0px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u139952_text {
  2513. border-width:0px;
  2514. white-space:nowrap;
  2515. text-transform:none;
  2516. }
  2517. #u139953_div {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:97px;
  2523. height:22px;
  2524. background:inherit;
  2525. background-color:rgba(255, 255, 255, 0);
  2526. border:none;
  2527. border-radius:0px;
  2528. -moz-box-shadow:none;
  2529. -webkit-box-shadow:none;
  2530. box-shadow:none;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:16px;
  2535. }
  2536. #u139953 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:147px;
  2540. top:806px;
  2541. width:97px;
  2542. height:22px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:16px;
  2548. }
  2549. #u139953 .text {
  2550. position:absolute;
  2551. align-self:flex-start;
  2552. padding:0px 0px 0px 0px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u139953_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. }
  2561. #u139954_div {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:65px;
  2567. height:22px;
  2568. background:inherit;
  2569. background-color:rgba(255, 255, 255, 0);
  2570. border:none;
  2571. border-radius:0px;
  2572. -moz-box-shadow:none;
  2573. -webkit-box-shadow:none;
  2574. box-shadow:none;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:16px;
  2579. }
  2580. #u139954 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:147px;
  2584. top:888px;
  2585. width:65px;
  2586. height:22px;
  2587. display:flex;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:16px;
  2592. }
  2593. #u139954 .text {
  2594. position:absolute;
  2595. align-self:flex-start;
  2596. padding:0px 0px 0px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u139954_text {
  2601. border-width:0px;
  2602. white-space:nowrap;
  2603. text-transform:none;
  2604. }
  2605. #u139955_div {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:65px;
  2611. height:22px;
  2612. background:inherit;
  2613. background-color:rgba(255, 255, 255, 0);
  2614. border:none;
  2615. border-radius:0px;
  2616. -moz-box-shadow:none;
  2617. -webkit-box-shadow:none;
  2618. box-shadow:none;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:16px;
  2623. }
  2624. #u139955 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:147px;
  2628. top:972px;
  2629. width:65px;
  2630. height:22px;
  2631. display:flex;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:16px;
  2636. }
  2637. #u139955 .text {
  2638. position:absolute;
  2639. align-self:flex-start;
  2640. padding:0px 0px 0px 0px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u139955_text {
  2645. border-width:0px;
  2646. white-space:nowrap;
  2647. text-transform:none;
  2648. }
  2649. #u139956_div {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:65px;
  2655. height:22px;
  2656. background:inherit;
  2657. background-color:rgba(255, 255, 255, 0);
  2658. border:none;
  2659. border-radius:0px;
  2660. -moz-box-shadow:none;
  2661. -webkit-box-shadow:none;
  2662. box-shadow:none;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:16px;
  2667. }
  2668. #u139956 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:147px;
  2672. top:930px;
  2673. width:65px;
  2674. height:22px;
  2675. display:flex;
  2676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2677. font-weight:400;
  2678. font-style:normal;
  2679. font-size:16px;
  2680. }
  2681. #u139956 .text {
  2682. position:absolute;
  2683. align-self:flex-start;
  2684. padding:0px 0px 0px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u139956_text {
  2689. border-width:0px;
  2690. white-space:nowrap;
  2691. text-transform:none;
  2692. }
  2693. #u139957_div {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:65px;
  2699. height:22px;
  2700. background:inherit;
  2701. background-color:rgba(255, 255, 255, 0);
  2702. border:none;
  2703. border-radius:0px;
  2704. -moz-box-shadow:none;
  2705. -webkit-box-shadow:none;
  2706. box-shadow:none;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:16px;
  2711. }
  2712. #u139957 {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:147px;
  2716. top:847px;
  2717. width:65px;
  2718. height:22px;
  2719. display:flex;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:16px;
  2724. }
  2725. #u139957 .text {
  2726. position:absolute;
  2727. align-self:flex-start;
  2728. padding:0px 0px 0px 0px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u139957_text {
  2733. border-width:0px;
  2734. white-space:nowrap;
  2735. text-transform:none;
  2736. }
  2737. #u139958_div {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:65px;
  2743. height:22px;
  2744. background:inherit;
  2745. background-color:rgba(255, 255, 255, 0);
  2746. border:none;
  2747. border-radius:0px;
  2748. -moz-box-shadow:none;
  2749. -webkit-box-shadow:none;
  2750. box-shadow:none;
  2751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2752. font-weight:400;
  2753. font-style:normal;
  2754. font-size:16px;
  2755. }
  2756. #u139958 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:147px;
  2760. top:396px;
  2761. width:65px;
  2762. height:22px;
  2763. display:flex;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:16px;
  2768. }
  2769. #u139958 .text {
  2770. position:absolute;
  2771. align-self:flex-start;
  2772. padding:0px 0px 0px 0px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u139958_text {
  2777. border-width:0px;
  2778. white-space:nowrap;
  2779. text-transform:none;
  2780. }
  2781. #u139959_div {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:65px;
  2787. height:22px;
  2788. background:inherit;
  2789. background-color:rgba(255, 255, 255, 0);
  2790. border:none;
  2791. border-radius:0px;
  2792. -moz-box-shadow:none;
  2793. -webkit-box-shadow:none;
  2794. box-shadow:none;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:16px;
  2799. }
  2800. #u139959 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:147px;
  2804. top:438px;
  2805. width:65px;
  2806. height:22px;
  2807. display:flex;
  2808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2809. font-weight:400;
  2810. font-style:normal;
  2811. font-size:16px;
  2812. }
  2813. #u139959 .text {
  2814. position:absolute;
  2815. align-self:flex-start;
  2816. padding:0px 0px 0px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u139959_text {
  2821. border-width:0px;
  2822. white-space:nowrap;
  2823. text-transform:none;
  2824. }
  2825. #u139960_div {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:1255px;
  2831. height:1187px;
  2832. background:inherit;
  2833. background-color:rgba(255, 255, 255, 1);
  2834. box-sizing:border-box;
  2835. border-width:1px;
  2836. border-style:solid;
  2837. border-color:rgba(215, 215, 215, 1);
  2838. border-radius:0px;
  2839. -moz-box-shadow:none;
  2840. -webkit-box-shadow:none;
  2841. box-shadow:none;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:12px;
  2846. color:#FFFFFF;
  2847. text-align:left;
  2848. }
  2849. #u139960 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:330px;
  2853. top:50px;
  2854. width:1255px;
  2855. height:1187px;
  2856. display:flex;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:12px;
  2861. color:#FFFFFF;
  2862. text-align:left;
  2863. }
  2864. #u139960 .text {
  2865. position:absolute;
  2866. align-self:center;
  2867. padding:2px 2px 2px 50px;
  2868. box-sizing:border-box;
  2869. width:100%;
  2870. }
  2871. #u139960_text {
  2872. border-width:0px;
  2873. word-wrap:break-word;
  2874. text-transform:none;
  2875. visibility:hidden;
  2876. }
  2877. #u139961_div {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:73px;
  2883. height:50px;
  2884. background:inherit;
  2885. background-color:rgba(255, 255, 255, 0);
  2886. border:none;
  2887. border-left:0px;
  2888. border-top:0px;
  2889. border-right:0px;
  2890. border-radius:0px;
  2891. border-bottom-right-radius:0px;
  2892. border-bottom-left-radius:0px;
  2893. -moz-box-shadow:none;
  2894. -webkit-box-shadow:none;
  2895. box-shadow:none;
  2896. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2897. font-weight:500;
  2898. font-style:normal;
  2899. font-size:18px;
  2900. }
  2901. #u139961 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:349px;
  2905. top:49px;
  2906. width:73px;
  2907. height:50px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2910. font-weight:500;
  2911. font-style:normal;
  2912. font-size:18px;
  2913. }
  2914. #u139961 .text {
  2915. position:absolute;
  2916. align-self:center;
  2917. padding:0px 0px 0px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u139961_text {
  2922. border-width:0px;
  2923. white-space:nowrap;
  2924. text-transform:none;
  2925. }
  2926. #u139962 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:0px;
  2932. height:0px;
  2933. }
  2934. #u139963_div {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:1215px;
  2940. height:180px;
  2941. background:inherit;
  2942. background-color:rgba(255, 255, 255, 1);
  2943. box-sizing:border-box;
  2944. border-width:1px;
  2945. border-style:solid;
  2946. border-color:rgba(215, 215, 215, 1);
  2947. border-radius:0px;
  2948. -moz-box-shadow:none;
  2949. -webkit-box-shadow:none;
  2950. box-shadow:none;
  2951. }
  2952. #u139963 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:350px;
  2956. top:342px;
  2957. width:1215px;
  2958. height:180px;
  2959. display:flex;
  2960. }
  2961. #u139963 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 2px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u139963_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u139964_div {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:199px;
  2980. height:40px;
  2981. background:inherit;
  2982. background-color:rgba(255, 255, 255, 0);
  2983. border:none;
  2984. border-radius:0px;
  2985. -moz-box-shadow:none;
  2986. -webkit-box-shadow:none;
  2987. box-shadow:none;
  2988. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2989. font-weight:500;
  2990. font-style:normal;
  2991. font-size:18px;
  2992. line-height:40px;
  2993. }
  2994. #u139964 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:373px;
  2998. top:354px;
  2999. width:199px;
  3000. height:40px;
  3001. display:flex;
  3002. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3003. font-weight:500;
  3004. font-style:normal;
  3005. font-size:18px;
  3006. line-height:40px;
  3007. }
  3008. #u139964 .text {
  3009. position:absolute;
  3010. align-self:flex-start;
  3011. padding:0px 0px 0px 0px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u139964_text {
  3016. border-width:0px;
  3017. white-space:nowrap;
  3018. text-transform:none;
  3019. }
  3020. #u139965_div {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:60px;
  3026. height:30px;
  3027. background:inherit;
  3028. background-color:rgba(255, 255, 255, 0);
  3029. box-sizing:border-box;
  3030. border-width:1px;
  3031. border-style:solid;
  3032. border-color:rgba(41, 143, 255, 1);
  3033. border-radius:4px;
  3034. -moz-box-shadow:none;
  3035. -webkit-box-shadow:none;
  3036. box-shadow:none;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:12px;
  3041. color:#298FFF;
  3042. text-align:center;
  3043. }
  3044. #u139965 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:1481px;
  3048. top:359px;
  3049. width:60px;
  3050. height:30px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. color:#298FFF;
  3057. text-align:center;
  3058. }
  3059. #u139965 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:5px 0px 5px 0px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u139965_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. }
  3071. #u139966_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:50px;
  3077. height:20px;
  3078. background:inherit;
  3079. background-color:rgba(170, 170, 170, 1);
  3080. border:none;
  3081. border-radius:29px;
  3082. -moz-box-shadow:none;
  3083. -webkit-box-shadow:none;
  3084. box-shadow:none;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. color:#FFFFFF;
  3090. text-align:center;
  3091. }
  3092. #u139966 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:580px;
  3096. top:364px;
  3097. width:50px;
  3098. height:20px;
  3099. display:flex;
  3100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. font-size:12px;
  3104. color:#FFFFFF;
  3105. text-align:center;
  3106. }
  3107. #u139966 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 0px 2px 0px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u139966_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. }
  3119. #u139967_div {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:60px;
  3125. height:30px;
  3126. background:inherit;
  3127. background-color:rgba(255, 255, 255, 0);
  3128. box-sizing:border-box;
  3129. border-width:1px;
  3130. border-style:solid;
  3131. border-color:rgba(24, 144, 255, 1);
  3132. border-radius:3px;
  3133. -moz-box-shadow:none;
  3134. -webkit-box-shadow:none;
  3135. box-shadow:none;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:12px;
  3140. color:#1890FF;
  3141. text-align:center;
  3142. }
  3143. #u139967 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:1411px;
  3147. top:359px;
  3148. width:60px;
  3149. height:30px;
  3150. display:flex;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:12px;
  3155. color:#1890FF;
  3156. text-align:center;
  3157. }
  3158. #u139967 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:5px 0px 5px 0px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u139967_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. }
  3170. #u139968_div {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:83px;
  3176. height:110px;
  3177. background:inherit;
  3178. background-color:rgba(255, 255, 255, 0);
  3179. border:none;
  3180. border-top:0px;
  3181. border-right:0px;
  3182. border-bottom:0px;
  3183. border-radius:0px;
  3184. border-top-left-radius:0px;
  3185. border-bottom-left-radius:0px;
  3186. -moz-box-shadow:none;
  3187. -webkit-box-shadow:none;
  3188. box-shadow:none;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:12px;
  3193. line-height:25px;
  3194. }
  3195. #u139968 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:373px;
  3199. top:394px;
  3200. width:83px;
  3201. height:110px;
  3202. display:flex;
  3203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:12px;
  3207. line-height:25px;
  3208. }
  3209. #u139968 .text {
  3210. position:absolute;
  3211. align-self:flex-start;
  3212. padding:5px 10px 5px 0px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u139968_text {
  3217. border-width:0px;
  3218. white-space:nowrap;
  3219. text-transform:none;
  3220. }
  3221. #u139969_div {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:278px;
  3227. height:110px;
  3228. background:inherit;
  3229. background-color:rgba(255, 255, 255, 0);
  3230. border:none;
  3231. border-top:0px;
  3232. border-right:0px;
  3233. border-bottom:0px;
  3234. border-radius:0px;
  3235. border-top-left-radius:0px;
  3236. border-bottom-left-radius:0px;
  3237. -moz-box-shadow:none;
  3238. -webkit-box-shadow:none;
  3239. box-shadow:none;
  3240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. font-size:12px;
  3244. line-height:25px;
  3245. }
  3246. #u139969 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:454px;
  3250. top:394px;
  3251. width:278px;
  3252. height:110px;
  3253. display:flex;
  3254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3255. font-weight:400;
  3256. font-style:normal;
  3257. font-size:12px;
  3258. line-height:25px;
  3259. }
  3260. #u139969 .text {
  3261. position:absolute;
  3262. align-self:flex-start;
  3263. padding:5px 10px 5px 0px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u139969_text {
  3268. border-width:0px;
  3269. white-space:nowrap;
  3270. text-transform:none;
  3271. }
  3272. #u139970_div {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:243px;
  3278. height:27px;
  3279. background:inherit;
  3280. background-color:rgba(242, 242, 242, 1);
  3281. border:none;
  3282. border-radius:26px;
  3283. -moz-box-shadow:none;
  3284. -webkit-box-shadow:none;
  3285. box-shadow:none;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:12px;
  3290. }
  3291. #u139970 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:1160px;
  3295. top:361px;
  3296. width:243px;
  3297. height:27px;
  3298. display:flex;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:12px;
  3303. }
  3304. #u139970 .text {
  3305. position:absolute;
  3306. align-self:center;
  3307. padding:5px 10px 5px 10px;
  3308. box-sizing:border-box;
  3309. width:100%;
  3310. }
  3311. #u139970_text {
  3312. border-width:0px;
  3313. white-space:nowrap;
  3314. text-transform:none;
  3315. }
  3316. #u139971 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:0px;
  3322. height:0px;
  3323. }
  3324. #u139972_div {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:1215px;
  3330. height:180px;
  3331. background:inherit;
  3332. background-color:rgba(255, 255, 255, 1);
  3333. box-sizing:border-box;
  3334. border-width:1px;
  3335. border-style:solid;
  3336. border-color:rgba(215, 215, 215, 1);
  3337. border-radius:0px;
  3338. -moz-box-shadow:none;
  3339. -webkit-box-shadow:none;
  3340. box-shadow:none;
  3341. }
  3342. #u139972 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:350px;
  3346. top:152px;
  3347. width:1215px;
  3348. height:180px;
  3349. display:flex;
  3350. }
  3351. #u139972 .text {
  3352. position:absolute;
  3353. align-self:center;
  3354. padding:2px 2px 2px 2px;
  3355. box-sizing:border-box;
  3356. width:100%;
  3357. }
  3358. #u139972_text {
  3359. border-width:0px;
  3360. word-wrap:break-word;
  3361. text-transform:none;
  3362. visibility:hidden;
  3363. }
  3364. #u139973_div {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:163px;
  3370. height:40px;
  3371. background:inherit;
  3372. background-color:rgba(255, 255, 255, 0);
  3373. border:none;
  3374. border-radius:0px;
  3375. -moz-box-shadow:none;
  3376. -webkit-box-shadow:none;
  3377. box-shadow:none;
  3378. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3379. font-weight:500;
  3380. font-style:normal;
  3381. font-size:18px;
  3382. line-height:40px;
  3383. }
  3384. #u139973 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:373px;
  3388. top:164px;
  3389. width:163px;
  3390. height:40px;
  3391. display:flex;
  3392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3393. font-weight:500;
  3394. font-style:normal;
  3395. font-size:18px;
  3396. line-height:40px;
  3397. }
  3398. #u139973 .text {
  3399. position:absolute;
  3400. align-self:flex-start;
  3401. padding:0px 0px 0px 0px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u139973_text {
  3406. border-width:0px;
  3407. white-space:nowrap;
  3408. text-transform:none;
  3409. }
  3410. #u139974_div {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:83px;
  3416. height:110px;
  3417. background:inherit;
  3418. background-color:rgba(255, 255, 255, 0);
  3419. border:none;
  3420. border-top:0px;
  3421. border-right:0px;
  3422. border-bottom:0px;
  3423. border-radius:0px;
  3424. border-top-left-radius:0px;
  3425. border-bottom-left-radius:0px;
  3426. -moz-box-shadow:none;
  3427. -webkit-box-shadow:none;
  3428. box-shadow:none;
  3429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:12px;
  3433. line-height:25px;
  3434. }
  3435. #u139974 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:373px;
  3439. top:204px;
  3440. width:83px;
  3441. height:110px;
  3442. display:flex;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:12px;
  3447. line-height:25px;
  3448. }
  3449. #u139974 .text {
  3450. position:absolute;
  3451. align-self:flex-start;
  3452. padding:5px 10px 5px 0px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u139974_text {
  3457. border-width:0px;
  3458. white-space:nowrap;
  3459. text-transform:none;
  3460. }
  3461. #u139975_div {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:278px;
  3467. height:110px;
  3468. background:inherit;
  3469. background-color:rgba(255, 255, 255, 0);
  3470. border:none;
  3471. border-top:0px;
  3472. border-right:0px;
  3473. border-bottom:0px;
  3474. border-radius:0px;
  3475. border-top-left-radius:0px;
  3476. border-bottom-left-radius:0px;
  3477. -moz-box-shadow:none;
  3478. -webkit-box-shadow:none;
  3479. box-shadow:none;
  3480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:12px;
  3484. line-height:25px;
  3485. }
  3486. #u139975 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:454px;
  3490. top:204px;
  3491. width:278px;
  3492. height:110px;
  3493. display:flex;
  3494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:12px;
  3498. line-height:25px;
  3499. }
  3500. #u139975 .text {
  3501. position:absolute;
  3502. align-self:flex-start;
  3503. padding:5px 10px 5px 0px;
  3504. box-sizing:border-box;
  3505. width:100%;
  3506. }
  3507. #u139975_text {
  3508. border-width:0px;
  3509. white-space:nowrap;
  3510. text-transform:none;
  3511. }
  3512. #u139976_div {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:60px;
  3518. height:30px;
  3519. background:inherit;
  3520. background-color:rgba(255, 255, 255, 0);
  3521. box-sizing:border-box;
  3522. border-width:1px;
  3523. border-style:solid;
  3524. border-color:rgba(24, 144, 255, 1);
  3525. border-radius:3px;
  3526. -moz-box-shadow:none;
  3527. -webkit-box-shadow:none;
  3528. box-shadow:none;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:12px;
  3533. color:#1890FF;
  3534. text-align:center;
  3535. }
  3536. #u139976 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:1481px;
  3540. top:171px;
  3541. width:60px;
  3542. height:30px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#1890FF;
  3549. text-align:center;
  3550. }
  3551. #u139976 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:5px 0px 5px 0px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u139976_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. }
  3563. #u139977_div {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:60px;
  3569. height:30px;
  3570. background:inherit;
  3571. background-color:rgba(255, 255, 255, 0);
  3572. box-sizing:border-box;
  3573. border-width:1px;
  3574. border-style:solid;
  3575. border-color:rgba(24, 144, 255, 1);
  3576. border-radius:3px;
  3577. -moz-box-shadow:none;
  3578. -webkit-box-shadow:none;
  3579. box-shadow:none;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:12px;
  3584. color:#1890FF;
  3585. text-align:center;
  3586. }
  3587. #u139977 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:1411px;
  3591. top:171px;
  3592. width:60px;
  3593. height:30px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. color:#1890FF;
  3600. text-align:center;
  3601. }
  3602. #u139977 .text {
  3603. position:absolute;
  3604. align-self:center;
  3605. padding:5px 0px 5px 0px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u139977_text {
  3610. border-width:0px;
  3611. word-wrap:break-word;
  3612. text-transform:none;
  3613. }
  3614. #u139978_div {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:50px;
  3620. height:20px;
  3621. background:inherit;
  3622. background-color:rgba(41, 143, 255, 1);
  3623. border:none;
  3624. border-radius:29px;
  3625. -moz-box-shadow:none;
  3626. -webkit-box-shadow:none;
  3627. box-shadow:none;
  3628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3629. font-weight:400;
  3630. font-style:normal;
  3631. font-size:12px;
  3632. color:#FFFFFF;
  3633. text-align:center;
  3634. }
  3635. #u139978 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:546px;
  3639. top:174px;
  3640. width:50px;
  3641. height:20px;
  3642. display:flex;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:12px;
  3647. color:#FFFFFF;
  3648. text-align:center;
  3649. }
  3650. #u139978 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 0px 2px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u139978_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. }
  3662. #u139979_div {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:100px;
  3668. height:30px;
  3669. background:inherit;
  3670. background-color:rgba(255, 255, 255, 0);
  3671. border:none;
  3672. border-top:0px;
  3673. border-right:0px;
  3674. border-bottom:0px;
  3675. border-radius:0px;
  3676. border-top-left-radius:0px;
  3677. border-bottom-left-radius:0px;
  3678. -moz-box-shadow:none;
  3679. -webkit-box-shadow:none;
  3680. box-shadow:none;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:14px;
  3685. }
  3686. #u139979 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:841px;
  3690. top:249px;
  3691. width:100px;
  3692. height:30px;
  3693. display:flex;
  3694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:14px;
  3698. }
  3699. #u139979 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:5px 10px 5px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u139979_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. }
  3711. #u139980_div {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:100px;
  3717. height:30px;
  3718. background:inherit;
  3719. background-color:rgba(255, 255, 255, 0);
  3720. border:none;
  3721. border-top:0px;
  3722. border-right:0px;
  3723. border-bottom:0px;
  3724. border-radius:0px;
  3725. border-top-left-radius:0px;
  3726. border-bottom-left-radius:0px;
  3727. -moz-box-shadow:none;
  3728. -webkit-box-shadow:none;
  3729. box-shadow:none;
  3730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3731. font-weight:400;
  3732. font-style:normal;
  3733. font-size:14px;
  3734. }
  3735. #u139980 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:941px;
  3739. top:249px;
  3740. width:100px;
  3741. height:30px;
  3742. display:flex;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:14px;
  3747. }
  3748. #u139980 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:5px 10px 5px 0px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u139980_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. }
  3760. #u139981_div {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:100px;
  3766. height:30px;
  3767. background:inherit;
  3768. background-color:rgba(255, 255, 255, 0);
  3769. border:none;
  3770. border-top:0px;
  3771. border-right:0px;
  3772. border-bottom:0px;
  3773. border-radius:0px;
  3774. border-top-left-radius:0px;
  3775. border-bottom-left-radius:0px;
  3776. -moz-box-shadow:none;
  3777. -webkit-box-shadow:none;
  3778. box-shadow:none;
  3779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3780. font-weight:400;
  3781. font-style:normal;
  3782. font-size:14px;
  3783. }
  3784. #u139981 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:1341px;
  3788. top:249px;
  3789. width:100px;
  3790. height:30px;
  3791. display:flex;
  3792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. font-size:14px;
  3796. }
  3797. #u139981 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:5px 10px 5px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u139981_text {
  3805. border-width:0px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. }
  3809. #u139982_div {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:100px;
  3815. height:30px;
  3816. background:inherit;
  3817. background-color:rgba(255, 255, 255, 0);
  3818. border:none;
  3819. border-top:0px;
  3820. border-right:0px;
  3821. border-bottom:0px;
  3822. border-radius:0px;
  3823. border-top-left-radius:0px;
  3824. border-bottom-left-radius:0px;
  3825. -moz-box-shadow:none;
  3826. -webkit-box-shadow:none;
  3827. box-shadow:none;
  3828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3829. font-weight:400;
  3830. font-style:normal;
  3831. font-size:14px;
  3832. }
  3833. #u139982 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:1441px;
  3837. top:249px;
  3838. width:100px;
  3839. height:30px;
  3840. display:flex;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:14px;
  3845. }
  3846. #u139982 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:5px 10px 5px 0px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u139982_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. }
  3858. #u139983_div {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:100px;
  3864. height:30px;
  3865. background:inherit;
  3866. background-color:rgba(255, 255, 255, 0);
  3867. border:none;
  3868. border-top:0px;
  3869. border-right:0px;
  3870. border-bottom:0px;
  3871. border-radius:0px;
  3872. border-top-left-radius:0px;
  3873. border-bottom-left-radius:0px;
  3874. -moz-box-shadow:none;
  3875. -webkit-box-shadow:none;
  3876. box-shadow:none;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:14px;
  3881. }
  3882. #u139983 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:1041px;
  3886. top:249px;
  3887. width:100px;
  3888. height:30px;
  3889. display:flex;
  3890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:14px;
  3894. }
  3895. #u139983 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:5px 10px 5px 0px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u139983_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. }
  3907. #u139984_div {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:243px;
  3913. height:27px;
  3914. background:inherit;
  3915. background-color:rgba(242, 242, 242, 1);
  3916. border:none;
  3917. border-radius:26px;
  3918. -moz-box-shadow:none;
  3919. -webkit-box-shadow:none;
  3920. box-shadow:none;
  3921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. }
  3926. #u139984 {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:1160px;
  3930. top:171px;
  3931. width:243px;
  3932. height:27px;
  3933. display:flex;
  3934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3935. font-weight:400;
  3936. font-style:normal;
  3937. font-size:12px;
  3938. }
  3939. #u139984 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:5px 10px 5px 10px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u139984_text {
  3947. border-width:0px;
  3948. white-space:nowrap;
  3949. text-transform:none;
  3950. }
  3951. #u139985_div {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:100px;
  3957. height:30px;
  3958. background:inherit;
  3959. background-color:rgba(255, 255, 255, 0);
  3960. border:none;
  3961. border-top:0px;
  3962. border-right:0px;
  3963. border-bottom:0px;
  3964. border-radius:0px;
  3965. border-top-left-radius:0px;
  3966. border-bottom-left-radius:0px;
  3967. -moz-box-shadow:none;
  3968. -webkit-box-shadow:none;
  3969. box-shadow:none;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:14px;
  3974. }
  3975. #u139985 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:1141px;
  3979. top:249px;
  3980. width:100px;
  3981. height:30px;
  3982. display:flex;
  3983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3984. font-weight:400;
  3985. font-style:normal;
  3986. font-size:14px;
  3987. }
  3988. #u139985 .text {
  3989. position:absolute;
  3990. align-self:center;
  3991. padding:5px 10px 5px 0px;
  3992. box-sizing:border-box;
  3993. width:100%;
  3994. }
  3995. #u139985_text {
  3996. border-width:0px;
  3997. word-wrap:break-word;
  3998. text-transform:none;
  3999. }
  4000. #u139986_div {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:100px;
  4006. height:30px;
  4007. background:inherit;
  4008. background-color:rgba(255, 255, 255, 0);
  4009. border:none;
  4010. border-top:0px;
  4011. border-right:0px;
  4012. border-bottom:0px;
  4013. border-radius:0px;
  4014. border-top-left-radius:0px;
  4015. border-bottom-left-radius:0px;
  4016. -moz-box-shadow:none;
  4017. -webkit-box-shadow:none;
  4018. box-shadow:none;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:14px;
  4023. }
  4024. #u139986 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:1241px;
  4028. top:249px;
  4029. width:100px;
  4030. height:30px;
  4031. display:flex;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:14px;
  4036. }
  4037. #u139986 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:5px 10px 5px 0px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u139986_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. }
  4049. #u139987_div {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:59px;
  4055. height:30px;
  4056. background:inherit;
  4057. background-color:rgba(41, 143, 255, 1);
  4058. border:none;
  4059. border-radius:4px;
  4060. -moz-box-shadow:none;
  4061. -webkit-box-shadow:none;
  4062. box-shadow:none;
  4063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4064. font-weight:400;
  4065. font-style:normal;
  4066. font-size:14px;
  4067. color:#FFFFFF;
  4068. }
  4069. #u139987 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:1098px;
  4073. top:101px;
  4074. width:59px;
  4075. height:30px;
  4076. display:flex;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:14px;
  4081. color:#FFFFFF;
  4082. }
  4083. #u139987 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:5px 15px 5px 15px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u139987_text {
  4091. border-width:0px;
  4092. white-space:nowrap;
  4093. text-transform:none;
  4094. }
  4095. #u139988_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:55px;
  4101. height:30px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 1);
  4104. box-sizing:border-box;
  4105. border-width:1px;
  4106. border-style:solid;
  4107. border-color:rgba(170, 170, 170, 1);
  4108. border-radius:4px;
  4109. -moz-box-shadow:none;
  4110. -webkit-box-shadow:none;
  4111. box-shadow:none;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:12px;
  4116. color:#555555;
  4117. }
  4118. #u139988 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:1167px;
  4122. top:101px;
  4123. width:55px;
  4124. height:30px;
  4125. display:flex;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:12px;
  4130. color:#555555;
  4131. }
  4132. #u139988 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:5px 15px 5px 15px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u139988_text {
  4140. border-width:0px;
  4141. white-space:nowrap;
  4142. text-transform:none;
  4143. }
  4144. #u139989 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:0px;
  4150. height:0px;
  4151. }
  4152. #u139990_div {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:1215px;
  4158. height:180px;
  4159. background:inherit;
  4160. background-color:rgba(255, 255, 255, 1);
  4161. box-sizing:border-box;
  4162. border-width:1px;
  4163. border-style:solid;
  4164. border-color:rgba(215, 215, 215, 1);
  4165. border-radius:0px;
  4166. -moz-box-shadow:none;
  4167. -webkit-box-shadow:none;
  4168. box-shadow:none;
  4169. }
  4170. #u139990 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:350px;
  4174. top:532px;
  4175. width:1215px;
  4176. height:180px;
  4177. display:flex;
  4178. }
  4179. #u139990 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 2px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u139990_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u139991_div {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:199px;
  4198. height:40px;
  4199. background:inherit;
  4200. background-color:rgba(255, 255, 255, 0);
  4201. border:none;
  4202. border-radius:0px;
  4203. -moz-box-shadow:none;
  4204. -webkit-box-shadow:none;
  4205. box-shadow:none;
  4206. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4207. font-weight:500;
  4208. font-style:normal;
  4209. font-size:18px;
  4210. line-height:40px;
  4211. }
  4212. #u139991 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:373px;
  4216. top:544px;
  4217. width:199px;
  4218. height:40px;
  4219. display:flex;
  4220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4221. font-weight:500;
  4222. font-style:normal;
  4223. font-size:18px;
  4224. line-height:40px;
  4225. }
  4226. #u139991 .text {
  4227. position:absolute;
  4228. align-self:flex-start;
  4229. padding:0px 0px 0px 0px;
  4230. box-sizing:border-box;
  4231. width:100%;
  4232. }
  4233. #u139991_text {
  4234. border-width:0px;
  4235. white-space:nowrap;
  4236. text-transform:none;
  4237. }
  4238. #u139992_div {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:60px;
  4244. height:30px;
  4245. background:inherit;
  4246. background-color:rgba(255, 255, 255, 0);
  4247. box-sizing:border-box;
  4248. border-width:1px;
  4249. border-style:solid;
  4250. border-color:rgba(41, 143, 255, 1);
  4251. border-radius:4px;
  4252. -moz-box-shadow:none;
  4253. -webkit-box-shadow:none;
  4254. box-shadow:none;
  4255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:12px;
  4259. color:#298FFF;
  4260. text-align:center;
  4261. }
  4262. #u139992 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:1481px;
  4266. top:549px;
  4267. width:60px;
  4268. height:30px;
  4269. display:flex;
  4270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:12px;
  4274. color:#298FFF;
  4275. text-align:center;
  4276. }
  4277. #u139992 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:5px 0px 5px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u139992_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. }
  4289. #u139993_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:50px;
  4295. height:20px;
  4296. background:inherit;
  4297. background-color:rgba(170, 170, 170, 1);
  4298. border:none;
  4299. border-radius:29px;
  4300. -moz-box-shadow:none;
  4301. -webkit-box-shadow:none;
  4302. box-shadow:none;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:12px;
  4307. color:#FFFFFF;
  4308. text-align:center;
  4309. }
  4310. #u139993 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:580px;
  4314. top:554px;
  4315. width:50px;
  4316. height:20px;
  4317. display:flex;
  4318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4319. font-weight:400;
  4320. font-style:normal;
  4321. font-size:12px;
  4322. color:#FFFFFF;
  4323. text-align:center;
  4324. }
  4325. #u139993 .text {
  4326. position:absolute;
  4327. align-self:center;
  4328. padding:2px 0px 2px 0px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u139993_text {
  4333. border-width:0px;
  4334. word-wrap:break-word;
  4335. text-transform:none;
  4336. }
  4337. #u139994_div {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:243px;
  4343. height:27px;
  4344. background:inherit;
  4345. background-color:rgba(242, 242, 242, 1);
  4346. border:none;
  4347. border-radius:26px;
  4348. -moz-box-shadow:none;
  4349. -webkit-box-shadow:none;
  4350. box-shadow:none;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:12px;
  4355. }
  4356. #u139994 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:1160px;
  4360. top:549px;
  4361. width:243px;
  4362. height:27px;
  4363. display:flex;
  4364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:12px;
  4368. }
  4369. #u139994 .text {
  4370. position:absolute;
  4371. align-self:center;
  4372. padding:5px 10px 5px 10px;
  4373. box-sizing:border-box;
  4374. width:100%;
  4375. }
  4376. #u139994_text {
  4377. border-width:0px;
  4378. white-space:nowrap;
  4379. text-transform:none;
  4380. }
  4381. #u139995_div {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:60px;
  4387. height:30px;
  4388. background:inherit;
  4389. background-color:rgba(255, 255, 255, 0);
  4390. box-sizing:border-box;
  4391. border-width:1px;
  4392. border-style:solid;
  4393. border-color:rgba(24, 144, 255, 1);
  4394. border-radius:3px;
  4395. -moz-box-shadow:none;
  4396. -webkit-box-shadow:none;
  4397. box-shadow:none;
  4398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:12px;
  4402. color:#1890FF;
  4403. text-align:center;
  4404. }
  4405. #u139995 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:1411px;
  4409. top:549px;
  4410. width:60px;
  4411. height:30px;
  4412. display:flex;
  4413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. font-size:12px;
  4417. color:#1890FF;
  4418. text-align:center;
  4419. }
  4420. #u139995 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:5px 0px 5px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u139995_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. }
  4432. #u139996_div {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:83px;
  4438. height:110px;
  4439. background:inherit;
  4440. background-color:rgba(255, 255, 255, 0);
  4441. border:none;
  4442. border-top:0px;
  4443. border-right:0px;
  4444. border-bottom:0px;
  4445. border-radius:0px;
  4446. border-top-left-radius:0px;
  4447. border-bottom-left-radius:0px;
  4448. -moz-box-shadow:none;
  4449. -webkit-box-shadow:none;
  4450. box-shadow:none;
  4451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4452. font-weight:400;
  4453. font-style:normal;
  4454. font-size:12px;
  4455. line-height:25px;
  4456. }
  4457. #u139996 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:373px;
  4461. top:584px;
  4462. width:83px;
  4463. height:110px;
  4464. display:flex;
  4465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4466. font-weight:400;
  4467. font-style:normal;
  4468. font-size:12px;
  4469. line-height:25px;
  4470. }
  4471. #u139996 .text {
  4472. position:absolute;
  4473. align-self:flex-start;
  4474. padding:5px 10px 5px 0px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u139996_text {
  4479. border-width:0px;
  4480. white-space:nowrap;
  4481. text-transform:none;
  4482. }
  4483. #u139997_div {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:278px;
  4489. height:110px;
  4490. background:inherit;
  4491. background-color:rgba(255, 255, 255, 0);
  4492. border:none;
  4493. border-top:0px;
  4494. border-right:0px;
  4495. border-bottom:0px;
  4496. border-radius:0px;
  4497. border-top-left-radius:0px;
  4498. border-bottom-left-radius:0px;
  4499. -moz-box-shadow:none;
  4500. -webkit-box-shadow:none;
  4501. box-shadow:none;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:12px;
  4506. line-height:25px;
  4507. }
  4508. #u139997 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:454px;
  4512. top:584px;
  4513. width:278px;
  4514. height:110px;
  4515. display:flex;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:12px;
  4520. line-height:25px;
  4521. }
  4522. #u139997 .text {
  4523. position:absolute;
  4524. align-self:flex-start;
  4525. padding:5px 10px 5px 0px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u139997_text {
  4530. border-width:0px;
  4531. white-space:nowrap;
  4532. text-transform:none;
  4533. }
  4534. #u139998 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:0px;
  4540. height:0px;
  4541. }
  4542. #u139999_div {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:420px;
  4548. height:180px;
  4549. background:inherit;
  4550. background-color:rgba(255, 255, 255, 1);
  4551. box-sizing:border-box;
  4552. border-width:1px;
  4553. border-style:solid;
  4554. border-color:rgba(215, 215, 215, 1);
  4555. border-radius:0px;
  4556. -moz-box-shadow:none;
  4557. -webkit-box-shadow:none;
  4558. box-shadow:none;
  4559. font-family:'Microsoft YaHei', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. }
  4563. #u139999 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:1678px;
  4567. top:132px;
  4568. width:420px;
  4569. height:180px;
  4570. display:flex;
  4571. font-family:'Microsoft YaHei', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. }
  4575. #u139999 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 2px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u139999_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u140000_div {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:336px;
  4594. height:60px;
  4595. background:inherit;
  4596. background-color:rgba(255, 255, 255, 0);
  4597. border:none;
  4598. border-radius:0px;
  4599. -moz-box-shadow:none;
  4600. -webkit-box-shadow:none;
  4601. box-shadow:none;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:14px;
  4606. color:#666666;
  4607. line-height:30px;
  4608. }
  4609. #u140000 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:1739px;
  4613. top:192px;
  4614. width:336px;
  4615. height:60px;
  4616. display:flex;
  4617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. font-size:14px;
  4621. color:#666666;
  4622. line-height:30px;
  4623. }
  4624. #u140000 .text {
  4625. position:absolute;
  4626. align-self:flex-start;
  4627. padding:0px 0px 0px 0px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u140000_text {
  4632. border-width:0px;
  4633. word-wrap:break-word;
  4634. text-transform:none;
  4635. }
  4636. #u140001_div {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:80px;
  4642. height:32px;
  4643. background:inherit;
  4644. background-color:rgba(24, 144, 255, 1);
  4645. border:none;
  4646. border-radius:4px;
  4647. -moz-box-shadow:none;
  4648. -webkit-box-shadow:none;
  4649. box-shadow:none;
  4650. font-family:'Microsoft YaHei', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:14px;
  4654. color:#FFFFFF;
  4655. }
  4656. #u140001 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:1998px;
  4660. top:261px;
  4661. width:80px;
  4662. height:32px;
  4663. display:flex;
  4664. font-family:'Microsoft YaHei', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:14px;
  4668. color:#FFFFFF;
  4669. }
  4670. #u140001 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 16px 2px 16px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u140001_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. }
  4682. #u140002_div {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:80px;
  4688. height:32px;
  4689. background:inherit;
  4690. background-color:rgba(255, 255, 255, 1);
  4691. box-sizing:border-box;
  4692. border-width:1px;
  4693. border-style:solid;
  4694. border-color:rgba(215, 215, 215, 1);
  4695. border-radius:4px;
  4696. -moz-box-shadow:none;
  4697. -webkit-box-shadow:none;
  4698. box-shadow:none;
  4699. font-family:'Microsoft YaHei', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:14px;
  4703. color:rgba(0, 0, 0, 0.647058823529412);
  4704. line-height:21px;
  4705. }
  4706. #u140002 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:1908px;
  4710. top:261px;
  4711. width:80px;
  4712. height:32px;
  4713. display:flex;
  4714. font-family:'Microsoft YaHei', sans-serif;
  4715. font-weight:400;
  4716. font-style:normal;
  4717. font-size:14px;
  4718. color:rgba(0, 0, 0, 0.647058823529412);
  4719. line-height:21px;
  4720. }
  4721. #u140002 .text {
  4722. position:absolute;
  4723. align-self:center;
  4724. padding:2px 16px 2px 16px;
  4725. box-sizing:border-box;
  4726. width:100%;
  4727. }
  4728. #u140002_text {
  4729. border-width:0px;
  4730. word-wrap:break-word;
  4731. text-transform:none;
  4732. }
  4733. #u140003_img {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:26px;
  4739. height:26px;
  4740. }
  4741. #u140003 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:1703px;
  4745. top:153px;
  4746. width:26px;
  4747. height:26px;
  4748. display:flex;
  4749. }
  4750. #u140003 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 2px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u140003_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. visibility:hidden;
  4762. }
  4763. #u140004_div {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:127px;
  4769. height:30px;
  4770. background:inherit;
  4771. background-color:rgba(255, 255, 255, 0);
  4772. border:none;
  4773. border-radius:0px;
  4774. -moz-box-shadow:none;
  4775. -webkit-box-shadow:none;
  4776. box-shadow:none;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:18px;
  4781. color:#000000;
  4782. line-height:30px;
  4783. }
  4784. #u140004 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:1739px;
  4788. top:153px;
  4789. width:127px;
  4790. height:30px;
  4791. display:flex;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:18px;
  4796. color:#000000;
  4797. line-height:30px;
  4798. }
  4799. #u140004 .text {
  4800. position:absolute;
  4801. align-self:flex-start;
  4802. padding:0px 0px 0px 0px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u140004_text {
  4807. border-width:0px;
  4808. white-space:nowrap;
  4809. text-transform:none;
  4810. }
  4811. #u140005_img {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:10px;
  4817. height:10px;
  4818. }
  4819. #u140005 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:2078px;
  4823. top:142px;
  4824. width:10px;
  4825. height:10px;
  4826. display:flex;
  4827. }
  4828. #u140005 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:2px 2px 2px 2px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u140005_text {
  4836. border-width:0px;
  4837. word-wrap:break-word;
  4838. text-transform:none;
  4839. visibility:hidden;
  4840. }
  4841. #u140006 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:0px;
  4847. height:0px;
  4848. }
  4849. #u140007_div {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:420px;
  4855. height:220px;
  4856. background:inherit;
  4857. background-color:rgba(255, 255, 255, 1);
  4858. box-sizing:border-box;
  4859. border-width:1px;
  4860. border-style:solid;
  4861. border-color:rgba(215, 215, 215, 1);
  4862. border-radius:0px;
  4863. -moz-box-shadow:none;
  4864. -webkit-box-shadow:none;
  4865. box-shadow:none;
  4866. font-family:'Microsoft YaHei', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. }
  4870. #u140007 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:1678px;
  4874. top:336px;
  4875. width:420px;
  4876. height:220px;
  4877. display:flex;
  4878. font-family:'Microsoft YaHei', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. }
  4882. #u140007 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:2px 2px 2px 2px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u140007_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. visibility:hidden;
  4894. }
  4895. #u140008_div {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:339px;
  4901. height:90px;
  4902. background:inherit;
  4903. background-color:rgba(255, 255, 255, 0);
  4904. border:none;
  4905. border-radius:0px;
  4906. -moz-box-shadow:none;
  4907. -webkit-box-shadow:none;
  4908. box-shadow:none;
  4909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:14px;
  4913. color:#666666;
  4914. line-height:30px;
  4915. }
  4916. #u140008 {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:1739px;
  4920. top:396px;
  4921. width:339px;
  4922. height:90px;
  4923. display:flex;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:14px;
  4928. color:#666666;
  4929. line-height:30px;
  4930. }
  4931. #u140008 .text {
  4932. position:absolute;
  4933. align-self:flex-start;
  4934. padding:0px 0px 0px 0px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u140008_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. }
  4943. #u140009_div {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:80px;
  4949. height:32px;
  4950. background:inherit;
  4951. background-color:rgba(24, 144, 255, 1);
  4952. border:none;
  4953. border-radius:4px;
  4954. -moz-box-shadow:none;
  4955. -webkit-box-shadow:none;
  4956. box-shadow:none;
  4957. font-family:'Microsoft YaHei', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:14px;
  4961. color:#FFFFFF;
  4962. }
  4963. #u140009 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:1998px;
  4967. top:505px;
  4968. width:80px;
  4969. height:32px;
  4970. display:flex;
  4971. font-family:'Microsoft YaHei', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:14px;
  4975. color:#FFFFFF;
  4976. }
  4977. #u140009 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 16px 2px 16px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u140009_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. }
  4989. #u140010_div {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:80px;
  4995. height:32px;
  4996. background:inherit;
  4997. background-color:rgba(255, 255, 255, 1);
  4998. box-sizing:border-box;
  4999. border-width:1px;
  5000. border-style:solid;
  5001. border-color:rgba(215, 215, 215, 1);
  5002. border-radius:4px;
  5003. -moz-box-shadow:none;
  5004. -webkit-box-shadow:none;
  5005. box-shadow:none;
  5006. font-family:'Microsoft YaHei', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:14px;
  5010. color:rgba(0, 0, 0, 0.647058823529412);
  5011. line-height:21px;
  5012. }
  5013. #u140010 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:1908px;
  5017. top:505px;
  5018. width:80px;
  5019. height:32px;
  5020. display:flex;
  5021. font-family:'Microsoft YaHei', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:14px;
  5025. color:rgba(0, 0, 0, 0.647058823529412);
  5026. line-height:21px;
  5027. }
  5028. #u140010 .text {
  5029. position:absolute;
  5030. align-self:center;
  5031. padding:2px 16px 2px 16px;
  5032. box-sizing:border-box;
  5033. width:100%;
  5034. }
  5035. #u140010_text {
  5036. border-width:0px;
  5037. word-wrap:break-word;
  5038. text-transform:none;
  5039. }
  5040. #u140011_img {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:26px;
  5046. height:26px;
  5047. }
  5048. #u140011 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:1703px;
  5052. top:357px;
  5053. width:26px;
  5054. height:26px;
  5055. display:flex;
  5056. }
  5057. #u140011 .text {
  5058. position:absolute;
  5059. align-self:center;
  5060. padding:2px 2px 2px 2px;
  5061. box-sizing:border-box;
  5062. width:100%;
  5063. }
  5064. #u140011_text {
  5065. border-width:0px;
  5066. word-wrap:break-word;
  5067. text-transform:none;
  5068. visibility:hidden;
  5069. }
  5070. #u140012_div {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:127px;
  5076. height:30px;
  5077. background:inherit;
  5078. background-color:rgba(255, 255, 255, 0);
  5079. border:none;
  5080. border-radius:0px;
  5081. -moz-box-shadow:none;
  5082. -webkit-box-shadow:none;
  5083. box-shadow:none;
  5084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:18px;
  5088. color:#000000;
  5089. line-height:30px;
  5090. }
  5091. #u140012 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:1739px;
  5095. top:357px;
  5096. width:127px;
  5097. height:30px;
  5098. display:flex;
  5099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. font-size:18px;
  5103. color:#000000;
  5104. line-height:30px;
  5105. }
  5106. #u140012 .text {
  5107. position:absolute;
  5108. align-self:flex-start;
  5109. padding:0px 0px 0px 0px;
  5110. box-sizing:border-box;
  5111. width:100%;
  5112. }
  5113. #u140012_text {
  5114. border-width:0px;
  5115. white-space:nowrap;
  5116. text-transform:none;
  5117. }
  5118. #u140013_img {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:10px;
  5124. height:10px;
  5125. }
  5126. #u140013 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:2078px;
  5130. top:346px;
  5131. width:10px;
  5132. height:10px;
  5133. display:flex;
  5134. }
  5135. #u140013 .text {
  5136. position:absolute;
  5137. align-self:center;
  5138. padding:2px 2px 2px 2px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u140013_text {
  5143. border-width:0px;
  5144. word-wrap:break-word;
  5145. text-transform:none;
  5146. visibility:hidden;
  5147. }
  5148. #u140014 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:0px;
  5154. height:0px;
  5155. }
  5156. #u140015_div {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:140px;
  5162. height:30px;
  5163. background:inherit;
  5164. background-color:rgba(255, 255, 255, 1);
  5165. box-sizing:border-box;
  5166. border-width:1px;
  5167. border-style:solid;
  5168. border-color:rgba(201, 201, 201, 1);
  5169. border-radius:4px;
  5170. -moz-box-shadow:none;
  5171. -webkit-box-shadow:none;
  5172. box-shadow:none;
  5173. font-family:'Microsoft YaHei', sans-serif;
  5174. font-weight:400;
  5175. font-style:normal;
  5176. font-size:14px;
  5177. color:#CCCCCC;
  5178. text-align:left;
  5179. }
  5180. #u140015 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:499px;
  5184. top:103px;
  5185. width:140px;
  5186. height:30px;
  5187. display:flex;
  5188. font-family:'Microsoft YaHei', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. color:#CCCCCC;
  5193. text-align:left;
  5194. }
  5195. #u140015 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 8px 2px 8px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u140015_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u140016_input {
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:127px;
  5213. height:25px;
  5214. padding:2px 2px 2px 2px;
  5215. font-family:'Microsoft YaHei', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:10px;
  5219. letter-spacing:normal;
  5220. color:#000000;
  5221. vertical-align:none;
  5222. text-align:left;
  5223. text-transform:none;
  5224. background-color:transparent;
  5225. border-color:transparent;
  5226. }
  5227. #u140016_input.disabled {
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:127px;
  5232. height:25px;
  5233. padding:2px 2px 2px 2px;
  5234. font-family:'Microsoft YaHei', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:10px;
  5238. letter-spacing:normal;
  5239. color:#000000;
  5240. vertical-align:none;
  5241. text-align:left;
  5242. text-transform:none;
  5243. background-color:transparent;
  5244. border-color:transparent;
  5245. }
  5246. #u140016_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:127px;
  5252. height:25px;
  5253. background:inherit;
  5254. background-color:rgba(255, 255, 255, 1);
  5255. border:none;
  5256. border-radius:0px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-family:'Microsoft YaHei', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:10px;
  5264. }
  5265. #u140016 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:507px;
  5269. top:104px;
  5270. width:127px;
  5271. height:25px;
  5272. display:flex;
  5273. font-family:'Microsoft YaHei', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:10px;
  5277. }
  5278. #u140016 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 2px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u140016_div.disabled {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:127px;
  5291. height:25px;
  5292. background:inherit;
  5293. background-color:rgba(240, 240, 240, 1);
  5294. border:none;
  5295. border-radius:0px;
  5296. -moz-box-shadow:none;
  5297. -webkit-box-shadow:none;
  5298. box-shadow:none;
  5299. font-family:'Microsoft YaHei', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:10px;
  5303. }
  5304. #u140016.disabled {
  5305. }
  5306. #u140017 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:0px;
  5312. height:0px;
  5313. }
  5314. #u140018_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:140px;
  5320. height:30px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 1);
  5323. box-sizing:border-box;
  5324. border-width:1px;
  5325. border-style:solid;
  5326. border-color:rgba(215, 215, 215, 1);
  5327. border-radius:4px;
  5328. -moz-box-shadow:none;
  5329. -webkit-box-shadow:none;
  5330. box-shadow:none;
  5331. font-size:11px;
  5332. }
  5333. #u140018 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:349px;
  5337. top:101px;
  5338. width:140px;
  5339. height:30px;
  5340. display:flex;
  5341. font-size:11px;
  5342. }
  5343. #u140018 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:2px 2px 2px 2px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u140018_text {
  5351. border-width:0px;
  5352. word-wrap:break-word;
  5353. text-transform:none;
  5354. visibility:hidden;
  5355. }
  5356. #u140019_input {
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:120px;
  5361. height:23px;
  5362. padding:2px 2px 2px 2px;
  5363. font-family:'ArialMT', 'Arial', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:11px;
  5367. letter-spacing:normal;
  5368. color:#AAAAAA;
  5369. vertical-align:none;
  5370. text-align:left;
  5371. text-transform:none;
  5372. background-color:transparent;
  5373. border-color:transparent;
  5374. }
  5375. #u140019_input.disabled {
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:120px;
  5380. height:23px;
  5381. padding:2px 2px 2px 2px;
  5382. font-family:'ArialMT', 'Arial', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:11px;
  5386. letter-spacing:normal;
  5387. color:#AAAAAA;
  5388. vertical-align:none;
  5389. text-align:left;
  5390. text-transform:none;
  5391. background-color:transparent;
  5392. border-color:transparent;
  5393. }
  5394. #u140019_div {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:120px;
  5400. height:23px;
  5401. background:inherit;
  5402. background-color:rgba(255, 255, 255, 1);
  5403. border:none;
  5404. border-radius:0px;
  5405. -moz-box-shadow:none;
  5406. -webkit-box-shadow:none;
  5407. box-shadow:none;
  5408. font-size:11px;
  5409. color:#AAAAAA;
  5410. }
  5411. #u140019 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:356px;
  5415. top:103px;
  5416. width:120px;
  5417. height:23px;
  5418. display:flex;
  5419. font-size:11px;
  5420. color:#AAAAAA;
  5421. }
  5422. #u140019 .text {
  5423. position:absolute;
  5424. align-self:flex-start;
  5425. padding:2px 2px 2px 2px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u140019_div.disabled {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:120px;
  5435. height:23px;
  5436. background:inherit;
  5437. background-color:rgba(240, 240, 240, 1);
  5438. border:none;
  5439. border-radius:0px;
  5440. -moz-box-shadow:none;
  5441. -webkit-box-shadow:none;
  5442. box-shadow:none;
  5443. font-size:11px;
  5444. color:#AAAAAA;
  5445. }
  5446. #u140019.disabled {
  5447. }
  5448. .u140019_input_option {
  5449. font-size:11px;
  5450. }
  5451. #u140020 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:0px;
  5457. height:0px;
  5458. }
  5459. #u140021_div {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:140px;
  5465. height:30px;
  5466. background:inherit;
  5467. background-color:rgba(255, 255, 255, 1);
  5468. box-sizing:border-box;
  5469. border-width:1px;
  5470. border-style:solid;
  5471. border-color:rgba(215, 215, 215, 1);
  5472. border-radius:4px;
  5473. -moz-box-shadow:none;
  5474. -webkit-box-shadow:none;
  5475. box-shadow:none;
  5476. font-size:11px;
  5477. }
  5478. #u140021 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:798px;
  5482. top:101px;
  5483. width:140px;
  5484. height:30px;
  5485. display:flex;
  5486. font-size:11px;
  5487. }
  5488. #u140021 .text {
  5489. position:absolute;
  5490. align-self:center;
  5491. padding:2px 2px 2px 2px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u140021_text {
  5496. border-width:0px;
  5497. word-wrap:break-word;
  5498. text-transform:none;
  5499. visibility:hidden;
  5500. }
  5501. #u140022_input {
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:120px;
  5506. height:23px;
  5507. padding:2px 2px 2px 2px;
  5508. font-family:'ArialMT', 'Arial', sans-serif;
  5509. font-weight:400;
  5510. font-style:normal;
  5511. font-size:11px;
  5512. letter-spacing:normal;
  5513. color:#AAAAAA;
  5514. vertical-align:none;
  5515. text-align:left;
  5516. text-transform:none;
  5517. background-color:transparent;
  5518. border-color:transparent;
  5519. }
  5520. #u140022_input.disabled {
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:120px;
  5525. height:23px;
  5526. padding:2px 2px 2px 2px;
  5527. font-family:'ArialMT', 'Arial', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:11px;
  5531. letter-spacing:normal;
  5532. color:#AAAAAA;
  5533. vertical-align:none;
  5534. text-align:left;
  5535. text-transform:none;
  5536. background-color:transparent;
  5537. border-color:transparent;
  5538. }
  5539. #u140022_div {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:120px;
  5545. height:23px;
  5546. background:inherit;
  5547. background-color:rgba(255, 255, 255, 1);
  5548. border:none;
  5549. border-radius:0px;
  5550. -moz-box-shadow:none;
  5551. -webkit-box-shadow:none;
  5552. box-shadow:none;
  5553. font-size:11px;
  5554. color:#AAAAAA;
  5555. }
  5556. #u140022 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:805px;
  5560. top:103px;
  5561. width:120px;
  5562. height:23px;
  5563. display:flex;
  5564. font-size:11px;
  5565. color:#AAAAAA;
  5566. }
  5567. #u140022 .text {
  5568. position:absolute;
  5569. align-self:flex-start;
  5570. padding:2px 2px 2px 2px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u140022_div.disabled {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:120px;
  5580. height:23px;
  5581. background:inherit;
  5582. background-color:rgba(240, 240, 240, 1);
  5583. border:none;
  5584. border-radius:0px;
  5585. -moz-box-shadow:none;
  5586. -webkit-box-shadow:none;
  5587. box-shadow:none;
  5588. font-size:11px;
  5589. color:#AAAAAA;
  5590. }
  5591. #u140022.disabled {
  5592. }
  5593. .u140022_input_option {
  5594. font-size:11px;
  5595. }
  5596. #u140023 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:0px;
  5602. height:0px;
  5603. }
  5604. #u140024_div {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:140px;
  5610. height:30px;
  5611. background:inherit;
  5612. background-color:rgba(255, 255, 255, 1);
  5613. box-sizing:border-box;
  5614. border-width:1px;
  5615. border-style:solid;
  5616. border-color:rgba(201, 201, 201, 1);
  5617. border-radius:4px;
  5618. -moz-box-shadow:none;
  5619. -webkit-box-shadow:none;
  5620. box-shadow:none;
  5621. font-family:'Microsoft YaHei', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:14px;
  5625. color:#CCCCCC;
  5626. text-align:left;
  5627. }
  5628. #u140024 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:948px;
  5632. top:102px;
  5633. width:140px;
  5634. height:30px;
  5635. display:flex;
  5636. font-family:'Microsoft YaHei', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:14px;
  5640. color:#CCCCCC;
  5641. text-align:left;
  5642. }
  5643. #u140024 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:2px 8px 2px 8px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u140024_text {
  5651. border-width:0px;
  5652. word-wrap:break-word;
  5653. text-transform:none;
  5654. visibility:hidden;
  5655. }
  5656. #u140025_input {
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:127px;
  5661. height:25px;
  5662. padding:2px 2px 2px 2px;
  5663. font-family:'Microsoft YaHei', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:10px;
  5667. letter-spacing:normal;
  5668. color:#000000;
  5669. vertical-align:none;
  5670. text-align:left;
  5671. text-transform:none;
  5672. background-color:transparent;
  5673. border-color:transparent;
  5674. }
  5675. #u140025_input.disabled {
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:127px;
  5680. height:25px;
  5681. padding:2px 2px 2px 2px;
  5682. font-family:'Microsoft YaHei', sans-serif;
  5683. font-weight:400;
  5684. font-style:normal;
  5685. font-size:10px;
  5686. letter-spacing:normal;
  5687. color:#000000;
  5688. vertical-align:none;
  5689. text-align:left;
  5690. text-transform:none;
  5691. background-color:transparent;
  5692. border-color:transparent;
  5693. }
  5694. #u140025_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:127px;
  5700. height:25px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 1);
  5703. border:none;
  5704. border-radius:0px;
  5705. -moz-box-shadow:none;
  5706. -webkit-box-shadow:none;
  5707. box-shadow:none;
  5708. font-family:'Microsoft YaHei', sans-serif;
  5709. font-weight:400;
  5710. font-style:normal;
  5711. font-size:10px;
  5712. }
  5713. #u140025 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:956px;
  5717. top:103px;
  5718. width:127px;
  5719. height:25px;
  5720. display:flex;
  5721. font-family:'Microsoft YaHei', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:10px;
  5725. }
  5726. #u140025 .text {
  5727. position:absolute;
  5728. align-self:center;
  5729. padding:2px 2px 2px 2px;
  5730. box-sizing:border-box;
  5731. width:100%;
  5732. }
  5733. #u140025_div.disabled {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:127px;
  5739. height:25px;
  5740. background:inherit;
  5741. background-color:rgba(240, 240, 240, 1);
  5742. border:none;
  5743. border-radius:0px;
  5744. -moz-box-shadow:none;
  5745. -webkit-box-shadow:none;
  5746. box-shadow:none;
  5747. font-family:'Microsoft YaHei', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:10px;
  5751. }
  5752. #u140025.disabled {
  5753. }
  5754. #u140026 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:0px;
  5758. top:0px;
  5759. width:0px;
  5760. height:0px;
  5761. }
  5762. #u140027_div {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:140px;
  5768. height:30px;
  5769. background:inherit;
  5770. background-color:rgba(255, 255, 255, 1);
  5771. box-sizing:border-box;
  5772. border-width:1px;
  5773. border-style:solid;
  5774. border-color:rgba(215, 215, 215, 1);
  5775. border-radius:4px;
  5776. -moz-box-shadow:none;
  5777. -webkit-box-shadow:none;
  5778. box-shadow:none;
  5779. font-size:11px;
  5780. }
  5781. #u140027 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:648px;
  5785. top:101px;
  5786. width:140px;
  5787. height:30px;
  5788. display:flex;
  5789. font-size:11px;
  5790. }
  5791. #u140027 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 2px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u140027_text {
  5799. border-width:0px;
  5800. word-wrap:break-word;
  5801. text-transform:none;
  5802. visibility:hidden;
  5803. }
  5804. #u140028_input {
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:120px;
  5809. height:23px;
  5810. padding:2px 2px 2px 2px;
  5811. font-family:'ArialMT', 'Arial', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:11px;
  5815. letter-spacing:normal;
  5816. color:#AAAAAA;
  5817. vertical-align:none;
  5818. text-align:left;
  5819. text-transform:none;
  5820. background-color:transparent;
  5821. border-color:transparent;
  5822. }
  5823. #u140028_input.disabled {
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:120px;
  5828. height:23px;
  5829. padding:2px 2px 2px 2px;
  5830. font-family:'ArialMT', 'Arial', sans-serif;
  5831. font-weight:400;
  5832. font-style:normal;
  5833. font-size:11px;
  5834. letter-spacing:normal;
  5835. color:#AAAAAA;
  5836. vertical-align:none;
  5837. text-align:left;
  5838. text-transform:none;
  5839. background-color:transparent;
  5840. border-color:transparent;
  5841. }
  5842. #u140028_div {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:120px;
  5848. height:23px;
  5849. background:inherit;
  5850. background-color:rgba(255, 255, 255, 1);
  5851. border:none;
  5852. border-radius:0px;
  5853. -moz-box-shadow:none;
  5854. -webkit-box-shadow:none;
  5855. box-shadow:none;
  5856. font-size:11px;
  5857. color:#AAAAAA;
  5858. }
  5859. #u140028 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:655px;
  5863. top:103px;
  5864. width:120px;
  5865. height:23px;
  5866. display:flex;
  5867. font-size:11px;
  5868. color:#AAAAAA;
  5869. }
  5870. #u140028 .text {
  5871. position:absolute;
  5872. align-self:flex-start;
  5873. padding:2px 2px 2px 2px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u140028_div.disabled {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:120px;
  5883. height:23px;
  5884. background:inherit;
  5885. background-color:rgba(240, 240, 240, 1);
  5886. border:none;
  5887. border-radius:0px;
  5888. -moz-box-shadow:none;
  5889. -webkit-box-shadow:none;
  5890. box-shadow:none;
  5891. font-size:11px;
  5892. color:#AAAAAA;
  5893. }
  5894. #u140028.disabled {
  5895. }
  5896. .u140028_input_option {
  5897. font-size:11px;
  5898. }
  5899. #u140029_div {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:60px;
  5905. height:30px;
  5906. background:inherit;
  5907. background-color:rgba(255, 255, 255, 0);
  5908. box-sizing:border-box;
  5909. border-width:1px;
  5910. border-style:solid;
  5911. border-color:rgba(24, 144, 255, 1);
  5912. border-radius:3px;
  5913. -moz-box-shadow:none;
  5914. -webkit-box-shadow:none;
  5915. box-shadow:none;
  5916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5917. font-weight:400;
  5918. font-style:normal;
  5919. font-size:12px;
  5920. color:#1890FF;
  5921. text-align:center;
  5922. }
  5923. #u140029 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:1336px;
  5927. top:797px;
  5928. width:60px;
  5929. height:30px;
  5930. display:flex;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:12px;
  5935. color:#1890FF;
  5936. text-align:center;
  5937. }
  5938. #u140029 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:5px 0px 5px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u140029_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. }
  5950. #u140030_div {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:50px;
  5956. height:20px;
  5957. background:inherit;
  5958. background-color:rgba(41, 143, 255, 1);
  5959. border:none;
  5960. border-radius:29px;
  5961. -moz-box-shadow:none;
  5962. -webkit-box-shadow:none;
  5963. box-shadow:none;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:12px;
  5968. color:#FFFFFF;
  5969. text-align:center;
  5970. }
  5971. #u140030 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:1476px;
  5975. top:765px;
  5976. width:50px;
  5977. height:20px;
  5978. display:flex;
  5979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:12px;
  5983. color:#FFFFFF;
  5984. text-align:center;
  5985. }
  5986. #u140030 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 0px 2px 0px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u140030_text {
  5994. border-width:0px;
  5995. word-wrap:break-word;
  5996. text-transform:none;
  5997. }
  5998. #u140031_div {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:50px;
  6004. height:20px;
  6005. background:inherit;
  6006. background-color:rgba(215, 215, 215, 1);
  6007. border:none;
  6008. border-radius:29px;
  6009. -moz-box-shadow:none;
  6010. -webkit-box-shadow:none;
  6011. box-shadow:none;
  6012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:12px;
  6016. color:#FFFFFF;
  6017. text-align:center;
  6018. }
  6019. #u140031 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:1316px;
  6023. top:765px;
  6024. width:50px;
  6025. height:20px;
  6026. display:flex;
  6027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:12px;
  6031. color:#FFFFFF;
  6032. text-align:center;
  6033. }
  6034. #u140031 .text {
  6035. position:absolute;
  6036. align-self:center;
  6037. padding:2px 0px 2px 0px;
  6038. box-sizing:border-box;
  6039. width:100%;
  6040. }
  6041. #u140031_text {
  6042. border-width:0px;
  6043. word-wrap:break-word;
  6044. text-transform:none;
  6045. }
  6046. #u140032_div {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:60px;
  6052. height:30px;
  6053. background:inherit;
  6054. background-color:rgba(255, 255, 255, 0);
  6055. box-sizing:border-box;
  6056. border-width:1px;
  6057. border-style:solid;
  6058. border-color:rgba(24, 144, 255, 1);
  6059. border-radius:3px;
  6060. -moz-box-shadow:none;
  6061. -webkit-box-shadow:none;
  6062. box-shadow:none;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:12px;
  6067. color:#1890FF;
  6068. text-align:center;
  6069. }
  6070. #u140032 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:1481px;
  6074. top:797px;
  6075. width:60px;
  6076. height:30px;
  6077. display:flex;
  6078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:12px;
  6082. color:#1890FF;
  6083. text-align:center;
  6084. }
  6085. #u140032 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:5px 0px 5px 0px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u140032_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. }
  6097. #u140033 {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:0px;
  6103. height:0px;
  6104. }
  6105. #u140034_div {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:120px;
  6111. height:260px;
  6112. background:inherit;
  6113. background-color:rgba(255, 255, 255, 1);
  6114. box-sizing:border-box;
  6115. border-width:1px;
  6116. border-style:solid;
  6117. border-color:rgba(242, 242, 242, 1);
  6118. border-radius:4px;
  6119. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6120. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6121. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:14px;
  6126. text-align:left;
  6127. }
  6128. #u140034 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:1279px;
  6132. top:825px;
  6133. width:120px;
  6134. height:260px;
  6135. display:flex;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:14px;
  6140. text-align:left;
  6141. }
  6142. #u140034 .text {
  6143. position:absolute;
  6144. align-self:center;
  6145. padding:2px 2px 2px 2px;
  6146. box-sizing:border-box;
  6147. width:100%;
  6148. }
  6149. #u140034_text {
  6150. border-width:0px;
  6151. word-wrap:break-word;
  6152. text-transform:none;
  6153. visibility:hidden;
  6154. }
  6155. #u140035_div {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:100px;
  6161. height:40px;
  6162. background:inherit;
  6163. background-color:rgba(255, 255, 255, 1);
  6164. border:none;
  6165. border-left:0px;
  6166. border-top:0px;
  6167. border-right:0px;
  6168. border-radius:0px;
  6169. border-bottom-right-radius:0px;
  6170. border-bottom-left-radius:0px;
  6171. -moz-box-shadow:none;
  6172. -webkit-box-shadow:none;
  6173. box-shadow:none;
  6174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. font-size:14px;
  6178. color:#D9001B;
  6179. }
  6180. #u140035 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:1289px;
  6184. top:1035px;
  6185. width:100px;
  6186. height:40px;
  6187. display:flex;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:14px;
  6192. color:#D9001B;
  6193. }
  6194. #u140035 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 2px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u140035_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. }
  6206. #u140036_div {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:100px;
  6212. height:40px;
  6213. background:inherit;
  6214. background-color:rgba(255, 255, 255, 1);
  6215. box-sizing:border-box;
  6216. border-width:1px;
  6217. border-style:solid;
  6218. border-color:rgba(215, 215, 215, 1);
  6219. border-left:0px;
  6220. border-top:0px;
  6221. border-right:0px;
  6222. border-radius:0px;
  6223. border-bottom-right-radius:0px;
  6224. border-bottom-left-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:14px;
  6232. }
  6233. #u140036 {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:1289px;
  6237. top:835px;
  6238. width:100px;
  6239. height:40px;
  6240. display:flex;
  6241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. font-size:14px;
  6245. }
  6246. #u140036 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:2px 2px 2px 2px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u140036_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. }
  6258. #u140037_div {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:100px;
  6264. height:40px;
  6265. background:inherit;
  6266. background-color:rgba(255, 255, 255, 1);
  6267. box-sizing:border-box;
  6268. border-width:1px;
  6269. border-style:solid;
  6270. border-color:rgba(215, 215, 215, 1);
  6271. border-left:0px;
  6272. border-top:0px;
  6273. border-right:0px;
  6274. border-radius:0px;
  6275. border-bottom-right-radius:0px;
  6276. border-bottom-left-radius:0px;
  6277. -moz-box-shadow:none;
  6278. -webkit-box-shadow:none;
  6279. box-shadow:none;
  6280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:14px;
  6284. }
  6285. #u140037 {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:1289px;
  6289. top:915px;
  6290. width:100px;
  6291. height:40px;
  6292. display:flex;
  6293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6294. font-weight:400;
  6295. font-style:normal;
  6296. font-size:14px;
  6297. }
  6298. #u140037 .text {
  6299. position:absolute;
  6300. align-self:center;
  6301. padding:2px 2px 2px 2px;
  6302. box-sizing:border-box;
  6303. width:100%;
  6304. }
  6305. #u140037_text {
  6306. border-width:0px;
  6307. word-wrap:break-word;
  6308. text-transform:none;
  6309. }
  6310. #u140038_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:100px;
  6316. height:40px;
  6317. background:inherit;
  6318. background-color:rgba(255, 255, 255, 1);
  6319. box-sizing:border-box;
  6320. border-width:1px;
  6321. border-style:solid;
  6322. border-color:rgba(215, 215, 215, 1);
  6323. border-left:0px;
  6324. border-top:0px;
  6325. border-right:0px;
  6326. border-radius:0px;
  6327. border-bottom-right-radius:0px;
  6328. border-bottom-left-radius:0px;
  6329. -moz-box-shadow:none;
  6330. -webkit-box-shadow:none;
  6331. box-shadow:none;
  6332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:14px;
  6336. }
  6337. #u140038 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:1289px;
  6341. top:875px;
  6342. width:100px;
  6343. height:40px;
  6344. display:flex;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:14px;
  6349. }
  6350. #u140038 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u140038_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. }
  6362. #u140039_div {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:0px;
  6366. top:0px;
  6367. width:100px;
  6368. height:40px;
  6369. background:inherit;
  6370. background-color:rgba(255, 255, 255, 1);
  6371. box-sizing:border-box;
  6372. border-width:1px;
  6373. border-style:solid;
  6374. border-color:rgba(215, 215, 215, 1);
  6375. border-left:0px;
  6376. border-top:0px;
  6377. border-right:0px;
  6378. border-radius:0px;
  6379. border-bottom-right-radius:0px;
  6380. border-bottom-left-radius:0px;
  6381. -moz-box-shadow:none;
  6382. -webkit-box-shadow:none;
  6383. box-shadow:none;
  6384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6385. font-weight:400;
  6386. font-style:normal;
  6387. font-size:14px;
  6388. }
  6389. #u140039 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:1289px;
  6393. top:955px;
  6394. width:100px;
  6395. height:40px;
  6396. display:flex;
  6397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:14px;
  6401. }
  6402. #u140039 .text {
  6403. position:absolute;
  6404. align-self:center;
  6405. padding:2px 2px 2px 2px;
  6406. box-sizing:border-box;
  6407. width:100%;
  6408. }
  6409. #u140039_text {
  6410. border-width:0px;
  6411. word-wrap:break-word;
  6412. text-transform:none;
  6413. }
  6414. #u140040_div {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:100px;
  6420. height:40px;
  6421. background:inherit;
  6422. background-color:rgba(255, 255, 255, 1);
  6423. box-sizing:border-box;
  6424. border-width:1px;
  6425. border-style:solid;
  6426. border-color:rgba(215, 215, 215, 1);
  6427. border-left:0px;
  6428. border-top:0px;
  6429. border-right:0px;
  6430. border-radius:0px;
  6431. border-bottom-right-radius:0px;
  6432. border-bottom-left-radius:0px;
  6433. -moz-box-shadow:none;
  6434. -webkit-box-shadow:none;
  6435. box-shadow:none;
  6436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6437. font-weight:400;
  6438. font-style:normal;
  6439. font-size:14px;
  6440. }
  6441. #u140040 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:1289px;
  6445. top:995px;
  6446. width:100px;
  6447. height:40px;
  6448. display:flex;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:14px;
  6453. }
  6454. #u140040 .text {
  6455. position:absolute;
  6456. align-self:center;
  6457. padding:2px 2px 2px 2px;
  6458. box-sizing:border-box;
  6459. width:100%;
  6460. }
  6461. #u140040_text {
  6462. border-width:0px;
  6463. word-wrap:break-word;
  6464. text-transform:none;
  6465. }
  6466. #u140041 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:0px;
  6472. height:0px;
  6473. }
  6474. #u140042_div {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:120px;
  6480. height:260px;
  6481. background:inherit;
  6482. background-color:rgba(255, 255, 255, 1);
  6483. box-sizing:border-box;
  6484. border-width:1px;
  6485. border-style:solid;
  6486. border-color:rgba(242, 242, 242, 1);
  6487. border-radius:4px;
  6488. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6489. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6490. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. font-size:14px;
  6495. text-align:left;
  6496. }
  6497. #u140042 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:1421px;
  6501. top:825px;
  6502. width:120px;
  6503. height:260px;
  6504. display:flex;
  6505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6506. font-weight:400;
  6507. font-style:normal;
  6508. font-size:14px;
  6509. text-align:left;
  6510. }
  6511. #u140042 .text {
  6512. position:absolute;
  6513. align-self:center;
  6514. padding:2px 2px 2px 2px;
  6515. box-sizing:border-box;
  6516. width:100%;
  6517. }
  6518. #u140042_text {
  6519. border-width:0px;
  6520. word-wrap:break-word;
  6521. text-transform:none;
  6522. visibility:hidden;
  6523. }
  6524. #u140043_div {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:100px;
  6530. height:40px;
  6531. background:inherit;
  6532. background-color:rgba(255, 255, 255, 1);
  6533. border:none;
  6534. border-left:0px;
  6535. border-top:0px;
  6536. border-right:0px;
  6537. border-radius:0px;
  6538. border-bottom-right-radius:0px;
  6539. border-bottom-left-radius:0px;
  6540. -moz-box-shadow:none;
  6541. -webkit-box-shadow:none;
  6542. box-shadow:none;
  6543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6544. font-weight:400;
  6545. font-style:normal;
  6546. font-size:14px;
  6547. color:#D9001B;
  6548. }
  6549. #u140043 {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:1431px;
  6553. top:1035px;
  6554. width:100px;
  6555. height:40px;
  6556. display:flex;
  6557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6558. font-weight:400;
  6559. font-style:normal;
  6560. font-size:14px;
  6561. color:#D9001B;
  6562. }
  6563. #u140043 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:2px 2px 2px 2px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u140043_text {
  6571. border-width:0px;
  6572. word-wrap:break-word;
  6573. text-transform:none;
  6574. }
  6575. #u140044_div {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:100px;
  6581. height:40px;
  6582. background:inherit;
  6583. background-color:rgba(255, 255, 255, 1);
  6584. box-sizing:border-box;
  6585. border-width:1px;
  6586. border-style:solid;
  6587. border-color:rgba(215, 215, 215, 1);
  6588. border-left:0px;
  6589. border-top:0px;
  6590. border-right:0px;
  6591. border-radius:0px;
  6592. border-bottom-right-radius:0px;
  6593. border-bottom-left-radius:0px;
  6594. -moz-box-shadow:none;
  6595. -webkit-box-shadow:none;
  6596. box-shadow:none;
  6597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:14px;
  6601. }
  6602. #u140044 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:1431px;
  6606. top:835px;
  6607. width:100px;
  6608. height:40px;
  6609. display:flex;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:14px;
  6614. }
  6615. #u140044 .text {
  6616. position:absolute;
  6617. align-self:center;
  6618. padding:2px 2px 2px 2px;
  6619. box-sizing:border-box;
  6620. width:100%;
  6621. }
  6622. #u140044_text {
  6623. border-width:0px;
  6624. word-wrap:break-word;
  6625. text-transform:none;
  6626. }
  6627. #u140045_div {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:100px;
  6633. height:40px;
  6634. background:inherit;
  6635. background-color:rgba(255, 255, 255, 1);
  6636. box-sizing:border-box;
  6637. border-width:1px;
  6638. border-style:solid;
  6639. border-color:rgba(215, 215, 215, 1);
  6640. border-left:0px;
  6641. border-top:0px;
  6642. border-right:0px;
  6643. border-radius:0px;
  6644. border-bottom-right-radius:0px;
  6645. border-bottom-left-radius:0px;
  6646. -moz-box-shadow:none;
  6647. -webkit-box-shadow:none;
  6648. box-shadow:none;
  6649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6650. font-weight:400;
  6651. font-style:normal;
  6652. font-size:14px;
  6653. }
  6654. #u140045 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:1431px;
  6658. top:915px;
  6659. width:100px;
  6660. height:40px;
  6661. display:flex;
  6662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:14px;
  6666. }
  6667. #u140045 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 2px 2px 2px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u140045_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. }
  6679. #u140046_div {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:100px;
  6685. height:40px;
  6686. background:inherit;
  6687. background-color:rgba(255, 255, 255, 1);
  6688. box-sizing:border-box;
  6689. border-width:1px;
  6690. border-style:solid;
  6691. border-color:rgba(215, 215, 215, 1);
  6692. border-left:0px;
  6693. border-top:0px;
  6694. border-right:0px;
  6695. border-radius:0px;
  6696. border-bottom-right-radius:0px;
  6697. border-bottom-left-radius:0px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:14px;
  6705. }
  6706. #u140046 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:1431px;
  6710. top:875px;
  6711. width:100px;
  6712. height:40px;
  6713. display:flex;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:14px;
  6718. }
  6719. #u140046 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 2px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u140046_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. }
  6731. #u140047_div {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:100px;
  6737. height:40px;
  6738. background:inherit;
  6739. background-color:rgba(255, 255, 255, 1);
  6740. box-sizing:border-box;
  6741. border-width:1px;
  6742. border-style:solid;
  6743. border-color:rgba(215, 215, 215, 1);
  6744. border-left:0px;
  6745. border-top:0px;
  6746. border-right:0px;
  6747. border-radius:0px;
  6748. border-bottom-right-radius:0px;
  6749. border-bottom-left-radius:0px;
  6750. -moz-box-shadow:none;
  6751. -webkit-box-shadow:none;
  6752. box-shadow:none;
  6753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:14px;
  6757. }
  6758. #u140047 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:1431px;
  6762. top:955px;
  6763. width:100px;
  6764. height:40px;
  6765. display:flex;
  6766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:14px;
  6770. }
  6771. #u140047 .text {
  6772. position:absolute;
  6773. align-self:center;
  6774. padding:2px 2px 2px 2px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u140047_text {
  6779. border-width:0px;
  6780. word-wrap:break-word;
  6781. text-transform:none;
  6782. }
  6783. #u140048_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:100px;
  6789. height:40px;
  6790. background:inherit;
  6791. background-color:rgba(255, 255, 255, 1);
  6792. box-sizing:border-box;
  6793. border-width:1px;
  6794. border-style:solid;
  6795. border-color:rgba(215, 215, 215, 1);
  6796. border-left:0px;
  6797. border-top:0px;
  6798. border-right:0px;
  6799. border-radius:0px;
  6800. border-bottom-right-radius:0px;
  6801. border-bottom-left-radius:0px;
  6802. -moz-box-shadow:none;
  6803. -webkit-box-shadow:none;
  6804. box-shadow:none;
  6805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:14px;
  6809. }
  6810. #u140048 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:1431px;
  6814. top:995px;
  6815. width:100px;
  6816. height:40px;
  6817. display:flex;
  6818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:14px;
  6822. }
  6823. #u140048 .text {
  6824. position:absolute;
  6825. align-self:center;
  6826. padding:2px 2px 2px 2px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u140048_text {
  6831. border-width:0px;
  6832. word-wrap:break-word;
  6833. text-transform:none;
  6834. }
  6835. #u140049 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:0px;
  6841. height:0px;
  6842. }
  6843. #u140050 {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:0px;
  6849. height:0px;
  6850. }
  6851. #u140051_div {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:380px;
  6857. height:164px;
  6858. background:inherit;
  6859. background-color:rgba(255, 255, 255, 1);
  6860. border:none;
  6861. border-radius:4px;
  6862. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6863. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6864. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6865. font-family:'Microsoft YaHei', sans-serif;
  6866. font-weight:400;
  6867. font-style:normal;
  6868. }
  6869. #u140051 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:1678px;
  6873. top:601px;
  6874. width:380px;
  6875. height:164px;
  6876. display:flex;
  6877. font-family:'Microsoft YaHei', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. }
  6881. #u140051 .text {
  6882. position:absolute;
  6883. align-self:center;
  6884. padding:2px 2px 2px 2px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u140051_text {
  6889. border-width:0px;
  6890. word-wrap:break-word;
  6891. text-transform:none;
  6892. visibility:hidden;
  6893. }
  6894. #u140052_div {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:0px;
  6898. top:0px;
  6899. width:299px;
  6900. height:44px;
  6901. background:inherit;
  6902. background-color:rgba(255, 255, 255, 0);
  6903. border:none;
  6904. border-radius:0px;
  6905. -moz-box-shadow:none;
  6906. -webkit-box-shadow:none;
  6907. box-shadow:none;
  6908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6909. font-weight:400;
  6910. font-style:normal;
  6911. font-size:14px;
  6912. color:#666666;
  6913. line-height:22px;
  6914. }
  6915. #u140052 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:1738px;
  6919. top:656px;
  6920. width:299px;
  6921. height:44px;
  6922. display:flex;
  6923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6924. font-weight:400;
  6925. font-style:normal;
  6926. font-size:14px;
  6927. color:#666666;
  6928. line-height:22px;
  6929. }
  6930. #u140052 .text {
  6931. position:absolute;
  6932. align-self:flex-start;
  6933. padding:0px 0px 0px 0px;
  6934. box-sizing:border-box;
  6935. width:100%;
  6936. }
  6937. #u140052_text {
  6938. border-width:0px;
  6939. word-wrap:break-word;
  6940. text-transform:none;
  6941. }
  6942. #u140053_div {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:73px;
  6948. height:21px;
  6949. background:inherit;
  6950. background-color:rgba(255, 255, 255, 0);
  6951. border:none;
  6952. border-radius:0px;
  6953. -moz-box-shadow:none;
  6954. -webkit-box-shadow:none;
  6955. box-shadow:none;
  6956. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6957. font-weight:500;
  6958. font-style:normal;
  6959. font-size:18px;
  6960. color:#000000;
  6961. line-height:22px;
  6962. }
  6963. #u140053 {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:1738px;
  6967. top:626px;
  6968. width:73px;
  6969. height:21px;
  6970. display:flex;
  6971. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6972. font-weight:500;
  6973. font-style:normal;
  6974. font-size:18px;
  6975. color:#000000;
  6976. line-height:22px;
  6977. }
  6978. #u140053 .text {
  6979. position:absolute;
  6980. align-self:flex-start;
  6981. padding:0px 0px 0px 0px;
  6982. box-sizing:border-box;
  6983. width:100%;
  6984. }
  6985. #u140053_text {
  6986. border-width:0px;
  6987. white-space:nowrap;
  6988. text-transform:none;
  6989. }
  6990. #u140054_div {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:0px;
  6994. top:0px;
  6995. width:61px;
  6996. height:32px;
  6997. background:inherit;
  6998. background-color:rgba(24, 144, 255, 1);
  6999. border:none;
  7000. border-radius:4px;
  7001. -moz-box-shadow:none;
  7002. -webkit-box-shadow:none;
  7003. box-shadow:none;
  7004. font-family:'Microsoft YaHei', sans-serif;
  7005. font-weight:400;
  7006. font-style:normal;
  7007. font-size:14px;
  7008. color:#FFFFFF;
  7009. }
  7010. #u140054 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:1980px;
  7014. top:716px;
  7015. width:61px;
  7016. height:32px;
  7017. display:flex;
  7018. font-family:'Microsoft YaHei', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:14px;
  7022. color:#FFFFFF;
  7023. }
  7024. #u140054 .text {
  7025. position:absolute;
  7026. align-self:center;
  7027. padding:2px 16px 2px 16px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u140054_text {
  7032. border-width:0px;
  7033. white-space:nowrap;
  7034. text-transform:none;
  7035. }
  7036. #u140055_img {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:20px;
  7042. height:20px;
  7043. }
  7044. #u140055 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:1707px;
  7048. top:630px;
  7049. width:20px;
  7050. height:20px;
  7051. display:flex;
  7052. }
  7053. #u140055 .text {
  7054. position:absolute;
  7055. align-self:center;
  7056. padding:2px 2px 2px 2px;
  7057. box-sizing:border-box;
  7058. width:100%;
  7059. }
  7060. #u140055_text {
  7061. border-width:0px;
  7062. word-wrap:break-word;
  7063. text-transform:none;
  7064. visibility:hidden;
  7065. }
  7066. #u140056_div {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:87px;
  7072. height:30px;
  7073. background:inherit;
  7074. background-color:rgba(41, 143, 255, 1);
  7075. border:none;
  7076. border-radius:4px;
  7077. -moz-box-shadow:none;
  7078. -webkit-box-shadow:none;
  7079. box-shadow:none;
  7080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7081. font-weight:400;
  7082. font-style:normal;
  7083. font-size:14px;
  7084. color:#FFFFFF;
  7085. }
  7086. #u140056 {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:1478px;
  7090. top:59px;
  7091. width:87px;
  7092. height:30px;
  7093. display:flex;
  7094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7095. font-weight:400;
  7096. font-style:normal;
  7097. font-size:14px;
  7098. color:#FFFFFF;
  7099. }
  7100. #u140056 .text {
  7101. position:absolute;
  7102. align-self:center;
  7103. padding:5px 15px 5px 15px;
  7104. box-sizing:border-box;
  7105. width:100%;
  7106. }
  7107. #u140056_text {
  7108. border-width:0px;
  7109. white-space:nowrap;
  7110. text-transform:none;
  7111. }