styles.css 115 KB

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