styles.css 125 KB

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