styles.css 115 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2462px;
  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. #u124540_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u124540 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u124540 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u124540_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u124541_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u124541 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u124541 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u124541_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u124542_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u124542 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u124542 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u124542_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u124543 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u124544_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u124544 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u124544 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u124544_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u124545_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u124545 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u124545 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u124545_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u124546_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u124546 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u124546 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u124546_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u124547 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u124548_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. #u124548 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  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. #u124548 .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. #u124548_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u124549_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u124549 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u124549 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u124549_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u124550 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u124551_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. #u124551 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  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. #u124551 .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. #u124551_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u124552_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u124552 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u124552 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u124552_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u124553 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u124554_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u124554 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u124554 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u124554_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u124555_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u124555 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u124555 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u124555_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u124556 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u124557_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u124557 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u124557 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u124557_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u124558_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u124558 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u124558 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u124558_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u124559 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u124560_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u124560 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u124560 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u124560_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u124561_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u124561 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u124561 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u124561_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u124562 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u124563_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u124563 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u124563 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u124563_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u124564_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u124564 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u124564 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u124564_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u124565 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u124566_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u124566 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u124566 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u124566_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u124567_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u124567 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u124567 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u124567_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u124568 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u124569_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u124569 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u124569 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u124569_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u124570_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u124570 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u124570 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u124570_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u124571 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u124572_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u124572 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u124572 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u124572_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u124573_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u124573 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u124573 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u124573_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u124574_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u124574 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u124574 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u124574_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u124575_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u124575 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u124575 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u124575_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u124576_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u124576 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u124576 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u124576_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u124577_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u124577 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u124577 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u124577_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u124578 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u124579_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u124579 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u124579 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u124579_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u124580_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u124580 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u124580 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u124580_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u124581 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u124582_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u124582 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u124582 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u124582_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u124583_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u124583 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u124583 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u124583_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u124584 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u124585_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u124585_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u124585_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u124585 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u124585 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u124585_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u124585.disabled {
  1428. }
  1429. .u124585_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u124586_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u124586 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u124586 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u124586_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u124587_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u124587 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u124587 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u124587_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u124588_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u124588 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u124588 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u124588_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u124589_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:1197px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. }
  1553. #u124589 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1197px;
  1560. display:flex;
  1561. }
  1562. #u124589 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u124589_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u124590_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:109px;
  1581. height:50px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-left:0px;
  1586. border-top:0px;
  1587. border-right:0px;
  1588. border-radius:0px;
  1589. border-bottom-right-radius:0px;
  1590. border-bottom-left-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:18px;
  1598. color:#000000;
  1599. line-height:40px;
  1600. }
  1601. #u124590 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:352px;
  1605. top:50px;
  1606. width:109px;
  1607. height:50px;
  1608. display:flex;
  1609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1610. font-weight:400;
  1611. font-style:normal;
  1612. font-size:18px;
  1613. color:#000000;
  1614. line-height:40px;
  1615. }
  1616. #u124590 .text {
  1617. position:absolute;
  1618. align-self:center;
  1619. padding:0px 0px 0px 0px;
  1620. box-sizing:border-box;
  1621. width:100%;
  1622. }
  1623. #u124590_text {
  1624. border-width:0px;
  1625. white-space:nowrap;
  1626. text-transform:none;
  1627. }
  1628. #u124591 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:352px;
  1632. top:200px;
  1633. width:1216px;
  1634. height:321px;
  1635. }
  1636. #u124592_img {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:54px;
  1642. height:38px;
  1643. }
  1644. #u124592 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:54px;
  1650. height:38px;
  1651. display:flex;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u124592 .text {
  1659. position:absolute;
  1660. align-self:center;
  1661. padding:2px 2px 2px 0px;
  1662. box-sizing:border-box;
  1663. width:100%;
  1664. }
  1665. #u124592_text {
  1666. border-width:0px;
  1667. word-wrap:break-word;
  1668. text-transform:none;
  1669. }
  1670. #u124593_img {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:0px;
  1674. top:0px;
  1675. width:252px;
  1676. height:38px;
  1677. }
  1678. #u124593 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:54px;
  1682. top:0px;
  1683. width:252px;
  1684. height:38px;
  1685. display:flex;
  1686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1687. font-weight:400;
  1688. font-style:normal;
  1689. font-size:12px;
  1690. color:#FFFFFF;
  1691. }
  1692. #u124593 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:2px 2px 2px 0px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u124593_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. }
  1704. #u124594_img {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:190px;
  1710. height:38px;
  1711. }
  1712. #u124594 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:306px;
  1716. top:0px;
  1717. width:190px;
  1718. height:38px;
  1719. display:flex;
  1720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1721. font-weight:400;
  1722. font-style:normal;
  1723. font-size:12px;
  1724. color:#FFFFFF;
  1725. }
  1726. #u124594 .text {
  1727. position:absolute;
  1728. align-self:center;
  1729. padding:2px 2px 2px 0px;
  1730. box-sizing:border-box;
  1731. width:100%;
  1732. }
  1733. #u124594_text {
  1734. border-width:0px;
  1735. word-wrap:break-word;
  1736. text-transform:none;
  1737. }
  1738. #u124595_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:190px;
  1744. height:38px;
  1745. }
  1746. #u124595 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:496px;
  1750. top:0px;
  1751. width:190px;
  1752. height:38px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:12px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u124595 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 0px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u124595_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. }
  1772. #u124596_img {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:190px;
  1778. height:38px;
  1779. }
  1780. #u124596 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:686px;
  1784. top:0px;
  1785. width:190px;
  1786. height:38px;
  1787. display:flex;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:12px;
  1792. color:#FFFFFF;
  1793. }
  1794. #u124596 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:2px 2px 2px 0px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u124596_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. }
  1806. #u124597_img {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:190px;
  1812. height:38px;
  1813. }
  1814. #u124597 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:876px;
  1818. top:0px;
  1819. width:190px;
  1820. height:38px;
  1821. display:flex;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. font-size:12px;
  1826. color:#FFFFFF;
  1827. }
  1828. #u124597 .text {
  1829. position:absolute;
  1830. align-self:center;
  1831. padding:2px 2px 2px 0px;
  1832. box-sizing:border-box;
  1833. width:100%;
  1834. }
  1835. #u124597_text {
  1836. border-width:0px;
  1837. word-wrap:break-word;
  1838. text-transform:none;
  1839. }
  1840. #u124598_img {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:0px;
  1844. top:0px;
  1845. width:150px;
  1846. height:38px;
  1847. }
  1848. #u124598 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:1066px;
  1852. top:0px;
  1853. width:150px;
  1854. height:38px;
  1855. display:flex;
  1856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1857. font-weight:400;
  1858. font-style:normal;
  1859. font-size:12px;
  1860. color:#FFFFFF;
  1861. }
  1862. #u124598 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 2px 2px 0px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u124598_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. }
  1874. #u124599_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:54px;
  1880. height:38px;
  1881. }
  1882. #u124599 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:38px;
  1887. width:54px;
  1888. height:38px;
  1889. display:flex;
  1890. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:12px;
  1894. }
  1895. #u124599 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 2px 2px 0px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u124599_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. visibility:hidden;
  1907. }
  1908. #u124600_img {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:0px;
  1912. top:0px;
  1913. width:252px;
  1914. height:38px;
  1915. }
  1916. #u124600 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:54px;
  1920. top:38px;
  1921. width:252px;
  1922. height:38px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:12px;
  1928. }
  1929. #u124600 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u124600_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. }
  1941. #u124601_img {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:190px;
  1947. height:38px;
  1948. }
  1949. #u124601 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:306px;
  1953. top:38px;
  1954. width:190px;
  1955. height:38px;
  1956. display:flex;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. }
  1962. #u124601 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u124601_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u124602_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:190px;
  1980. height:38px;
  1981. }
  1982. #u124602 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:496px;
  1986. top:38px;
  1987. width:190px;
  1988. height:38px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:12px;
  1994. }
  1995. #u124602 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 2px 2px 0px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u124602_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. }
  2007. #u124603_img {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:190px;
  2013. height:38px;
  2014. }
  2015. #u124603 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:686px;
  2019. top:38px;
  2020. width:190px;
  2021. height:38px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:12px;
  2027. }
  2028. #u124603 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:2px 2px 2px 0px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u124603_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. }
  2040. #u124604_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:190px;
  2046. height:38px;
  2047. }
  2048. #u124604 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:876px;
  2052. top:38px;
  2053. width:190px;
  2054. height:38px;
  2055. display:flex;
  2056. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:12px;
  2060. }
  2061. #u124604 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u124604_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. visibility:hidden;
  2073. }
  2074. #u124605_img {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:150px;
  2080. height:38px;
  2081. }
  2082. #u124605 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:1066px;
  2086. top:38px;
  2087. width:150px;
  2088. height:38px;
  2089. display:flex;
  2090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:12px;
  2094. color:#1890FF;
  2095. }
  2096. #u124605 .text {
  2097. position:absolute;
  2098. align-self:center;
  2099. padding:2px 2px 2px 0px;
  2100. box-sizing:border-box;
  2101. width:100%;
  2102. }
  2103. #u124605_text {
  2104. border-width:0px;
  2105. word-wrap:break-word;
  2106. text-transform:none;
  2107. }
  2108. #u124606_img {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:54px;
  2114. height:38px;
  2115. }
  2116. #u124606 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:76px;
  2121. width:54px;
  2122. height:38px;
  2123. display:flex;
  2124. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:12px;
  2128. color:#606266;
  2129. }
  2130. #u124606 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 2px 2px 0px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u124606_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u124607_img {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:252px;
  2149. height:38px;
  2150. }
  2151. #u124607 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:54px;
  2155. top:76px;
  2156. width:252px;
  2157. height:38px;
  2158. display:flex;
  2159. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:12px;
  2163. color:#606266;
  2164. }
  2165. #u124607 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 2px 2px 0px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u124607_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. visibility:hidden;
  2177. }
  2178. #u124608_img {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:190px;
  2184. height:38px;
  2185. }
  2186. #u124608 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:306px;
  2190. top:76px;
  2191. width:190px;
  2192. height:38px;
  2193. display:flex;
  2194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:12px;
  2198. color:#606266;
  2199. }
  2200. #u124608 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 0px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u124608_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. visibility:hidden;
  2212. }
  2213. #u124609_img {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:190px;
  2219. height:38px;
  2220. }
  2221. #u124609 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:496px;
  2225. top:76px;
  2226. width:190px;
  2227. height:38px;
  2228. display:flex;
  2229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:12px;
  2233. color:#606266;
  2234. }
  2235. #u124609 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u124609_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u124610_img {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:190px;
  2254. height:38px;
  2255. }
  2256. #u124610 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:686px;
  2260. top:76px;
  2261. width:190px;
  2262. height:38px;
  2263. display:flex;
  2264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:12px;
  2268. color:#606266;
  2269. }
  2270. #u124610 .text {
  2271. position:absolute;
  2272. align-self:center;
  2273. padding:2px 2px 2px 0px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u124610_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. visibility:hidden;
  2282. }
  2283. #u124611_img {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:190px;
  2289. height:38px;
  2290. }
  2291. #u124611 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:876px;
  2295. top:76px;
  2296. width:190px;
  2297. height:38px;
  2298. display:flex;
  2299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:12px;
  2303. color:#606266;
  2304. }
  2305. #u124611 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u124611_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u124612_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:150px;
  2324. height:38px;
  2325. }
  2326. #u124612 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:1066px;
  2330. top:76px;
  2331. width:150px;
  2332. height:38px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. color:#1890FF;
  2339. }
  2340. #u124612 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 0px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u124612_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. visibility:hidden;
  2352. }
  2353. #u124613_img {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:54px;
  2359. height:38px;
  2360. }
  2361. #u124613 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:114px;
  2366. width:54px;
  2367. height:38px;
  2368. display:flex;
  2369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:12px;
  2373. color:#606266;
  2374. }
  2375. #u124613 .text {
  2376. position:absolute;
  2377. align-self:center;
  2378. padding:2px 2px 2px 0px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u124613_text {
  2383. border-width:0px;
  2384. word-wrap:break-word;
  2385. text-transform:none;
  2386. visibility:hidden;
  2387. }
  2388. #u124614_img {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:252px;
  2394. height:38px;
  2395. }
  2396. #u124614 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:54px;
  2400. top:114px;
  2401. width:252px;
  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. color:#606266;
  2409. }
  2410. #u124614 .text {
  2411. position:absolute;
  2412. align-self:center;
  2413. padding:2px 2px 2px 0px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u124614_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. visibility:hidden;
  2422. }
  2423. #u124615_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:190px;
  2429. height:38px;
  2430. }
  2431. #u124615 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:306px;
  2435. top:114px;
  2436. width:190px;
  2437. height:38px;
  2438. display:flex;
  2439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:12px;
  2443. color:#606266;
  2444. }
  2445. #u124615 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 0px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u124615_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. visibility:hidden;
  2457. }
  2458. #u124616_img {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:190px;
  2464. height:38px;
  2465. }
  2466. #u124616 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:496px;
  2470. top:114px;
  2471. width:190px;
  2472. height:38px;
  2473. display:flex;
  2474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:12px;
  2478. color:#606266;
  2479. }
  2480. #u124616 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:2px 2px 2px 0px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u124616_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. visibility:hidden;
  2492. }
  2493. #u124617_img {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:190px;
  2499. height:38px;
  2500. }
  2501. #u124617 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:686px;
  2505. top:114px;
  2506. width:190px;
  2507. height:38px;
  2508. display:flex;
  2509. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:12px;
  2513. color:#606266;
  2514. }
  2515. #u124617 .text {
  2516. position:absolute;
  2517. align-self:center;
  2518. padding:2px 2px 2px 0px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u124617_text {
  2523. border-width:0px;
  2524. word-wrap:break-word;
  2525. text-transform:none;
  2526. visibility:hidden;
  2527. }
  2528. #u124618_img {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:190px;
  2534. height:38px;
  2535. }
  2536. #u124618 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:876px;
  2540. top:114px;
  2541. width:190px;
  2542. height:38px;
  2543. display:flex;
  2544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:12px;
  2548. color:#606266;
  2549. }
  2550. #u124618 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:2px 2px 2px 0px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u124618_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. visibility:hidden;
  2562. }
  2563. #u124619_img {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:150px;
  2569. height:38px;
  2570. }
  2571. #u124619 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:1066px;
  2575. top:114px;
  2576. width:150px;
  2577. height:38px;
  2578. display:flex;
  2579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2580. font-weight:400;
  2581. font-style:normal;
  2582. font-size:12px;
  2583. color:#02A7F0;
  2584. }
  2585. #u124619 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 0px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u124619_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u124620_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:54px;
  2604. height:38px;
  2605. }
  2606. #u124620 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:152px;
  2611. width:54px;
  2612. height:38px;
  2613. display:flex;
  2614. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:12px;
  2618. color:#606266;
  2619. }
  2620. #u124620 .text {
  2621. position:absolute;
  2622. align-self:center;
  2623. padding:2px 2px 2px 0px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u124620_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. visibility:hidden;
  2632. }
  2633. #u124621_img {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:252px;
  2639. height:38px;
  2640. }
  2641. #u124621 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:54px;
  2645. top:152px;
  2646. width:252px;
  2647. height:38px;
  2648. display:flex;
  2649. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:12px;
  2653. color:#606266;
  2654. }
  2655. #u124621 .text {
  2656. position:absolute;
  2657. align-self:center;
  2658. padding:2px 2px 2px 0px;
  2659. box-sizing:border-box;
  2660. width:100%;
  2661. }
  2662. #u124621_text {
  2663. border-width:0px;
  2664. word-wrap:break-word;
  2665. text-transform:none;
  2666. visibility:hidden;
  2667. }
  2668. #u124622_img {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:190px;
  2674. height:38px;
  2675. }
  2676. #u124622 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:306px;
  2680. top:152px;
  2681. width:190px;
  2682. height:38px;
  2683. display:flex;
  2684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:12px;
  2688. color:#606266;
  2689. }
  2690. #u124622 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 2px 2px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u124622_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. visibility:hidden;
  2702. }
  2703. #u124623_img {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:190px;
  2709. height:38px;
  2710. }
  2711. #u124623 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:496px;
  2715. top:152px;
  2716. width:190px;
  2717. height:38px;
  2718. display:flex;
  2719. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:12px;
  2723. color:#606266;
  2724. }
  2725. #u124623 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 2px 2px 0px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u124623_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. visibility:hidden;
  2737. }
  2738. #u124624_img {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:190px;
  2744. height:38px;
  2745. }
  2746. #u124624 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:686px;
  2750. top:152px;
  2751. width:190px;
  2752. height:38px;
  2753. display:flex;
  2754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:12px;
  2758. color:#606266;
  2759. }
  2760. #u124624 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 0px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u124624_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. visibility:hidden;
  2772. }
  2773. #u124625_img {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:190px;
  2779. height:38px;
  2780. }
  2781. #u124625 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:876px;
  2785. top:152px;
  2786. width:190px;
  2787. height:38px;
  2788. display:flex;
  2789. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2790. font-weight:400;
  2791. font-style:normal;
  2792. font-size:12px;
  2793. color:#606266;
  2794. }
  2795. #u124625 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 0px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u124625_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u124626_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:150px;
  2814. height:38px;
  2815. }
  2816. #u124626 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:1066px;
  2820. top:152px;
  2821. width:150px;
  2822. height:38px;
  2823. display:flex;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:12px;
  2828. color:#02A7F0;
  2829. }
  2830. #u124626 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u124626_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u124627_img {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:54px;
  2849. height:35px;
  2850. }
  2851. #u124627 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:190px;
  2856. width:54px;
  2857. height:35px;
  2858. display:flex;
  2859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2860. font-weight:400;
  2861. font-style:normal;
  2862. font-size:12px;
  2863. color:#606266;
  2864. }
  2865. #u124627 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 0px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u124627_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u124628_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:252px;
  2884. height:35px;
  2885. }
  2886. #u124628 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:54px;
  2890. top:190px;
  2891. width:252px;
  2892. height:35px;
  2893. display:flex;
  2894. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. color:#606266;
  2899. }
  2900. #u124628 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 2px 2px 0px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u124628_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. visibility:hidden;
  2912. }
  2913. #u124629_img {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:190px;
  2919. height:35px;
  2920. }
  2921. #u124629 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:306px;
  2925. top:190px;
  2926. width:190px;
  2927. height:35px;
  2928. display:flex;
  2929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:12px;
  2933. color:#606266;
  2934. }
  2935. #u124629 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 0px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u124629_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. visibility:hidden;
  2947. }
  2948. #u124630_img {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:190px;
  2954. height:35px;
  2955. }
  2956. #u124630 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:496px;
  2960. top:190px;
  2961. width:190px;
  2962. height:35px;
  2963. display:flex;
  2964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2965. font-weight:400;
  2966. font-style:normal;
  2967. font-size:12px;
  2968. color:#606266;
  2969. }
  2970. #u124630 .text {
  2971. position:absolute;
  2972. align-self:center;
  2973. padding:2px 2px 2px 0px;
  2974. box-sizing:border-box;
  2975. width:100%;
  2976. }
  2977. #u124630_text {
  2978. border-width:0px;
  2979. word-wrap:break-word;
  2980. text-transform:none;
  2981. visibility:hidden;
  2982. }
  2983. #u124631_img {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:190px;
  2989. height:35px;
  2990. }
  2991. #u124631 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:686px;
  2995. top:190px;
  2996. width:190px;
  2997. height:35px;
  2998. display:flex;
  2999. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3000. font-weight:400;
  3001. font-style:normal;
  3002. font-size:12px;
  3003. color:#606266;
  3004. }
  3005. #u124631 .text {
  3006. position:absolute;
  3007. align-self:center;
  3008. padding:2px 2px 2px 0px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u124631_text {
  3013. border-width:0px;
  3014. word-wrap:break-word;
  3015. text-transform:none;
  3016. visibility:hidden;
  3017. }
  3018. #u124632_img {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:190px;
  3024. height:35px;
  3025. }
  3026. #u124632 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:876px;
  3030. top:190px;
  3031. width:190px;
  3032. height:35px;
  3033. display:flex;
  3034. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:12px;
  3038. color:#606266;
  3039. }
  3040. #u124632 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u124632_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u124633_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:150px;
  3059. height:35px;
  3060. }
  3061. #u124633 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:1066px;
  3065. top:190px;
  3066. width:150px;
  3067. height:35px;
  3068. display:flex;
  3069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:12px;
  3073. color:#606266;
  3074. }
  3075. #u124633 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:2px 2px 2px 0px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u124633_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. visibility:hidden;
  3087. }
  3088. #u124634_img {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:54px;
  3094. height:34px;
  3095. }
  3096. #u124634 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:225px;
  3101. width:54px;
  3102. height:34px;
  3103. display:flex;
  3104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:12px;
  3108. color:#606266;
  3109. }
  3110. #u124634 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 0px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u124634_text {
  3118. border-width:0px;
  3119. word-wrap:break-word;
  3120. text-transform:none;
  3121. visibility:hidden;
  3122. }
  3123. #u124635_img {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:252px;
  3129. height:34px;
  3130. }
  3131. #u124635 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:54px;
  3135. top:225px;
  3136. width:252px;
  3137. height:34px;
  3138. display:flex;
  3139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:12px;
  3143. color:#606266;
  3144. }
  3145. #u124635 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 0px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u124635_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. visibility:hidden;
  3157. }
  3158. #u124636_img {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:190px;
  3164. height:34px;
  3165. }
  3166. #u124636 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:306px;
  3170. top:225px;
  3171. width:190px;
  3172. height:34px;
  3173. display:flex;
  3174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:12px;
  3178. color:#606266;
  3179. }
  3180. #u124636 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:2px 2px 2px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u124636_text {
  3188. border-width:0px;
  3189. word-wrap:break-word;
  3190. text-transform:none;
  3191. visibility:hidden;
  3192. }
  3193. #u124637_img {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:190px;
  3199. height:34px;
  3200. }
  3201. #u124637 {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:496px;
  3205. top:225px;
  3206. width:190px;
  3207. height:34px;
  3208. display:flex;
  3209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:12px;
  3213. color:#606266;
  3214. }
  3215. #u124637 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:2px 2px 2px 0px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u124637_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. visibility:hidden;
  3227. }
  3228. #u124638_img {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:190px;
  3234. height:34px;
  3235. }
  3236. #u124638 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:686px;
  3240. top:225px;
  3241. width:190px;
  3242. height:34px;
  3243. display:flex;
  3244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:12px;
  3248. color:#606266;
  3249. }
  3250. #u124638 .text {
  3251. position:absolute;
  3252. align-self:center;
  3253. padding:2px 2px 2px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u124638_text {
  3258. border-width:0px;
  3259. word-wrap:break-word;
  3260. text-transform:none;
  3261. visibility:hidden;
  3262. }
  3263. #u124639_img {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:190px;
  3269. height:34px;
  3270. }
  3271. #u124639 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:876px;
  3275. top:225px;
  3276. width:190px;
  3277. height:34px;
  3278. display:flex;
  3279. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. color:#606266;
  3284. }
  3285. #u124639 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u124639_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u124640_img {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:150px;
  3304. height:34px;
  3305. }
  3306. #u124640 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:1066px;
  3310. top:225px;
  3311. width:150px;
  3312. height:34px;
  3313. display:flex;
  3314. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:12px;
  3318. color:#606266;
  3319. }
  3320. #u124640 .text {
  3321. position:absolute;
  3322. align-self:center;
  3323. padding:2px 2px 2px 0px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u124640_text {
  3328. border-width:0px;
  3329. word-wrap:break-word;
  3330. text-transform:none;
  3331. visibility:hidden;
  3332. }
  3333. #u124641_img {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:54px;
  3339. height:32px;
  3340. }
  3341. #u124641 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:259px;
  3346. width:54px;
  3347. height:32px;
  3348. display:flex;
  3349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:12px;
  3353. color:#606266;
  3354. }
  3355. #u124641 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 0px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u124641_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. visibility:hidden;
  3367. }
  3368. #u124642_img {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:252px;
  3374. height:32px;
  3375. }
  3376. #u124642 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:54px;
  3380. top:259px;
  3381. width:252px;
  3382. height:32px;
  3383. display:flex;
  3384. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:12px;
  3388. color:#606266;
  3389. }
  3390. #u124642 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 2px 2px 0px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u124642_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. visibility:hidden;
  3402. }
  3403. #u124643_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:190px;
  3409. height:32px;
  3410. }
  3411. #u124643 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:306px;
  3415. top:259px;
  3416. width:190px;
  3417. height:32px;
  3418. display:flex;
  3419. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. color:#606266;
  3424. }
  3425. #u124643 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:2px 2px 2px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u124643_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. visibility:hidden;
  3437. }
  3438. #u124644_img {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:190px;
  3444. height:32px;
  3445. }
  3446. #u124644 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:496px;
  3450. top:259px;
  3451. width:190px;
  3452. height:32px;
  3453. display:flex;
  3454. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:12px;
  3458. color:#606266;
  3459. }
  3460. #u124644 .text {
  3461. position:absolute;
  3462. align-self:center;
  3463. padding:2px 2px 2px 0px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u124644_text {
  3468. border-width:0px;
  3469. word-wrap:break-word;
  3470. text-transform:none;
  3471. visibility:hidden;
  3472. }
  3473. #u124645_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:190px;
  3479. height:32px;
  3480. }
  3481. #u124645 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:686px;
  3485. top:259px;
  3486. width:190px;
  3487. height:32px;
  3488. display:flex;
  3489. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:12px;
  3493. color:#606266;
  3494. }
  3495. #u124645 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 0px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u124645_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. visibility:hidden;
  3507. }
  3508. #u124646_img {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:190px;
  3514. height:32px;
  3515. }
  3516. #u124646 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:876px;
  3520. top:259px;
  3521. width:190px;
  3522. height:32px;
  3523. display:flex;
  3524. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3525. font-weight:400;
  3526. font-style:normal;
  3527. font-size:12px;
  3528. color:#606266;
  3529. }
  3530. #u124646 .text {
  3531. position:absolute;
  3532. align-self:center;
  3533. padding:2px 2px 2px 0px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u124646_text {
  3538. border-width:0px;
  3539. word-wrap:break-word;
  3540. text-transform:none;
  3541. visibility:hidden;
  3542. }
  3543. #u124647_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:150px;
  3549. height:32px;
  3550. }
  3551. #u124647 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:1066px;
  3555. top:259px;
  3556. width:150px;
  3557. height:32px;
  3558. display:flex;
  3559. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:12px;
  3563. color:#606266;
  3564. }
  3565. #u124647 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 2px 2px 0px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u124647_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u124648_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:54px;
  3584. height:30px;
  3585. }
  3586. #u124648 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:291px;
  3591. width:54px;
  3592. height:30px;
  3593. display:flex;
  3594. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:12px;
  3598. color:#606266;
  3599. }
  3600. #u124648 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 0px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u124648_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u124649_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:252px;
  3619. height:30px;
  3620. }
  3621. #u124649 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:54px;
  3625. top:291px;
  3626. width:252px;
  3627. height:30px;
  3628. display:flex;
  3629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. color:#606266;
  3634. }
  3635. #u124649 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u124649_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u124650_img {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:190px;
  3654. height:30px;
  3655. }
  3656. #u124650 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:306px;
  3660. top:291px;
  3661. width:190px;
  3662. height:30px;
  3663. display:flex;
  3664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. color:#606266;
  3669. }
  3670. #u124650 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 0px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u124650_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. visibility:hidden;
  3682. }
  3683. #u124651_img {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:190px;
  3689. height:30px;
  3690. }
  3691. #u124651 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:496px;
  3695. top:291px;
  3696. width:190px;
  3697. height:30px;
  3698. display:flex;
  3699. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:12px;
  3703. color:#606266;
  3704. }
  3705. #u124651 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 0px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u124651_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u124652_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:190px;
  3724. height:30px;
  3725. }
  3726. #u124652 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:686px;
  3730. top:291px;
  3731. width:190px;
  3732. height:30px;
  3733. display:flex;
  3734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:12px;
  3738. color:#606266;
  3739. }
  3740. #u124652 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 0px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u124652_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. visibility:hidden;
  3752. }
  3753. #u124653_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:190px;
  3759. height:30px;
  3760. }
  3761. #u124653 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:876px;
  3765. top:291px;
  3766. width:190px;
  3767. height:30px;
  3768. display:flex;
  3769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:12px;
  3773. color:#606266;
  3774. }
  3775. #u124653 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u124653_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u124654_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:150px;
  3794. height:30px;
  3795. }
  3796. #u124654 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:1066px;
  3800. top:291px;
  3801. width:150px;
  3802. height:30px;
  3803. display:flex;
  3804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:12px;
  3808. color:#606266;
  3809. }
  3810. #u124654 .text {
  3811. position:absolute;
  3812. align-self:center;
  3813. padding:2px 2px 2px 0px;
  3814. box-sizing:border-box;
  3815. width:100%;
  3816. }
  3817. #u124654_text {
  3818. border-width:0px;
  3819. word-wrap:break-word;
  3820. text-transform:none;
  3821. visibility:hidden;
  3822. }
  3823. #u124655 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:0px;
  3829. height:0px;
  3830. }
  3831. #u124656_div {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:55px;
  3837. height:30px;
  3838. background:inherit;
  3839. background-color:rgba(255, 255, 255, 1);
  3840. box-sizing:border-box;
  3841. border-width:1px;
  3842. border-style:solid;
  3843. border-color:rgba(170, 170, 170, 1);
  3844. border-radius:4px;
  3845. -moz-box-shadow:none;
  3846. -webkit-box-shadow:none;
  3847. box-shadow:none;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:12px;
  3852. color:#555555;
  3853. }
  3854. #u124656 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:1021px;
  3858. top:111px;
  3859. width:55px;
  3860. height:30px;
  3861. display:flex;
  3862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3863. font-weight:400;
  3864. font-style:normal;
  3865. font-size:12px;
  3866. color:#555555;
  3867. }
  3868. #u124656 .text {
  3869. position:absolute;
  3870. align-self:center;
  3871. padding:5px 15px 5px 15px;
  3872. box-sizing:border-box;
  3873. width:100%;
  3874. }
  3875. #u124656_text {
  3876. border-width:0px;
  3877. white-space:nowrap;
  3878. text-transform:none;
  3879. }
  3880. #u124657_div {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:59px;
  3886. height:30px;
  3887. background:inherit;
  3888. background-color:rgba(24, 144, 255, 1);
  3889. box-sizing:border-box;
  3890. border-width:1px;
  3891. border-style:solid;
  3892. border-color:rgba(0, 153, 255, 1);
  3893. border-radius:4px;
  3894. -moz-box-shadow:none;
  3895. -webkit-box-shadow:none;
  3896. box-shadow:none;
  3897. font-family:'Microsoft YaHei', sans-serif;
  3898. font-weight:400;
  3899. font-style:normal;
  3900. font-size:14px;
  3901. color:#FFFFFF;
  3902. }
  3903. #u124657 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:952px;
  3907. top:111px;
  3908. width:59px;
  3909. height:30px;
  3910. display:flex;
  3911. font-family:'Microsoft YaHei', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:14px;
  3915. color:#FFFFFF;
  3916. }
  3917. #u124657 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:5px 15px 5px 15px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u124657_text {
  3925. border-width:0px;
  3926. white-space:nowrap;
  3927. text-transform:none;
  3928. }
  3929. #u124658 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:0px;
  3935. height:0px;
  3936. }
  3937. #u124659_div {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:0px;
  3941. top:0px;
  3942. width:140px;
  3943. height:30px;
  3944. background:inherit;
  3945. background-color:rgba(255, 255, 255, 1);
  3946. box-sizing:border-box;
  3947. border-width:1px;
  3948. border-style:solid;
  3949. border-color:rgba(201, 201, 201, 1);
  3950. border-radius:4px;
  3951. -moz-box-shadow:none;
  3952. -webkit-box-shadow:none;
  3953. box-shadow:none;
  3954. font-family:'Microsoft YaHei', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:14px;
  3958. color:#CCCCCC;
  3959. text-align:left;
  3960. }
  3961. #u124659 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:502px;
  3965. top:111px;
  3966. width:140px;
  3967. height:30px;
  3968. display:flex;
  3969. font-family:'Microsoft YaHei', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:14px;
  3973. color:#CCCCCC;
  3974. text-align:left;
  3975. }
  3976. #u124659 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 8px 2px 8px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u124659_text {
  3984. border-width:0px;
  3985. word-wrap:break-word;
  3986. text-transform:none;
  3987. visibility:hidden;
  3988. }
  3989. #u124660_input {
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:127px;
  3994. height:25px;
  3995. padding:2px 2px 2px 2px;
  3996. font-family:'Microsoft YaHei', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:10px;
  4000. letter-spacing:normal;
  4001. color:#000000;
  4002. vertical-align:none;
  4003. text-align:left;
  4004. text-transform:none;
  4005. background-color:transparent;
  4006. border-color:transparent;
  4007. }
  4008. #u124660_input.disabled {
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:127px;
  4013. height:25px;
  4014. padding:2px 2px 2px 2px;
  4015. font-family:'Microsoft YaHei', sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. font-size:10px;
  4019. letter-spacing:normal;
  4020. color:#000000;
  4021. vertical-align:none;
  4022. text-align:left;
  4023. text-transform:none;
  4024. background-color:transparent;
  4025. border-color:transparent;
  4026. }
  4027. #u124660_div {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:127px;
  4033. height:25px;
  4034. background:inherit;
  4035. background-color:rgba(255, 255, 255, 1);
  4036. border:none;
  4037. border-radius:0px;
  4038. -moz-box-shadow:none;
  4039. -webkit-box-shadow:none;
  4040. box-shadow:none;
  4041. font-family:'Microsoft YaHei', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:10px;
  4045. }
  4046. #u124660 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:510px;
  4050. top:112px;
  4051. width:127px;
  4052. height:25px;
  4053. display:flex;
  4054. font-family:'Microsoft YaHei', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:10px;
  4058. }
  4059. #u124660 .text {
  4060. position:absolute;
  4061. align-self:center;
  4062. padding:2px 2px 2px 2px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u124660_div.disabled {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:127px;
  4072. height:25px;
  4073. background:inherit;
  4074. background-color:rgba(240, 240, 240, 1);
  4075. border:none;
  4076. border-radius:0px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. font-family:'Microsoft YaHei', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:10px;
  4084. }
  4085. #u124660.disabled {
  4086. }
  4087. #u124661 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:0px;
  4093. height:0px;
  4094. }
  4095. #u124662_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:140px;
  4101. height:30px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 1);
  4104. box-sizing:border-box;
  4105. border-width:1px;
  4106. border-style:solid;
  4107. border-color:rgba(215, 215, 215, 1);
  4108. border-radius:4px;
  4109. -moz-box-shadow:none;
  4110. -webkit-box-shadow:none;
  4111. box-shadow:none;
  4112. font-size:11px;
  4113. }
  4114. #u124662 {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:652px;
  4118. top:111px;
  4119. width:140px;
  4120. height:30px;
  4121. display:flex;
  4122. font-size:11px;
  4123. }
  4124. #u124662 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 2px 2px 2px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u124662_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u124663_input {
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:125px;
  4142. height:23px;
  4143. padding:2px 2px 2px 2px;
  4144. font-family:'ArialMT', 'Arial', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:11px;
  4148. letter-spacing:normal;
  4149. color:#AAAAAA;
  4150. vertical-align:none;
  4151. text-align:left;
  4152. text-transform:none;
  4153. background-color:transparent;
  4154. border-color:transparent;
  4155. }
  4156. #u124663_input.disabled {
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:125px;
  4161. height:23px;
  4162. padding:2px 2px 2px 2px;
  4163. font-family:'ArialMT', 'Arial', sans-serif;
  4164. font-weight:400;
  4165. font-style:normal;
  4166. font-size:11px;
  4167. letter-spacing:normal;
  4168. color:#AAAAAA;
  4169. vertical-align:none;
  4170. text-align:left;
  4171. text-transform:none;
  4172. background-color:transparent;
  4173. border-color:transparent;
  4174. }
  4175. #u124663_div {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:125px;
  4181. height:23px;
  4182. background:inherit;
  4183. background-color:rgba(255, 255, 255, 1);
  4184. border:none;
  4185. border-radius:0px;
  4186. -moz-box-shadow:none;
  4187. -webkit-box-shadow:none;
  4188. box-shadow:none;
  4189. font-size:11px;
  4190. color:#AAAAAA;
  4191. }
  4192. #u124663 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:658px;
  4196. top:113px;
  4197. width:125px;
  4198. height:23px;
  4199. display:flex;
  4200. font-size:11px;
  4201. color:#AAAAAA;
  4202. }
  4203. #u124663 .text {
  4204. position:absolute;
  4205. align-self:flex-start;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u124663_div.disabled {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:125px;
  4216. height:23px;
  4217. background:inherit;
  4218. background-color:rgba(240, 240, 240, 1);
  4219. border:none;
  4220. border-radius:0px;
  4221. -moz-box-shadow:none;
  4222. -webkit-box-shadow:none;
  4223. box-shadow:none;
  4224. font-size:11px;
  4225. color:#AAAAAA;
  4226. }
  4227. #u124663.disabled {
  4228. }
  4229. .u124663_input_option {
  4230. font-size:11px;
  4231. }
  4232. #u124664 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:0px;
  4238. height:0px;
  4239. }
  4240. #u124665_div {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:140px;
  4246. height:30px;
  4247. background:inherit;
  4248. background-color:rgba(255, 255, 255, 1);
  4249. box-sizing:border-box;
  4250. border-width:1px;
  4251. border-style:solid;
  4252. border-color:rgba(215, 215, 215, 1);
  4253. border-radius:4px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-size:11px;
  4258. }
  4259. #u124665 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:352px;
  4263. top:111px;
  4264. width:140px;
  4265. height:30px;
  4266. display:flex;
  4267. font-size:11px;
  4268. }
  4269. #u124665 .text {
  4270. position:absolute;
  4271. align-self:center;
  4272. padding:2px 2px 2px 2px;
  4273. box-sizing:border-box;
  4274. width:100%;
  4275. }
  4276. #u124665_text {
  4277. border-width:0px;
  4278. word-wrap:break-word;
  4279. text-transform:none;
  4280. visibility:hidden;
  4281. }
  4282. #u124666_input {
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:125px;
  4287. height:23px;
  4288. padding:2px 2px 2px 2px;
  4289. font-family:'ArialMT', 'Arial', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:11px;
  4293. letter-spacing:normal;
  4294. color:#AAAAAA;
  4295. vertical-align:none;
  4296. text-align:left;
  4297. text-transform:none;
  4298. background-color:transparent;
  4299. border-color:transparent;
  4300. }
  4301. #u124666_input.disabled {
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:125px;
  4306. height:23px;
  4307. padding:2px 2px 2px 2px;
  4308. font-family:'ArialMT', 'Arial', sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:11px;
  4312. letter-spacing:normal;
  4313. color:#AAAAAA;
  4314. vertical-align:none;
  4315. text-align:left;
  4316. text-transform:none;
  4317. background-color:transparent;
  4318. border-color:transparent;
  4319. }
  4320. #u124666_div {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:125px;
  4326. height:23px;
  4327. background:inherit;
  4328. background-color:rgba(255, 255, 255, 1);
  4329. border:none;
  4330. border-radius:0px;
  4331. -moz-box-shadow:none;
  4332. -webkit-box-shadow:none;
  4333. box-shadow:none;
  4334. font-size:11px;
  4335. color:#AAAAAA;
  4336. }
  4337. #u124666 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:358px;
  4341. top:113px;
  4342. width:125px;
  4343. height:23px;
  4344. display:flex;
  4345. font-size:11px;
  4346. color:#AAAAAA;
  4347. }
  4348. #u124666 .text {
  4349. position:absolute;
  4350. align-self:flex-start;
  4351. padding:2px 2px 2px 2px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u124666_div.disabled {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:125px;
  4361. height:23px;
  4362. background:inherit;
  4363. background-color:rgba(240, 240, 240, 1);
  4364. border:none;
  4365. border-radius:0px;
  4366. -moz-box-shadow:none;
  4367. -webkit-box-shadow:none;
  4368. box-shadow:none;
  4369. font-size:11px;
  4370. color:#AAAAAA;
  4371. }
  4372. #u124666.disabled {
  4373. }
  4374. .u124666_input_option {
  4375. font-size:11px;
  4376. }
  4377. #u124667 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:0px;
  4383. height:0px;
  4384. }
  4385. #u124668_div {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:140px;
  4391. height:30px;
  4392. background:inherit;
  4393. background-color:rgba(255, 255, 255, 1);
  4394. box-sizing:border-box;
  4395. border-width:1px;
  4396. border-style:solid;
  4397. border-color:rgba(215, 215, 215, 1);
  4398. border-radius:4px;
  4399. -moz-box-shadow:none;
  4400. -webkit-box-shadow:none;
  4401. box-shadow:none;
  4402. font-size:11px;
  4403. }
  4404. #u124668 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:802px;
  4408. top:111px;
  4409. width:140px;
  4410. height:30px;
  4411. display:flex;
  4412. font-size:11px;
  4413. }
  4414. #u124668 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 2px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u124668_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u124669_input {
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:125px;
  4432. height:23px;
  4433. padding:2px 2px 2px 2px;
  4434. font-family:'ArialMT', 'Arial', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:11px;
  4438. letter-spacing:normal;
  4439. color:#AAAAAA;
  4440. vertical-align:none;
  4441. text-align:left;
  4442. text-transform:none;
  4443. background-color:transparent;
  4444. border-color:transparent;
  4445. }
  4446. #u124669_input.disabled {
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:125px;
  4451. height:23px;
  4452. padding:2px 2px 2px 2px;
  4453. font-family:'ArialMT', 'Arial', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:11px;
  4457. letter-spacing:normal;
  4458. color:#AAAAAA;
  4459. vertical-align:none;
  4460. text-align:left;
  4461. text-transform:none;
  4462. background-color:transparent;
  4463. border-color:transparent;
  4464. }
  4465. #u124669_div {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:125px;
  4471. height:23px;
  4472. background:inherit;
  4473. background-color:rgba(255, 255, 255, 1);
  4474. border:none;
  4475. border-radius:0px;
  4476. -moz-box-shadow:none;
  4477. -webkit-box-shadow:none;
  4478. box-shadow:none;
  4479. font-size:11px;
  4480. color:#AAAAAA;
  4481. }
  4482. #u124669 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:808px;
  4486. top:113px;
  4487. width:125px;
  4488. height:23px;
  4489. display:flex;
  4490. font-size:11px;
  4491. color:#AAAAAA;
  4492. }
  4493. #u124669 .text {
  4494. position:absolute;
  4495. align-self:flex-start;
  4496. padding:2px 2px 2px 2px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u124669_div.disabled {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:125px;
  4506. height:23px;
  4507. background:inherit;
  4508. background-color:rgba(240, 240, 240, 1);
  4509. border:none;
  4510. border-radius:0px;
  4511. -moz-box-shadow:none;
  4512. -webkit-box-shadow:none;
  4513. box-shadow:none;
  4514. font-size:11px;
  4515. color:#AAAAAA;
  4516. }
  4517. #u124669.disabled {
  4518. }
  4519. .u124669_input_option {
  4520. font-size:11px;
  4521. }
  4522. #u124670_div {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:87px;
  4528. height:30px;
  4529. background:inherit;
  4530. background-color:rgba(24, 144, 255, 1);
  4531. box-sizing:border-box;
  4532. border-width:1px;
  4533. border-style:solid;
  4534. border-color:rgba(0, 153, 255, 1);
  4535. border-radius:4px;
  4536. -moz-box-shadow:none;
  4537. -webkit-box-shadow:none;
  4538. box-shadow:none;
  4539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4540. font-weight:400;
  4541. font-style:normal;
  4542. font-size:14px;
  4543. color:#FFFFFF;
  4544. }
  4545. #u124670 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:352px;
  4549. top:161px;
  4550. width:87px;
  4551. height:30px;
  4552. display:flex;
  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. }
  4559. #u124670 .text {
  4560. position:absolute;
  4561. align-self:center;
  4562. padding:5px 15px 5px 15px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u124670_text {
  4567. border-width:0px;
  4568. white-space:nowrap;
  4569. text-transform:none;
  4570. }
  4571. #u124671 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:0px;
  4577. height:0px;
  4578. }
  4579. #u124672_div {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:680px;
  4585. height:1192px;
  4586. background:inherit;
  4587. background-color:rgba(255, 255, 255, 1);
  4588. box-sizing:border-box;
  4589. border-width:1px;
  4590. border-style:solid;
  4591. border-color:rgba(215, 215, 215, 1);
  4592. border-radius:0px;
  4593. -moz-box-shadow:none;
  4594. -webkit-box-shadow:none;
  4595. box-shadow:none;
  4596. }
  4597. #u124672 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:1642px;
  4601. top:55px;
  4602. width:680px;
  4603. height:1192px;
  4604. display:flex;
  4605. }
  4606. #u124672 .text {
  4607. position:absolute;
  4608. align-self:center;
  4609. padding:2px 2px 2px 2px;
  4610. box-sizing:border-box;
  4611. width:100%;
  4612. }
  4613. #u124672_text {
  4614. border-width:0px;
  4615. word-wrap:break-word;
  4616. text-transform:none;
  4617. visibility:hidden;
  4618. }
  4619. #u124673_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:73px;
  4625. height:30px;
  4626. background:inherit;
  4627. background-color:rgba(255, 255, 255, 0);
  4628. border:none;
  4629. border-radius:0px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:18px;
  4637. color:#000000;
  4638. line-height:30px;
  4639. }
  4640. #u124673 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:1662px;
  4644. top:75px;
  4645. width:73px;
  4646. height:30px;
  4647. display:flex;
  4648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:18px;
  4652. color:#000000;
  4653. line-height:30px;
  4654. }
  4655. #u124673 .text {
  4656. position:absolute;
  4657. align-self:flex-start;
  4658. padding:0px 0px 0px 0px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u124673_text {
  4663. border-width:0px;
  4664. white-space:nowrap;
  4665. text-transform:none;
  4666. }
  4667. #u124674_div {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:40px;
  4673. height:40px;
  4674. background:inherit;
  4675. background-color:rgba(255, 255, 255, 0);
  4676. border:none;
  4677. border-top:0px;
  4678. border-right:0px;
  4679. border-bottom:0px;
  4680. border-radius:0px;
  4681. border-top-left-radius:0px;
  4682. border-bottom-left-radius:0px;
  4683. -moz-box-shadow:none;
  4684. -webkit-box-shadow:none;
  4685. box-shadow:none;
  4686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4687. font-weight:500;
  4688. font-style:normal;
  4689. font-size:18px;
  4690. text-align:center;
  4691. }
  4692. #u124674 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:2282px;
  4696. top:55px;
  4697. width:40px;
  4698. height:40px;
  4699. display:flex;
  4700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4701. font-weight:500;
  4702. font-style:normal;
  4703. font-size:18px;
  4704. text-align:center;
  4705. }
  4706. #u124674 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:5px 10px 5px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u124674_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. }
  4718. #u124675_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:13px;
  4724. height:13px;
  4725. }
  4726. #u124675 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:2269px;
  4730. top:73px;
  4731. width:13px;
  4732. height:13px;
  4733. display:flex;
  4734. }
  4735. #u124675 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:2px 2px 2px 2px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u124675_text {
  4743. border-width:0px;
  4744. word-wrap:break-word;
  4745. text-transform:none;
  4746. visibility:hidden;
  4747. }
  4748. #u124676 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:0px;
  4754. height:0px;
  4755. }
  4756. #u124677_div {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:680px;
  4762. height:60px;
  4763. background:inherit;
  4764. background-color:rgba(255, 255, 255, 1);
  4765. box-sizing:border-box;
  4766. border-width:1px;
  4767. border-style:solid;
  4768. border-color:rgba(215, 215, 215, 1);
  4769. border-radius:0px;
  4770. -moz-box-shadow:none;
  4771. -webkit-box-shadow:none;
  4772. box-shadow:none;
  4773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:14px;
  4777. color:#AAAAAA;
  4778. text-align:center;
  4779. line-height:30px;
  4780. }
  4781. #u124677 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:1642px;
  4785. top:1187px;
  4786. width:680px;
  4787. height:60px;
  4788. display:flex;
  4789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4790. font-weight:400;
  4791. font-style:normal;
  4792. font-size:14px;
  4793. color:#AAAAAA;
  4794. text-align:center;
  4795. line-height:30px;
  4796. }
  4797. #u124677 .text {
  4798. position:absolute;
  4799. align-self:center;
  4800. padding:5px 10px 5px 10px;
  4801. box-sizing:border-box;
  4802. width:100%;
  4803. }
  4804. #u124677_text {
  4805. border-width:0px;
  4806. word-wrap:break-word;
  4807. text-transform:none;
  4808. visibility:hidden;
  4809. }
  4810. #u124678_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:80px;
  4816. height:30px;
  4817. background:inherit;
  4818. background-color:rgba(24, 144, 255, 1);
  4819. border:none;
  4820. border-radius:4px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:14px;
  4828. color:#FFFFFF;
  4829. }
  4830. #u124678 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:2197px;
  4834. top:1202px;
  4835. width:80px;
  4836. height:30px;
  4837. display:flex;
  4838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:14px;
  4842. color:#FFFFFF;
  4843. }
  4844. #u124678 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u124678_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. }
  4856. #u124679_div {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:80px;
  4862. height:30px;
  4863. background:inherit;
  4864. background-color:rgba(255, 255, 255, 1);
  4865. box-sizing:border-box;
  4866. border-width:1px;
  4867. border-style:solid;
  4868. border-color:rgba(170, 170, 170, 1);
  4869. border-radius:4px;
  4870. -moz-box-shadow:none;
  4871. -webkit-box-shadow:none;
  4872. box-shadow:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. }
  4878. #u124679 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:2098px;
  4882. top:1202px;
  4883. width:80px;
  4884. height:30px;
  4885. display:flex;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:14px;
  4890. }
  4891. #u124679 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 2px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u124679_text {
  4899. border-width:0px;
  4900. word-wrap:break-word;
  4901. text-transform:none;
  4902. }
  4903. #u124680_div {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:71px;
  4909. height:30px;
  4910. background:inherit;
  4911. background-color:rgba(255, 255, 255, 0);
  4912. border:none;
  4913. border-top:0px;
  4914. border-right:0px;
  4915. border-bottom:0px;
  4916. border-radius:0px;
  4917. border-top-left-radius:0px;
  4918. border-bottom-left-radius:0px;
  4919. -moz-box-shadow:none;
  4920. -webkit-box-shadow:none;
  4921. box-shadow:none;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:14px;
  4926. text-align:right;
  4927. }
  4928. #u124680 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:1700px;
  4932. top:349px;
  4933. width:71px;
  4934. height:30px;
  4935. display:flex;
  4936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:14px;
  4940. text-align:right;
  4941. }
  4942. #u124680 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:5px 0px 5px 0px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u124680_text {
  4950. border-width:0px;
  4951. white-space:nowrap;
  4952. text-transform:none;
  4953. }
  4954. #u124681 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:0px;
  4960. height:0px;
  4961. }
  4962. #u124682_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:400px;
  4968. height:80px;
  4969. background:inherit;
  4970. background-color:rgba(255, 255, 255, 1);
  4971. box-sizing:border-box;
  4972. border-width:1px;
  4973. border-style:solid;
  4974. border-color:rgba(170, 170, 170, 1);
  4975. border-radius:4px;
  4976. -moz-box-shadow:none;
  4977. -webkit-box-shadow:none;
  4978. box-shadow:none;
  4979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. text-align:left;
  4983. }
  4984. #u124682 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:1781px;
  4988. top:344px;
  4989. width:400px;
  4990. height:80px;
  4991. display:flex;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. text-align:left;
  4996. }
  4997. #u124682 .text {
  4998. position:absolute;
  4999. align-self:center;
  5000. padding:2px 2px 2px 10px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u124682_text {
  5005. border-width:0px;
  5006. word-wrap:break-word;
  5007. text-transform:none;
  5008. visibility:hidden;
  5009. }
  5010. #u124683_input {
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:188px;
  5015. height:31px;
  5016. padding:2px 2px 2px 2px;
  5017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:13px;
  5021. letter-spacing:normal;
  5022. color:#AAAAAA;
  5023. vertical-align:none;
  5024. text-align:left;
  5025. text-transform:none;
  5026. background-color:transparent;
  5027. border-color:transparent;
  5028. }
  5029. #u124683_input.disabled {
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:188px;
  5034. height:31px;
  5035. padding:2px 2px 2px 2px;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:13px;
  5040. letter-spacing:normal;
  5041. color:#AAAAAA;
  5042. vertical-align:none;
  5043. text-align:left;
  5044. text-transform:none;
  5045. background-color:transparent;
  5046. border-color:transparent;
  5047. }
  5048. #u124683_div {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:188px;
  5054. height:31px;
  5055. background:inherit;
  5056. background-color:rgba(255, 255, 255, 0);
  5057. border:none;
  5058. border-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. color:#AAAAAA;
  5066. }
  5067. #u124683 {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:1791px;
  5071. top:349px;
  5072. width:188px;
  5073. height:31px;
  5074. display:flex;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. color:#AAAAAA;
  5079. }
  5080. #u124683 .text {
  5081. position:absolute;
  5082. align-self:center;
  5083. padding:2px 2px 2px 2px;
  5084. box-sizing:border-box;
  5085. width:100%;
  5086. }
  5087. #u124683_div.disabled {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:188px;
  5093. height:31px;
  5094. background:inherit;
  5095. background-color:rgba(240, 240, 240, 1);
  5096. border:none;
  5097. border-radius:0px;
  5098. -moz-box-shadow:none;
  5099. -webkit-box-shadow:none;
  5100. box-shadow:none;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. color:#AAAAAA;
  5105. }
  5106. #u124683.disabled {
  5107. }
  5108. #u124684_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:43px;
  5114. height:24px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 0);
  5117. border:none;
  5118. border-top:0px;
  5119. border-right:0px;
  5120. border-bottom:0px;
  5121. border-radius:0px;
  5122. border-top-left-radius:0px;
  5123. border-bottom-left-radius:0px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:10px;
  5131. color:#AAAAAA;
  5132. text-align:right;
  5133. }
  5134. #u124684 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:2135px;
  5138. top:399px;
  5139. width:43px;
  5140. height:24px;
  5141. display:flex;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:10px;
  5146. color:#AAAAAA;
  5147. text-align:right;
  5148. }
  5149. #u124684 .text {
  5150. position:absolute;
  5151. align-self:center;
  5152. padding:5px 0px 5px 0px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u124684_text {
  5157. border-width:0px;
  5158. white-space:nowrap;
  5159. text-transform:none;
  5160. }
  5161. #u124685 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:0px;
  5167. height:0px;
  5168. }
  5169. #u124686_div {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:400px;
  5175. height:40px;
  5176. background:inherit;
  5177. background-color:rgba(255, 255, 255, 1);
  5178. box-sizing:border-box;
  5179. border-width:1px;
  5180. border-style:solid;
  5181. border-color:rgba(170, 170, 170, 1);
  5182. border-radius:4px;
  5183. -moz-box-shadow:none;
  5184. -webkit-box-shadow:none;
  5185. box-shadow:none;
  5186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5187. font-weight:400;
  5188. font-style:normal;
  5189. text-align:left;
  5190. }
  5191. #u124686 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:1781px;
  5195. top:294px;
  5196. width:400px;
  5197. height:40px;
  5198. display:flex;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. text-align:left;
  5203. }
  5204. #u124686 .text {
  5205. position:absolute;
  5206. align-self:center;
  5207. padding:2px 2px 2px 10px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u124686_text {
  5212. border-width:0px;
  5213. word-wrap:break-word;
  5214. text-transform:none;
  5215. visibility:hidden;
  5216. }
  5217. #u124687_input {
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:188px;
  5222. height:31px;
  5223. padding:2px 2px 2px 2px;
  5224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:13px;
  5228. letter-spacing:normal;
  5229. color:#AAAAAA;
  5230. vertical-align:none;
  5231. text-align:left;
  5232. text-transform:none;
  5233. background-color:transparent;
  5234. border-color:transparent;
  5235. }
  5236. #u124687_input.disabled {
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:188px;
  5241. height:31px;
  5242. padding:2px 2px 2px 2px;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:13px;
  5247. letter-spacing:normal;
  5248. color:#AAAAAA;
  5249. vertical-align:none;
  5250. text-align:left;
  5251. text-transform:none;
  5252. background-color:transparent;
  5253. border-color:transparent;
  5254. }
  5255. #u124687_div {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:188px;
  5261. height:31px;
  5262. background:inherit;
  5263. background-color:rgba(255, 255, 255, 0);
  5264. border:none;
  5265. border-radius:0px;
  5266. -moz-box-shadow:none;
  5267. -webkit-box-shadow:none;
  5268. box-shadow:none;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. color:#AAAAAA;
  5273. }
  5274. #u124687 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:1791px;
  5278. top:299px;
  5279. width:188px;
  5280. height:31px;
  5281. display:flex;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. color:#AAAAAA;
  5286. }
  5287. #u124687 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 2px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u124687_div.disabled {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:188px;
  5300. height:31px;
  5301. background:inherit;
  5302. background-color:rgba(240, 240, 240, 1);
  5303. border:none;
  5304. border-radius:0px;
  5305. -moz-box-shadow:none;
  5306. -webkit-box-shadow:none;
  5307. box-shadow:none;
  5308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. color:#AAAAAA;
  5312. }
  5313. #u124687.disabled {
  5314. }
  5315. #u124688_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:78px;
  5321. height:30px;
  5322. background:inherit;
  5323. background-color:rgba(255, 255, 255, 0);
  5324. border:none;
  5325. border-top:0px;
  5326. border-right:0px;
  5327. border-bottom:0px;
  5328. border-radius:0px;
  5329. border-top-left-radius:0px;
  5330. border-bottom-left-radius:0px;
  5331. -moz-box-shadow:none;
  5332. -webkit-box-shadow:none;
  5333. box-shadow:none;
  5334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:14px;
  5338. text-align:right;
  5339. }
  5340. #u124688 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:1693px;
  5344. top:299px;
  5345. width:78px;
  5346. height:30px;
  5347. display:flex;
  5348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5349. font-weight:400;
  5350. font-style:normal;
  5351. font-size:14px;
  5352. text-align:right;
  5353. }
  5354. #u124688 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:5px 0px 5px 0px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u124688_text {
  5362. border-width:0px;
  5363. white-space:nowrap;
  5364. text-transform:none;
  5365. }
  5366. #u124689_div {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:88px;
  5372. height:30px;
  5373. background:inherit;
  5374. background-color:rgba(255, 255, 255, 0);
  5375. border:none;
  5376. border-top:0px;
  5377. border-right:0px;
  5378. border-bottom:0px;
  5379. border-radius:0px;
  5380. border-top-left-radius:0px;
  5381. border-bottom-left-radius:0px;
  5382. -moz-box-shadow:none;
  5383. -webkit-box-shadow:none;
  5384. box-shadow:none;
  5385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:14px;
  5389. }
  5390. #u124689 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:1693px;
  5394. top:249px;
  5395. width:88px;
  5396. height:30px;
  5397. display:flex;
  5398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:14px;
  5402. }
  5403. #u124689 .text {
  5404. position:absolute;
  5405. align-self:center;
  5406. padding:5px 10px 5px 0px;
  5407. box-sizing:border-box;
  5408. width:100%;
  5409. }
  5410. #u124689_text {
  5411. border-width:0px;
  5412. white-space:nowrap;
  5413. text-transform:none;
  5414. }
  5415. #u124690_div {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:0px;
  5419. top:0px;
  5420. width:88px;
  5421. height:30px;
  5422. background:inherit;
  5423. background-color:rgba(255, 255, 255, 0);
  5424. border:none;
  5425. border-top:0px;
  5426. border-right:0px;
  5427. border-bottom:0px;
  5428. border-radius:0px;
  5429. border-top-left-radius:0px;
  5430. border-bottom-left-radius:0px;
  5431. -moz-box-shadow:none;
  5432. -webkit-box-shadow:none;
  5433. box-shadow:none;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. }
  5439. #u124690 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:1693px;
  5443. top:149px;
  5444. width:88px;
  5445. height:30px;
  5446. display:flex;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:14px;
  5451. }
  5452. #u124690 .text {
  5453. position:absolute;
  5454. align-self:center;
  5455. padding:5px 10px 5px 0px;
  5456. box-sizing:border-box;
  5457. width:100%;
  5458. }
  5459. #u124690_text {
  5460. border-width:0px;
  5461. white-space:nowrap;
  5462. text-transform:none;
  5463. }
  5464. #u124691 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:0px;
  5470. height:0px;
  5471. }
  5472. #u124692_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:400px;
  5478. height:40px;
  5479. background:inherit;
  5480. background-color:rgba(255, 255, 255, 1);
  5481. box-sizing:border-box;
  5482. border-width:1px;
  5483. border-style:solid;
  5484. border-color:rgba(170, 170, 170, 1);
  5485. border-radius:4px;
  5486. -moz-box-shadow:none;
  5487. -webkit-box-shadow:none;
  5488. box-shadow:none;
  5489. }
  5490. #u124692 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:1781px;
  5494. top:144px;
  5495. width:400px;
  5496. height:40px;
  5497. display:flex;
  5498. }
  5499. #u124692 .text {
  5500. position:absolute;
  5501. align-self:center;
  5502. padding:2px 2px 2px 0px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u124692_text {
  5507. border-width:0px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. visibility:hidden;
  5511. }
  5512. #u124693_input {
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:380px;
  5517. height:30px;
  5518. padding:2px 2px 2px 0px;
  5519. font-family:'ArialMT', 'Arial', sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:13px;
  5523. letter-spacing:normal;
  5524. color:#AAAAAA;
  5525. vertical-align:none;
  5526. text-align:left;
  5527. text-transform:none;
  5528. background-color:transparent;
  5529. border-color:transparent;
  5530. }
  5531. #u124693_input.disabled {
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:380px;
  5536. height:30px;
  5537. padding:2px 2px 2px 0px;
  5538. font-family:'ArialMT', 'Arial', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:13px;
  5542. letter-spacing:normal;
  5543. color:#AAAAAA;
  5544. vertical-align:none;
  5545. text-align:left;
  5546. text-transform:none;
  5547. background-color:transparent;
  5548. border-color:transparent;
  5549. }
  5550. #u124693_div {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:380px;
  5556. height:30px;
  5557. background:inherit;
  5558. background-color:rgba(255, 255, 255, 1);
  5559. border:none;
  5560. border-radius:0px;
  5561. -moz-box-shadow:none;
  5562. -webkit-box-shadow:none;
  5563. box-shadow:none;
  5564. color:#AAAAAA;
  5565. }
  5566. #u124693 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:1791px;
  5570. top:150px;
  5571. width:380px;
  5572. height:30px;
  5573. display:flex;
  5574. color:#AAAAAA;
  5575. }
  5576. #u124693 .text {
  5577. position:absolute;
  5578. align-self:flex-start;
  5579. padding:2px 2px 2px 0px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u124693_div.disabled {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:380px;
  5589. height:30px;
  5590. background:inherit;
  5591. background-color:rgba(240, 240, 240, 1);
  5592. border:none;
  5593. border-radius:0px;
  5594. -moz-box-shadow:none;
  5595. -webkit-box-shadow:none;
  5596. box-shadow:none;
  5597. color:#AAAAAA;
  5598. }
  5599. #u124693.disabled {
  5600. }
  5601. .u124693_input_option {
  5602. }
  5603. #u124694_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:88px;
  5609. height:30px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 0);
  5612. border:none;
  5613. border-top:0px;
  5614. border-right:0px;
  5615. border-bottom:0px;
  5616. border-radius:0px;
  5617. border-top-left-radius:0px;
  5618. border-bottom-left-radius:0px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:14px;
  5626. }
  5627. #u124694 {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:1693px;
  5631. top:199px;
  5632. width:88px;
  5633. height:30px;
  5634. display:flex;
  5635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:14px;
  5639. }
  5640. #u124694 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:5px 10px 5px 0px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u124694_text {
  5648. border-width:0px;
  5649. white-space:nowrap;
  5650. text-transform:none;
  5651. }
  5652. #u124695 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:0px;
  5658. height:0px;
  5659. }
  5660. #u124696_div {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:400px;
  5666. height:40px;
  5667. background:inherit;
  5668. background-color:rgba(255, 255, 255, 1);
  5669. box-sizing:border-box;
  5670. border-width:1px;
  5671. border-style:solid;
  5672. border-color:rgba(170, 170, 170, 1);
  5673. border-radius:4px;
  5674. -moz-box-shadow:none;
  5675. -webkit-box-shadow:none;
  5676. box-shadow:none;
  5677. }
  5678. #u124696 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:1781px;
  5682. top:194px;
  5683. width:400px;
  5684. height:40px;
  5685. display:flex;
  5686. }
  5687. #u124696 .text {
  5688. position:absolute;
  5689. align-self:center;
  5690. padding:2px 2px 2px 0px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u124696_text {
  5695. border-width:0px;
  5696. word-wrap:break-word;
  5697. text-transform:none;
  5698. visibility:hidden;
  5699. }
  5700. #u124697_input {
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:380px;
  5705. height:30px;
  5706. padding:2px 2px 2px 0px;
  5707. font-family:'ArialMT', 'Arial', sans-serif;
  5708. font-weight:400;
  5709. font-style:normal;
  5710. font-size:13px;
  5711. letter-spacing:normal;
  5712. color:#AAAAAA;
  5713. vertical-align:none;
  5714. text-align:left;
  5715. text-transform:none;
  5716. background-color:transparent;
  5717. border-color:transparent;
  5718. }
  5719. #u124697_input.disabled {
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:380px;
  5724. height:30px;
  5725. padding:2px 2px 2px 0px;
  5726. font-family:'ArialMT', 'Arial', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:13px;
  5730. letter-spacing:normal;
  5731. color:#AAAAAA;
  5732. vertical-align:none;
  5733. text-align:left;
  5734. text-transform:none;
  5735. background-color:transparent;
  5736. border-color:transparent;
  5737. }
  5738. #u124697_div {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:380px;
  5744. height:30px;
  5745. background:inherit;
  5746. background-color:rgba(255, 255, 255, 1);
  5747. border:none;
  5748. border-radius:0px;
  5749. -moz-box-shadow:none;
  5750. -webkit-box-shadow:none;
  5751. box-shadow:none;
  5752. color:#AAAAAA;
  5753. }
  5754. #u124697 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:1791px;
  5758. top:200px;
  5759. width:380px;
  5760. height:30px;
  5761. display:flex;
  5762. color:#AAAAAA;
  5763. }
  5764. #u124697 .text {
  5765. position:absolute;
  5766. align-self:flex-start;
  5767. padding:2px 2px 2px 0px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u124697_div.disabled {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:380px;
  5777. height:30px;
  5778. background:inherit;
  5779. background-color:rgba(240, 240, 240, 1);
  5780. border:none;
  5781. border-radius:0px;
  5782. -moz-box-shadow:none;
  5783. -webkit-box-shadow:none;
  5784. box-shadow:none;
  5785. color:#AAAAAA;
  5786. }
  5787. #u124697.disabled {
  5788. }
  5789. .u124697_input_option {
  5790. }
  5791. #u124698 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:0px;
  5797. height:0px;
  5798. }
  5799. #u124699_div {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:0px;
  5803. top:0px;
  5804. width:400px;
  5805. height:40px;
  5806. background:inherit;
  5807. background-color:rgba(255, 255, 255, 1);
  5808. box-sizing:border-box;
  5809. border-width:1px;
  5810. border-style:solid;
  5811. border-color:rgba(170, 170, 170, 1);
  5812. border-radius:4px;
  5813. -moz-box-shadow:none;
  5814. -webkit-box-shadow:none;
  5815. box-shadow:none;
  5816. }
  5817. #u124699 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:1781px;
  5821. top:244px;
  5822. width:400px;
  5823. height:40px;
  5824. display:flex;
  5825. }
  5826. #u124699 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 0px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u124699_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. visibility:hidden;
  5838. }
  5839. #u124700_input {
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:380px;
  5844. height:30px;
  5845. padding:2px 2px 2px 0px;
  5846. font-family:'ArialMT', 'Arial', sans-serif;
  5847. font-weight:400;
  5848. font-style:normal;
  5849. font-size:13px;
  5850. letter-spacing:normal;
  5851. color:#AAAAAA;
  5852. vertical-align:none;
  5853. text-align:left;
  5854. text-transform:none;
  5855. background-color:transparent;
  5856. border-color:transparent;
  5857. }
  5858. #u124700_input.disabled {
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:380px;
  5863. height:30px;
  5864. padding:2px 2px 2px 0px;
  5865. font-family:'ArialMT', 'Arial', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:13px;
  5869. letter-spacing:normal;
  5870. color:#AAAAAA;
  5871. vertical-align:none;
  5872. text-align:left;
  5873. text-transform:none;
  5874. background-color:transparent;
  5875. border-color:transparent;
  5876. }
  5877. #u124700_div {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:380px;
  5883. height:30px;
  5884. background:inherit;
  5885. background-color:rgba(255, 255, 255, 1);
  5886. border:none;
  5887. border-radius:0px;
  5888. -moz-box-shadow:none;
  5889. -webkit-box-shadow:none;
  5890. box-shadow:none;
  5891. color:#AAAAAA;
  5892. }
  5893. #u124700 {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:1791px;
  5897. top:250px;
  5898. width:380px;
  5899. height:30px;
  5900. display:flex;
  5901. color:#AAAAAA;
  5902. }
  5903. #u124700 .text {
  5904. position:absolute;
  5905. align-self:flex-start;
  5906. padding:2px 2px 2px 0px;
  5907. box-sizing:border-box;
  5908. width:100%;
  5909. }
  5910. #u124700_div.disabled {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:380px;
  5916. height:30px;
  5917. background:inherit;
  5918. background-color:rgba(240, 240, 240, 1);
  5919. border:none;
  5920. border-radius:0px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. color:#AAAAAA;
  5925. }
  5926. #u124700.disabled {
  5927. }
  5928. .u124700_input_option {
  5929. }
  5930. #u124701_div {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:0px;
  5934. top:0px;
  5935. width:271px;
  5936. height:50px;
  5937. background:inherit;
  5938. background-color:rgba(255, 255, 255, 0);
  5939. border:none;
  5940. border-top:0px;
  5941. border-right:0px;
  5942. border-bottom:0px;
  5943. border-radius:0px;
  5944. border-top-left-radius:0px;
  5945. border-bottom-left-radius:0px;
  5946. -moz-box-shadow:none;
  5947. -webkit-box-shadow:none;
  5948. box-shadow:none;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. font-size:14px;
  5953. color:#D9001B;
  5954. }
  5955. #u124701 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:2191px;
  5959. top:234px;
  5960. width:271px;
  5961. height:50px;
  5962. display:flex;
  5963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5964. font-weight:400;
  5965. font-style:normal;
  5966. font-size:14px;
  5967. color:#D9001B;
  5968. }
  5969. #u124701 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:5px 10px 5px 0px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u124701_text {
  5977. border-width:0px;
  5978. white-space:nowrap;
  5979. text-transform:none;
  5980. }
  5981. #u124702 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:0px;
  5987. height:0px;
  5988. }
  5989. #u124703_div {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:80px;
  5995. height:100px;
  5996. background:inherit;
  5997. background-color:rgba(255, 255, 255, 1);
  5998. border:none;
  5999. border-radius:3px;
  6000. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6001. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6002. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6003. }
  6004. #u124703 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:1452px;
  6008. top:268px;
  6009. width:80px;
  6010. height:100px;
  6011. display:flex;
  6012. }
  6013. #u124703 .text {
  6014. position:absolute;
  6015. align-self:center;
  6016. padding:2px 2px 2px 2px;
  6017. box-sizing:border-box;
  6018. width:100%;
  6019. }
  6020. #u124703_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. visibility:hidden;
  6025. }
  6026. #u124704_div {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:67px;
  6032. height:40px;
  6033. background:inherit;
  6034. background-color:rgba(255, 255, 255, 1);
  6035. box-sizing:border-box;
  6036. border-width:1px;
  6037. border-style:solid;
  6038. border-color:rgba(242, 242, 242, 1);
  6039. border-left:0px;
  6040. border-top:0px;
  6041. border-right:0px;
  6042. border-radius:4px;
  6043. border-bottom-right-radius:0px;
  6044. border-bottom-left-radius:0px;
  6045. -moz-box-shadow:none;
  6046. -webkit-box-shadow:none;
  6047. box-shadow:none;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:14px;
  6052. }
  6053. #u124704 {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:1459px;
  6057. top:279px;
  6058. width:67px;
  6059. height:40px;
  6060. display:flex;
  6061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. font-size:14px;
  6065. }
  6066. #u124704 .text {
  6067. position:absolute;
  6068. align-self:center;
  6069. padding:5px 0px 5px 0px;
  6070. box-sizing:border-box;
  6071. width:100%;
  6072. }
  6073. #u124704_text {
  6074. border-width:0px;
  6075. word-wrap:break-word;
  6076. text-transform:none;
  6077. }
  6078. #u124705_div {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:0px;
  6082. top:0px;
  6083. width:67px;
  6084. height:40px;
  6085. background:inherit;
  6086. background-color:rgba(255, 255, 255, 1);
  6087. border:none;
  6088. border-left:0px;
  6089. border-top:0px;
  6090. border-right:0px;
  6091. border-radius:4px;
  6092. border-bottom-right-radius:0px;
  6093. border-bottom-left-radius:0px;
  6094. -moz-box-shadow:none;
  6095. -webkit-box-shadow:none;
  6096. box-shadow:none;
  6097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:14px;
  6101. }
  6102. #u124705 {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:1459px;
  6106. top:319px;
  6107. width:67px;
  6108. height:40px;
  6109. display:flex;
  6110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. font-size:14px;
  6114. }
  6115. #u124705 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:5px 0px 5px 0px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u124705_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. }
  6127. #u124706_img {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:42px;
  6133. height:26px;
  6134. }
  6135. #u124706 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:1301px;
  6139. top:244px;
  6140. width:42px;
  6141. height:26px;
  6142. display:flex;
  6143. }
  6144. #u124706 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 2px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u124706_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u124707_img {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:42px;
  6163. height:26px;
  6164. }
  6165. #u124707 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:1301px;
  6169. top:320px;
  6170. width:42px;
  6171. height:26px;
  6172. display:flex;
  6173. }
  6174. #u124707 .text {
  6175. position:absolute;
  6176. align-self:center;
  6177. padding:2px 2px 2px 2px;
  6178. box-sizing:border-box;
  6179. width:100%;
  6180. }
  6181. #u124707_text {
  6182. border-width:0px;
  6183. word-wrap:break-word;
  6184. text-transform:none;
  6185. visibility:hidden;
  6186. }
  6187. #u124708_img {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:42px;
  6193. height:26px;
  6194. }
  6195. #u124708 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:1301px;
  6199. top:282px;
  6200. width:42px;
  6201. height:26px;
  6202. display:flex;
  6203. }
  6204. #u124708 .text {
  6205. position:absolute;
  6206. align-self:center;
  6207. padding:2px 2px 2px 2px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u124708_text {
  6212. border-width:0px;
  6213. word-wrap:break-word;
  6214. text-transform:none;
  6215. visibility:hidden;
  6216. }
  6217. #u124709_div {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:0px;
  6221. top:0px;
  6222. width:674px;
  6223. height:250px;
  6224. background:inherit;
  6225. background-color:rgba(255, 255, 255, 0);
  6226. border:none;
  6227. border-top:0px;
  6228. border-right:0px;
  6229. border-bottom:0px;
  6230. border-radius:0px;
  6231. border-top-left-radius:0px;
  6232. border-bottom-left-radius:0px;
  6233. -moz-box-shadow:none;
  6234. -webkit-box-shadow:none;
  6235. box-shadow:none;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:14px;
  6240. color:#D9001B;
  6241. line-height:30px;
  6242. }
  6243. #u124709 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:396px;
  6247. top:575px;
  6248. width:674px;
  6249. height:250px;
  6250. display:flex;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:14px;
  6255. color:#D9001B;
  6256. line-height:30px;
  6257. }
  6258. #u124709 .text {
  6259. position:absolute;
  6260. align-self:center;
  6261. padding:5px 10px 5px 0px;
  6262. box-sizing:border-box;
  6263. width:100%;
  6264. }
  6265. #u124709_text {
  6266. border-width:0px;
  6267. word-wrap:break-word;
  6268. text-transform:none;
  6269. }
  6270. #u124710 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:0px;
  6276. height:0px;
  6277. }
  6278. #u124711_div {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:200px;
  6284. height:1197px;
  6285. background:inherit;
  6286. background-color:rgba(255, 255, 255, 1);
  6287. border:none;
  6288. border-radius:0px;
  6289. -moz-box-shadow:none;
  6290. -webkit-box-shadow:none;
  6291. box-shadow:none;
  6292. }
  6293. #u124711 {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:120px;
  6297. top:50px;
  6298. width:200px;
  6299. height:1197px;
  6300. display:flex;
  6301. }
  6302. #u124711 .text {
  6303. position:absolute;
  6304. align-self:center;
  6305. padding:2px 2px 2px 2px;
  6306. box-sizing:border-box;
  6307. width:100%;
  6308. }
  6309. #u124711_text {
  6310. border-width:0px;
  6311. word-wrap:break-word;
  6312. text-transform:none;
  6313. visibility:hidden;
  6314. }
  6315. #u124712_div {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:0px;
  6319. top:0px;
  6320. width:200px;
  6321. height:60px;
  6322. background:inherit;
  6323. background-color:rgba(224, 231, 247, 1);
  6324. border:none;
  6325. border-radius:0px;
  6326. -moz-box-shadow:none;
  6327. -webkit-box-shadow:none;
  6328. box-shadow:none;
  6329. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6330. font-weight:500;
  6331. font-style:normal;
  6332. font-size:18px;
  6333. }
  6334. #u124712 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:120px;
  6338. top:50px;
  6339. width:200px;
  6340. height:60px;
  6341. display:flex;
  6342. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6343. font-weight:500;
  6344. font-style:normal;
  6345. font-size:18px;
  6346. }
  6347. #u124712 .text {
  6348. position:absolute;
  6349. align-self:center;
  6350. padding:0px 0px 0px 20px;
  6351. box-sizing:border-box;
  6352. width:100%;
  6353. }
  6354. #u124712_text {
  6355. border-width:0px;
  6356. word-wrap:break-word;
  6357. text-transform:none;
  6358. }
  6359. #u124713_div {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:65px;
  6365. height:22px;
  6366. background:inherit;
  6367. background-color:rgba(255, 255, 255, 0);
  6368. border:none;
  6369. border-radius:0px;
  6370. -moz-box-shadow:none;
  6371. -webkit-box-shadow:none;
  6372. box-shadow:none;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:16px;
  6377. }
  6378. #u124713 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:147px;
  6382. top:163px;
  6383. width:65px;
  6384. height:22px;
  6385. display:flex;
  6386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6387. font-weight:400;
  6388. font-style:normal;
  6389. font-size:16px;
  6390. }
  6391. #u124713 .text {
  6392. position:absolute;
  6393. align-self:flex-start;
  6394. padding:0px 0px 0px 0px;
  6395. box-sizing:border-box;
  6396. width:100%;
  6397. }
  6398. #u124713_text {
  6399. border-width:0px;
  6400. white-space:nowrap;
  6401. text-transform:none;
  6402. }
  6403. #u124714_div {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:49px;
  6409. height:17px;
  6410. background:inherit;
  6411. background-color:rgba(255, 255, 255, 0);
  6412. border:none;
  6413. border-radius:0px;
  6414. -moz-box-shadow:none;
  6415. -webkit-box-shadow:none;
  6416. box-shadow:none;
  6417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:12px;
  6421. color:#AAAAAA;
  6422. }
  6423. #u124714 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:148px;
  6427. top:130px;
  6428. width:49px;
  6429. height:17px;
  6430. display:flex;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:12px;
  6435. color:#AAAAAA;
  6436. }
  6437. #u124714 .text {
  6438. position:absolute;
  6439. align-self:flex-start;
  6440. padding:0px 0px 0px 0px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u124714_text {
  6445. border-width:0px;
  6446. white-space:nowrap;
  6447. text-transform:none;
  6448. }