styles.css 117 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2117px;
  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. #u124006_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. #u124006 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u124006 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u124006_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u124007_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. #u124007 {
  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. #u124007 .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. #u124007_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u124008_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. #u124008 {
  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. #u124008 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u124008_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u124009 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u124010_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u124010 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u124010 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u124010_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u124011_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. #u124011 {
  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. #u124011 .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. #u124011_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u124012_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. #u124012 {
  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. #u124012 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u124012_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u124013 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u124014_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. #u124014 {
  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. #u124014 .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. #u124014_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u124015_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u124015 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u124015 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u124015_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u124016 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u124017_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. #u124017 {
  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. #u124017 .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. #u124017_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u124018_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u124018 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u124018 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u124018_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u124019 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u124020_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. #u124020 {
  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. #u124020 .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. #u124020_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u124021_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u124021 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u124021 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u124021_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u124022 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u124023_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. #u124023 {
  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. #u124023 .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. #u124023_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u124024_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u124024 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u124024 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u124024_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u124025 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u124026_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. #u124026 {
  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. #u124026 .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. #u124026_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u124027_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u124027 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u124027 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u124027_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u124028 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u124029_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. #u124029 {
  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. #u124029 .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. #u124029_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u124030_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u124030 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u124030 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u124030_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u124031 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u124032_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. #u124032 {
  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. #u124032 .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. #u124032_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u124033_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u124033 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u124033 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u124033_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u124034 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u124035_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. #u124035 {
  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. #u124035 .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. #u124035_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u124036_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u124036 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u124036 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u124036_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u124037 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u124038_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. #u124038 {
  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. #u124038 .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. #u124038_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u124039_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u124039 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u124039 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u124039_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u124040_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. #u124040 {
  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. #u124040 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u124040_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u124041_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u124041 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u124041 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u124041_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u124042_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. #u124042 {
  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. #u124042 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u124042_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u124043_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u124043 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u124043 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u124043_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u124044 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u124045_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. #u124045 {
  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. #u124045 .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. #u124045_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u124046_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u124046 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u124046 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u124046_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u124047 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u124048_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. #u124048 {
  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. #u124048 .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. #u124048_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u124049_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u124049 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u124049 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u124049_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u124050 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u124051_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. #u124051_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. #u124051_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. #u124051 {
  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. #u124051 .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. #u124051_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. #u124051.disabled {
  1428. }
  1429. .u124051_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u124052_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u124052 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u124052 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u124052_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u124053_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. #u124053 {
  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. #u124053 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u124053_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u124054_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u124054 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u124054 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u124054_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u124055_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:220px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u124055 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:220px;
  1560. display:flex;
  1561. }
  1562. #u124055 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u124055_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u124056_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:633px;
  1581. height:110px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 1);
  1584. box-sizing:border-box;
  1585. border-width:1px;
  1586. border-style:solid;
  1587. border-color:rgba(217, 217, 217, 1);
  1588. border-radius:4px;
  1589. -moz-box-shadow:none;
  1590. -webkit-box-shadow:none;
  1591. box-shadow:none;
  1592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1593. font-weight:400;
  1594. font-style:normal;
  1595. font-size:14px;
  1596. color:rgba(0, 0, 0, 0.647058823529412);
  1597. line-height:21px;
  1598. }
  1599. #u124056 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:940px;
  1603. top:130px;
  1604. width:633px;
  1605. height:110px;
  1606. display:flex;
  1607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:14px;
  1611. color:rgba(0, 0, 0, 0.647058823529412);
  1612. line-height:21px;
  1613. }
  1614. #u124056 .text {
  1615. position:absolute;
  1616. align-self:center;
  1617. padding:2px 16px 2px 16px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u124056_text {
  1622. border-width:0px;
  1623. word-wrap:break-word;
  1624. text-transform:none;
  1625. visibility:hidden;
  1626. }
  1627. #u124057_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:633px;
  1633. height:30px;
  1634. background:inherit;
  1635. background-color:rgba(224, 231, 247, 0);
  1636. border:none;
  1637. border-radius:0px;
  1638. -moz-box-shadow:none;
  1639. -webkit-box-shadow:none;
  1640. box-shadow:none;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. line-height:30px;
  1645. }
  1646. #u124057 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:940px;
  1650. top:100px;
  1651. width:633px;
  1652. height:30px;
  1653. display:flex;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. line-height:30px;
  1658. }
  1659. #u124057 .text {
  1660. position:absolute;
  1661. align-self:center;
  1662. padding:0px 0px 0px 0px;
  1663. box-sizing:border-box;
  1664. width:100%;
  1665. }
  1666. #u124057_text {
  1667. border-width:0px;
  1668. word-wrap:break-word;
  1669. text-transform:none;
  1670. }
  1671. #u124058_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:1260px;
  1677. height:950px;
  1678. background:inherit;
  1679. background-color:rgba(255, 255, 255, 1);
  1680. border:none;
  1681. border-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. }
  1686. #u124058 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:330px;
  1690. top:280px;
  1691. width:1260px;
  1692. height:950px;
  1693. display:flex;
  1694. }
  1695. #u124058 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u124058_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u124059_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:156px;
  1714. height:50px;
  1715. background:inherit;
  1716. background-color:rgba(224, 231, 247, 0);
  1717. border:none;
  1718. border-radius:0px;
  1719. -moz-box-shadow:none;
  1720. -webkit-box-shadow:none;
  1721. box-shadow:none;
  1722. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1723. font-weight:500;
  1724. font-style:normal;
  1725. font-size:18px;
  1726. }
  1727. #u124059 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:350px;
  1731. top:50px;
  1732. width:156px;
  1733. height:50px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1736. font-weight:500;
  1737. font-style:normal;
  1738. font-size:18px;
  1739. }
  1740. #u124059 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:0px 0px 0px 0px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u124059_text {
  1748. border-width:0px;
  1749. white-space:nowrap;
  1750. text-transform:none;
  1751. }
  1752. #u124060 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:350px;
  1756. top:385px;
  1757. width:1220px;
  1758. height:190px;
  1759. }
  1760. #u124061_img {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:153px;
  1766. height:38px;
  1767. }
  1768. #u124061 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:153px;
  1774. height:38px;
  1775. display:flex;
  1776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:14px;
  1780. color:#FFFFFF;
  1781. line-height:30px;
  1782. }
  1783. #u124061 .text {
  1784. position:absolute;
  1785. align-self:center;
  1786. padding:2px 0px 2px 0px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u124061_text {
  1791. border-width:0px;
  1792. word-wrap:break-word;
  1793. text-transform:none;
  1794. }
  1795. #u124062_img {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:153px;
  1801. height:38px;
  1802. }
  1803. #u124062 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:153px;
  1807. top:0px;
  1808. width:153px;
  1809. height:38px;
  1810. display:flex;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:14px;
  1815. color:#FFFFFF;
  1816. line-height:30px;
  1817. }
  1818. #u124062 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 0px 2px 0px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u124062_text {
  1826. border-width:0px;
  1827. word-wrap:break-word;
  1828. text-transform:none;
  1829. }
  1830. #u124063_img {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:153px;
  1836. height:38px;
  1837. }
  1838. #u124063 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:306px;
  1842. top:0px;
  1843. width:153px;
  1844. height:38px;
  1845. display:flex;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:14px;
  1850. color:#FFFFFF;
  1851. line-height:30px;
  1852. }
  1853. #u124063 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 0px 2px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u124063_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. }
  1865. #u124064_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:153px;
  1871. height:38px;
  1872. }
  1873. #u124064 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:459px;
  1877. top:0px;
  1878. width:153px;
  1879. height:38px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:14px;
  1885. color:#FFFFFF;
  1886. line-height:30px;
  1887. }
  1888. #u124064 .text {
  1889. position:absolute;
  1890. align-self:center;
  1891. padding:2px 0px 2px 0px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u124064_text {
  1896. border-width:0px;
  1897. word-wrap:break-word;
  1898. text-transform:none;
  1899. }
  1900. #u124065_img {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:153px;
  1906. height:38px;
  1907. }
  1908. #u124065 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:612px;
  1912. top:0px;
  1913. width:153px;
  1914. height:38px;
  1915. display:flex;
  1916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1917. font-weight:400;
  1918. font-style:normal;
  1919. font-size:14px;
  1920. color:#FFFFFF;
  1921. line-height:30px;
  1922. }
  1923. #u124065 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 0px 2px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u124065_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u124066_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:153px;
  1941. height:38px;
  1942. }
  1943. #u124066 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:765px;
  1947. top:0px;
  1948. width:153px;
  1949. height:38px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:14px;
  1955. color:#FFFFFF;
  1956. line-height:30px;
  1957. }
  1958. #u124066 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:2px 0px 2px 0px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u124066_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. }
  1970. #u124067_img {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:153px;
  1976. height:38px;
  1977. }
  1978. #u124067 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:918px;
  1982. top:0px;
  1983. width:153px;
  1984. height:38px;
  1985. display:flex;
  1986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1987. font-weight:400;
  1988. font-style:normal;
  1989. font-size:14px;
  1990. color:#FFFFFF;
  1991. line-height:30px;
  1992. }
  1993. #u124067 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 0px 2px 0px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u124067_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. }
  2005. #u124068_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:149px;
  2011. height:38px;
  2012. }
  2013. #u124068 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:1071px;
  2017. top:0px;
  2018. width:149px;
  2019. height:38px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:14px;
  2025. color:#FFFFFF;
  2026. line-height:30px;
  2027. }
  2028. #u124068 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:2px 0px 2px 0px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u124068_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. }
  2040. #u124069_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:153px;
  2046. height:38px;
  2047. }
  2048. #u124069 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:38px;
  2053. width:153px;
  2054. height:38px;
  2055. display:flex;
  2056. font-size:14px;
  2057. line-height:30px;
  2058. }
  2059. #u124069 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 0px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u124069_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. visibility:hidden;
  2071. }
  2072. #u124070_img {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:153px;
  2078. height:38px;
  2079. }
  2080. #u124070 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:153px;
  2084. top:38px;
  2085. width:153px;
  2086. height:38px;
  2087. display:flex;
  2088. font-size:14px;
  2089. line-height:30px;
  2090. }
  2091. #u124070 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 0px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u124070_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u124071_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:153px;
  2110. height:38px;
  2111. }
  2112. #u124071 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:306px;
  2116. top:38px;
  2117. width:153px;
  2118. height:38px;
  2119. display:flex;
  2120. font-size:14px;
  2121. line-height:30px;
  2122. }
  2123. #u124071 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 0px 2px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u124071_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. visibility:hidden;
  2135. }
  2136. #u124072_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:153px;
  2142. height:38px;
  2143. }
  2144. #u124072 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:459px;
  2148. top:38px;
  2149. width:153px;
  2150. height:38px;
  2151. display:flex;
  2152. font-size:14px;
  2153. line-height:30px;
  2154. }
  2155. #u124072 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 0px 2px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u124072_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. visibility:hidden;
  2167. }
  2168. #u124073_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:153px;
  2174. height:38px;
  2175. }
  2176. #u124073 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:612px;
  2180. top:38px;
  2181. width:153px;
  2182. height:38px;
  2183. display:flex;
  2184. font-size:14px;
  2185. line-height:30px;
  2186. }
  2187. #u124073 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 0px 2px 0px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u124073_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. visibility:hidden;
  2199. }
  2200. #u124074_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:153px;
  2206. height:38px;
  2207. }
  2208. #u124074 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:765px;
  2212. top:38px;
  2213. width:153px;
  2214. height:38px;
  2215. display:flex;
  2216. font-size:14px;
  2217. line-height:30px;
  2218. }
  2219. #u124074 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 0px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u124074_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u124075_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:153px;
  2238. height:38px;
  2239. }
  2240. #u124075 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:918px;
  2244. top:38px;
  2245. width:153px;
  2246. height:38px;
  2247. display:flex;
  2248. font-size:14px;
  2249. line-height:30px;
  2250. }
  2251. #u124075 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 0px 2px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u124075_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u124076_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:149px;
  2270. height:38px;
  2271. }
  2272. #u124076 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:1071px;
  2276. top:38px;
  2277. width:149px;
  2278. height:38px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:14px;
  2284. color:#298FFF;
  2285. line-height:30px;
  2286. }
  2287. #u124076 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 0px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u124076_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. }
  2299. #u124077_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:153px;
  2305. height:38px;
  2306. }
  2307. #u124077 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:76px;
  2312. width:153px;
  2313. height:38px;
  2314. display:flex;
  2315. font-size:14px;
  2316. line-height:30px;
  2317. }
  2318. #u124077 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 0px 2px 0px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u124077_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u124078_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:153px;
  2337. height:38px;
  2338. }
  2339. #u124078 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:153px;
  2343. top:76px;
  2344. width:153px;
  2345. height:38px;
  2346. display:flex;
  2347. font-size:14px;
  2348. line-height:30px;
  2349. }
  2350. #u124078 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 0px 2px 0px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u124078_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. visibility:hidden;
  2362. }
  2363. #u124079_img {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:153px;
  2369. height:38px;
  2370. }
  2371. #u124079 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:306px;
  2375. top:76px;
  2376. width:153px;
  2377. height:38px;
  2378. display:flex;
  2379. font-size:14px;
  2380. line-height:30px;
  2381. }
  2382. #u124079 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 0px 2px 0px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u124079_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u124080_img {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:153px;
  2401. height:38px;
  2402. }
  2403. #u124080 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:459px;
  2407. top:76px;
  2408. width:153px;
  2409. height:38px;
  2410. display:flex;
  2411. font-size:14px;
  2412. line-height:30px;
  2413. }
  2414. #u124080 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 0px 2px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u124080_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. visibility:hidden;
  2426. }
  2427. #u124081_img {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:153px;
  2433. height:38px;
  2434. }
  2435. #u124081 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:612px;
  2439. top:76px;
  2440. width:153px;
  2441. height:38px;
  2442. display:flex;
  2443. font-size:14px;
  2444. line-height:30px;
  2445. }
  2446. #u124081 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 0px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u124081_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u124082_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:153px;
  2465. height:38px;
  2466. }
  2467. #u124082 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:765px;
  2471. top:76px;
  2472. width:153px;
  2473. height:38px;
  2474. display:flex;
  2475. font-size:14px;
  2476. line-height:30px;
  2477. }
  2478. #u124082 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:2px 0px 2px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u124082_text {
  2486. border-width:0px;
  2487. word-wrap:break-word;
  2488. text-transform:none;
  2489. visibility:hidden;
  2490. }
  2491. #u124083_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:153px;
  2497. height:38px;
  2498. }
  2499. #u124083 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:918px;
  2503. top:76px;
  2504. width:153px;
  2505. height:38px;
  2506. display:flex;
  2507. font-size:14px;
  2508. line-height:30px;
  2509. }
  2510. #u124083 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 0px 2px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u124083_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u124084_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:149px;
  2529. height:38px;
  2530. }
  2531. #u124084 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:1071px;
  2535. top:76px;
  2536. width:149px;
  2537. height:38px;
  2538. display:flex;
  2539. font-size:14px;
  2540. line-height:30px;
  2541. }
  2542. #u124084 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 0px 2px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u124084_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. visibility:hidden;
  2554. }
  2555. #u124085_img {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:153px;
  2561. height:38px;
  2562. }
  2563. #u124085 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:114px;
  2568. width:153px;
  2569. height:38px;
  2570. display:flex;
  2571. font-size:14px;
  2572. line-height:30px;
  2573. }
  2574. #u124085 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 0px 2px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u124085_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u124086_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:153px;
  2593. height:38px;
  2594. }
  2595. #u124086 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:153px;
  2599. top:114px;
  2600. width:153px;
  2601. height:38px;
  2602. display:flex;
  2603. font-size:14px;
  2604. line-height:30px;
  2605. }
  2606. #u124086 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 0px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u124086_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. visibility:hidden;
  2618. }
  2619. #u124087_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:153px;
  2625. height:38px;
  2626. }
  2627. #u124087 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:306px;
  2631. top:114px;
  2632. width:153px;
  2633. height:38px;
  2634. display:flex;
  2635. font-size:14px;
  2636. line-height:30px;
  2637. }
  2638. #u124087 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 0px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u124087_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u124088_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:153px;
  2657. height:38px;
  2658. }
  2659. #u124088 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:459px;
  2663. top:114px;
  2664. width:153px;
  2665. height:38px;
  2666. display:flex;
  2667. font-size:14px;
  2668. line-height:30px;
  2669. }
  2670. #u124088 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:2px 0px 2px 0px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u124088_text {
  2678. border-width:0px;
  2679. word-wrap:break-word;
  2680. text-transform:none;
  2681. visibility:hidden;
  2682. }
  2683. #u124089_img {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:153px;
  2689. height:38px;
  2690. }
  2691. #u124089 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:612px;
  2695. top:114px;
  2696. width:153px;
  2697. height:38px;
  2698. display:flex;
  2699. font-size:14px;
  2700. line-height:30px;
  2701. }
  2702. #u124089 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 0px 2px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u124089_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. visibility:hidden;
  2714. }
  2715. #u124090_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:153px;
  2721. height:38px;
  2722. }
  2723. #u124090 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:765px;
  2727. top:114px;
  2728. width:153px;
  2729. height:38px;
  2730. display:flex;
  2731. font-size:14px;
  2732. line-height:30px;
  2733. }
  2734. #u124090 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 0px 2px 0px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u124090_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u124091_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:153px;
  2753. height:38px;
  2754. }
  2755. #u124091 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:918px;
  2759. top:114px;
  2760. width:153px;
  2761. height:38px;
  2762. display:flex;
  2763. font-size:14px;
  2764. line-height:30px;
  2765. }
  2766. #u124091 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 0px 2px 0px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u124091_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u124092_img {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:149px;
  2785. height:38px;
  2786. }
  2787. #u124092 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:1071px;
  2791. top:114px;
  2792. width:149px;
  2793. height:38px;
  2794. display:flex;
  2795. font-size:14px;
  2796. line-height:30px;
  2797. }
  2798. #u124092 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 0px 2px 0px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u124092_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u124093_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:153px;
  2817. height:38px;
  2818. }
  2819. #u124093 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:152px;
  2824. width:153px;
  2825. height:38px;
  2826. display:flex;
  2827. font-size:14px;
  2828. line-height:30px;
  2829. }
  2830. #u124093 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 0px 2px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u124093_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u124094_img {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:153px;
  2849. height:38px;
  2850. }
  2851. #u124094 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:153px;
  2855. top:152px;
  2856. width:153px;
  2857. height:38px;
  2858. display:flex;
  2859. font-size:14px;
  2860. line-height:30px;
  2861. }
  2862. #u124094 .text {
  2863. position:absolute;
  2864. align-self:center;
  2865. padding:2px 0px 2px 0px;
  2866. box-sizing:border-box;
  2867. width:100%;
  2868. }
  2869. #u124094_text {
  2870. border-width:0px;
  2871. word-wrap:break-word;
  2872. text-transform:none;
  2873. visibility:hidden;
  2874. }
  2875. #u124095_img {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:153px;
  2881. height:38px;
  2882. }
  2883. #u124095 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:306px;
  2887. top:152px;
  2888. width:153px;
  2889. height:38px;
  2890. display:flex;
  2891. font-size:14px;
  2892. line-height:30px;
  2893. }
  2894. #u124095 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 0px 2px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u124095_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u124096_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:153px;
  2913. height:38px;
  2914. }
  2915. #u124096 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:459px;
  2919. top:152px;
  2920. width:153px;
  2921. height:38px;
  2922. display:flex;
  2923. font-size:14px;
  2924. line-height:30px;
  2925. }
  2926. #u124096 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 0px 2px 0px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u124096_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u124097_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:153px;
  2945. height:38px;
  2946. }
  2947. #u124097 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:612px;
  2951. top:152px;
  2952. width:153px;
  2953. height:38px;
  2954. display:flex;
  2955. font-size:14px;
  2956. line-height:30px;
  2957. }
  2958. #u124097 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 0px 2px 0px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u124097_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u124098_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:153px;
  2977. height:38px;
  2978. }
  2979. #u124098 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:765px;
  2983. top:152px;
  2984. width:153px;
  2985. height:38px;
  2986. display:flex;
  2987. font-size:14px;
  2988. line-height:30px;
  2989. }
  2990. #u124098 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 0px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u124098_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u124099_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:153px;
  3009. height:38px;
  3010. }
  3011. #u124099 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:918px;
  3015. top:152px;
  3016. width:153px;
  3017. height:38px;
  3018. display:flex;
  3019. font-size:14px;
  3020. line-height:30px;
  3021. }
  3022. #u124099 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 0px 2px 0px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u124099_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u124100_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:149px;
  3041. height:38px;
  3042. }
  3043. #u124100 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:1071px;
  3047. top:152px;
  3048. width:149px;
  3049. height:38px;
  3050. display:flex;
  3051. font-size:14px;
  3052. line-height:30px;
  3053. }
  3054. #u124100 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 0px 2px 0px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u124100_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. visibility:hidden;
  3066. }
  3067. #u124101 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:0px;
  3073. height:0px;
  3074. }
  3075. #u124102_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:61px;
  3081. height:32px;
  3082. background:inherit;
  3083. background-color:rgba(24, 144, 255, 1);
  3084. border:none;
  3085. border-radius:4px;
  3086. -moz-box-shadow:none;
  3087. -webkit-box-shadow:none;
  3088. box-shadow:none;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:14px;
  3093. color:#FFFFFF;
  3094. }
  3095. #u124102 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:800px;
  3099. top:302px;
  3100. width:61px;
  3101. height:32px;
  3102. display:flex;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:14px;
  3107. color:#FFFFFF;
  3108. }
  3109. #u124102 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 16px 2px 16px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u124102_text {
  3117. border-width:0px;
  3118. white-space:nowrap;
  3119. text-transform:none;
  3120. }
  3121. #u124103_div {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:61px;
  3127. height:32px;
  3128. background:inherit;
  3129. background-color:rgba(255, 255, 255, 1);
  3130. box-sizing:border-box;
  3131. border-width:1px;
  3132. border-style:solid;
  3133. border-color:rgba(217, 217, 217, 1);
  3134. border-radius:4px;
  3135. -moz-box-shadow:none;
  3136. -webkit-box-shadow:none;
  3137. box-shadow:none;
  3138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3139. font-weight:400;
  3140. font-style:normal;
  3141. font-size:14px;
  3142. color:rgba(0, 0, 0, 0.647058823529412);
  3143. line-height:21px;
  3144. }
  3145. #u124103 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:871px;
  3149. top:302px;
  3150. width:61px;
  3151. height:32px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:14px;
  3157. color:rgba(0, 0, 0, 0.647058823529412);
  3158. line-height:21px;
  3159. }
  3160. #u124103 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 16px 2px 16px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u124103_text {
  3168. border-width:0px;
  3169. white-space:nowrap;
  3170. text-transform:none;
  3171. }
  3172. #u124104 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:0px;
  3178. height:0px;
  3179. }
  3180. #u124105_div {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:140px;
  3186. height:30px;
  3187. background:inherit;
  3188. background-color:rgba(255, 255, 255, 1);
  3189. box-sizing:border-box;
  3190. border-width:1px;
  3191. border-style:solid;
  3192. border-color:rgba(215, 215, 215, 1);
  3193. border-radius:4px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. font-size:14px;
  3198. }
  3199. #u124105 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:350px;
  3203. top:303px;
  3204. width:140px;
  3205. height:30px;
  3206. display:flex;
  3207. font-size:14px;
  3208. }
  3209. #u124105 .text {
  3210. position:absolute;
  3211. align-self:center;
  3212. padding:2px 2px 2px 2px;
  3213. box-sizing:border-box;
  3214. width:100%;
  3215. }
  3216. #u124105_text {
  3217. border-width:0px;
  3218. word-wrap:break-word;
  3219. text-transform:none;
  3220. visibility:hidden;
  3221. }
  3222. #u124106_input {
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:134px;
  3227. height:23px;
  3228. padding:2px 2px 2px 2px;
  3229. font-family:'ArialMT', 'Arial', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:14px;
  3233. letter-spacing:normal;
  3234. color:#AAAAAA;
  3235. vertical-align:none;
  3236. text-align:left;
  3237. text-transform:none;
  3238. background-color:transparent;
  3239. border-color:transparent;
  3240. }
  3241. #u124106_input.disabled {
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:134px;
  3246. height:23px;
  3247. padding:2px 2px 2px 2px;
  3248. font-family:'ArialMT', 'Arial', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:14px;
  3252. letter-spacing:normal;
  3253. color:#AAAAAA;
  3254. vertical-align:none;
  3255. text-align:left;
  3256. text-transform:none;
  3257. background-color:transparent;
  3258. border-color:transparent;
  3259. }
  3260. #u124106_div {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:134px;
  3266. height:23px;
  3267. background:inherit;
  3268. background-color:rgba(255, 255, 255, 1);
  3269. border:none;
  3270. border-radius:0px;
  3271. -moz-box-shadow:none;
  3272. -webkit-box-shadow:none;
  3273. box-shadow:none;
  3274. font-size:14px;
  3275. color:#AAAAAA;
  3276. }
  3277. #u124106 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:354px;
  3281. top:305px;
  3282. width:134px;
  3283. height:23px;
  3284. display:flex;
  3285. font-size:14px;
  3286. color:#AAAAAA;
  3287. }
  3288. #u124106 .text {
  3289. position:absolute;
  3290. align-self:flex-start;
  3291. padding:2px 2px 2px 2px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u124106_div.disabled {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:134px;
  3301. height:23px;
  3302. background:inherit;
  3303. background-color:rgba(240, 240, 240, 1);
  3304. border:none;
  3305. border-radius:0px;
  3306. -moz-box-shadow:none;
  3307. -webkit-box-shadow:none;
  3308. box-shadow:none;
  3309. font-size:14px;
  3310. color:#AAAAAA;
  3311. }
  3312. #u124106.disabled {
  3313. }
  3314. .u124106_input_option {
  3315. font-size:14px;
  3316. }
  3317. #u124107_div {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:580px;
  3323. height:110px;
  3324. background:inherit;
  3325. background-color:rgba(255, 255, 255, 1);
  3326. box-sizing:border-box;
  3327. border-width:1px;
  3328. border-style:solid;
  3329. border-color:rgba(217, 217, 217, 1);
  3330. border-radius:4px;
  3331. -moz-box-shadow:none;
  3332. -webkit-box-shadow:none;
  3333. box-shadow:none;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:14px;
  3338. color:rgba(0, 0, 0, 0.647058823529412);
  3339. line-height:21px;
  3340. }
  3341. #u124107 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:350px;
  3345. top:130px;
  3346. width:580px;
  3347. height:110px;
  3348. display:flex;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:14px;
  3353. color:rgba(0, 0, 0, 0.647058823529412);
  3354. line-height:21px;
  3355. }
  3356. #u124107 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 16px 2px 16px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u124107_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u124108 {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:0px;
  3375. height:0px;
  3376. }
  3377. #u124109_div {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:140px;
  3383. height:30px;
  3384. background:inherit;
  3385. background-color:rgba(255, 255, 255, 1);
  3386. box-sizing:border-box;
  3387. border-width:1px;
  3388. border-style:solid;
  3389. border-color:rgba(201, 201, 201, 1);
  3390. border-radius:4px;
  3391. -moz-box-shadow:none;
  3392. -webkit-box-shadow:none;
  3393. box-shadow:none;
  3394. font-family:'Microsoft YaHei', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:14px;
  3398. color:#CCCCCC;
  3399. text-align:left;
  3400. }
  3401. #u124109 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:500px;
  3405. top:302px;
  3406. width:140px;
  3407. height:30px;
  3408. display:flex;
  3409. font-family:'Microsoft YaHei', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:14px;
  3413. color:#CCCCCC;
  3414. text-align:left;
  3415. }
  3416. #u124109 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 8px 2px 8px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u124109_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u124110_input {
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:130px;
  3434. height:25px;
  3435. padding:2px 2px 2px 2px;
  3436. font-family:'Microsoft YaHei', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:13px;
  3440. letter-spacing:normal;
  3441. color:#000000;
  3442. vertical-align:none;
  3443. text-align:left;
  3444. text-transform:none;
  3445. background-color:transparent;
  3446. border-color:transparent;
  3447. }
  3448. #u124110_input.disabled {
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:130px;
  3453. height:25px;
  3454. padding:2px 2px 2px 2px;
  3455. font-family:'Microsoft YaHei', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:13px;
  3459. letter-spacing:normal;
  3460. color:#000000;
  3461. vertical-align:none;
  3462. text-align:left;
  3463. text-transform:none;
  3464. background-color:transparent;
  3465. border-color:transparent;
  3466. }
  3467. #u124110_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:130px;
  3473. height:25px;
  3474. background:inherit;
  3475. background-color:rgba(255, 255, 255, 1);
  3476. border:none;
  3477. border-radius:0px;
  3478. -moz-box-shadow:none;
  3479. -webkit-box-shadow:none;
  3480. box-shadow:none;
  3481. font-family:'Microsoft YaHei', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. }
  3485. #u124110 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:505px;
  3489. top:303px;
  3490. width:130px;
  3491. height:25px;
  3492. display:flex;
  3493. font-family:'Microsoft YaHei', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. }
  3497. #u124110 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u124110_div.disabled {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:130px;
  3510. height:25px;
  3511. background:inherit;
  3512. background-color:rgba(240, 240, 240, 1);
  3513. border:none;
  3514. border-radius:0px;
  3515. -moz-box-shadow:none;
  3516. -webkit-box-shadow:none;
  3517. box-shadow:none;
  3518. font-family:'Microsoft YaHei', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. }
  3522. #u124110.disabled {
  3523. }
  3524. #u124111_div {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:69px;
  3530. height:17px;
  3531. background:inherit;
  3532. background-color:rgba(224, 231, 247, 0);
  3533. border:none;
  3534. border-radius:0px;
  3535. -moz-box-shadow:none;
  3536. -webkit-box-shadow:none;
  3537. box-shadow:none;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:12px;
  3542. }
  3543. #u124111 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:488px;
  3547. top:175px;
  3548. width:69px;
  3549. height:17px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:12px;
  3555. }
  3556. #u124111 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:0px 0px 0px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u124111_text {
  3564. border-width:0px;
  3565. white-space:nowrap;
  3566. text-transform:none;
  3567. }
  3568. #u124112 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:0px;
  3574. height:0px;
  3575. }
  3576. #u124113_div {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:140px;
  3582. height:30px;
  3583. background:inherit;
  3584. background-color:rgba(255, 255, 255, 1);
  3585. box-sizing:border-box;
  3586. border-width:1px;
  3587. border-style:solid;
  3588. border-color:rgba(215, 215, 215, 1);
  3589. border-radius:4px;
  3590. -moz-box-shadow:none;
  3591. -webkit-box-shadow:none;
  3592. box-shadow:none;
  3593. font-size:14px;
  3594. }
  3595. #u124113 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:650px;
  3599. top:302px;
  3600. width:140px;
  3601. height:30px;
  3602. display:flex;
  3603. font-size:14px;
  3604. }
  3605. #u124113 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 2px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u124113_text {
  3613. border-width:0px;
  3614. word-wrap:break-word;
  3615. text-transform:none;
  3616. visibility:hidden;
  3617. }
  3618. #u124114_input {
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:134px;
  3623. height:23px;
  3624. padding:2px 2px 2px 2px;
  3625. font-family:'ArialMT', 'Arial', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:14px;
  3629. letter-spacing:normal;
  3630. color:#AAAAAA;
  3631. vertical-align:none;
  3632. text-align:left;
  3633. text-transform:none;
  3634. background-color:transparent;
  3635. border-color:transparent;
  3636. }
  3637. #u124114_input.disabled {
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:134px;
  3642. height:23px;
  3643. padding:2px 2px 2px 2px;
  3644. font-family:'ArialMT', 'Arial', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:14px;
  3648. letter-spacing:normal;
  3649. color:#AAAAAA;
  3650. vertical-align:none;
  3651. text-align:left;
  3652. text-transform:none;
  3653. background-color:transparent;
  3654. border-color:transparent;
  3655. }
  3656. #u124114_div {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:134px;
  3662. height:23px;
  3663. background:inherit;
  3664. background-color:rgba(255, 255, 255, 1);
  3665. border:none;
  3666. border-radius:0px;
  3667. -moz-box-shadow:none;
  3668. -webkit-box-shadow:none;
  3669. box-shadow:none;
  3670. font-size:14px;
  3671. color:#AAAAAA;
  3672. }
  3673. #u124114 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:654px;
  3677. top:304px;
  3678. width:134px;
  3679. height:23px;
  3680. display:flex;
  3681. font-size:14px;
  3682. color:#AAAAAA;
  3683. }
  3684. #u124114 .text {
  3685. position:absolute;
  3686. align-self:flex-start;
  3687. padding:2px 2px 2px 2px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u124114_div.disabled {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:134px;
  3697. height:23px;
  3698. background:inherit;
  3699. background-color:rgba(240, 240, 240, 1);
  3700. border:none;
  3701. border-radius:0px;
  3702. -moz-box-shadow:none;
  3703. -webkit-box-shadow:none;
  3704. box-shadow:none;
  3705. font-size:14px;
  3706. color:#AAAAAA;
  3707. }
  3708. #u124114.disabled {
  3709. }
  3710. .u124114_input_option {
  3711. font-size:14px;
  3712. }
  3713. #u124115_div {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:220px;
  3719. height:75px;
  3720. background:inherit;
  3721. background-color:rgba(224, 231, 247, 0);
  3722. border:none;
  3723. border-radius:0px;
  3724. -moz-box-shadow:none;
  3725. -webkit-box-shadow:none;
  3726. box-shadow:none;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. line-height:25px;
  3731. }
  3732. #u124115 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:974px;
  3736. top:148px;
  3737. width:220px;
  3738. height:75px;
  3739. display:flex;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. line-height:25px;
  3744. }
  3745. #u124115 .text {
  3746. position:absolute;
  3747. align-self:flex-start;
  3748. padding:0px 0px 0px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u124115_text {
  3753. border-width:0px;
  3754. white-space:nowrap;
  3755. text-transform:none;
  3756. }
  3757. #u124116_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:580px;
  3763. height:30px;
  3764. background:inherit;
  3765. background-color:rgba(224, 231, 247, 0);
  3766. border:none;
  3767. border-radius:0px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. line-height:30px;
  3775. }
  3776. #u124116 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:350px;
  3780. top:100px;
  3781. width:580px;
  3782. height:30px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. line-height:30px;
  3788. }
  3789. #u124116 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:0px 0px 0px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u124116_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. }
  3801. #u124117_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:65px;
  3807. height:65px;
  3808. }
  3809. #u124117 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:403px;
  3813. top:153px;
  3814. width:65px;
  3815. height:65px;
  3816. display:flex;
  3817. }
  3818. #u124117 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 2px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u124117_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. }
  3830. #u124118_div {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:60px;
  3836. height:25px;
  3837. background:inherit;
  3838. background-color:rgba(224, 231, 247, 0);
  3839. border:none;
  3840. border-radius:0px;
  3841. -moz-box-shadow:none;
  3842. -webkit-box-shadow:none;
  3843. box-shadow:none;
  3844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3845. font-weight:500;
  3846. font-style:normal;
  3847. font-size:18px;
  3848. }
  3849. #u124118 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:488px;
  3853. top:150px;
  3854. width:60px;
  3855. height:25px;
  3856. display:flex;
  3857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3858. font-weight:500;
  3859. font-style:normal;
  3860. font-size:18px;
  3861. }
  3862. #u124118 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:0px 0px 0px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u124118_text {
  3870. border-width:0px;
  3871. white-space:nowrap;
  3872. text-transform:none;
  3873. }
  3874. #u124119_div {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:60px;
  3880. height:24px;
  3881. background:inherit;
  3882. background-color:rgba(41, 143, 255, 1);
  3883. border:none;
  3884. border-radius:0px;
  3885. -moz-box-shadow:none;
  3886. -webkit-box-shadow:none;
  3887. box-shadow:none;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:12px;
  3892. color:#FFFFFF;
  3893. text-align:center;
  3894. }
  3895. #u124119 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:488px;
  3899. top:197px;
  3900. width:60px;
  3901. height:24px;
  3902. display:flex;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:12px;
  3907. color:#FFFFFF;
  3908. text-align:center;
  3909. }
  3910. #u124119 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:0px 0px 0px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u124119_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. }
  3922. #u124120_div {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:93px;
  3928. height:17px;
  3929. background:inherit;
  3930. background-color:rgba(224, 231, 247, 0);
  3931. border:none;
  3932. border-radius:0px;
  3933. -moz-box-shadow:none;
  3934. -webkit-box-shadow:none;
  3935. box-shadow:none;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. }
  3941. #u124120 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:755px;
  3945. top:173px;
  3946. width:93px;
  3947. height:17px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:12px;
  3953. }
  3954. #u124120 .text {
  3955. position:absolute;
  3956. align-self:center;
  3957. padding:0px 0px 0px 0px;
  3958. box-sizing:border-box;
  3959. width:100%;
  3960. }
  3961. #u124120_text {
  3962. border-width:0px;
  3963. white-space:nowrap;
  3964. text-transform:none;
  3965. }
  3966. #u124121_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:65px;
  3972. height:65px;
  3973. }
  3974. #u124121 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:670px;
  3978. top:151px;
  3979. width:65px;
  3980. height:65px;
  3981. display:flex;
  3982. }
  3983. #u124121 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u124121_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. }
  3995. #u124122_div {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:78px;
  4001. height:25px;
  4002. background:inherit;
  4003. background-color:rgba(224, 231, 247, 0);
  4004. border:none;
  4005. border-radius:0px;
  4006. -moz-box-shadow:none;
  4007. -webkit-box-shadow:none;
  4008. box-shadow:none;
  4009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4010. font-weight:500;
  4011. font-style:normal;
  4012. font-size:18px;
  4013. }
  4014. #u124122 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:755px;
  4018. top:148px;
  4019. width:78px;
  4020. height:25px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4023. font-weight:500;
  4024. font-style:normal;
  4025. font-size:18px;
  4026. }
  4027. #u124122 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:0px 0px 0px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u124122_text {
  4035. border-width:0px;
  4036. white-space:nowrap;
  4037. text-transform:none;
  4038. }
  4039. #u124123_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:60px;
  4045. height:24px;
  4046. background:inherit;
  4047. background-color:rgba(41, 143, 255, 1);
  4048. border:none;
  4049. border-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:12px;
  4057. color:#FFFFFF;
  4058. text-align:center;
  4059. }
  4060. #u124123 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:755px;
  4064. top:195px;
  4065. width:60px;
  4066. height:24px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#FFFFFF;
  4073. text-align:center;
  4074. }
  4075. #u124123 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:0px 0px 0px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u124123_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. }
  4087. #u124124_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:2px;
  4093. height:39px;
  4094. }
  4095. #u124124 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:617px;
  4099. top:165px;
  4100. width:1px;
  4101. height:38px;
  4102. display:flex;
  4103. }
  4104. #u124124 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:2px 2px 2px 2px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u124124_text {
  4112. border-width:0px;
  4113. word-wrap:break-word;
  4114. text-transform:none;
  4115. visibility:hidden;
  4116. }
  4117. #u124125_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:281px;
  4123. height:25px;
  4124. background:inherit;
  4125. background-color:rgba(224, 231, 247, 0);
  4126. border:none;
  4127. border-radius:0px;
  4128. -moz-box-shadow:none;
  4129. -webkit-box-shadow:none;
  4130. box-shadow:none;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. line-height:25px;
  4135. }
  4136. #u124125 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:1260px;
  4140. top:148px;
  4141. width:281px;
  4142. height:25px;
  4143. display:flex;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. line-height:25px;
  4148. }
  4149. #u124125 .text {
  4150. position:absolute;
  4151. align-self:flex-start;
  4152. padding:0px 0px 0px 0px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u124125_text {
  4157. border-width:0px;
  4158. white-space:nowrap;
  4159. text-transform:none;
  4160. }
  4161. #u124126 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:0px;
  4167. height:0px;
  4168. }
  4169. #u124127_div {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:49px;
  4175. height:30px;
  4176. background:inherit;
  4177. background-color:rgba(224, 231, 247, 0);
  4178. border:none;
  4179. border-radius:0px;
  4180. -moz-box-shadow:none;
  4181. -webkit-box-shadow:none;
  4182. box-shadow:none;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:12px;
  4187. line-height:30px;
  4188. }
  4189. #u124127 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:1238px;
  4193. top:60px;
  4194. width:49px;
  4195. height:30px;
  4196. display:flex;
  4197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:12px;
  4201. line-height:30px;
  4202. }
  4203. #u124127 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:0px 0px 0px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u124127_text {
  4211. border-width:0px;
  4212. white-space:nowrap;
  4213. text-transform:none;
  4214. }
  4215. #u124128_img {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:17px;
  4221. height:17px;
  4222. }
  4223. #u124128 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:1216px;
  4227. top:66px;
  4228. width:17px;
  4229. height:17px;
  4230. display:flex;
  4231. font-size:8px;
  4232. color:#FFFFFF;
  4233. }
  4234. #u124128 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 2px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u124128_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. }
  4246. #u124129 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:0px;
  4252. height:0px;
  4253. }
  4254. #u124130_div {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:49px;
  4260. height:30px;
  4261. background:inherit;
  4262. background-color:rgba(224, 231, 247, 0);
  4263. border:none;
  4264. border-radius:0px;
  4265. -moz-box-shadow:none;
  4266. -webkit-box-shadow:none;
  4267. box-shadow:none;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:12px;
  4272. line-height:30px;
  4273. }
  4274. #u124130 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:1334px;
  4278. top:60px;
  4279. width:49px;
  4280. height:30px;
  4281. display:flex;
  4282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4283. font-weight:400;
  4284. font-style:normal;
  4285. font-size:12px;
  4286. line-height:30px;
  4287. }
  4288. #u124130 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:0px 0px 0px 0px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u124130_text {
  4296. border-width:0px;
  4297. white-space:nowrap;
  4298. text-transform:none;
  4299. }
  4300. #u124131_img {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:17px;
  4306. height:17px;
  4307. }
  4308. #u124131 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:1312px;
  4312. top:66px;
  4313. width:17px;
  4314. height:17px;
  4315. display:flex;
  4316. font-size:8px;
  4317. color:#FFFFFF;
  4318. }
  4319. #u124131 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 2px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u124131_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. }
  4331. #u124132 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:0px;
  4337. height:0px;
  4338. }
  4339. #u124133_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:37px;
  4345. height:30px;
  4346. background:inherit;
  4347. background-color:rgba(224, 231, 247, 0);
  4348. border:none;
  4349. border-radius:0px;
  4350. -moz-box-shadow:none;
  4351. -webkit-box-shadow:none;
  4352. box-shadow:none;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:12px;
  4357. line-height:30px;
  4358. }
  4359. #u124133 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:1431px;
  4363. top:60px;
  4364. width:37px;
  4365. height:30px;
  4366. display:flex;
  4367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:12px;
  4371. line-height:30px;
  4372. }
  4373. #u124133 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:0px 0px 0px 0px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u124133_text {
  4381. border-width:0px;
  4382. white-space:nowrap;
  4383. text-transform:none;
  4384. }
  4385. #u124134_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:17px;
  4391. height:17px;
  4392. }
  4393. #u124134 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:1409px;
  4397. top:66px;
  4398. width:17px;
  4399. height:17px;
  4400. display:flex;
  4401. font-size:8px;
  4402. color:#FFFFFF;
  4403. }
  4404. #u124134 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:2px 2px 2px 2px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u124134_text {
  4412. border-width:0px;
  4413. word-wrap:break-word;
  4414. text-transform:none;
  4415. }
  4416. #u124135 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:0px;
  4422. height:0px;
  4423. }
  4424. #u124136_div {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:49px;
  4430. height:30px;
  4431. background:inherit;
  4432. background-color:rgba(224, 231, 247, 0);
  4433. border:none;
  4434. border-radius:0px;
  4435. -moz-box-shadow:none;
  4436. -webkit-box-shadow:none;
  4437. box-shadow:none;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. line-height:30px;
  4443. }
  4444. #u124136 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:1513px;
  4448. top:60px;
  4449. width:49px;
  4450. height:30px;
  4451. display:flex;
  4452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:12px;
  4456. line-height:30px;
  4457. }
  4458. #u124136 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:0px 0px 0px 0px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u124136_text {
  4466. border-width:0px;
  4467. white-space:nowrap;
  4468. text-transform:none;
  4469. }
  4470. #u124137_img {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:17px;
  4476. height:17px;
  4477. }
  4478. #u124137 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:1491px;
  4482. top:66px;
  4483. width:17px;
  4484. height:17px;
  4485. display:flex;
  4486. font-size:8px;
  4487. color:#FFFFFF;
  4488. }
  4489. #u124137 .text {
  4490. position:absolute;
  4491. align-self:center;
  4492. padding:2px 2px 2px 2px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u124137_text {
  4497. border-width:0px;
  4498. word-wrap:break-word;
  4499. text-transform:none;
  4500. }
  4501. #u124138 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:0px;
  4507. height:0px;
  4508. }
  4509. #u124139_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:580px;
  4515. height:30px;
  4516. background:inherit;
  4517. background-color:rgba(224, 231, 247, 0);
  4518. border:none;
  4519. border-radius:0px;
  4520. -moz-box-shadow:none;
  4521. -webkit-box-shadow:none;
  4522. box-shadow:none;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. line-height:30px;
  4527. }
  4528. #u124139 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:350px;
  4532. top:354px;
  4533. width:580px;
  4534. height:30px;
  4535. display:flex;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. line-height:30px;
  4540. }
  4541. #u124139 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:0px 0px 0px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u124139_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. }
  4553. #u124140_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:15px;
  4559. height:15px;
  4560. }
  4561. #u124140 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:439px;
  4565. top:362px;
  4566. width:15px;
  4567. height:15px;
  4568. display:flex;
  4569. }
  4570. #u124140 .text {
  4571. position:absolute;
  4572. align-self:center;
  4573. padding:2px 2px 2px 2px;
  4574. box-sizing:border-box;
  4575. width:100%;
  4576. }
  4577. #u124140_text {
  4578. border-width:0px;
  4579. word-wrap:break-word;
  4580. text-transform:none;
  4581. visibility:hidden;
  4582. }
  4583. #u124141 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:0px;
  4589. height:0px;
  4590. }
  4591. #u124142_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:460px;
  4597. height:493px;
  4598. background:inherit;
  4599. background-color:rgba(255, 255, 255, 1);
  4600. border:none;
  4601. border-radius:4px;
  4602. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4603. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4604. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4605. font-family:'Microsoft YaHei', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. }
  4609. #u124142 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:755px;
  4613. top:472px;
  4614. width:460px;
  4615. height:493px;
  4616. display:flex;
  4617. font-family:'Microsoft YaHei', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. }
  4621. #u124142 .text {
  4622. position:absolute;
  4623. align-self:center;
  4624. padding:2px 2px 2px 2px;
  4625. box-sizing:border-box;
  4626. width:100%;
  4627. }
  4628. #u124142_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u124143_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:412px;
  4640. height:360px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 0);
  4643. border:none;
  4644. border-radius:0px;
  4645. -moz-box-shadow:none;
  4646. -webkit-box-shadow:none;
  4647. box-shadow:none;
  4648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:14px;
  4652. color:#666666;
  4653. line-height:30px;
  4654. }
  4655. #u124143 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:779px;
  4659. top:532px;
  4660. width:412px;
  4661. height:360px;
  4662. display:flex;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:14px;
  4667. color:#666666;
  4668. line-height:30px;
  4669. }
  4670. #u124143 .text {
  4671. position:absolute;
  4672. align-self:flex-start;
  4673. padding:0px 0px 0px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u124143_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. }
  4682. #u124144_div {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:217px;
  4688. height:21px;
  4689. background:inherit;
  4690. background-color:rgba(255, 255, 255, 0);
  4691. border:none;
  4692. border-radius:0px;
  4693. -moz-box-shadow:none;
  4694. -webkit-box-shadow:none;
  4695. box-shadow:none;
  4696. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4697. font-weight:650;
  4698. font-style:normal;
  4699. font-size:18px;
  4700. color:#000000;
  4701. line-height:22px;
  4702. }
  4703. #u124144 {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:769px;
  4707. top:497px;
  4708. width:217px;
  4709. height:21px;
  4710. display:flex;
  4711. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4712. font-weight:650;
  4713. font-style:normal;
  4714. font-size:18px;
  4715. color:#000000;
  4716. line-height:22px;
  4717. }
  4718. #u124144 .text {
  4719. position:absolute;
  4720. align-self:flex-start;
  4721. padding:0px 0px 0px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u124144_text {
  4726. border-width:0px;
  4727. white-space:nowrap;
  4728. text-transform:none;
  4729. }
  4730. #u124145_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:61px;
  4736. height:32px;
  4737. background:inherit;
  4738. background-color:rgba(24, 144, 255, 1);
  4739. border:none;
  4740. border-radius:4px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'Microsoft YaHei', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:14px;
  4748. color:#FFFFFF;
  4749. }
  4750. #u124145 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:960px;
  4754. top:913px;
  4755. width:61px;
  4756. height:32px;
  4757. display:flex;
  4758. font-family:'Microsoft YaHei', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:14px;
  4762. color:#FFFFFF;
  4763. }
  4764. #u124145 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 16px 2px 16px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u124145_text {
  4772. border-width:0px;
  4773. white-space:nowrap;
  4774. text-transform:none;
  4775. }
  4776. #u124146 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:0px;
  4782. height:0px;
  4783. }
  4784. #u124147_div {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:0px;
  4788. top:0px;
  4789. width:440px;
  4790. height:200px;
  4791. background:inherit;
  4792. background-color:rgba(255, 255, 255, 1);
  4793. border:none;
  4794. border-radius:4px;
  4795. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4796. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4797. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4798. font-family:'Microsoft YaHei', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. }
  4802. #u124147 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:1677px;
  4806. top:91px;
  4807. width:440px;
  4808. height:200px;
  4809. display:flex;
  4810. font-family:'Microsoft YaHei', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. }
  4814. #u124147 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 2px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u124147_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u124148_div {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:85px;
  4833. height:22px;
  4834. background:inherit;
  4835. background-color:rgba(255, 255, 255, 0);
  4836. border:none;
  4837. border-radius:0px;
  4838. -moz-box-shadow:none;
  4839. -webkit-box-shadow:none;
  4840. box-shadow:none;
  4841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4842. font-weight:400;
  4843. font-style:normal;
  4844. font-size:14px;
  4845. color:#666666;
  4846. line-height:22px;
  4847. }
  4848. #u124148 {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:1704px;
  4852. top:162px;
  4853. width:85px;
  4854. height:22px;
  4855. display:flex;
  4856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:14px;
  4860. color:#666666;
  4861. line-height:22px;
  4862. }
  4863. #u124148 .text {
  4864. position:absolute;
  4865. align-self:flex-start;
  4866. padding:0px 0px 0px 0px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u124148_text {
  4871. border-width:0px;
  4872. white-space:nowrap;
  4873. text-transform:none;
  4874. }
  4875. #u124149_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:109px;
  4881. height:21px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 0);
  4884. border:none;
  4885. border-radius:0px;
  4886. -moz-box-shadow:none;
  4887. -webkit-box-shadow:none;
  4888. box-shadow:none;
  4889. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4890. font-weight:650;
  4891. font-style:normal;
  4892. font-size:18px;
  4893. color:#000000;
  4894. line-height:22px;
  4895. }
  4896. #u124149 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:1704px;
  4900. top:116px;
  4901. width:109px;
  4902. height:21px;
  4903. display:flex;
  4904. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4905. font-weight:650;
  4906. font-style:normal;
  4907. font-size:18px;
  4908. color:#000000;
  4909. line-height:22px;
  4910. }
  4911. #u124149 .text {
  4912. position:absolute;
  4913. align-self:flex-start;
  4914. padding:0px 0px 0px 0px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u124149_text {
  4919. border-width:0px;
  4920. white-space:nowrap;
  4921. text-transform:none;
  4922. }
  4923. #u124150_div {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:61px;
  4929. height:32px;
  4930. background:inherit;
  4931. background-color:rgba(24, 144, 255, 1);
  4932. border:none;
  4933. border-radius:4px;
  4934. -moz-box-shadow:none;
  4935. -webkit-box-shadow:none;
  4936. box-shadow:none;
  4937. font-family:'Microsoft YaHei', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. font-size:14px;
  4941. color:#FFFFFF;
  4942. }
  4943. #u124150 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:2036px;
  4947. top:236px;
  4948. width:61px;
  4949. height:32px;
  4950. display:flex;
  4951. font-family:'Microsoft YaHei', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:14px;
  4955. color:#FFFFFF;
  4956. }
  4957. #u124150 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 16px 2px 16px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u124150_text {
  4965. border-width:0px;
  4966. white-space:nowrap;
  4967. text-transform:none;
  4968. }
  4969. #u124151_div {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:66px;
  4975. height:32px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 1);
  4978. box-sizing:border-box;
  4979. border-width:1px;
  4980. border-style:solid;
  4981. border-color:rgba(217, 217, 217, 1);
  4982. border-radius:4px;
  4983. -moz-box-shadow:none;
  4984. -webkit-box-shadow:none;
  4985. box-shadow:none;
  4986. font-family:'Microsoft YaHei', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:14px;
  4990. color:rgba(0, 0, 0, 0.647058823529412);
  4991. line-height:21px;
  4992. }
  4993. #u124151 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:1954px;
  4997. top:236px;
  4998. width:66px;
  4999. height:32px;
  5000. display:flex;
  5001. font-family:'Microsoft YaHei', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:14px;
  5005. color:rgba(0, 0, 0, 0.647058823529412);
  5006. line-height:21px;
  5007. }
  5008. #u124151 .text {
  5009. position:absolute;
  5010. align-self:center;
  5011. padding:2px 16px 2px 16px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u124151_text {
  5016. border-width:0px;
  5017. white-space:nowrap;
  5018. text-transform:none;
  5019. }
  5020. #u124152 label {
  5021. left:0px;
  5022. width:100%;
  5023. }
  5024. #u124152_img {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:4px;
  5029. width:12px;
  5030. height:12px;
  5031. }
  5032. #u124152 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:1809px;
  5036. top:163px;
  5037. width:100px;
  5038. height:20px;
  5039. display:flex;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:14px;
  5044. }
  5045. #u124152 .text {
  5046. position:absolute;
  5047. align-self:center;
  5048. padding:0px 2px 0px 2px;
  5049. box-sizing:border-box;
  5050. }
  5051. #u124152_img.selected {
  5052. }
  5053. #u124152.selected {
  5054. }
  5055. #u124152_img.disabled {
  5056. }
  5057. #u124152.disabled {
  5058. }
  5059. #u124152_img.selectedDisabled {
  5060. }
  5061. #u124152.selectedDisabled {
  5062. }
  5063. #u124152_text {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:14px;
  5067. top:0px;
  5068. width:84px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. }
  5072. #u124152_input {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:0px;
  5078. height:0px;
  5079. opacity:0;
  5080. }
  5081. #u124153 label {
  5082. left:0px;
  5083. width:100%;
  5084. }
  5085. #u124153_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:4px;
  5090. width:12px;
  5091. height:12px;
  5092. }
  5093. #u124153 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:1909px;
  5097. top:163px;
  5098. width:100px;
  5099. height:20px;
  5100. display:flex;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. }
  5106. #u124153 .text {
  5107. position:absolute;
  5108. align-self:center;
  5109. padding:0px 2px 0px 2px;
  5110. box-sizing:border-box;
  5111. }
  5112. #u124153_img.selected {
  5113. }
  5114. #u124153.selected {
  5115. }
  5116. #u124153_img.disabled {
  5117. }
  5118. #u124153.disabled {
  5119. }
  5120. #u124153_img.selectedDisabled {
  5121. }
  5122. #u124153.selectedDisabled {
  5123. }
  5124. #u124153_text {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:14px;
  5128. top:0px;
  5129. width:84px;
  5130. word-wrap:break-word;
  5131. text-transform:none;
  5132. }
  5133. #u124153_input {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:0px;
  5139. height:0px;
  5140. opacity:0;
  5141. }
  5142. #u124154_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:217px;
  5148. height:17px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:12px;
  5160. color:#1890FF;
  5161. }
  5162. #u124154 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:1809px;
  5166. top:192px;
  5167. width:217px;
  5168. height:17px;
  5169. display:flex;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:12px;
  5174. color:#1890FF;
  5175. }
  5176. #u124154 .text {
  5177. position:absolute;
  5178. align-self:flex-start;
  5179. padding:0px 0px 0px 0px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u124154_text {
  5184. border-width:0px;
  5185. white-space:nowrap;
  5186. text-transform:none;
  5187. }
  5188. #u124155 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:0px;
  5194. height:0px;
  5195. }
  5196. #u124156_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:440px;
  5202. height:200px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 1);
  5205. border:none;
  5206. border-radius:4px;
  5207. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5208. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5209. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5210. font-family:'Microsoft YaHei', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. }
  5214. #u124156 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:1677px;
  5218. top:319px;
  5219. width:440px;
  5220. height:200px;
  5221. display:flex;
  5222. font-family:'Microsoft YaHei', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. }
  5226. #u124156 .text {
  5227. position:absolute;
  5228. align-self:center;
  5229. padding:2px 2px 2px 2px;
  5230. box-sizing:border-box;
  5231. width:100%;
  5232. }
  5233. #u124156_text {
  5234. border-width:0px;
  5235. word-wrap:break-word;
  5236. text-transform:none;
  5237. visibility:hidden;
  5238. }
  5239. #u124157_div {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:85px;
  5245. height:22px;
  5246. background:inherit;
  5247. background-color:rgba(255, 255, 255, 0);
  5248. border:none;
  5249. border-radius:0px;
  5250. -moz-box-shadow:none;
  5251. -webkit-box-shadow:none;
  5252. box-shadow:none;
  5253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5254. font-weight:400;
  5255. font-style:normal;
  5256. font-size:14px;
  5257. color:#666666;
  5258. line-height:22px;
  5259. }
  5260. #u124157 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:1704px;
  5264. top:390px;
  5265. width:85px;
  5266. height:22px;
  5267. display:flex;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:14px;
  5272. color:#666666;
  5273. line-height:22px;
  5274. }
  5275. #u124157 .text {
  5276. position:absolute;
  5277. align-self:flex-start;
  5278. padding:0px 0px 0px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u124157_text {
  5283. border-width:0px;
  5284. white-space:nowrap;
  5285. text-transform:none;
  5286. }
  5287. #u124158_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:109px;
  5293. height:21px;
  5294. background:inherit;
  5295. background-color:rgba(255, 255, 255, 0);
  5296. border:none;
  5297. border-radius:0px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5302. font-weight:650;
  5303. font-style:normal;
  5304. font-size:18px;
  5305. color:#000000;
  5306. line-height:22px;
  5307. }
  5308. #u124158 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:1704px;
  5312. top:344px;
  5313. width:109px;
  5314. height:21px;
  5315. display:flex;
  5316. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5317. font-weight:650;
  5318. font-style:normal;
  5319. font-size:18px;
  5320. color:#000000;
  5321. line-height:22px;
  5322. }
  5323. #u124158 .text {
  5324. position:absolute;
  5325. align-self:flex-start;
  5326. padding:0px 0px 0px 0px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u124158_text {
  5331. border-width:0px;
  5332. white-space:nowrap;
  5333. text-transform:none;
  5334. }
  5335. #u124159_div {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:61px;
  5341. height:32px;
  5342. background:inherit;
  5343. background-color:rgba(24, 144, 255, 1);
  5344. border:none;
  5345. border-radius:4px;
  5346. -moz-box-shadow:none;
  5347. -webkit-box-shadow:none;
  5348. box-shadow:none;
  5349. font-family:'Microsoft YaHei', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. color:#FFFFFF;
  5354. }
  5355. #u124159 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:2036px;
  5359. top:464px;
  5360. width:61px;
  5361. height:32px;
  5362. display:flex;
  5363. font-family:'Microsoft YaHei', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:14px;
  5367. color:#FFFFFF;
  5368. }
  5369. #u124159 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 16px 2px 16px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u124159_text {
  5377. border-width:0px;
  5378. white-space:nowrap;
  5379. text-transform:none;
  5380. }
  5381. #u124160_div {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:66px;
  5387. height:32px;
  5388. background:inherit;
  5389. background-color:rgba(255, 255, 255, 1);
  5390. box-sizing:border-box;
  5391. border-width:1px;
  5392. border-style:solid;
  5393. border-color:rgba(217, 217, 217, 1);
  5394. border-radius:4px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. font-family:'Microsoft YaHei', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:14px;
  5402. color:rgba(0, 0, 0, 0.647058823529412);
  5403. line-height:21px;
  5404. }
  5405. #u124160 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:1954px;
  5409. top:464px;
  5410. width:66px;
  5411. height:32px;
  5412. display:flex;
  5413. font-family:'Microsoft YaHei', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:14px;
  5417. color:rgba(0, 0, 0, 0.647058823529412);
  5418. line-height:21px;
  5419. }
  5420. #u124160 .text {
  5421. position:absolute;
  5422. align-self:center;
  5423. padding:2px 16px 2px 16px;
  5424. box-sizing:border-box;
  5425. width:100%;
  5426. }
  5427. #u124160_text {
  5428. border-width:0px;
  5429. white-space:nowrap;
  5430. text-transform:none;
  5431. }
  5432. #u124161 label {
  5433. left:0px;
  5434. width:100%;
  5435. }
  5436. #u124161_img {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:4px;
  5441. width:12px;
  5442. height:12px;
  5443. }
  5444. #u124161 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:1809px;
  5448. top:391px;
  5449. width:100px;
  5450. height:20px;
  5451. display:flex;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:14px;
  5456. }
  5457. #u124161 .text {
  5458. position:absolute;
  5459. align-self:center;
  5460. padding:0px 2px 0px 2px;
  5461. box-sizing:border-box;
  5462. }
  5463. #u124161_img.selected {
  5464. }
  5465. #u124161.selected {
  5466. }
  5467. #u124161_img.disabled {
  5468. }
  5469. #u124161.disabled {
  5470. }
  5471. #u124161_img.selectedDisabled {
  5472. }
  5473. #u124161.selectedDisabled {
  5474. }
  5475. #u124161_text {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:14px;
  5479. top:0px;
  5480. width:84px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. }
  5484. #u124161_input {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:0px;
  5490. height:0px;
  5491. opacity:0;
  5492. }
  5493. #u124162 label {
  5494. left:0px;
  5495. width:100%;
  5496. }
  5497. #u124162_img {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:4px;
  5502. width:12px;
  5503. height:12px;
  5504. }
  5505. #u124162 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:1909px;
  5509. top:391px;
  5510. width:100px;
  5511. height:20px;
  5512. display:flex;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:14px;
  5517. }
  5518. #u124162 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:0px 2px 0px 2px;
  5522. box-sizing:border-box;
  5523. }
  5524. #u124162_img.selected {
  5525. }
  5526. #u124162.selected {
  5527. }
  5528. #u124162_img.disabled {
  5529. }
  5530. #u124162.disabled {
  5531. }
  5532. #u124162_img.selectedDisabled {
  5533. }
  5534. #u124162.selectedDisabled {
  5535. }
  5536. #u124162_text {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:14px;
  5540. top:0px;
  5541. width:84px;
  5542. word-wrap:break-word;
  5543. text-transform:none;
  5544. }
  5545. #u124162_input {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:0px;
  5551. height:0px;
  5552. opacity:0;
  5553. }
  5554. #u124163_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:169px;
  5560. height:17px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 0);
  5563. border:none;
  5564. border-radius:0px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:12px;
  5572. color:#1890FF;
  5573. }
  5574. #u124163 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:1809px;
  5578. top:420px;
  5579. width:169px;
  5580. height:17px;
  5581. display:flex;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:12px;
  5586. color:#1890FF;
  5587. }
  5588. #u124163 .text {
  5589. position:absolute;
  5590. align-self:flex-start;
  5591. padding:0px 0px 0px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u124163_text {
  5596. border-width:0px;
  5597. white-space:nowrap;
  5598. text-transform:none;
  5599. }
  5600. #u124164 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:0px;
  5606. height:0px;
  5607. }
  5608. #u124165_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:200px;
  5614. height:1180px;
  5615. background:inherit;
  5616. background-color:rgba(255, 255, 255, 1);
  5617. border:none;
  5618. border-radius:0px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. }
  5623. #u124165 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:120px;
  5627. top:50px;
  5628. width:200px;
  5629. height:1180px;
  5630. display:flex;
  5631. }
  5632. #u124165 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 2px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u124165_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u124166_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:200px;
  5651. height:60px;
  5652. background:inherit;
  5653. background-color:rgba(224, 231, 247, 1);
  5654. border:none;
  5655. border-radius:0px;
  5656. -moz-box-shadow:none;
  5657. -webkit-box-shadow:none;
  5658. box-shadow:none;
  5659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5660. font-weight:500;
  5661. font-style:normal;
  5662. font-size:18px;
  5663. }
  5664. #u124166 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:120px;
  5668. top:50px;
  5669. width:200px;
  5670. height:60px;
  5671. display:flex;
  5672. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5673. font-weight:500;
  5674. font-style:normal;
  5675. font-size:18px;
  5676. }
  5677. #u124166 .text {
  5678. position:absolute;
  5679. align-self:center;
  5680. padding:0px 0px 0px 20px;
  5681. box-sizing:border-box;
  5682. width:100%;
  5683. }
  5684. #u124166_text {
  5685. border-width:0px;
  5686. word-wrap:break-word;
  5687. text-transform:none;
  5688. }
  5689. #u124167_div {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:65px;
  5695. height:22px;
  5696. background:inherit;
  5697. background-color:rgba(255, 255, 255, 0);
  5698. border:none;
  5699. border-radius:0px;
  5700. -moz-box-shadow:none;
  5701. -webkit-box-shadow:none;
  5702. box-shadow:none;
  5703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5704. font-weight:400;
  5705. font-style:normal;
  5706. font-size:16px;
  5707. }
  5708. #u124167 {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:146px;
  5712. top:167px;
  5713. width:65px;
  5714. height:22px;
  5715. display:flex;
  5716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5717. font-weight:400;
  5718. font-style:normal;
  5719. font-size:16px;
  5720. }
  5721. #u124167 .text {
  5722. position:absolute;
  5723. align-self:flex-start;
  5724. padding:0px 0px 0px 0px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u124167_text {
  5729. border-width:0px;
  5730. white-space:nowrap;
  5731. text-transform:none;
  5732. }
  5733. #u124168_div {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:65px;
  5739. height:22px;
  5740. background:inherit;
  5741. background-color:rgba(255, 255, 255, 0);
  5742. border:none;
  5743. border-radius:0px;
  5744. -moz-box-shadow:none;
  5745. -webkit-box-shadow:none;
  5746. box-shadow:none;
  5747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:16px;
  5751. }
  5752. #u124168 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:146px;
  5756. top:209px;
  5757. width:65px;
  5758. height:22px;
  5759. display:flex;
  5760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. font-size:16px;
  5764. }
  5765. #u124168 .text {
  5766. position:absolute;
  5767. align-self:flex-start;
  5768. padding:0px 0px 0px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u124168_text {
  5773. border-width:0px;
  5774. white-space:nowrap;
  5775. text-transform:none;
  5776. }
  5777. #u124169_div {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:49px;
  5783. height:17px;
  5784. background:inherit;
  5785. background-color:rgba(255, 255, 255, 0);
  5786. border:none;
  5787. border-radius:0px;
  5788. -moz-box-shadow:none;
  5789. -webkit-box-shadow:none;
  5790. box-shadow:none;
  5791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:12px;
  5795. color:#AAAAAA;
  5796. }
  5797. #u124169 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:146px;
  5801. top:130px;
  5802. width:49px;
  5803. height:17px;
  5804. display:flex;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:12px;
  5809. color:#AAAAAA;
  5810. }
  5811. #u124169 .text {
  5812. position:absolute;
  5813. align-self:flex-start;
  5814. padding:0px 0px 0px 0px;
  5815. box-sizing:border-box;
  5816. width:100%;
  5817. }
  5818. #u124169_text {
  5819. border-width:0px;
  5820. white-space:nowrap;
  5821. text-transform:none;
  5822. }
  5823. #u124170_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:49px;
  5829. height:17px;
  5830. background:inherit;
  5831. background-color:rgba(255, 255, 255, 0);
  5832. border:none;
  5833. border-radius:0px;
  5834. -moz-box-shadow:none;
  5835. -webkit-box-shadow:none;
  5836. box-shadow:none;
  5837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5838. font-weight:400;
  5839. font-style:normal;
  5840. font-size:12px;
  5841. color:#AAAAAA;
  5842. }
  5843. #u124170 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:146px;
  5847. top:585px;
  5848. width:49px;
  5849. height:17px;
  5850. display:flex;
  5851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:12px;
  5855. color:#AAAAAA;
  5856. }
  5857. #u124170 .text {
  5858. position:absolute;
  5859. align-self:flex-start;
  5860. padding:0px 0px 0px 0px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u124170_text {
  5865. border-width:0px;
  5866. white-space:nowrap;
  5867. text-transform:none;
  5868. }
  5869. #u124171_img {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:201px;
  5875. height:2px;
  5876. }
  5877. #u124171 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:120px;
  5881. top:563px;
  5882. width:200px;
  5883. height:1px;
  5884. display:flex;
  5885. }
  5886. #u124171 .text {
  5887. position:absolute;
  5888. align-self:center;
  5889. padding:2px 2px 2px 2px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u124171_text {
  5894. border-width:0px;
  5895. word-wrap:break-word;
  5896. text-transform:none;
  5897. visibility:hidden;
  5898. }
  5899. #u124172_div {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:65px;
  5905. height:22px;
  5906. background:inherit;
  5907. background-color:rgba(255, 255, 255, 0);
  5908. border:none;
  5909. border-radius:0px;
  5910. -moz-box-shadow:none;
  5911. -webkit-box-shadow:none;
  5912. box-shadow:none;
  5913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5914. font-weight:400;
  5915. font-style:normal;
  5916. font-size:16px;
  5917. }
  5918. #u124172 {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:146px;
  5922. top:623px;
  5923. width:65px;
  5924. height:22px;
  5925. display:flex;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:16px;
  5930. }
  5931. #u124172 .text {
  5932. position:absolute;
  5933. align-self:flex-start;
  5934. padding:0px 0px 0px 0px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u124172_text {
  5939. border-width:0px;
  5940. white-space:nowrap;
  5941. text-transform:none;
  5942. }
  5943. #u124173_div {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:97px;
  5949. height:22px;
  5950. background:inherit;
  5951. background-color:rgba(255, 255, 255, 0);
  5952. border:none;
  5953. border-radius:0px;
  5954. -moz-box-shadow:none;
  5955. -webkit-box-shadow:none;
  5956. box-shadow:none;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:16px;
  5961. }
  5962. #u124173 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:146px;
  5966. top:665px;
  5967. width:97px;
  5968. height:22px;
  5969. display:flex;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:16px;
  5974. }
  5975. #u124173 .text {
  5976. position:absolute;
  5977. align-self:flex-start;
  5978. padding:0px 0px 0px 0px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u124173_text {
  5983. border-width:0px;
  5984. white-space:nowrap;
  5985. text-transform:none;
  5986. }
  5987. #u124174_div {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:97px;
  5993. height:22px;
  5994. background:inherit;
  5995. background-color:rgba(255, 255, 255, 0);
  5996. border:none;
  5997. border-radius:0px;
  5998. -moz-box-shadow:none;
  5999. -webkit-box-shadow:none;
  6000. box-shadow:none;
  6001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6002. font-weight:400;
  6003. font-style:normal;
  6004. font-size:16px;
  6005. }
  6006. #u124174 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:146px;
  6010. top:707px;
  6011. width:97px;
  6012. height:22px;
  6013. display:flex;
  6014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:16px;
  6018. }
  6019. #u124174 .text {
  6020. position:absolute;
  6021. align-self:flex-start;
  6022. padding:0px 0px 0px 0px;
  6023. box-sizing:border-box;
  6024. width:100%;
  6025. }
  6026. #u124174_text {
  6027. border-width:0px;
  6028. white-space:nowrap;
  6029. text-transform:none;
  6030. }
  6031. #u124175_div {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:97px;
  6037. height:22px;
  6038. background:inherit;
  6039. background-color:rgba(255, 255, 255, 0);
  6040. border:none;
  6041. border-radius:0px;
  6042. -moz-box-shadow:none;
  6043. -webkit-box-shadow:none;
  6044. box-shadow:none;
  6045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6046. font-weight:400;
  6047. font-style:normal;
  6048. font-size:16px;
  6049. }
  6050. #u124175 {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:146px;
  6054. top:749px;
  6055. width:97px;
  6056. height:22px;
  6057. display:flex;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:16px;
  6062. }
  6063. #u124175 .text {
  6064. position:absolute;
  6065. align-self:flex-start;
  6066. padding:0px 0px 0px 0px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u124175_text {
  6071. border-width:0px;
  6072. white-space:nowrap;
  6073. text-transform:none;
  6074. }
  6075. #u124176_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:97px;
  6081. height:22px;
  6082. background:inherit;
  6083. background-color:rgba(255, 255, 255, 0);
  6084. border:none;
  6085. border-radius:0px;
  6086. -moz-box-shadow:none;
  6087. -webkit-box-shadow:none;
  6088. box-shadow:none;
  6089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6090. font-weight:400;
  6091. font-style:normal;
  6092. font-size:16px;
  6093. }
  6094. #u124176 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:146px;
  6098. top:791px;
  6099. width:97px;
  6100. height:22px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:16px;
  6106. }
  6107. #u124176 .text {
  6108. position:absolute;
  6109. align-self:flex-start;
  6110. padding:0px 0px 0px 0px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u124176_text {
  6115. border-width:0px;
  6116. white-space:nowrap;
  6117. text-transform:none;
  6118. }
  6119. #u124177_div {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:49px;
  6125. height:17px;
  6126. background:inherit;
  6127. background-color:rgba(255, 255, 255, 0);
  6128. border:none;
  6129. border-radius:0px;
  6130. -moz-box-shadow:none;
  6131. -webkit-box-shadow:none;
  6132. box-shadow:none;
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:12px;
  6137. color:#AAAAAA;
  6138. }
  6139. #u124177 {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:146px;
  6143. top:858px;
  6144. width:49px;
  6145. height:17px;
  6146. display:flex;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:12px;
  6151. color:#AAAAAA;
  6152. }
  6153. #u124177 .text {
  6154. position:absolute;
  6155. align-self:flex-start;
  6156. padding:0px 0px 0px 0px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u124177_text {
  6161. border-width:0px;
  6162. white-space:nowrap;
  6163. text-transform:none;
  6164. }
  6165. #u124178_img {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:201px;
  6171. height:2px;
  6172. }
  6173. #u124178 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:120px;
  6177. top:836px;
  6178. width:200px;
  6179. height:1px;
  6180. display:flex;
  6181. }
  6182. #u124178 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:2px 2px 2px 2px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u124178_text {
  6190. border-width:0px;
  6191. word-wrap:break-word;
  6192. text-transform:none;
  6193. visibility:hidden;
  6194. }
  6195. #u124179_div {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:97px;
  6201. height:22px;
  6202. background:inherit;
  6203. background-color:rgba(255, 255, 255, 0);
  6204. border:none;
  6205. border-radius:0px;
  6206. -moz-box-shadow:none;
  6207. -webkit-box-shadow:none;
  6208. box-shadow:none;
  6209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:16px;
  6213. }
  6214. #u124179 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:146px;
  6218. top:896px;
  6219. width:97px;
  6220. height:22px;
  6221. display:flex;
  6222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:16px;
  6226. }
  6227. #u124179 .text {
  6228. position:absolute;
  6229. align-self:flex-start;
  6230. padding:0px 0px 0px 0px;
  6231. box-sizing:border-box;
  6232. width:100%;
  6233. }
  6234. #u124179_text {
  6235. border-width:0px;
  6236. white-space:nowrap;
  6237. text-transform:none;
  6238. }
  6239. #u124180_div {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:97px;
  6245. height:22px;
  6246. background:inherit;
  6247. background-color:rgba(255, 255, 255, 0);
  6248. border:none;
  6249. border-radius:0px;
  6250. -moz-box-shadow:none;
  6251. -webkit-box-shadow:none;
  6252. box-shadow:none;
  6253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:16px;
  6257. }
  6258. #u124180 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:146px;
  6262. top:938px;
  6263. width:97px;
  6264. height:22px;
  6265. display:flex;
  6266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:16px;
  6270. }
  6271. #u124180 .text {
  6272. position:absolute;
  6273. align-self:flex-start;
  6274. padding:0px 0px 0px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u124180_text {
  6279. border-width:0px;
  6280. white-space:nowrap;
  6281. text-transform:none;
  6282. }
  6283. #u124181_div {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:65px;
  6289. height:22px;
  6290. background:inherit;
  6291. background-color:rgba(255, 255, 255, 0);
  6292. border:none;
  6293. border-radius:0px;
  6294. -moz-box-shadow:none;
  6295. -webkit-box-shadow:none;
  6296. box-shadow:none;
  6297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:16px;
  6301. }
  6302. #u124181 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:146px;
  6306. top:437px;
  6307. width:65px;
  6308. height:22px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:16px;
  6314. }
  6315. #u124181 .text {
  6316. position:absolute;
  6317. align-self:flex-start;
  6318. padding:0px 0px 0px 0px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u124181_text {
  6323. border-width:0px;
  6324. white-space:nowrap;
  6325. text-transform:none;
  6326. }
  6327. #u124182_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:49px;
  6333. height:17px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:12px;
  6345. color:#AAAAAA;
  6346. }
  6347. #u124182 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:146px;
  6351. top:400px;
  6352. width:49px;
  6353. height:17px;
  6354. display:flex;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:12px;
  6359. color:#AAAAAA;
  6360. }
  6361. #u124182 .text {
  6362. position:absolute;
  6363. align-self:flex-start;
  6364. padding:0px 0px 0px 0px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u124182_text {
  6369. border-width:0px;
  6370. white-space:nowrap;
  6371. text-transform:none;
  6372. }
  6373. #u124183_img {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:201px;
  6379. height:2px;
  6380. }
  6381. #u124183 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:120px;
  6385. top:380px;
  6386. width:200px;
  6387. height:1px;
  6388. display:flex;
  6389. }
  6390. #u124183 .text {
  6391. position:absolute;
  6392. align-self:center;
  6393. padding:2px 2px 2px 2px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u124183_text {
  6398. border-width:0px;
  6399. word-wrap:break-word;
  6400. text-transform:none;
  6401. visibility:hidden;
  6402. }
  6403. #u124184_div {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:65px;
  6409. height:22px;
  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:16px;
  6421. }
  6422. #u124184 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:146px;
  6426. top:479px;
  6427. width:65px;
  6428. height:22px;
  6429. display:flex;
  6430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:16px;
  6434. }
  6435. #u124184 .text {
  6436. position:absolute;
  6437. align-self:flex-start;
  6438. padding:0px 0px 0px 0px;
  6439. box-sizing:border-box;
  6440. width:100%;
  6441. }
  6442. #u124184_text {
  6443. border-width:0px;
  6444. white-space:nowrap;
  6445. text-transform:none;
  6446. }
  6447. #u124185_div {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:65px;
  6453. height:22px;
  6454. background:inherit;
  6455. background-color:rgba(255, 255, 255, 0);
  6456. border:none;
  6457. border-radius:0px;
  6458. -moz-box-shadow:none;
  6459. -webkit-box-shadow:none;
  6460. box-shadow:none;
  6461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:16px;
  6465. }
  6466. #u124185 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:146px;
  6470. top:521px;
  6471. width:65px;
  6472. height:22px;
  6473. display:flex;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:16px;
  6478. }
  6479. #u124185 .text {
  6480. position:absolute;
  6481. align-self:flex-start;
  6482. padding:0px 0px 0px 0px;
  6483. box-sizing:border-box;
  6484. width:100%;
  6485. }
  6486. #u124185_text {
  6487. border-width:0px;
  6488. white-space:nowrap;
  6489. text-transform:none;
  6490. }
  6491. #u124186_div {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:65px;
  6497. height:22px;
  6498. background:inherit;
  6499. background-color:rgba(255, 255, 255, 0);
  6500. border:none;
  6501. border-radius:0px;
  6502. -moz-box-shadow:none;
  6503. -webkit-box-shadow:none;
  6504. box-shadow:none;
  6505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6506. font-weight:400;
  6507. font-style:normal;
  6508. font-size:16px;
  6509. }
  6510. #u124186 {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:146px;
  6514. top:334px;
  6515. width:65px;
  6516. height:22px;
  6517. display:flex;
  6518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:16px;
  6522. }
  6523. #u124186 .text {
  6524. position:absolute;
  6525. align-self:flex-start;
  6526. padding:0px 0px 0px 0px;
  6527. box-sizing:border-box;
  6528. width:100%;
  6529. }
  6530. #u124186_text {
  6531. border-width:0px;
  6532. white-space:nowrap;
  6533. text-transform:none;
  6534. }
  6535. #u124187_div {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:65px;
  6541. height:22px;
  6542. background:inherit;
  6543. background-color:rgba(255, 255, 255, 0);
  6544. border:none;
  6545. border-radius:0px;
  6546. -moz-box-shadow:none;
  6547. -webkit-box-shadow:none;
  6548. box-shadow:none;
  6549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. font-size:16px;
  6553. }
  6554. #u124187 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:146px;
  6558. top:251px;
  6559. width:65px;
  6560. height:22px;
  6561. display:flex;
  6562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:16px;
  6566. }
  6567. #u124187 .text {
  6568. position:absolute;
  6569. align-self:flex-start;
  6570. padding:0px 0px 0px 0px;
  6571. box-sizing:border-box;
  6572. width:100%;
  6573. }
  6574. #u124187_text {
  6575. border-width:0px;
  6576. white-space:nowrap;
  6577. text-transform:none;
  6578. }
  6579. #u124188_div {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:65px;
  6585. height:22px;
  6586. background:inherit;
  6587. background-color:rgba(255, 255, 255, 0);
  6588. border:none;
  6589. border-radius:0px;
  6590. -moz-box-shadow:none;
  6591. -webkit-box-shadow:none;
  6592. box-shadow:none;
  6593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:16px;
  6597. }
  6598. #u124188 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:146px;
  6602. top:293px;
  6603. width:65px;
  6604. height:22px;
  6605. display:flex;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:16px;
  6610. }
  6611. #u124188 .text {
  6612. position:absolute;
  6613. align-self:flex-start;
  6614. padding:0px 0px 0px 0px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u124188_text {
  6619. border-width:0px;
  6620. white-space:nowrap;
  6621. text-transform:none;
  6622. }