styles.css 122 KB

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