styles.css 128 KB

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