styles.css 164 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1600px;
  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. #u13240 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u13241_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u13241 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u13241 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u13241_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u13242_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u13242 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u13242 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u13242_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u13243_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u13243 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u13243 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u13243_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u13244 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u13245 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u13245 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u13245_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u13245_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u13246_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u13246 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u13246 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u13246_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u13247_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u13247 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u13247 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u13247_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u13248 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u13249_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u13249 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u13249 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u13249_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u13250 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u13250 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u13250_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u13250_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u13251 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u13252_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u13252 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u13252 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u13252_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u13253 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u13253 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u13253_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u13253_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u13254 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u13255_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u13255 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u13255 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u13255_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u13256 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u13256 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u13256_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u13256_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u13257 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u13258_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u13258 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u13258 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u13258_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u13259 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u13259 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u13259_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u13259_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u13260 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u13261_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u13261 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u13261 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u13261_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u13262 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u13262 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u13262_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u13262_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u13263 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u13264_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u13264 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u13264 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u13264_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u13265 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u13265 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u13265_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u13265_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u13266 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u13267_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u13267 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u13267 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u13267_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u13268 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u13268 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u13268_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u13268_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u13269 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u13270_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u13270 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u13270 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u13270_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u13271 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u13271 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u13271_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u13271_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u13272 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u13273_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u13273 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u13273 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u13273_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u13274 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u13274 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u13274_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u13274_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u13275 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u13276_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u13276 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u13276 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u13276_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u13277 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u13277 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u13277_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u13277_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u13278 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u13279_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u13279 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u13279 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u13279_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u13280 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u13280 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u13280_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u13280_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u13281 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u13282_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:"ArialMT", "Arial", sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u13282_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:"ArialMT", "Arial", sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u13282_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u13282 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u13282 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u13282_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u13282.disabled {
  1294. }
  1295. .u13282_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u13283 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u13283 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u13283_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u13283_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u13284_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u13284 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u13284 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u13284_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u13285 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u13285 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u13285_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u13285_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u13286 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u13287_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u13287 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u13287 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u13287_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u13288 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u13288 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u13288_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u13288_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u13289 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u13289 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u13289_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u13289_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u13290 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u13290 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u13290_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u13290_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u13291 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u13291 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u13291_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u13291_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u13292 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u13293_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u13293 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u13293 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u13293_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u13294 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u13294 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u13294_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u13294_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u13295_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1259px;
  1673. height:1188px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. }
  1680. #u13295 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:330px;
  1684. top:50px;
  1685. width:1259px;
  1686. height:1188px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u13295 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u13295_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u13296 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:352px;
  1708. top:250px;
  1709. width:1216px;
  1710. height:275px;
  1711. }
  1712. #u13297 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:103px;
  1718. height:35px;
  1719. display:flex;
  1720. transition:none;
  1721. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:12px;
  1725. color:#FFFFFF;
  1726. }
  1727. #u13297 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u13297_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:103px;
  1740. height:35px;
  1741. }
  1742. #u13297_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u13298 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:103px;
  1751. top:0px;
  1752. width:102px;
  1753. height:35px;
  1754. display:flex;
  1755. transition:none;
  1756. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:12px;
  1760. color:#FFFFFF;
  1761. }
  1762. #u13298 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u13298_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:102px;
  1775. height:35px;
  1776. }
  1777. #u13298_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u13299 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:205px;
  1786. top:0px;
  1787. width:101px;
  1788. height:35px;
  1789. display:flex;
  1790. transition:none;
  1791. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:12px;
  1795. color:#FFFFFF;
  1796. }
  1797. #u13299 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u13299_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:101px;
  1810. height:35px;
  1811. }
  1812. #u13299_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u13300 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:306px;
  1821. top:0px;
  1822. width:101px;
  1823. height:35px;
  1824. display:flex;
  1825. transition:none;
  1826. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:12px;
  1830. color:#FFFFFF;
  1831. }
  1832. #u13300 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u13300_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:101px;
  1845. height:35px;
  1846. }
  1847. #u13300_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u13301 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:407px;
  1856. top:0px;
  1857. width:106px;
  1858. height:35px;
  1859. display:flex;
  1860. transition:none;
  1861. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u13301 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u13301_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:106px;
  1880. height:35px;
  1881. }
  1882. #u13301_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u13302 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:514px;
  1891. top:0px;
  1892. width:73px;
  1893. height:35px;
  1894. display:flex;
  1895. transition:none;
  1896. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:12px;
  1900. color:#FFFFFF;
  1901. }
  1902. #u13302 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u13302_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:73px;
  1915. height:35px;
  1916. }
  1917. #u13302_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u13303 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:587px;
  1926. top:0px;
  1927. width:102px;
  1928. height:35px;
  1929. display:flex;
  1930. transition:none;
  1931. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#FFFFFF;
  1936. }
  1937. #u13303 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u13303_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:102px;
  1950. height:35px;
  1951. }
  1952. #u13303_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u13304 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:689px;
  1961. top:0px;
  1962. width:101px;
  1963. height:35px;
  1964. display:flex;
  1965. transition:none;
  1966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u13304 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u13304_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:101px;
  1985. height:35px;
  1986. }
  1987. #u13304_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u13305 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:790px;
  1996. top:0px;
  1997. width:101px;
  1998. height:35px;
  1999. display:flex;
  2000. transition:none;
  2001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u13305 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u13305_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:101px;
  2020. height:35px;
  2021. }
  2022. #u13305_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u13306 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:892px;
  2031. top:0px;
  2032. width:101px;
  2033. height:35px;
  2034. display:flex;
  2035. transition:none;
  2036. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u13306 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u13306_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:101px;
  2055. height:35px;
  2056. }
  2057. #u13306_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u13307 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:993px;
  2066. top:0px;
  2067. width:101px;
  2068. height:35px;
  2069. display:flex;
  2070. transition:none;
  2071. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:12px;
  2075. color:#FFFFFF;
  2076. }
  2077. #u13307 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u13307_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:101px;
  2090. height:35px;
  2091. }
  2092. #u13307_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. }
  2097. #u13308 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:1094px;
  2101. top:0px;
  2102. width:122px;
  2103. height:35px;
  2104. display:flex;
  2105. transition:none;
  2106. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#FFFFFF;
  2111. }
  2112. #u13308 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u13308_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:122px;
  2125. height:35px;
  2126. }
  2127. #u13308_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. }
  2132. #u13309 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:35px;
  2137. width:103px;
  2138. height:44px;
  2139. display:flex;
  2140. transition:none;
  2141. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#333333;
  2146. line-height:40px;
  2147. }
  2148. #u13309 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:2px 2px 2px 0px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u13309_img {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:103px;
  2161. height:44px;
  2162. }
  2163. #u13309_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. visibility:hidden;
  2168. }
  2169. #u13310 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:103px;
  2173. top:35px;
  2174. width:102px;
  2175. height:44px;
  2176. display:flex;
  2177. transition:none;
  2178. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. color:#333333;
  2183. line-height:40px;
  2184. }
  2185. #u13310 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u13310_img {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:102px;
  2198. height:44px;
  2199. }
  2200. #u13310_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. visibility:hidden;
  2205. }
  2206. #u13311 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:205px;
  2210. top:35px;
  2211. width:101px;
  2212. height:44px;
  2213. display:flex;
  2214. transition:none;
  2215. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:12px;
  2219. color:#333333;
  2220. line-height:40px;
  2221. }
  2222. #u13311 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u13311_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:101px;
  2235. height:44px;
  2236. }
  2237. #u13311_text {
  2238. border-width:0px;
  2239. word-wrap:break-word;
  2240. text-transform:none;
  2241. visibility:hidden;
  2242. }
  2243. #u13312 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:306px;
  2247. top:35px;
  2248. width:101px;
  2249. height:44px;
  2250. display:flex;
  2251. transition:none;
  2252. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. font-size:12px;
  2256. color:#333333;
  2257. line-height:40px;
  2258. }
  2259. #u13312 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 0px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u13312_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:101px;
  2272. height:44px;
  2273. }
  2274. #u13312_text {
  2275. border-width:0px;
  2276. word-wrap:break-word;
  2277. text-transform:none;
  2278. visibility:hidden;
  2279. }
  2280. #u13313 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:407px;
  2284. top:35px;
  2285. width:106px;
  2286. height:44px;
  2287. display:flex;
  2288. transition:none;
  2289. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:12px;
  2293. color:#333333;
  2294. line-height:40px;
  2295. }
  2296. #u13313 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:2px 2px 2px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u13313_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:106px;
  2309. height:44px;
  2310. }
  2311. #u13313_text {
  2312. border-width:0px;
  2313. word-wrap:break-word;
  2314. text-transform:none;
  2315. visibility:hidden;
  2316. }
  2317. #u13314 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:514px;
  2321. top:35px;
  2322. width:73px;
  2323. height:44px;
  2324. display:flex;
  2325. transition:none;
  2326. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:12px;
  2330. color:#333333;
  2331. line-height:40px;
  2332. }
  2333. #u13314 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u13314_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:73px;
  2346. height:44px;
  2347. }
  2348. #u13314_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. visibility:hidden;
  2353. }
  2354. #u13315 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:587px;
  2358. top:35px;
  2359. width:102px;
  2360. height:44px;
  2361. display:flex;
  2362. transition:none;
  2363. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. color:#333333;
  2368. line-height:40px;
  2369. }
  2370. #u13315 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 0px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u13315_img {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:102px;
  2383. height:44px;
  2384. }
  2385. #u13315_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. visibility:hidden;
  2390. }
  2391. #u13316 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:689px;
  2395. top:35px;
  2396. width:101px;
  2397. height:44px;
  2398. display:flex;
  2399. transition:none;
  2400. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:12px;
  2404. color:#333333;
  2405. line-height:40px;
  2406. }
  2407. #u13316 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 2px 2px 0px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u13316_img {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:101px;
  2420. height:44px;
  2421. }
  2422. #u13316_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u13317 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:790px;
  2432. top:35px;
  2433. width:101px;
  2434. height:44px;
  2435. display:flex;
  2436. transition:none;
  2437. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2438. font-weight:400;
  2439. font-style:normal;
  2440. font-size:12px;
  2441. color:#333333;
  2442. line-height:40px;
  2443. }
  2444. #u13317 .text {
  2445. position:absolute;
  2446. align-self:center;
  2447. padding:2px 2px 2px 0px;
  2448. box-sizing:border-box;
  2449. width:100%;
  2450. }
  2451. #u13317_img {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:101px;
  2457. height:44px;
  2458. }
  2459. #u13317_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. visibility:hidden;
  2464. }
  2465. #u13318 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:892px;
  2469. top:35px;
  2470. width:101px;
  2471. height:44px;
  2472. display:flex;
  2473. transition:none;
  2474. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:12px;
  2478. color:#333333;
  2479. line-height:40px;
  2480. }
  2481. #u13318 .text {
  2482. position:absolute;
  2483. align-self:center;
  2484. padding:2px 2px 2px 0px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u13318_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:101px;
  2494. height:44px;
  2495. }
  2496. #u13318_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. visibility:hidden;
  2501. }
  2502. #u13319 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:993px;
  2506. top:35px;
  2507. width:101px;
  2508. height:44px;
  2509. display:flex;
  2510. transition:none;
  2511. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:12px;
  2515. color:#333333;
  2516. line-height:40px;
  2517. }
  2518. #u13319 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 0px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u13319_img {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:101px;
  2531. height:44px;
  2532. }
  2533. #u13319_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. visibility:hidden;
  2538. }
  2539. #u13320 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:1094px;
  2543. top:35px;
  2544. width:122px;
  2545. height:44px;
  2546. display:flex;
  2547. transition:none;
  2548. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:12px;
  2552. color:#298FFF;
  2553. line-height:35px;
  2554. }
  2555. #u13320 .text {
  2556. position:absolute;
  2557. align-self:center;
  2558. padding:2px 2px 2px 0px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u13320_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:122px;
  2568. height:44px;
  2569. }
  2570. #u13320_text {
  2571. border-width:0px;
  2572. word-wrap:break-word;
  2573. text-transform:none;
  2574. }
  2575. #u13321 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:79px;
  2580. width:103px;
  2581. height:44px;
  2582. display:flex;
  2583. transition:none;
  2584. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. color:#333333;
  2589. line-height:40px;
  2590. }
  2591. #u13321 .text {
  2592. position:absolute;
  2593. align-self:center;
  2594. padding:2px 2px 2px 0px;
  2595. box-sizing:border-box;
  2596. width:100%;
  2597. }
  2598. #u13321_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:103px;
  2604. height:44px;
  2605. }
  2606. #u13321_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. visibility:hidden;
  2611. }
  2612. #u13322 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:103px;
  2616. top:79px;
  2617. width:102px;
  2618. height:44px;
  2619. display:flex;
  2620. transition:none;
  2621. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:12px;
  2625. color:#333333;
  2626. line-height:40px;
  2627. }
  2628. #u13322 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:2px 2px 2px 0px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u13322_img {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:102px;
  2641. height:44px;
  2642. }
  2643. #u13322_text {
  2644. border-width:0px;
  2645. word-wrap:break-word;
  2646. text-transform:none;
  2647. visibility:hidden;
  2648. }
  2649. #u13323 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:205px;
  2653. top:79px;
  2654. width:101px;
  2655. height:44px;
  2656. display:flex;
  2657. transition:none;
  2658. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:12px;
  2662. color:#333333;
  2663. line-height:40px;
  2664. }
  2665. #u13323 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 0px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u13323_img {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:101px;
  2678. height:44px;
  2679. }
  2680. #u13323_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u13324 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:306px;
  2690. top:79px;
  2691. width:101px;
  2692. height:44px;
  2693. display:flex;
  2694. transition:none;
  2695. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. font-size:12px;
  2699. color:#333333;
  2700. line-height:40px;
  2701. }
  2702. #u13324 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u13324_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:101px;
  2715. height:44px;
  2716. }
  2717. #u13324_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u13325 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:407px;
  2727. top:79px;
  2728. width:106px;
  2729. height:44px;
  2730. display:flex;
  2731. transition:none;
  2732. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:12px;
  2736. color:#333333;
  2737. line-height:40px;
  2738. }
  2739. #u13325 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:2px 2px 2px 0px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u13325_img {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:106px;
  2752. height:44px;
  2753. }
  2754. #u13325_text {
  2755. border-width:0px;
  2756. word-wrap:break-word;
  2757. text-transform:none;
  2758. visibility:hidden;
  2759. }
  2760. #u13326 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:514px;
  2764. top:79px;
  2765. width:73px;
  2766. height:44px;
  2767. display:flex;
  2768. transition:none;
  2769. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:12px;
  2773. color:#333333;
  2774. line-height:40px;
  2775. }
  2776. #u13326 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u13326_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:73px;
  2789. height:44px;
  2790. }
  2791. #u13326_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u13327 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:587px;
  2801. top:79px;
  2802. width:102px;
  2803. height:44px;
  2804. display:flex;
  2805. transition:none;
  2806. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:12px;
  2810. color:#333333;
  2811. line-height:40px;
  2812. }
  2813. #u13327 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u13327_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:102px;
  2826. height:44px;
  2827. }
  2828. #u13327_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u13328 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:689px;
  2838. top:79px;
  2839. width:101px;
  2840. height:44px;
  2841. display:flex;
  2842. transition:none;
  2843. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:12px;
  2847. color:#333333;
  2848. line-height:40px;
  2849. }
  2850. #u13328 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u13328_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:101px;
  2863. height:44px;
  2864. }
  2865. #u13328_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. visibility:hidden;
  2870. }
  2871. #u13329 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:790px;
  2875. top:79px;
  2876. width:101px;
  2877. height:44px;
  2878. display:flex;
  2879. transition:none;
  2880. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:12px;
  2884. color:#333333;
  2885. line-height:40px;
  2886. }
  2887. #u13329 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u13329_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:101px;
  2900. height:44px;
  2901. }
  2902. #u13329_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. visibility:hidden;
  2907. }
  2908. #u13330 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:892px;
  2912. top:79px;
  2913. width:101px;
  2914. height:44px;
  2915. display:flex;
  2916. transition:none;
  2917. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:12px;
  2921. color:#333333;
  2922. line-height:40px;
  2923. }
  2924. #u13330 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 0px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u13330_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:101px;
  2937. height:44px;
  2938. }
  2939. #u13330_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. visibility:hidden;
  2944. }
  2945. #u13331 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:993px;
  2949. top:79px;
  2950. width:101px;
  2951. height:44px;
  2952. display:flex;
  2953. transition:none;
  2954. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. color:#333333;
  2959. line-height:40px;
  2960. }
  2961. #u13331 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u13331_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:101px;
  2974. height:44px;
  2975. }
  2976. #u13331_text {
  2977. border-width:0px;
  2978. word-wrap:break-word;
  2979. text-transform:none;
  2980. visibility:hidden;
  2981. }
  2982. #u13332 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:1094px;
  2986. top:79px;
  2987. width:122px;
  2988. height:44px;
  2989. display:flex;
  2990. transition:none;
  2991. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:12px;
  2995. color:#298FFF;
  2996. line-height:35px;
  2997. }
  2998. #u13332 .text {
  2999. position:absolute;
  3000. align-self:center;
  3001. padding:2px 2px 2px 0px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u13332_img {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:122px;
  3011. height:44px;
  3012. }
  3013. #u13332_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u13333 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:123px;
  3024. width:103px;
  3025. height:38px;
  3026. display:flex;
  3027. transition:none;
  3028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:12px;
  3032. color:#606266;
  3033. }
  3034. #u13333 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:2px 2px 2px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u13333_img {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:103px;
  3047. height:38px;
  3048. }
  3049. #u13333_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u13334 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:103px;
  3059. top:123px;
  3060. width:102px;
  3061. height:38px;
  3062. display:flex;
  3063. transition:none;
  3064. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. color:#606266;
  3069. }
  3070. #u13334 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 0px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u13334_img {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:102px;
  3083. height:38px;
  3084. }
  3085. #u13334_text {
  3086. border-width:0px;
  3087. word-wrap:break-word;
  3088. text-transform:none;
  3089. visibility:hidden;
  3090. }
  3091. #u13335 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:205px;
  3095. top:123px;
  3096. width:101px;
  3097. height:38px;
  3098. display:flex;
  3099. transition:none;
  3100. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. font-size:12px;
  3104. color:#606266;
  3105. }
  3106. #u13335 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 0px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u13335_img {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:101px;
  3119. height:38px;
  3120. }
  3121. #u13335_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u13336 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:306px;
  3131. top:123px;
  3132. width:101px;
  3133. height:38px;
  3134. display:flex;
  3135. transition:none;
  3136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:12px;
  3140. color:#606266;
  3141. }
  3142. #u13336 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 0px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u13336_img {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:101px;
  3155. height:38px;
  3156. }
  3157. #u13336_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. visibility:hidden;
  3162. }
  3163. #u13337 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:407px;
  3167. top:123px;
  3168. width:106px;
  3169. height:38px;
  3170. display:flex;
  3171. transition:none;
  3172. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:12px;
  3176. color:#606266;
  3177. }
  3178. #u13337 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:2px 2px 2px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u13337_img {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:106px;
  3191. height:38px;
  3192. }
  3193. #u13337_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u13338 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:514px;
  3203. top:123px;
  3204. width:73px;
  3205. height:38px;
  3206. display:flex;
  3207. transition:none;
  3208. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:12px;
  3212. color:#606266;
  3213. }
  3214. #u13338 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 0px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u13338_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:73px;
  3227. height:38px;
  3228. }
  3229. #u13338_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. visibility:hidden;
  3234. }
  3235. #u13339 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:587px;
  3239. top:123px;
  3240. width:102px;
  3241. height:38px;
  3242. display:flex;
  3243. transition:none;
  3244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:12px;
  3248. color:#606266;
  3249. }
  3250. #u13339 .text {
  3251. position:absolute;
  3252. align-self:center;
  3253. padding:2px 2px 2px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u13339_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:102px;
  3263. height:38px;
  3264. }
  3265. #u13339_text {
  3266. border-width:0px;
  3267. word-wrap:break-word;
  3268. text-transform:none;
  3269. visibility:hidden;
  3270. }
  3271. #u13340 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:689px;
  3275. top:123px;
  3276. width:101px;
  3277. height:38px;
  3278. display:flex;
  3279. transition:none;
  3280. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:12px;
  3284. color:#606266;
  3285. }
  3286. #u13340 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 0px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u13340_img {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:101px;
  3299. height:38px;
  3300. }
  3301. #u13340_text {
  3302. border-width:0px;
  3303. word-wrap:break-word;
  3304. text-transform:none;
  3305. visibility:hidden;
  3306. }
  3307. #u13341 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:790px;
  3311. top:123px;
  3312. width:101px;
  3313. height:38px;
  3314. display:flex;
  3315. transition:none;
  3316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3317. font-weight:400;
  3318. font-style:normal;
  3319. font-size:12px;
  3320. color:#606266;
  3321. }
  3322. #u13341 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u13341_img {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:101px;
  3335. height:38px;
  3336. }
  3337. #u13341_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. visibility:hidden;
  3342. }
  3343. #u13342 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:892px;
  3347. top:123px;
  3348. width:101px;
  3349. height:38px;
  3350. display:flex;
  3351. transition:none;
  3352. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:12px;
  3356. color:#606266;
  3357. }
  3358. #u13342 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 2px 2px 0px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u13342_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:101px;
  3371. height:38px;
  3372. }
  3373. #u13342_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. visibility:hidden;
  3378. }
  3379. #u13343 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:993px;
  3383. top:123px;
  3384. width:101px;
  3385. height:38px;
  3386. display:flex;
  3387. transition:none;
  3388. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:12px;
  3392. color:#606266;
  3393. }
  3394. #u13343 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:2px 2px 2px 0px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u13343_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:101px;
  3407. height:38px;
  3408. }
  3409. #u13343_text {
  3410. border-width:0px;
  3411. word-wrap:break-word;
  3412. text-transform:none;
  3413. visibility:hidden;
  3414. }
  3415. #u13344 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:1094px;
  3419. top:123px;
  3420. width:122px;
  3421. height:38px;
  3422. display:flex;
  3423. transition:none;
  3424. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:12px;
  3428. color:#606266;
  3429. }
  3430. #u13344 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u13344_img {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:122px;
  3443. height:38px;
  3444. }
  3445. #u13344_text {
  3446. border-width:0px;
  3447. word-wrap:break-word;
  3448. text-transform:none;
  3449. visibility:hidden;
  3450. }
  3451. #u13345 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:161px;
  3456. width:103px;
  3457. height:38px;
  3458. display:flex;
  3459. transition:none;
  3460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:12px;
  3464. color:#606266;
  3465. }
  3466. #u13345 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:2px 2px 2px 0px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u13345_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:103px;
  3479. height:38px;
  3480. }
  3481. #u13345_text {
  3482. border-width:0px;
  3483. word-wrap:break-word;
  3484. text-transform:none;
  3485. visibility:hidden;
  3486. }
  3487. #u13346 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:103px;
  3491. top:161px;
  3492. width:102px;
  3493. height:38px;
  3494. display:flex;
  3495. transition:none;
  3496. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3497. font-weight:400;
  3498. font-style:normal;
  3499. font-size:12px;
  3500. color:#606266;
  3501. }
  3502. #u13346 .text {
  3503. position:absolute;
  3504. align-self:center;
  3505. padding:2px 2px 2px 0px;
  3506. box-sizing:border-box;
  3507. width:100%;
  3508. }
  3509. #u13346_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:102px;
  3515. height:38px;
  3516. }
  3517. #u13346_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u13347 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:205px;
  3527. top:161px;
  3528. width:101px;
  3529. height:38px;
  3530. display:flex;
  3531. transition:none;
  3532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:12px;
  3536. color:#606266;
  3537. }
  3538. #u13347 .text {
  3539. position:absolute;
  3540. align-self:center;
  3541. padding:2px 2px 2px 0px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u13347_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:101px;
  3551. height:38px;
  3552. }
  3553. #u13347_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u13348 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:306px;
  3563. top:161px;
  3564. width:101px;
  3565. height:38px;
  3566. display:flex;
  3567. transition:none;
  3568. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:12px;
  3572. color:#606266;
  3573. }
  3574. #u13348 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 0px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u13348_img {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:101px;
  3587. height:38px;
  3588. }
  3589. #u13348_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. visibility:hidden;
  3594. }
  3595. #u13349 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:407px;
  3599. top:161px;
  3600. width:106px;
  3601. height:38px;
  3602. display:flex;
  3603. transition:none;
  3604. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:12px;
  3608. color:#606266;
  3609. }
  3610. #u13349 .text {
  3611. position:absolute;
  3612. align-self:center;
  3613. padding:2px 2px 2px 0px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u13349_img {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:106px;
  3623. height:38px;
  3624. }
  3625. #u13349_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. visibility:hidden;
  3630. }
  3631. #u13350 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:514px;
  3635. top:161px;
  3636. width:73px;
  3637. height:38px;
  3638. display:flex;
  3639. transition:none;
  3640. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#606266;
  3645. }
  3646. #u13350 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u13350_img {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:73px;
  3659. height:38px;
  3660. }
  3661. #u13350_text {
  3662. border-width:0px;
  3663. word-wrap:break-word;
  3664. text-transform:none;
  3665. visibility:hidden;
  3666. }
  3667. #u13351 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:587px;
  3671. top:161px;
  3672. width:102px;
  3673. height:38px;
  3674. display:flex;
  3675. transition:none;
  3676. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3677. font-weight:400;
  3678. font-style:normal;
  3679. font-size:12px;
  3680. color:#606266;
  3681. }
  3682. #u13351 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:2px 2px 2px 0px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u13351_img {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:102px;
  3695. height:38px;
  3696. }
  3697. #u13351_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. visibility:hidden;
  3702. }
  3703. #u13352 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:689px;
  3707. top:161px;
  3708. width:101px;
  3709. height:38px;
  3710. display:flex;
  3711. transition:none;
  3712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:12px;
  3716. color:#606266;
  3717. }
  3718. #u13352 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:2px 2px 2px 0px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u13352_img {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:101px;
  3731. height:38px;
  3732. }
  3733. #u13352_text {
  3734. border-width:0px;
  3735. word-wrap:break-word;
  3736. text-transform:none;
  3737. visibility:hidden;
  3738. }
  3739. #u13353 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:790px;
  3743. top:161px;
  3744. width:101px;
  3745. height:38px;
  3746. display:flex;
  3747. transition:none;
  3748. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:12px;
  3752. color:#606266;
  3753. }
  3754. #u13353 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 2px 2px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u13353_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:101px;
  3767. height:38px;
  3768. }
  3769. #u13353_text {
  3770. border-width:0px;
  3771. word-wrap:break-word;
  3772. text-transform:none;
  3773. visibility:hidden;
  3774. }
  3775. #u13354 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:892px;
  3779. top:161px;
  3780. width:101px;
  3781. height:38px;
  3782. display:flex;
  3783. transition:none;
  3784. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:12px;
  3788. color:#606266;
  3789. }
  3790. #u13354 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u13354_img {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:101px;
  3803. height:38px;
  3804. }
  3805. #u13354_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u13355 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:993px;
  3815. top:161px;
  3816. width:101px;
  3817. height:38px;
  3818. display:flex;
  3819. transition:none;
  3820. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3821. font-weight:400;
  3822. font-style:normal;
  3823. font-size:12px;
  3824. color:#606266;
  3825. }
  3826. #u13355 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 0px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u13355_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:101px;
  3839. height:38px;
  3840. }
  3841. #u13355_text {
  3842. border-width:0px;
  3843. word-wrap:break-word;
  3844. text-transform:none;
  3845. visibility:hidden;
  3846. }
  3847. #u13356 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:1094px;
  3851. top:161px;
  3852. width:122px;
  3853. height:38px;
  3854. display:flex;
  3855. transition:none;
  3856. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3857. font-weight:400;
  3858. font-style:normal;
  3859. font-size:12px;
  3860. color:#606266;
  3861. }
  3862. #u13356 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:2px 2px 2px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u13356_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:122px;
  3875. height:38px;
  3876. }
  3877. #u13356_text {
  3878. border-width:0px;
  3879. word-wrap:break-word;
  3880. text-transform:none;
  3881. visibility:hidden;
  3882. }
  3883. #u13357 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:199px;
  3888. width:103px;
  3889. height:38px;
  3890. display:flex;
  3891. transition:none;
  3892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:12px;
  3896. color:#606266;
  3897. }
  3898. #u13357 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 0px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u13357_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:103px;
  3911. height:38px;
  3912. }
  3913. #u13357_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. visibility:hidden;
  3918. }
  3919. #u13358 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:103px;
  3923. top:199px;
  3924. width:102px;
  3925. height:38px;
  3926. display:flex;
  3927. transition:none;
  3928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:12px;
  3932. color:#606266;
  3933. }
  3934. #u13358 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 0px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u13358_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:102px;
  3947. height:38px;
  3948. }
  3949. #u13358_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u13359 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:205px;
  3959. top:199px;
  3960. width:101px;
  3961. height:38px;
  3962. display:flex;
  3963. transition:none;
  3964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:12px;
  3968. color:#606266;
  3969. }
  3970. #u13359 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 0px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u13359_img {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:101px;
  3983. height:38px;
  3984. }
  3985. #u13359_text {
  3986. border-width:0px;
  3987. word-wrap:break-word;
  3988. text-transform:none;
  3989. visibility:hidden;
  3990. }
  3991. #u13360 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:306px;
  3995. top:199px;
  3996. width:101px;
  3997. height:38px;
  3998. display:flex;
  3999. transition:none;
  4000. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:12px;
  4004. color:#606266;
  4005. }
  4006. #u13360 .text {
  4007. position:absolute;
  4008. align-self:center;
  4009. padding:2px 2px 2px 0px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u13360_img {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:101px;
  4019. height:38px;
  4020. }
  4021. #u13360_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u13361 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:407px;
  4031. top:199px;
  4032. width:106px;
  4033. height:38px;
  4034. display:flex;
  4035. transition:none;
  4036. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. color:#606266;
  4041. }
  4042. #u13361 .text {
  4043. position:absolute;
  4044. align-self:center;
  4045. padding:2px 2px 2px 0px;
  4046. box-sizing:border-box;
  4047. width:100%;
  4048. }
  4049. #u13361_img {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:106px;
  4055. height:38px;
  4056. }
  4057. #u13361_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u13362 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:514px;
  4067. top:199px;
  4068. width:73px;
  4069. height:38px;
  4070. display:flex;
  4071. transition:none;
  4072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. color:#606266;
  4077. }
  4078. #u13362 .text {
  4079. position:absolute;
  4080. align-self:center;
  4081. padding:2px 2px 2px 0px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u13362_img {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:73px;
  4091. height:38px;
  4092. }
  4093. #u13362_text {
  4094. border-width:0px;
  4095. word-wrap:break-word;
  4096. text-transform:none;
  4097. visibility:hidden;
  4098. }
  4099. #u13363 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:587px;
  4103. top:199px;
  4104. width:102px;
  4105. height:38px;
  4106. display:flex;
  4107. transition:none;
  4108. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:12px;
  4112. color:#606266;
  4113. }
  4114. #u13363 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 0px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u13363_img {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:102px;
  4127. height:38px;
  4128. }
  4129. #u13363_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u13364 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:689px;
  4139. top:199px;
  4140. width:101px;
  4141. height:38px;
  4142. display:flex;
  4143. transition:none;
  4144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:12px;
  4148. color:#606266;
  4149. }
  4150. #u13364 .text {
  4151. position:absolute;
  4152. align-self:center;
  4153. padding:2px 2px 2px 0px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u13364_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:101px;
  4163. height:38px;
  4164. }
  4165. #u13364_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u13365 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:790px;
  4175. top:199px;
  4176. width:101px;
  4177. height:38px;
  4178. display:flex;
  4179. transition:none;
  4180. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:12px;
  4184. color:#606266;
  4185. }
  4186. #u13365 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 0px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u13365_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:101px;
  4199. height:38px;
  4200. }
  4201. #u13365_text {
  4202. border-width:0px;
  4203. word-wrap:break-word;
  4204. text-transform:none;
  4205. visibility:hidden;
  4206. }
  4207. #u13366 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:892px;
  4211. top:199px;
  4212. width:101px;
  4213. height:38px;
  4214. display:flex;
  4215. transition:none;
  4216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:12px;
  4220. color:#606266;
  4221. }
  4222. #u13366 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 0px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u13366_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:101px;
  4235. height:38px;
  4236. }
  4237. #u13366_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. visibility:hidden;
  4242. }
  4243. #u13367 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:993px;
  4247. top:199px;
  4248. width:101px;
  4249. height:38px;
  4250. display:flex;
  4251. transition:none;
  4252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:12px;
  4256. color:#606266;
  4257. }
  4258. #u13367 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u13367_img {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:101px;
  4271. height:38px;
  4272. }
  4273. #u13367_text {
  4274. border-width:0px;
  4275. word-wrap:break-word;
  4276. text-transform:none;
  4277. visibility:hidden;
  4278. }
  4279. #u13368 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:1094px;
  4283. top:199px;
  4284. width:122px;
  4285. height:38px;
  4286. display:flex;
  4287. transition:none;
  4288. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:12px;
  4292. color:#606266;
  4293. }
  4294. #u13368 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 0px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u13368_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:122px;
  4307. height:38px;
  4308. }
  4309. #u13368_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u13369 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:237px;
  4320. width:103px;
  4321. height:38px;
  4322. display:flex;
  4323. transition:none;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u13369 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u13369_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:103px;
  4343. height:38px;
  4344. }
  4345. #u13369_text {
  4346. border-width:0px;
  4347. word-wrap:break-word;
  4348. text-transform:none;
  4349. visibility:hidden;
  4350. }
  4351. #u13370 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:103px;
  4355. top:237px;
  4356. width:102px;
  4357. height:38px;
  4358. display:flex;
  4359. transition:none;
  4360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:12px;
  4364. color:#606266;
  4365. }
  4366. #u13370 .text {
  4367. position:absolute;
  4368. align-self:center;
  4369. padding:2px 2px 2px 0px;
  4370. box-sizing:border-box;
  4371. width:100%;
  4372. }
  4373. #u13370_img {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:102px;
  4379. height:38px;
  4380. }
  4381. #u13370_text {
  4382. border-width:0px;
  4383. word-wrap:break-word;
  4384. text-transform:none;
  4385. visibility:hidden;
  4386. }
  4387. #u13371 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:205px;
  4391. top:237px;
  4392. width:101px;
  4393. height:38px;
  4394. display:flex;
  4395. transition:none;
  4396. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4397. font-weight:400;
  4398. font-style:normal;
  4399. font-size:12px;
  4400. color:#606266;
  4401. }
  4402. #u13371 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u13371_img {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:101px;
  4415. height:38px;
  4416. }
  4417. #u13371_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. visibility:hidden;
  4422. }
  4423. #u13372 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:306px;
  4427. top:237px;
  4428. width:101px;
  4429. height:38px;
  4430. display:flex;
  4431. transition:none;
  4432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. color:#606266;
  4437. }
  4438. #u13372 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u13372_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:101px;
  4451. height:38px;
  4452. }
  4453. #u13372_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. visibility:hidden;
  4458. }
  4459. #u13373 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:407px;
  4463. top:237px;
  4464. width:106px;
  4465. height:38px;
  4466. display:flex;
  4467. transition:none;
  4468. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:12px;
  4472. color:#606266;
  4473. }
  4474. #u13373 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:2px 2px 2px 0px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u13373_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:106px;
  4487. height:38px;
  4488. }
  4489. #u13373_text {
  4490. border-width:0px;
  4491. word-wrap:break-word;
  4492. text-transform:none;
  4493. visibility:hidden;
  4494. }
  4495. #u13374 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:514px;
  4499. top:237px;
  4500. width:73px;
  4501. height:38px;
  4502. display:flex;
  4503. transition:none;
  4504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:12px;
  4508. color:#606266;
  4509. }
  4510. #u13374 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 2px 2px 0px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u13374_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:73px;
  4523. height:38px;
  4524. }
  4525. #u13374_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u13375 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:587px;
  4535. top:237px;
  4536. width:102px;
  4537. height:38px;
  4538. display:flex;
  4539. transition:none;
  4540. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:12px;
  4544. color:#606266;
  4545. }
  4546. #u13375 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 0px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u13375_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:102px;
  4559. height:38px;
  4560. }
  4561. #u13375_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. visibility:hidden;
  4566. }
  4567. #u13376 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:689px;
  4571. top:237px;
  4572. width:101px;
  4573. height:38px;
  4574. display:flex;
  4575. transition:none;
  4576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:12px;
  4580. color:#606266;
  4581. }
  4582. #u13376 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:2px 2px 2px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u13376_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:101px;
  4595. height:38px;
  4596. }
  4597. #u13376_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. visibility:hidden;
  4602. }
  4603. #u13377 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:790px;
  4607. top:237px;
  4608. width:101px;
  4609. height:38px;
  4610. display:flex;
  4611. transition:none;
  4612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:12px;
  4616. color:#606266;
  4617. }
  4618. #u13377 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:2px 2px 2px 0px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u13377_img {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:101px;
  4631. height:38px;
  4632. }
  4633. #u13377_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. visibility:hidden;
  4638. }
  4639. #u13378 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:892px;
  4643. top:237px;
  4644. width:101px;
  4645. height:38px;
  4646. display:flex;
  4647. transition:none;
  4648. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:12px;
  4652. color:#606266;
  4653. }
  4654. #u13378 .text {
  4655. position:absolute;
  4656. align-self:center;
  4657. padding:2px 2px 2px 0px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u13378_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:101px;
  4667. height:38px;
  4668. }
  4669. #u13378_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u13379 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:993px;
  4679. top:237px;
  4680. width:101px;
  4681. height:38px;
  4682. display:flex;
  4683. transition:none;
  4684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:12px;
  4688. color:#606266;
  4689. }
  4690. #u13379 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:2px 2px 2px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u13379_img {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:101px;
  4703. height:38px;
  4704. }
  4705. #u13379_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. visibility:hidden;
  4710. }
  4711. #u13380 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:1094px;
  4715. top:237px;
  4716. width:122px;
  4717. height:38px;
  4718. display:flex;
  4719. transition:none;
  4720. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:12px;
  4724. color:#606266;
  4725. }
  4726. #u13380 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 2px 2px 0px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u13380_img {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:122px;
  4739. height:38px;
  4740. }
  4741. #u13380_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u13381_div {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:210px;
  4753. height:50px;
  4754. background:inherit;
  4755. background-color:rgba(255, 255, 255, 0);
  4756. border-left:0px;
  4757. border-top:0px;
  4758. border-right:0px;
  4759. border-radius:0px;
  4760. border-bottom-right-radius:0px;
  4761. border-bottom-left-radius:0px;
  4762. filter:drop-shadow(none);
  4763. transition:none;
  4764. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:18px;
  4768. }
  4769. #u13381 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:350px;
  4773. top:50px;
  4774. width:210px;
  4775. height:50px;
  4776. display:flex;
  4777. transition:none;
  4778. transform-origin:50% 50%;
  4779. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:18px;
  4783. }
  4784. #u13381 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:0px 0px 0px 0px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u13381_text {
  4792. border-width:0px;
  4793. white-space:nowrap;
  4794. text-transform:none;
  4795. }
  4796. #u13382 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:0px;
  4802. height:0px;
  4803. }
  4804. #u13383_div {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:140px;
  4810. height:30px;
  4811. background:inherit;
  4812. background-color:rgba(255, 255, 255, 1);
  4813. box-sizing:border-box;
  4814. border-width:1px;
  4815. border-style:solid;
  4816. border-color:rgba(215, 215, 215, 1);
  4817. border-radius:4px;
  4818. filter:drop-shadow(none);
  4819. transition:none;
  4820. font-size:14px;
  4821. }
  4822. #u13383 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:1244px;
  4826. top:160px;
  4827. width:140px;
  4828. height:30px;
  4829. display:flex;
  4830. transition:none;
  4831. transform-origin:50% 50%;
  4832. font-size:14px;
  4833. }
  4834. #u13383 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 2px 2px 2px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u13383_text {
  4842. border-width:0px;
  4843. word-wrap:break-word;
  4844. text-transform:none;
  4845. visibility:hidden;
  4846. }
  4847. #u13384_input {
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:134px;
  4852. height:23px;
  4853. padding:2px 2px 2px 2px;
  4854. font-family:"ArialMT", "Arial", sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:14px;
  4858. letter-spacing:normal;
  4859. color:#AAAAAA;
  4860. vertical-align:none;
  4861. text-align:left;
  4862. text-transform:none;
  4863. background-color:transparent;
  4864. border-color:transparent;
  4865. }
  4866. #u13384_input.disabled {
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:134px;
  4871. height:23px;
  4872. padding:2px 2px 2px 2px;
  4873. font-family:"ArialMT", "Arial", sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. letter-spacing:normal;
  4878. color:#AAAAAA;
  4879. vertical-align:none;
  4880. text-align:left;
  4881. text-transform:none;
  4882. background-color:transparent;
  4883. border-color:transparent;
  4884. }
  4885. #u13384_div {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:134px;
  4891. height:23px;
  4892. background:inherit;
  4893. background-color:rgba(255, 255, 255, 1);
  4894. border-radius:0px;
  4895. filter:drop-shadow(none);
  4896. transition:none;
  4897. font-size:14px;
  4898. color:#AAAAAA;
  4899. }
  4900. #u13384 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:1248px;
  4904. top:162px;
  4905. width:134px;
  4906. height:23px;
  4907. display:flex;
  4908. transition:none;
  4909. transform-origin:50% 50%;
  4910. font-size:14px;
  4911. color:#AAAAAA;
  4912. }
  4913. #u13384 .text {
  4914. position:absolute;
  4915. align-self:flex-start;
  4916. padding:2px 2px 2px 2px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u13384_div.disabled {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:134px;
  4926. height:23px;
  4927. background:inherit;
  4928. background-color:rgba(240, 240, 240, 1);
  4929. border-radius:0px;
  4930. filter:drop-shadow(none);
  4931. transition:none;
  4932. font-size:14px;
  4933. color:#AAAAAA;
  4934. }
  4935. #u13384.disabled {
  4936. }
  4937. .u13384_input_option {
  4938. font-size:14px;
  4939. }
  4940. #u13385_div {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:60px;
  4946. height:30px;
  4947. background:inherit;
  4948. background-color:rgba(255, 255, 255, 1);
  4949. box-sizing:border-box;
  4950. border-width:1px;
  4951. border-style:solid;
  4952. border-color:rgba(170, 170, 170, 1);
  4953. border-radius:4px;
  4954. filter:drop-shadow(none);
  4955. transition:none;
  4956. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. font-size:14px;
  4960. }
  4961. #u13385 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:1508px;
  4965. top:60px;
  4966. width:60px;
  4967. height:30px;
  4968. display:flex;
  4969. transition:none;
  4970. transform-origin:50% 50%;
  4971. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:14px;
  4975. }
  4976. #u13385 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:2px 2px 2px 2px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u13385_text {
  4984. border-width:0px;
  4985. word-wrap:break-word;
  4986. text-transform:none;
  4987. }
  4988. #u13386_div {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:547px;
  4994. height:20px;
  4995. background:inherit;
  4996. background-color:rgba(255, 255, 255, 0);
  4997. border-left:0px;
  4998. border-top:0px;
  4999. border-right:0px;
  5000. border-radius:0px;
  5001. border-bottom-right-radius:0px;
  5002. border-bottom-left-radius:0px;
  5003. filter:drop-shadow(none);
  5004. transition:none;
  5005. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:14px;
  5009. color:#7F7F7F;
  5010. }
  5011. #u13386 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:352px;
  5015. top:110px;
  5016. width:547px;
  5017. height:20px;
  5018. display:flex;
  5019. transition:none;
  5020. transform-origin:50% 50%;
  5021. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:14px;
  5025. color:#7F7F7F;
  5026. }
  5027. #u13386 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:0px 0px 0px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u13386_text {
  5035. border-width:0px;
  5036. white-space:nowrap;
  5037. text-transform:none;
  5038. }
  5039. #u13387 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:0px;
  5045. height:0px;
  5046. }
  5047. #u13388_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:140px;
  5053. height:30px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 1);
  5056. box-sizing:border-box;
  5057. border-width:1px;
  5058. border-style:solid;
  5059. border-color:rgba(215, 215, 215, 1);
  5060. border-radius:4px;
  5061. filter:drop-shadow(none);
  5062. transition:none;
  5063. font-size:14px;
  5064. }
  5065. #u13388 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:1100px;
  5069. top:160px;
  5070. width:140px;
  5071. height:30px;
  5072. display:flex;
  5073. transition:none;
  5074. transform-origin:50% 50%;
  5075. font-size:14px;
  5076. }
  5077. #u13388 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 2px 2px 2px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u13388_text {
  5085. border-width:0px;
  5086. word-wrap:break-word;
  5087. text-transform:none;
  5088. visibility:hidden;
  5089. }
  5090. #u13389_input {
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:134px;
  5095. height:23px;
  5096. padding:2px 2px 2px 2px;
  5097. font-family:"ArialMT", "Arial", sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:14px;
  5101. letter-spacing:normal;
  5102. color:#AAAAAA;
  5103. vertical-align:none;
  5104. text-align:left;
  5105. text-transform:none;
  5106. background-color:transparent;
  5107. border-color:transparent;
  5108. }
  5109. #u13389_input.disabled {
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:134px;
  5114. height:23px;
  5115. padding:2px 2px 2px 2px;
  5116. font-family:"ArialMT", "Arial", sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:14px;
  5120. letter-spacing:normal;
  5121. color:#AAAAAA;
  5122. vertical-align:none;
  5123. text-align:left;
  5124. text-transform:none;
  5125. background-color:transparent;
  5126. border-color:transparent;
  5127. }
  5128. #u13389_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:134px;
  5134. height:23px;
  5135. background:inherit;
  5136. background-color:rgba(255, 255, 255, 1);
  5137. border-radius:0px;
  5138. filter:drop-shadow(none);
  5139. transition:none;
  5140. font-size:14px;
  5141. color:#AAAAAA;
  5142. }
  5143. #u13389 {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:1104px;
  5147. top:162px;
  5148. width:134px;
  5149. height:23px;
  5150. display:flex;
  5151. transition:none;
  5152. transform-origin:50% 50%;
  5153. font-size:14px;
  5154. color:#AAAAAA;
  5155. }
  5156. #u13389 .text {
  5157. position:absolute;
  5158. align-self:flex-start;
  5159. padding:2px 2px 2px 2px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u13389_div.disabled {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:134px;
  5169. height:23px;
  5170. background:inherit;
  5171. background-color:rgba(240, 240, 240, 1);
  5172. border-radius:0px;
  5173. filter:drop-shadow(none);
  5174. transition:none;
  5175. font-size:14px;
  5176. color:#AAAAAA;
  5177. }
  5178. #u13389.disabled {
  5179. }
  5180. .u13389_input_option {
  5181. font-size:14px;
  5182. }
  5183. #u13390 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:0px;
  5189. height:0px;
  5190. }
  5191. #u13391_div {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:140px;
  5197. height:30px;
  5198. background:inherit;
  5199. background-color:rgba(255, 255, 255, 1);
  5200. box-sizing:border-box;
  5201. border-width:1px;
  5202. border-style:solid;
  5203. border-color:rgba(201, 201, 201, 1);
  5204. border-radius:4px;
  5205. filter:drop-shadow(none);
  5206. transition:none;
  5207. font-family:"Microsoft YaHei", sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:14px;
  5211. color:#CCCCCC;
  5212. text-align:left;
  5213. }
  5214. #u13391 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:802px;
  5218. top:160px;
  5219. width:140px;
  5220. height:30px;
  5221. display:flex;
  5222. transition:none;
  5223. transform-origin:50% 50%;
  5224. font-family:"Microsoft YaHei", sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:14px;
  5228. color:#CCCCCC;
  5229. text-align:left;
  5230. }
  5231. #u13391 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 8px 2px 8px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u13391_text {
  5239. border-width:0px;
  5240. word-wrap:break-word;
  5241. text-transform:none;
  5242. visibility:hidden;
  5243. }
  5244. #u13392_input {
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:127px;
  5249. height:25px;
  5250. padding:2px 2px 2px 2px;
  5251. font-family:"Microsoft YaHei", sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:10px;
  5255. letter-spacing:normal;
  5256. color:#000000;
  5257. vertical-align:none;
  5258. text-align:left;
  5259. text-transform:none;
  5260. background-color:transparent;
  5261. border-color:transparent;
  5262. }
  5263. #u13392_input.hint {
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:127px;
  5268. height:25px;
  5269. padding:2px 2px 2px 2px;
  5270. font-family:"Microsoft YaHei", sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:12px;
  5274. letter-spacing:normal;
  5275. color:#AAAAAA;
  5276. vertical-align:none;
  5277. text-align:left;
  5278. text-transform:none;
  5279. background-color:transparent;
  5280. border-color:transparent;
  5281. }
  5282. #u13392_input.disabled {
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:127px;
  5287. height:25px;
  5288. padding:2px 2px 2px 2px;
  5289. font-family:"Microsoft YaHei", sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:10px;
  5293. letter-spacing:normal;
  5294. color:#000000;
  5295. vertical-align:none;
  5296. text-align:left;
  5297. text-transform:none;
  5298. background-color:transparent;
  5299. border-color:transparent;
  5300. }
  5301. #u13392_input.hint.disabled {
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:127px;
  5306. height:25px;
  5307. padding:2px 2px 2px 2px;
  5308. font-family:"Microsoft YaHei", sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. font-size:12px;
  5312. letter-spacing:normal;
  5313. color:#AAAAAA;
  5314. vertical-align:none;
  5315. text-align:left;
  5316. text-transform:none;
  5317. background-color:transparent;
  5318. border-color:transparent;
  5319. }
  5320. #u13392_div {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:127px;
  5326. height:25px;
  5327. background:inherit;
  5328. background-color:rgba(255, 255, 255, 1);
  5329. border-radius:0px;
  5330. filter:drop-shadow(none);
  5331. transition:none;
  5332. font-family:"Microsoft YaHei", sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:10px;
  5336. }
  5337. #u13392 {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:810px;
  5341. top:161px;
  5342. width:127px;
  5343. height:25px;
  5344. display:flex;
  5345. transition:none;
  5346. transform-origin:50% 50%;
  5347. font-family:"Microsoft YaHei", sans-serif;
  5348. font-weight:400;
  5349. font-style:normal;
  5350. font-size:10px;
  5351. }
  5352. #u13392 .text {
  5353. position:absolute;
  5354. align-self:center;
  5355. padding:2px 2px 2px 2px;
  5356. box-sizing:border-box;
  5357. width:100%;
  5358. }
  5359. #u13392_div.hint {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:127px;
  5365. height:25px;
  5366. background:inherit;
  5367. background-color:rgba(255, 255, 255, 1);
  5368. border-radius:0px;
  5369. filter:drop-shadow(none);
  5370. transition:none;
  5371. font-family:"Microsoft YaHei", sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:10px;
  5375. }
  5376. #u13392.hint {
  5377. }
  5378. #u13392_div.disabled {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:127px;
  5384. height:25px;
  5385. background:inherit;
  5386. background-color:rgba(240, 240, 240, 1);
  5387. border-radius:0px;
  5388. filter:drop-shadow(none);
  5389. transition:none;
  5390. font-family:"Microsoft YaHei", sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. font-size:10px;
  5394. }
  5395. #u13392.disabled {
  5396. }
  5397. #u13392_div.hint.disabled {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:127px;
  5403. height:25px;
  5404. background:inherit;
  5405. background-color:rgba(240, 240, 240, 1);
  5406. border-radius:0px;
  5407. filter:drop-shadow(none);
  5408. transition:none;
  5409. font-family:"Microsoft YaHei", sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:10px;
  5413. }
  5414. #u13392.hint.disabled {
  5415. }
  5416. #u13393 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:0px;
  5422. height:0px;
  5423. }
  5424. #u13394_div {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:140px;
  5430. height:30px;
  5431. background:inherit;
  5432. background-color:rgba(255, 255, 255, 1);
  5433. box-sizing:border-box;
  5434. border-width:1px;
  5435. border-style:solid;
  5436. border-color:rgba(201, 201, 201, 1);
  5437. border-radius:4px;
  5438. filter:drop-shadow(none);
  5439. transition:none;
  5440. font-family:"Microsoft YaHei", sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:14px;
  5444. color:#CCCCCC;
  5445. text-align:left;
  5446. }
  5447. #u13394 {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:952px;
  5451. top:160px;
  5452. width:140px;
  5453. height:30px;
  5454. display:flex;
  5455. transition:none;
  5456. transform-origin:50% 50%;
  5457. font-family:"Microsoft YaHei", sans-serif;
  5458. font-weight:400;
  5459. font-style:normal;
  5460. font-size:14px;
  5461. color:#CCCCCC;
  5462. text-align:left;
  5463. }
  5464. #u13394 .text {
  5465. position:absolute;
  5466. align-self:center;
  5467. padding:2px 8px 2px 8px;
  5468. box-sizing:border-box;
  5469. width:100%;
  5470. }
  5471. #u13394_text {
  5472. border-width:0px;
  5473. word-wrap:break-word;
  5474. text-transform:none;
  5475. visibility:hidden;
  5476. }
  5477. #u13395_input {
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:127px;
  5482. height:25px;
  5483. padding:2px 2px 2px 2px;
  5484. font-family:"Microsoft YaHei", sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:10px;
  5488. letter-spacing:normal;
  5489. color:#000000;
  5490. vertical-align:none;
  5491. text-align:left;
  5492. text-transform:none;
  5493. background-color:transparent;
  5494. border-color:transparent;
  5495. }
  5496. #u13395_input.hint {
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:127px;
  5501. height:25px;
  5502. padding:2px 2px 2px 2px;
  5503. font-family:"Microsoft YaHei", sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:12px;
  5507. letter-spacing:normal;
  5508. color:#AAAAAA;
  5509. vertical-align:none;
  5510. text-align:left;
  5511. text-transform:none;
  5512. background-color:transparent;
  5513. border-color:transparent;
  5514. }
  5515. #u13395_input.disabled {
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:127px;
  5520. height:25px;
  5521. padding:2px 2px 2px 2px;
  5522. font-family:"Microsoft YaHei", sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:10px;
  5526. letter-spacing:normal;
  5527. color:#000000;
  5528. vertical-align:none;
  5529. text-align:left;
  5530. text-transform:none;
  5531. background-color:transparent;
  5532. border-color:transparent;
  5533. }
  5534. #u13395_input.hint.disabled {
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:127px;
  5539. height:25px;
  5540. padding:2px 2px 2px 2px;
  5541. font-family:"Microsoft YaHei", sans-serif;
  5542. font-weight:400;
  5543. font-style:normal;
  5544. font-size:12px;
  5545. letter-spacing:normal;
  5546. color:#AAAAAA;
  5547. vertical-align:none;
  5548. text-align:left;
  5549. text-transform:none;
  5550. background-color:transparent;
  5551. border-color:transparent;
  5552. }
  5553. #u13395_div {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:127px;
  5559. height:25px;
  5560. background:inherit;
  5561. background-color:rgba(255, 255, 255, 1);
  5562. border-radius:0px;
  5563. filter:drop-shadow(none);
  5564. transition:none;
  5565. font-family:"Microsoft YaHei", sans-serif;
  5566. font-weight:400;
  5567. font-style:normal;
  5568. font-size:10px;
  5569. }
  5570. #u13395 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:960px;
  5574. top:161px;
  5575. width:127px;
  5576. height:25px;
  5577. display:flex;
  5578. transition:none;
  5579. transform-origin:50% 50%;
  5580. font-family:"Microsoft YaHei", sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:10px;
  5584. }
  5585. #u13395 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:2px 2px 2px 2px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u13395_div.hint {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:127px;
  5598. height:25px;
  5599. background:inherit;
  5600. background-color:rgba(255, 255, 255, 1);
  5601. border-radius:0px;
  5602. filter:drop-shadow(none);
  5603. transition:none;
  5604. font-family:"Microsoft YaHei", sans-serif;
  5605. font-weight:400;
  5606. font-style:normal;
  5607. font-size:10px;
  5608. }
  5609. #u13395.hint {
  5610. }
  5611. #u13395_div.disabled {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:127px;
  5617. height:25px;
  5618. background:inherit;
  5619. background-color:rgba(240, 240, 240, 1);
  5620. border-radius:0px;
  5621. filter:drop-shadow(none);
  5622. transition:none;
  5623. font-family:"Microsoft YaHei", sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:10px;
  5627. }
  5628. #u13395.disabled {
  5629. }
  5630. #u13395_div.hint.disabled {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:127px;
  5636. height:25px;
  5637. background:inherit;
  5638. background-color:rgba(240, 240, 240, 1);
  5639. border-radius:0px;
  5640. filter:drop-shadow(none);
  5641. transition:none;
  5642. font-family:"Microsoft YaHei", sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:10px;
  5646. }
  5647. #u13395.hint.disabled {
  5648. }
  5649. #u13396 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:0px;
  5655. height:0px;
  5656. }
  5657. #u13397_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:140px;
  5663. height:30px;
  5664. background:inherit;
  5665. background-color:rgba(255, 255, 255, 1);
  5666. box-sizing:border-box;
  5667. border-width:1px;
  5668. border-style:solid;
  5669. border-color:rgba(215, 215, 215, 1);
  5670. border-radius:4px;
  5671. filter:drop-shadow(none);
  5672. transition:none;
  5673. font-size:14px;
  5674. }
  5675. #u13397 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:502px;
  5679. top:160px;
  5680. width:140px;
  5681. height:30px;
  5682. display:flex;
  5683. transition:none;
  5684. transform-origin:50% 50%;
  5685. font-size:14px;
  5686. }
  5687. #u13397 .text {
  5688. position:absolute;
  5689. align-self:center;
  5690. padding:2px 2px 2px 2px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u13397_text {
  5695. border-width:0px;
  5696. word-wrap:break-word;
  5697. text-transform:none;
  5698. visibility:hidden;
  5699. }
  5700. #u13398_input {
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:134px;
  5705. height:23px;
  5706. padding:2px 2px 2px 2px;
  5707. font-family:"ArialMT", "Arial", sans-serif;
  5708. font-weight:400;
  5709. font-style:normal;
  5710. font-size:14px;
  5711. letter-spacing:normal;
  5712. color:#AAAAAA;
  5713. vertical-align:none;
  5714. text-align:left;
  5715. text-transform:none;
  5716. background-color:transparent;
  5717. border-color:transparent;
  5718. }
  5719. #u13398_input.disabled {
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:134px;
  5724. height:23px;
  5725. padding:2px 2px 2px 2px;
  5726. font-family:"ArialMT", "Arial", sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:14px;
  5730. letter-spacing:normal;
  5731. color:#AAAAAA;
  5732. vertical-align:none;
  5733. text-align:left;
  5734. text-transform:none;
  5735. background-color:transparent;
  5736. border-color:transparent;
  5737. }
  5738. #u13398_div {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:134px;
  5744. height:23px;
  5745. background:inherit;
  5746. background-color:rgba(255, 255, 255, 1);
  5747. border-radius:0px;
  5748. filter:drop-shadow(none);
  5749. transition:none;
  5750. font-size:14px;
  5751. color:#AAAAAA;
  5752. }
  5753. #u13398 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:506px;
  5757. top:162px;
  5758. width:134px;
  5759. height:23px;
  5760. display:flex;
  5761. transition:none;
  5762. transform-origin:50% 50%;
  5763. font-size:14px;
  5764. color:#AAAAAA;
  5765. }
  5766. #u13398 .text {
  5767. position:absolute;
  5768. align-self:flex-start;
  5769. padding:2px 2px 2px 2px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u13398_div.disabled {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:134px;
  5779. height:23px;
  5780. background:inherit;
  5781. background-color:rgba(240, 240, 240, 1);
  5782. border-radius:0px;
  5783. filter:drop-shadow(none);
  5784. transition:none;
  5785. font-size:14px;
  5786. color:#AAAAAA;
  5787. }
  5788. #u13398.disabled {
  5789. }
  5790. .u13398_input_option {
  5791. font-size:14px;
  5792. }
  5793. #u13399 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:0px;
  5799. height:0px;
  5800. }
  5801. #u13400_div {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:140px;
  5807. height:30px;
  5808. background:inherit;
  5809. background-color:rgba(255, 255, 255, 1);
  5810. box-sizing:border-box;
  5811. border-width:1px;
  5812. border-style:solid;
  5813. border-color:rgba(201, 201, 201, 1);
  5814. border-radius:4px;
  5815. filter:drop-shadow(none);
  5816. transition:none;
  5817. font-family:"Microsoft YaHei", sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:14px;
  5821. color:#CCCCCC;
  5822. text-align:left;
  5823. }
  5824. #u13400 {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:652px;
  5828. top:160px;
  5829. width:140px;
  5830. height:30px;
  5831. display:flex;
  5832. transition:none;
  5833. transform-origin:50% 50%;
  5834. font-family:"Microsoft YaHei", sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:14px;
  5838. color:#CCCCCC;
  5839. text-align:left;
  5840. }
  5841. #u13400 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:2px 8px 2px 8px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u13400_text {
  5849. border-width:0px;
  5850. word-wrap:break-word;
  5851. text-transform:none;
  5852. visibility:hidden;
  5853. }
  5854. #u13401_input {
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:127px;
  5859. height:25px;
  5860. padding:2px 2px 2px 2px;
  5861. font-family:"Microsoft YaHei", sans-serif;
  5862. font-weight:400;
  5863. font-style:normal;
  5864. font-size:10px;
  5865. letter-spacing:normal;
  5866. color:#000000;
  5867. vertical-align:none;
  5868. text-align:left;
  5869. text-transform:none;
  5870. background-color:transparent;
  5871. border-color:transparent;
  5872. }
  5873. #u13401_input.hint {
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:127px;
  5878. height:25px;
  5879. padding:2px 2px 2px 2px;
  5880. font-family:"Microsoft YaHei", sans-serif;
  5881. font-weight:400;
  5882. font-style:normal;
  5883. font-size:12px;
  5884. letter-spacing:normal;
  5885. color:#AAAAAA;
  5886. vertical-align:none;
  5887. text-align:left;
  5888. text-transform:none;
  5889. background-color:transparent;
  5890. border-color:transparent;
  5891. }
  5892. #u13401_input.disabled {
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:127px;
  5897. height:25px;
  5898. padding:2px 2px 2px 2px;
  5899. font-family:"Microsoft YaHei", sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:10px;
  5903. letter-spacing:normal;
  5904. color:#000000;
  5905. vertical-align:none;
  5906. text-align:left;
  5907. text-transform:none;
  5908. background-color:transparent;
  5909. border-color:transparent;
  5910. }
  5911. #u13401_input.hint.disabled {
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:127px;
  5916. height:25px;
  5917. padding:2px 2px 2px 2px;
  5918. font-family:"Microsoft YaHei", sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:12px;
  5922. letter-spacing:normal;
  5923. color:#AAAAAA;
  5924. vertical-align:none;
  5925. text-align:left;
  5926. text-transform:none;
  5927. background-color:transparent;
  5928. border-color:transparent;
  5929. }
  5930. #u13401_div {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:0px;
  5934. top:0px;
  5935. width:127px;
  5936. height:25px;
  5937. background:inherit;
  5938. background-color:rgba(255, 255, 255, 1);
  5939. border-radius:0px;
  5940. filter:drop-shadow(none);
  5941. transition:none;
  5942. font-family:"Microsoft YaHei", sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:10px;
  5946. }
  5947. #u13401 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:660px;
  5951. top:161px;
  5952. width:127px;
  5953. height:25px;
  5954. display:flex;
  5955. transition:none;
  5956. transform-origin:50% 50%;
  5957. font-family:"Microsoft YaHei", sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:10px;
  5961. }
  5962. #u13401 .text {
  5963. position:absolute;
  5964. align-self:center;
  5965. padding:2px 2px 2px 2px;
  5966. box-sizing:border-box;
  5967. width:100%;
  5968. }
  5969. #u13401_div.hint {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:127px;
  5975. height:25px;
  5976. background:inherit;
  5977. background-color:rgba(255, 255, 255, 1);
  5978. border-radius:0px;
  5979. filter:drop-shadow(none);
  5980. transition:none;
  5981. font-family:"Microsoft YaHei", sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:10px;
  5985. }
  5986. #u13401.hint {
  5987. }
  5988. #u13401_div.disabled {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:127px;
  5994. height:25px;
  5995. background:inherit;
  5996. background-color:rgba(240, 240, 240, 1);
  5997. border-radius:0px;
  5998. filter:drop-shadow(none);
  5999. transition:none;
  6000. font-family:"Microsoft YaHei", sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:10px;
  6004. }
  6005. #u13401.disabled {
  6006. }
  6007. #u13401_div.hint.disabled {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:0px;
  6011. top:0px;
  6012. width:127px;
  6013. height:25px;
  6014. background:inherit;
  6015. background-color:rgba(240, 240, 240, 1);
  6016. border-radius:0px;
  6017. filter:drop-shadow(none);
  6018. transition:none;
  6019. font-family:"Microsoft YaHei", sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:10px;
  6023. }
  6024. #u13401.hint.disabled {
  6025. }
  6026. #u13402 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:0px;
  6032. height:0px;
  6033. }
  6034. #u13403_div {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:60px;
  6040. height:30px;
  6041. background:inherit;
  6042. background-color:rgba(24, 144, 255, 1);
  6043. border-radius:4px;
  6044. filter:drop-shadow(none);
  6045. transition:none;
  6046. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6047. font-weight:400;
  6048. font-style:normal;
  6049. font-size:14px;
  6050. color:#FFFFFF;
  6051. }
  6052. #u13403 {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:802px;
  6056. top:199px;
  6057. width:60px;
  6058. height:30px;
  6059. display:flex;
  6060. transition:none;
  6061. transform-origin:50% 50%;
  6062. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:14px;
  6066. color:#FFFFFF;
  6067. }
  6068. #u13403 .text {
  6069. position:absolute;
  6070. align-self:center;
  6071. padding:2px 2px 2px 2px;
  6072. box-sizing:border-box;
  6073. width:100%;
  6074. }
  6075. #u13403_text {
  6076. border-width:0px;
  6077. word-wrap:break-word;
  6078. text-transform:none;
  6079. }
  6080. #u13404_div {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:60px;
  6086. height:30px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 1);
  6089. box-sizing:border-box;
  6090. border-width:1px;
  6091. border-style:solid;
  6092. border-color:rgba(170, 170, 170, 1);
  6093. border-radius:4px;
  6094. filter:drop-shadow(none);
  6095. transition:none;
  6096. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:14px;
  6100. }
  6101. #u13404 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:872px;
  6105. top:199px;
  6106. width:60px;
  6107. height:30px;
  6108. display:flex;
  6109. transition:none;
  6110. transform-origin:50% 50%;
  6111. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. font-size:14px;
  6115. }
  6116. #u13404 .text {
  6117. position:absolute;
  6118. align-self:center;
  6119. padding:2px 2px 2px 2px;
  6120. box-sizing:border-box;
  6121. width:100%;
  6122. }
  6123. #u13404_text {
  6124. border-width:0px;
  6125. word-wrap:break-word;
  6126. text-transform:none;
  6127. }
  6128. #u13405 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:0px;
  6134. height:0px;
  6135. }
  6136. #u13406_div {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:140px;
  6142. height:30px;
  6143. background:inherit;
  6144. background-color:rgba(255, 255, 255, 1);
  6145. box-sizing:border-box;
  6146. border-width:1px;
  6147. border-style:solid;
  6148. border-color:rgba(201, 201, 201, 1);
  6149. border-radius:4px;
  6150. filter:drop-shadow(none);
  6151. transition:none;
  6152. font-family:"Microsoft YaHei", sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:14px;
  6156. color:#CCCCCC;
  6157. text-align:left;
  6158. }
  6159. #u13406 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:1394px;
  6163. top:160px;
  6164. width:140px;
  6165. height:30px;
  6166. display:flex;
  6167. transition:none;
  6168. transform-origin:50% 50%;
  6169. font-family:"Microsoft YaHei", sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:14px;
  6173. color:#CCCCCC;
  6174. text-align:left;
  6175. }
  6176. #u13406 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 8px 2px 8px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u13406_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. visibility:hidden;
  6188. }
  6189. #u13407_input {
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:127px;
  6194. height:25px;
  6195. padding:2px 2px 2px 2px;
  6196. font-family:"Microsoft YaHei", sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:10px;
  6200. letter-spacing:normal;
  6201. color:#000000;
  6202. vertical-align:none;
  6203. text-align:left;
  6204. text-transform:none;
  6205. background-color:transparent;
  6206. border-color:transparent;
  6207. }
  6208. #u13407_input.hint {
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:127px;
  6213. height:25px;
  6214. padding:2px 2px 2px 2px;
  6215. font-family:"Microsoft YaHei", sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:12px;
  6219. letter-spacing:normal;
  6220. color:#AAAAAA;
  6221. vertical-align:none;
  6222. text-align:left;
  6223. text-transform:none;
  6224. background-color:transparent;
  6225. border-color:transparent;
  6226. }
  6227. #u13407_input.disabled {
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:127px;
  6232. height:25px;
  6233. padding:2px 2px 2px 2px;
  6234. font-family:"Microsoft YaHei", sans-serif;
  6235. font-weight:400;
  6236. font-style:normal;
  6237. font-size:10px;
  6238. letter-spacing:normal;
  6239. color:#000000;
  6240. vertical-align:none;
  6241. text-align:left;
  6242. text-transform:none;
  6243. background-color:transparent;
  6244. border-color:transparent;
  6245. }
  6246. #u13407_input.hint.disabled {
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:127px;
  6251. height:25px;
  6252. padding:2px 2px 2px 2px;
  6253. font-family:"Microsoft YaHei", sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:12px;
  6257. letter-spacing:normal;
  6258. color:#AAAAAA;
  6259. vertical-align:none;
  6260. text-align:left;
  6261. text-transform:none;
  6262. background-color:transparent;
  6263. border-color:transparent;
  6264. }
  6265. #u13407_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:127px;
  6271. height:25px;
  6272. background:inherit;
  6273. background-color:rgba(255, 255, 255, 1);
  6274. border-radius:0px;
  6275. filter:drop-shadow(none);
  6276. transition:none;
  6277. font-family:"Microsoft YaHei", sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:10px;
  6281. }
  6282. #u13407 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:1402px;
  6286. top:161px;
  6287. width:127px;
  6288. height:25px;
  6289. display:flex;
  6290. transition:none;
  6291. transform-origin:50% 50%;
  6292. font-family:"Microsoft YaHei", sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:10px;
  6296. }
  6297. #u13407 .text {
  6298. position:absolute;
  6299. align-self:center;
  6300. padding:2px 2px 2px 2px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u13407_div.hint {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:127px;
  6310. height:25px;
  6311. background:inherit;
  6312. background-color:rgba(255, 255, 255, 1);
  6313. border-radius:0px;
  6314. filter:drop-shadow(none);
  6315. transition:none;
  6316. font-family:"Microsoft YaHei", sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:10px;
  6320. }
  6321. #u13407.hint {
  6322. }
  6323. #u13407_div.disabled {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:127px;
  6329. height:25px;
  6330. background:inherit;
  6331. background-color:rgba(240, 240, 240, 1);
  6332. border-radius:0px;
  6333. filter:drop-shadow(none);
  6334. transition:none;
  6335. font-family:"Microsoft YaHei", sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:10px;
  6339. }
  6340. #u13407.disabled {
  6341. }
  6342. #u13407_div.hint.disabled {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:127px;
  6348. height:25px;
  6349. background:inherit;
  6350. background-color:rgba(240, 240, 240, 1);
  6351. border-radius:0px;
  6352. filter:drop-shadow(none);
  6353. transition:none;
  6354. font-family:"Microsoft YaHei", sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:10px;
  6358. }
  6359. #u13407.hint.disabled {
  6360. }
  6361. #u13408 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:0px;
  6367. height:0px;
  6368. }
  6369. #u13409_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:140px;
  6375. height:30px;
  6376. background:inherit;
  6377. background-color:rgba(242, 242, 242, 1);
  6378. box-sizing:border-box;
  6379. border-width:1px;
  6380. border-style:solid;
  6381. border-color:rgba(215, 215, 215, 1);
  6382. border-radius:4px;
  6383. filter:drop-shadow(none);
  6384. transition:none;
  6385. font-size:14px;
  6386. }
  6387. #u13409 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:352px;
  6391. top:160px;
  6392. width:140px;
  6393. height:30px;
  6394. display:flex;
  6395. transition:none;
  6396. transform-origin:50% 50%;
  6397. font-size:14px;
  6398. }
  6399. #u13409 .text {
  6400. position:absolute;
  6401. align-self:center;
  6402. padding:2px 2px 2px 2px;
  6403. box-sizing:border-box;
  6404. width:100%;
  6405. }
  6406. #u13409_text {
  6407. border-width:0px;
  6408. word-wrap:break-word;
  6409. text-transform:none;
  6410. visibility:hidden;
  6411. }
  6412. #u13410_input {
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:134px;
  6417. height:23px;
  6418. padding:2px 2px 2px 2px;
  6419. font-family:"ArialMT", "Arial", sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:14px;
  6423. letter-spacing:normal;
  6424. color:#AAAAAA;
  6425. vertical-align:none;
  6426. text-align:left;
  6427. text-transform:none;
  6428. background-color:transparent;
  6429. border-color:transparent;
  6430. }
  6431. #u13410_input.disabled {
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:134px;
  6436. height:23px;
  6437. padding:2px 2px 2px 2px;
  6438. font-family:"ArialMT", "Arial", sans-serif;
  6439. font-weight:400;
  6440. font-style:normal;
  6441. font-size:14px;
  6442. letter-spacing:normal;
  6443. color:#AAAAAA;
  6444. vertical-align:none;
  6445. text-align:left;
  6446. text-transform:none;
  6447. background-color:transparent;
  6448. border-color:transparent;
  6449. }
  6450. #u13410_div {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:0px;
  6454. top:0px;
  6455. width:134px;
  6456. height:23px;
  6457. background:inherit;
  6458. background-color:rgba(242, 242, 242, 1);
  6459. border-radius:0px;
  6460. filter:drop-shadow(none);
  6461. transition:none;
  6462. font-size:14px;
  6463. color:#AAAAAA;
  6464. }
  6465. #u13410 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:356px;
  6469. top:162px;
  6470. width:134px;
  6471. height:23px;
  6472. display:flex;
  6473. transition:none;
  6474. transform-origin:50% 50%;
  6475. font-size:14px;
  6476. color:#AAAAAA;
  6477. }
  6478. #u13410 .text {
  6479. position:absolute;
  6480. align-self:flex-start;
  6481. padding:2px 2px 2px 2px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u13410_div.disabled {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:134px;
  6491. height:23px;
  6492. background:inherit;
  6493. background-color:rgba(240, 240, 240, 1);
  6494. border-radius:0px;
  6495. filter:drop-shadow(none);
  6496. transition:none;
  6497. font-size:14px;
  6498. color:#AAAAAA;
  6499. }
  6500. #u13410.disabled {
  6501. }
  6502. .u13410_input_option {
  6503. font-size:14px;
  6504. }
  6505. #u13411 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:120px;
  6509. top:50px;
  6510. width:201px;
  6511. height:1190px;
  6512. }
  6513. #u13412 {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:0px;
  6519. height:0px;
  6520. }
  6521. #u13413_div {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:200px;
  6527. height:1190px;
  6528. background:inherit;
  6529. background-color:rgba(255, 255, 255, 1);
  6530. border-radius:0px;
  6531. filter:drop-shadow(none);
  6532. transition:none;
  6533. }
  6534. #u13413 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:200px;
  6540. height:1190px;
  6541. display:flex;
  6542. transition:none;
  6543. transform-origin:50% 50%;
  6544. }
  6545. #u13413 .text {
  6546. position:absolute;
  6547. align-self:center;
  6548. padding:2px 2px 2px 2px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u13413_text {
  6553. border-width:0px;
  6554. word-wrap:break-word;
  6555. text-transform:none;
  6556. visibility:hidden;
  6557. }
  6558. #u13414_div {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:0px;
  6562. top:0px;
  6563. width:200px;
  6564. height:60px;
  6565. background:inherit;
  6566. background-color:rgba(224, 231, 247, 1);
  6567. border-radius:0px;
  6568. filter:drop-shadow(none);
  6569. transition:none;
  6570. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  6571. font-weight:500;
  6572. font-style:normal;
  6573. font-size:18px;
  6574. }
  6575. #u13414 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:200px;
  6581. height:60px;
  6582. display:flex;
  6583. transition:none;
  6584. transform-origin:50% 50%;
  6585. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  6586. font-weight:500;
  6587. font-style:normal;
  6588. font-size:18px;
  6589. }
  6590. #u13414 .text {
  6591. position:absolute;
  6592. align-self:center;
  6593. padding:0px 0px 0px 20px;
  6594. box-sizing:border-box;
  6595. width:100%;
  6596. }
  6597. #u13414_text {
  6598. border-width:0px;
  6599. word-wrap:break-word;
  6600. text-transform:none;
  6601. }
  6602. #u13415_div {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:0px;
  6606. top:0px;
  6607. width:65px;
  6608. height:22px;
  6609. background:inherit;
  6610. background-color:rgba(255, 255, 255, 0);
  6611. border-radius:0px;
  6612. filter:drop-shadow(none);
  6613. transition:none;
  6614. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:16px;
  6618. }
  6619. #u13415 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:25px;
  6623. top:456px;
  6624. width:65px;
  6625. height:22px;
  6626. display:flex;
  6627. transition:none;
  6628. transform-origin:50% 50%;
  6629. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:16px;
  6633. }
  6634. #u13415 .text {
  6635. position:absolute;
  6636. align-self:flex-start;
  6637. padding:0px 0px 0px 0px;
  6638. box-sizing:border-box;
  6639. width:100%;
  6640. }
  6641. #u13415_text {
  6642. border-width:0px;
  6643. white-space:nowrap;
  6644. text-transform:none;
  6645. }
  6646. #u13416_div {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:49px;
  6652. height:17px;
  6653. background:inherit;
  6654. background-color:rgba(255, 255, 255, 0);
  6655. border-radius:0px;
  6656. filter:drop-shadow(none);
  6657. transition:none;
  6658. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6659. font-weight:400;
  6660. font-style:normal;
  6661. font-size:12px;
  6662. color:#AAAAAA;
  6663. }
  6664. #u13416 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:23px;
  6668. top:419px;
  6669. width:49px;
  6670. height:17px;
  6671. display:flex;
  6672. transition:none;
  6673. transform-origin:50% 50%;
  6674. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:12px;
  6678. color:#AAAAAA;
  6679. }
  6680. #u13416 .text {
  6681. position:absolute;
  6682. align-self:flex-start;
  6683. padding:0px 0px 0px 0px;
  6684. box-sizing:border-box;
  6685. width:100%;
  6686. }
  6687. #u13416_text {
  6688. border-width:0px;
  6689. white-space:nowrap;
  6690. text-transform:none;
  6691. }
  6692. #u13417_div {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:0px;
  6696. top:0px;
  6697. width:49px;
  6698. height:17px;
  6699. background:inherit;
  6700. background-color:rgba(255, 255, 255, 0);
  6701. border-radius:0px;
  6702. filter:drop-shadow(none);
  6703. transition:none;
  6704. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:12px;
  6708. color:#AAAAAA;
  6709. }
  6710. #u13417 {
  6711. border-width:0px;
  6712. position:absolute;
  6713. left:24px;
  6714. top:81px;
  6715. width:49px;
  6716. height:17px;
  6717. display:flex;
  6718. transition:none;
  6719. transform-origin:50% 50%;
  6720. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6721. font-weight:400;
  6722. font-style:normal;
  6723. font-size:12px;
  6724. color:#AAAAAA;
  6725. }
  6726. #u13417 .text {
  6727. position:absolute;
  6728. align-self:flex-start;
  6729. padding:0px 0px 0px 0px;
  6730. box-sizing:border-box;
  6731. width:100%;
  6732. }
  6733. #u13417_text {
  6734. border-width:0px;
  6735. white-space:nowrap;
  6736. text-transform:none;
  6737. }
  6738. #u13418_div {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:65px;
  6744. height:22px;
  6745. background:inherit;
  6746. background-color:rgba(255, 255, 255, 0);
  6747. border-radius:0px;
  6748. filter:drop-shadow(none);
  6749. transition:none;
  6750. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:16px;
  6754. }
  6755. #u13418 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:26px;
  6759. top:118px;
  6760. width:65px;
  6761. height:22px;
  6762. display:flex;
  6763. transition:none;
  6764. transform-origin:50% 50%;
  6765. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:16px;
  6769. }
  6770. #u13418 .text {
  6771. position:absolute;
  6772. align-self:flex-start;
  6773. padding:0px 0px 0px 0px;
  6774. box-sizing:border-box;
  6775. width:100%;
  6776. }
  6777. #u13418_text {
  6778. border-width:0px;
  6779. white-space:nowrap;
  6780. text-transform:none;
  6781. }
  6782. #u13419 {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:398px;
  6787. width:200px;
  6788. height:1px;
  6789. display:flex;
  6790. transition:none;
  6791. }
  6792. #u13419 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 2px 2px 2px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u13419_img {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:201px;
  6805. height:2px;
  6806. }
  6807. #u13419_text {
  6808. border-width:0px;
  6809. word-wrap:break-word;
  6810. text-transform:none;
  6811. visibility:hidden;
  6812. }
  6813. #u13420_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:65px;
  6819. height:22px;
  6820. background:inherit;
  6821. background-color:rgba(255, 255, 255, 0);
  6822. border-radius:0px;
  6823. filter:drop-shadow(none);
  6824. transition:none;
  6825. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6826. font-weight:400;
  6827. font-style:normal;
  6828. font-size:16px;
  6829. }
  6830. #u13420 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:25px;
  6834. top:498px;
  6835. width:65px;
  6836. height:22px;
  6837. display:flex;
  6838. transition:none;
  6839. transform-origin:50% 50%;
  6840. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6841. font-weight:400;
  6842. font-style:normal;
  6843. font-size:16px;
  6844. }
  6845. #u13420 .text {
  6846. position:absolute;
  6847. align-self:flex-start;
  6848. padding:0px 0px 0px 0px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u13420_text {
  6853. border-width:0px;
  6854. white-space:nowrap;
  6855. text-transform:none;
  6856. }
  6857. #u13421_div {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:49px;
  6863. height:17px;
  6864. background:inherit;
  6865. background-color:rgba(255, 255, 255, 0);
  6866. border-radius:0px;
  6867. filter:drop-shadow(none);
  6868. transition:none;
  6869. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6870. font-weight:400;
  6871. font-style:normal;
  6872. font-size:12px;
  6873. color:#AAAAAA;
  6874. }
  6875. #u13421 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:24px;
  6879. top:235px;
  6880. width:49px;
  6881. height:17px;
  6882. display:flex;
  6883. transition:none;
  6884. transform-origin:50% 50%;
  6885. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:12px;
  6889. color:#AAAAAA;
  6890. }
  6891. #u13421 .text {
  6892. position:absolute;
  6893. align-self:flex-start;
  6894. padding:0px 0px 0px 0px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u13421_text {
  6899. border-width:0px;
  6900. white-space:nowrap;
  6901. text-transform:none;
  6902. }
  6903. #u13422 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:1px;
  6907. top:214px;
  6908. width:200px;
  6909. height:1px;
  6910. display:flex;
  6911. transition:none;
  6912. }
  6913. #u13422 .text {
  6914. position:absolute;
  6915. align-self:center;
  6916. padding:2px 2px 2px 2px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u13422_img {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:201px;
  6926. height:2px;
  6927. }
  6928. #u13422_text {
  6929. border-width:0px;
  6930. word-wrap:break-word;
  6931. text-transform:none;
  6932. visibility:hidden;
  6933. }
  6934. #u13423_div {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:65px;
  6940. height:22px;
  6941. background:inherit;
  6942. background-color:rgba(255, 255, 255, 0);
  6943. border-radius:0px;
  6944. filter:drop-shadow(none);
  6945. transition:none;
  6946. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:16px;
  6950. }
  6951. #u13423 {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:26px;
  6955. top:272px;
  6956. width:65px;
  6957. height:22px;
  6958. display:flex;
  6959. transition:none;
  6960. transform-origin:50% 50%;
  6961. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:16px;
  6965. }
  6966. #u13423 .text {
  6967. position:absolute;
  6968. align-self:flex-start;
  6969. padding:0px 0px 0px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u13423_text {
  6974. border-width:0px;
  6975. white-space:nowrap;
  6976. text-transform:none;
  6977. }
  6978. #u13424_div {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:65px;
  6984. height:22px;
  6985. background:inherit;
  6986. background-color:rgba(255, 255, 255, 0);
  6987. border-radius:0px;
  6988. filter:drop-shadow(none);
  6989. transition:none;
  6990. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:16px;
  6994. }
  6995. #u13424 {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:26px;
  6999. top:314px;
  7000. width:65px;
  7001. height:22px;
  7002. display:flex;
  7003. transition:none;
  7004. transform-origin:50% 50%;
  7005. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:16px;
  7009. }
  7010. #u13424 .text {
  7011. position:absolute;
  7012. align-self:flex-start;
  7013. padding:0px 0px 0px 0px;
  7014. box-sizing:border-box;
  7015. width:100%;
  7016. }
  7017. #u13424_text {
  7018. border-width:0px;
  7019. white-space:nowrap;
  7020. text-transform:none;
  7021. }
  7022. #u13425_div {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:129px;
  7028. height:22px;
  7029. background:inherit;
  7030. background-color:rgba(255, 255, 255, 0);
  7031. border-radius:0px;
  7032. filter:drop-shadow(none);
  7033. transition:none;
  7034. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7035. font-weight:400;
  7036. font-style:normal;
  7037. font-size:16px;
  7038. }
  7039. #u13425 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:25px;
  7043. top:956px;
  7044. width:129px;
  7045. height:22px;
  7046. display:flex;
  7047. transition:none;
  7048. transform-origin:50% 50%;
  7049. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7050. font-weight:400;
  7051. font-style:normal;
  7052. font-size:16px;
  7053. }
  7054. #u13425 .text {
  7055. position:absolute;
  7056. align-self:flex-start;
  7057. padding:0px 0px 0px 0px;
  7058. box-sizing:border-box;
  7059. width:100%;
  7060. }
  7061. #u13425_text {
  7062. border-width:0px;
  7063. white-space:nowrap;
  7064. text-transform:none;
  7065. }
  7066. #u13426_div {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:129px;
  7072. height:22px;
  7073. background:inherit;
  7074. background-color:rgba(255, 255, 255, 0);
  7075. border-radius:0px;
  7076. filter:drop-shadow(none);
  7077. transition:none;
  7078. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. font-size:16px;
  7082. }
  7083. #u13426 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:25px;
  7087. top:748px;
  7088. width:129px;
  7089. height:22px;
  7090. display:flex;
  7091. transition:none;
  7092. transform-origin:50% 50%;
  7093. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. font-size:16px;
  7097. }
  7098. #u13426 .text {
  7099. position:absolute;
  7100. align-self:flex-start;
  7101. padding:0px 0px 0px 0px;
  7102. box-sizing:border-box;
  7103. width:100%;
  7104. }
  7105. #u13426_text {
  7106. border-width:0px;
  7107. white-space:nowrap;
  7108. text-transform:none;
  7109. }
  7110. #u13427_div {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:97px;
  7116. height:17px;
  7117. background:inherit;
  7118. background-color:rgba(255, 255, 255, 0);
  7119. border-radius:0px;
  7120. filter:drop-shadow(none);
  7121. transition:none;
  7122. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:12px;
  7126. color:#AAAAAA;
  7127. }
  7128. #u13427 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:23px;
  7132. top:711px;
  7133. width:97px;
  7134. height:17px;
  7135. display:flex;
  7136. transition:none;
  7137. transform-origin:50% 50%;
  7138. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7139. font-weight:400;
  7140. font-style:normal;
  7141. font-size:12px;
  7142. color:#AAAAAA;
  7143. }
  7144. #u13427 .text {
  7145. position:absolute;
  7146. align-self:flex-start;
  7147. padding:0px 0px 0px 0px;
  7148. box-sizing:border-box;
  7149. width:100%;
  7150. }
  7151. #u13427_text {
  7152. border-width:0px;
  7153. white-space:nowrap;
  7154. text-transform:none;
  7155. }
  7156. #u13428 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:0px;
  7160. top:690px;
  7161. width:200px;
  7162. height:1px;
  7163. display:flex;
  7164. transition:none;
  7165. }
  7166. #u13428 .text {
  7167. position:absolute;
  7168. align-self:center;
  7169. padding:2px 2px 2px 2px;
  7170. box-sizing:border-box;
  7171. width:100%;
  7172. }
  7173. #u13428_img {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:201px;
  7179. height:2px;
  7180. }
  7181. #u13428_text {
  7182. border-width:0px;
  7183. word-wrap:break-word;
  7184. text-transform:none;
  7185. visibility:hidden;
  7186. }
  7187. #u13429_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:129px;
  7193. height:22px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 0);
  7196. border-radius:0px;
  7197. filter:drop-shadow(none);
  7198. transition:none;
  7199. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:16px;
  7203. }
  7204. #u13429 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:25px;
  7208. top:830px;
  7209. width:129px;
  7210. height:22px;
  7211. display:flex;
  7212. transition:none;
  7213. transform-origin:50% 50%;
  7214. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:16px;
  7218. }
  7219. #u13429 .text {
  7220. position:absolute;
  7221. align-self:flex-start;
  7222. padding:0px 0px 0px 0px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u13429_text {
  7227. border-width:0px;
  7228. white-space:nowrap;
  7229. text-transform:none;
  7230. }
  7231. #u13430_div {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:129px;
  7237. height:22px;
  7238. background:inherit;
  7239. background-color:rgba(255, 255, 255, 0);
  7240. border-radius:0px;
  7241. filter:drop-shadow(none);
  7242. transition:none;
  7243. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7244. font-weight:400;
  7245. font-style:normal;
  7246. font-size:16px;
  7247. }
  7248. #u13430 {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:25px;
  7252. top:872px;
  7253. width:129px;
  7254. height:22px;
  7255. display:flex;
  7256. transition:none;
  7257. transform-origin:50% 50%;
  7258. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:16px;
  7262. }
  7263. #u13430 .text {
  7264. position:absolute;
  7265. align-self:flex-start;
  7266. padding:0px 0px 0px 0px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u13430_text {
  7271. border-width:0px;
  7272. white-space:nowrap;
  7273. text-transform:none;
  7274. }
  7275. #u13431_div {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:65px;
  7281. height:22px;
  7282. background:inherit;
  7283. background-color:rgba(255, 255, 255, 0);
  7284. border-radius:0px;
  7285. filter:drop-shadow(none);
  7286. transition:none;
  7287. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:16px;
  7291. }
  7292. #u13431 {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:25px;
  7296. top:1056px;
  7297. width:65px;
  7298. height:22px;
  7299. display:flex;
  7300. transition:none;
  7301. transform-origin:50% 50%;
  7302. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:16px;
  7306. }
  7307. #u13431 .text {
  7308. position:absolute;
  7309. align-self:flex-start;
  7310. padding:0px 0px 0px 0px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u13431_text {
  7315. border-width:0px;
  7316. white-space:nowrap;
  7317. text-transform:none;
  7318. }
  7319. #u13432_div {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:49px;
  7325. height:17px;
  7326. background:inherit;
  7327. background-color:rgba(255, 255, 255, 0);
  7328. border-radius:0px;
  7329. filter:drop-shadow(none);
  7330. transition:none;
  7331. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7332. font-weight:400;
  7333. font-style:normal;
  7334. font-size:12px;
  7335. color:#AAAAAA;
  7336. }
  7337. #u13432 {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:23px;
  7341. top:1019px;
  7342. width:49px;
  7343. height:17px;
  7344. display:flex;
  7345. transition:none;
  7346. transform-origin:50% 50%;
  7347. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:12px;
  7351. color:#AAAAAA;
  7352. }
  7353. #u13432 .text {
  7354. position:absolute;
  7355. align-self:flex-start;
  7356. padding:0px 0px 0px 0px;
  7357. box-sizing:border-box;
  7358. width:100%;
  7359. }
  7360. #u13432_text {
  7361. border-width:0px;
  7362. white-space:nowrap;
  7363. text-transform:none;
  7364. }
  7365. #u13433 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:0px;
  7369. top:998px;
  7370. width:200px;
  7371. height:1px;
  7372. display:flex;
  7373. transition:none;
  7374. }
  7375. #u13433 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:2px 2px 2px 2px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u13433_img {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:201px;
  7388. height:2px;
  7389. }
  7390. #u13433_text {
  7391. border-width:0px;
  7392. word-wrap:break-word;
  7393. text-transform:none;
  7394. visibility:hidden;
  7395. }
  7396. #u13434_div {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:65px;
  7402. height:22px;
  7403. background:inherit;
  7404. background-color:rgba(255, 255, 255, 0);
  7405. border-radius:0px;
  7406. filter:drop-shadow(none);
  7407. transition:none;
  7408. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. font-size:16px;
  7412. }
  7413. #u13434 {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:25px;
  7417. top:1098px;
  7418. width:65px;
  7419. height:22px;
  7420. display:flex;
  7421. transition:none;
  7422. transform-origin:50% 50%;
  7423. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7424. font-weight:400;
  7425. font-style:normal;
  7426. font-size:16px;
  7427. }
  7428. #u13434 .text {
  7429. position:absolute;
  7430. align-self:flex-start;
  7431. padding:0px 0px 0px 0px;
  7432. box-sizing:border-box;
  7433. width:100%;
  7434. }
  7435. #u13434_text {
  7436. border-width:0px;
  7437. white-space:nowrap;
  7438. text-transform:none;
  7439. }
  7440. #u13435_div {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:129px;
  7446. height:22px;
  7447. background:inherit;
  7448. background-color:rgba(255, 255, 255, 0);
  7449. border-radius:0px;
  7450. filter:drop-shadow(none);
  7451. transition:none;
  7452. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:16px;
  7456. }
  7457. #u13435 {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:25px;
  7461. top:914px;
  7462. width:129px;
  7463. height:22px;
  7464. display:flex;
  7465. transition:none;
  7466. transform-origin:50% 50%;
  7467. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7468. font-weight:400;
  7469. font-style:normal;
  7470. font-size:16px;
  7471. }
  7472. #u13435 .text {
  7473. position:absolute;
  7474. align-self:flex-start;
  7475. padding:0px 0px 0px 0px;
  7476. box-sizing:border-box;
  7477. width:100%;
  7478. }
  7479. #u13435_text {
  7480. border-width:0px;
  7481. white-space:nowrap;
  7482. text-transform:none;
  7483. }
  7484. #u13436_div {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:81px;
  7490. height:22px;
  7491. background:inherit;
  7492. background-color:rgba(255, 255, 255, 0);
  7493. border-radius:0px;
  7494. filter:drop-shadow(none);
  7495. transition:none;
  7496. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:16px;
  7500. }
  7501. #u13436 {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:26px;
  7505. top:356px;
  7506. width:81px;
  7507. height:22px;
  7508. display:flex;
  7509. transition:none;
  7510. transform-origin:50% 50%;
  7511. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:16px;
  7515. }
  7516. #u13436 .text {
  7517. position:absolute;
  7518. align-self:flex-start;
  7519. padding:0px 0px 0px 0px;
  7520. box-sizing:border-box;
  7521. width:100%;
  7522. }
  7523. #u13436_text {
  7524. border-width:0px;
  7525. white-space:nowrap;
  7526. text-transform:none;
  7527. }
  7528. #u13437_div {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:129px;
  7534. height:22px;
  7535. background:inherit;
  7536. background-color:rgba(255, 255, 255, 0);
  7537. border-radius:0px;
  7538. filter:drop-shadow(none);
  7539. transition:none;
  7540. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:16px;
  7544. }
  7545. #u13437 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:25px;
  7549. top:790px;
  7550. width:129px;
  7551. height:22px;
  7552. display:flex;
  7553. transition:none;
  7554. transform-origin:50% 50%;
  7555. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7556. font-weight:400;
  7557. font-style:normal;
  7558. font-size:16px;
  7559. }
  7560. #u13437 .text {
  7561. position:absolute;
  7562. align-self:flex-start;
  7563. padding:0px 0px 0px 0px;
  7564. box-sizing:border-box;
  7565. width:100%;
  7566. }
  7567. #u13437_text {
  7568. border-width:0px;
  7569. white-space:nowrap;
  7570. text-transform:none;
  7571. }
  7572. #u13438_div {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:0px;
  7576. top:0px;
  7577. width:65px;
  7578. height:22px;
  7579. background:inherit;
  7580. background-color:rgba(255, 255, 255, 0);
  7581. border-radius:0px;
  7582. filter:drop-shadow(none);
  7583. transition:none;
  7584. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:16px;
  7588. }
  7589. #u13438 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:25px;
  7593. top:160px;
  7594. width:65px;
  7595. height:22px;
  7596. display:flex;
  7597. transition:none;
  7598. transform-origin:50% 50%;
  7599. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7600. font-weight:400;
  7601. font-style:normal;
  7602. font-size:16px;
  7603. }
  7604. #u13438 .text {
  7605. position:absolute;
  7606. align-self:flex-start;
  7607. padding:0px 0px 0px 0px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u13438_text {
  7612. border-width:0px;
  7613. white-space:nowrap;
  7614. text-transform:none;
  7615. }
  7616. #u13439_div {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:81px;
  7622. height:22px;
  7623. background:inherit;
  7624. background-color:rgba(255, 255, 255, 0);
  7625. border-radius:0px;
  7626. filter:drop-shadow(none);
  7627. transition:none;
  7628. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:16px;
  7632. }
  7633. #u13439 {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:25px;
  7637. top:598px;
  7638. width:81px;
  7639. height:22px;
  7640. display:flex;
  7641. transition:none;
  7642. transform-origin:50% 50%;
  7643. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:16px;
  7647. }
  7648. #u13439 .text {
  7649. position:absolute;
  7650. align-self:flex-start;
  7651. padding:0px 0px 0px 0px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u13439_text {
  7656. border-width:0px;
  7657. white-space:nowrap;
  7658. text-transform:none;
  7659. }
  7660. #u13440_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:65px;
  7666. height:22px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 0);
  7669. border-radius:0px;
  7670. filter:drop-shadow(none);
  7671. transition:none;
  7672. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. font-size:16px;
  7676. }
  7677. #u13440 {
  7678. border-width:0px;
  7679. position:absolute;
  7680. left:25px;
  7681. top:640px;
  7682. width:65px;
  7683. height:22px;
  7684. display:flex;
  7685. transition:none;
  7686. transform-origin:50% 50%;
  7687. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:16px;
  7691. }
  7692. #u13440 .text {
  7693. position:absolute;
  7694. align-self:flex-start;
  7695. padding:0px 0px 0px 0px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u13440_text {
  7700. border-width:0px;
  7701. white-space:nowrap;
  7702. text-transform:none;
  7703. }
  7704. #u13441_div {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:73px;
  7710. height:17px;
  7711. background:inherit;
  7712. background-color:rgba(255, 255, 255, 0);
  7713. border-radius:0px;
  7714. filter:drop-shadow(none);
  7715. transition:none;
  7716. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:12px;
  7720. color:#AAAAAA;
  7721. }
  7722. #u13441 {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:23px;
  7726. top:561px;
  7727. width:73px;
  7728. height:17px;
  7729. display:flex;
  7730. transition:none;
  7731. transform-origin:50% 50%;
  7732. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7733. font-weight:400;
  7734. font-style:normal;
  7735. font-size:12px;
  7736. color:#AAAAAA;
  7737. }
  7738. #u13441 .text {
  7739. position:absolute;
  7740. align-self:flex-start;
  7741. padding:0px 0px 0px 0px;
  7742. box-sizing:border-box;
  7743. width:100%;
  7744. }
  7745. #u13441_text {
  7746. border-width:0px;
  7747. white-space:nowrap;
  7748. text-transform:none;
  7749. }
  7750. #u13442 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:0px;
  7754. top:540px;
  7755. width:200px;
  7756. height:1px;
  7757. display:flex;
  7758. transition:none;
  7759. }
  7760. #u13442 .text {
  7761. position:absolute;
  7762. align-self:center;
  7763. padding:2px 2px 2px 2px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u13442_img {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:0px;
  7771. top:0px;
  7772. width:201px;
  7773. height:2px;
  7774. }
  7775. #u13442_text {
  7776. border-width:0px;
  7777. word-wrap:break-word;
  7778. text-transform:none;
  7779. visibility:hidden;
  7780. }
  7781. #u13443 {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:0px;
  7787. height:0px;
  7788. }
  7789. #u13444_div {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:140px;
  7795. height:30px;
  7796. background:inherit;
  7797. background-color:rgba(255, 255, 255, 1);
  7798. box-sizing:border-box;
  7799. border-width:1px;
  7800. border-style:solid;
  7801. border-color:rgba(215, 215, 215, 1);
  7802. border-radius:4px;
  7803. filter:drop-shadow(none);
  7804. transition:none;
  7805. font-size:14px;
  7806. }
  7807. #u13444 {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:352px;
  7811. top:200px;
  7812. width:140px;
  7813. height:30px;
  7814. display:flex;
  7815. transition:none;
  7816. transform-origin:50% 50%;
  7817. font-size:14px;
  7818. }
  7819. #u13444 .text {
  7820. position:absolute;
  7821. align-self:center;
  7822. padding:2px 2px 2px 2px;
  7823. box-sizing:border-box;
  7824. width:100%;
  7825. }
  7826. #u13444_text {
  7827. border-width:0px;
  7828. word-wrap:break-word;
  7829. text-transform:none;
  7830. visibility:hidden;
  7831. }
  7832. #u13445_input {
  7833. position:absolute;
  7834. left:0px;
  7835. top:0px;
  7836. width:134px;
  7837. height:23px;
  7838. padding:2px 2px 2px 2px;
  7839. font-family:"ArialMT", "Arial", sans-serif;
  7840. font-weight:400;
  7841. font-style:normal;
  7842. font-size:14px;
  7843. letter-spacing:normal;
  7844. color:#AAAAAA;
  7845. vertical-align:none;
  7846. text-align:left;
  7847. text-transform:none;
  7848. background-color:transparent;
  7849. border-color:transparent;
  7850. }
  7851. #u13445_input.disabled {
  7852. position:absolute;
  7853. left:0px;
  7854. top:0px;
  7855. width:134px;
  7856. height:23px;
  7857. padding:2px 2px 2px 2px;
  7858. font-family:"ArialMT", "Arial", sans-serif;
  7859. font-weight:400;
  7860. font-style:normal;
  7861. font-size:14px;
  7862. letter-spacing:normal;
  7863. color:#AAAAAA;
  7864. vertical-align:none;
  7865. text-align:left;
  7866. text-transform:none;
  7867. background-color:transparent;
  7868. border-color:transparent;
  7869. }
  7870. #u13445_div {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:134px;
  7876. height:23px;
  7877. background:inherit;
  7878. background-color:rgba(255, 255, 255, 1);
  7879. border-radius:0px;
  7880. filter:drop-shadow(none);
  7881. transition:none;
  7882. font-size:14px;
  7883. color:#AAAAAA;
  7884. }
  7885. #u13445 {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:356px;
  7889. top:202px;
  7890. width:134px;
  7891. height:23px;
  7892. display:flex;
  7893. transition:none;
  7894. transform-origin:50% 50%;
  7895. font-size:14px;
  7896. color:#AAAAAA;
  7897. }
  7898. #u13445 .text {
  7899. position:absolute;
  7900. align-self:flex-start;
  7901. padding:2px 2px 2px 2px;
  7902. box-sizing:border-box;
  7903. width:100%;
  7904. }
  7905. #u13445_div.disabled {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:134px;
  7911. height:23px;
  7912. background:inherit;
  7913. background-color:rgba(240, 240, 240, 1);
  7914. border-radius:0px;
  7915. filter:drop-shadow(none);
  7916. transition:none;
  7917. font-size:14px;
  7918. color:#AAAAAA;
  7919. }
  7920. #u13445.disabled {
  7921. }
  7922. .u13445_input_option {
  7923. font-size:14px;
  7924. }
  7925. #u13446 {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:0px;
  7931. height:0px;
  7932. }
  7933. #u13447_div {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:140px;
  7939. height:30px;
  7940. background:inherit;
  7941. background-color:rgba(255, 255, 255, 1);
  7942. box-sizing:border-box;
  7943. border-width:1px;
  7944. border-style:solid;
  7945. border-color:rgba(215, 215, 215, 1);
  7946. border-radius:4px;
  7947. filter:drop-shadow(none);
  7948. transition:none;
  7949. font-size:14px;
  7950. }
  7951. #u13447 {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:502px;
  7955. top:200px;
  7956. width:140px;
  7957. height:30px;
  7958. display:flex;
  7959. transition:none;
  7960. transform-origin:50% 50%;
  7961. font-size:14px;
  7962. }
  7963. #u13447 .text {
  7964. position:absolute;
  7965. align-self:center;
  7966. padding:2px 2px 2px 2px;
  7967. box-sizing:border-box;
  7968. width:100%;
  7969. }
  7970. #u13447_text {
  7971. border-width:0px;
  7972. word-wrap:break-word;
  7973. text-transform:none;
  7974. visibility:hidden;
  7975. }
  7976. #u13448_input {
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:134px;
  7981. height:23px;
  7982. padding:2px 2px 2px 2px;
  7983. font-family:"ArialMT", "Arial", sans-serif;
  7984. font-weight:400;
  7985. font-style:normal;
  7986. font-size:14px;
  7987. letter-spacing:normal;
  7988. color:#AAAAAA;
  7989. vertical-align:none;
  7990. text-align:left;
  7991. text-transform:none;
  7992. background-color:transparent;
  7993. border-color:transparent;
  7994. }
  7995. #u13448_input.disabled {
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:134px;
  8000. height:23px;
  8001. padding:2px 2px 2px 2px;
  8002. font-family:"ArialMT", "Arial", sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:14px;
  8006. letter-spacing:normal;
  8007. color:#AAAAAA;
  8008. vertical-align:none;
  8009. text-align:left;
  8010. text-transform:none;
  8011. background-color:transparent;
  8012. border-color:transparent;
  8013. }
  8014. #u13448_div {
  8015. border-width:0px;
  8016. position:absolute;
  8017. left:0px;
  8018. top:0px;
  8019. width:134px;
  8020. height:23px;
  8021. background:inherit;
  8022. background-color:rgba(255, 255, 255, 1);
  8023. border-radius:0px;
  8024. filter:drop-shadow(none);
  8025. transition:none;
  8026. font-size:14px;
  8027. color:#AAAAAA;
  8028. }
  8029. #u13448 {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:506px;
  8033. top:202px;
  8034. width:134px;
  8035. height:23px;
  8036. display:flex;
  8037. transition:none;
  8038. transform-origin:50% 50%;
  8039. font-size:14px;
  8040. color:#AAAAAA;
  8041. }
  8042. #u13448 .text {
  8043. position:absolute;
  8044. align-self:flex-start;
  8045. padding:2px 2px 2px 2px;
  8046. box-sizing:border-box;
  8047. width:100%;
  8048. }
  8049. #u13448_div.disabled {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:134px;
  8055. height:23px;
  8056. background:inherit;
  8057. background-color:rgba(240, 240, 240, 1);
  8058. border-radius:0px;
  8059. filter:drop-shadow(none);
  8060. transition:none;
  8061. font-size:14px;
  8062. color:#AAAAAA;
  8063. }
  8064. #u13448.disabled {
  8065. }
  8066. .u13448_input_option {
  8067. font-size:14px;
  8068. }
  8069. #u13449 {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:0px;
  8073. top:0px;
  8074. width:0px;
  8075. height:0px;
  8076. }
  8077. #u13450_div {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:0px;
  8081. top:0px;
  8082. width:140px;
  8083. height:30px;
  8084. background:inherit;
  8085. background-color:rgba(255, 255, 255, 1);
  8086. box-sizing:border-box;
  8087. border-width:1px;
  8088. border-style:solid;
  8089. border-color:rgba(215, 215, 215, 1);
  8090. border-radius:4px;
  8091. filter:drop-shadow(none);
  8092. transition:none;
  8093. font-size:14px;
  8094. }
  8095. #u13450 {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:652px;
  8099. top:200px;
  8100. width:140px;
  8101. height:30px;
  8102. display:flex;
  8103. transition:none;
  8104. transform-origin:50% 50%;
  8105. font-size:14px;
  8106. }
  8107. #u13450 .text {
  8108. position:absolute;
  8109. align-self:center;
  8110. padding:2px 2px 2px 2px;
  8111. box-sizing:border-box;
  8112. width:100%;
  8113. }
  8114. #u13450_text {
  8115. border-width:0px;
  8116. word-wrap:break-word;
  8117. text-transform:none;
  8118. visibility:hidden;
  8119. }
  8120. #u13451_input {
  8121. position:absolute;
  8122. left:0px;
  8123. top:0px;
  8124. width:134px;
  8125. height:23px;
  8126. padding:2px 2px 2px 2px;
  8127. font-family:"ArialMT", "Arial", sans-serif;
  8128. font-weight:400;
  8129. font-style:normal;
  8130. font-size:14px;
  8131. letter-spacing:normal;
  8132. color:#AAAAAA;
  8133. vertical-align:none;
  8134. text-align:left;
  8135. text-transform:none;
  8136. background-color:transparent;
  8137. border-color:transparent;
  8138. }
  8139. #u13451_input.disabled {
  8140. position:absolute;
  8141. left:0px;
  8142. top:0px;
  8143. width:134px;
  8144. height:23px;
  8145. padding:2px 2px 2px 2px;
  8146. font-family:"ArialMT", "Arial", sans-serif;
  8147. font-weight:400;
  8148. font-style:normal;
  8149. font-size:14px;
  8150. letter-spacing:normal;
  8151. color:#AAAAAA;
  8152. vertical-align:none;
  8153. text-align:left;
  8154. text-transform:none;
  8155. background-color:transparent;
  8156. border-color:transparent;
  8157. }
  8158. #u13451_div {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:134px;
  8164. height:23px;
  8165. background:inherit;
  8166. background-color:rgba(255, 255, 255, 1);
  8167. border-radius:0px;
  8168. filter:drop-shadow(none);
  8169. transition:none;
  8170. font-size:14px;
  8171. color:#AAAAAA;
  8172. }
  8173. #u13451 {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:656px;
  8177. top:202px;
  8178. width:134px;
  8179. height:23px;
  8180. display:flex;
  8181. transition:none;
  8182. transform-origin:50% 50%;
  8183. font-size:14px;
  8184. color:#AAAAAA;
  8185. }
  8186. #u13451 .text {
  8187. position:absolute;
  8188. align-self:flex-start;
  8189. padding:2px 2px 2px 2px;
  8190. box-sizing:border-box;
  8191. width:100%;
  8192. }
  8193. #u13451_div.disabled {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:0px;
  8197. top:0px;
  8198. width:134px;
  8199. height:23px;
  8200. background:inherit;
  8201. background-color:rgba(240, 240, 240, 1);
  8202. border-radius:0px;
  8203. filter:drop-shadow(none);
  8204. transition:none;
  8205. font-size:14px;
  8206. color:#AAAAAA;
  8207. }
  8208. #u13451.disabled {
  8209. }
  8210. .u13451_input_option {
  8211. font-size:14px;
  8212. }
  8213. #u13452 {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:0px;
  8217. top:0px;
  8218. width:0px;
  8219. height:0px;
  8220. }
  8221. #u13453_div {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:360px;
  8227. height:300px;
  8228. background:inherit;
  8229. background-color:rgba(255, 255, 255, 1);
  8230. border-radius:6px;
  8231. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  8232. transition:none;
  8233. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8234. font-weight:400;
  8235. font-style:normal;
  8236. font-size:12px;
  8237. color:#FFFFFF;
  8238. }
  8239. #u13453 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:1143px;
  8243. top:357px;
  8244. width:360px;
  8245. height:300px;
  8246. display:flex;
  8247. transition:none;
  8248. transform-origin:50% 50%;
  8249. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8250. font-weight:400;
  8251. font-style:normal;
  8252. font-size:12px;
  8253. color:#FFFFFF;
  8254. }
  8255. #u13453 .text {
  8256. position:absolute;
  8257. align-self:center;
  8258. padding:2px 2px 2px 2px;
  8259. box-sizing:border-box;
  8260. width:100%;
  8261. }
  8262. #u13453_text {
  8263. border-width:0px;
  8264. word-wrap:break-word;
  8265. text-transform:none;
  8266. visibility:hidden;
  8267. }
  8268. #u13454_div {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:37px;
  8274. height:25px;
  8275. background:inherit;
  8276. background-color:rgba(255, 255, 255, 0);
  8277. border-radius:0px;
  8278. filter:drop-shadow(none);
  8279. transition:none;
  8280. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8281. font-weight:500;
  8282. font-style:normal;
  8283. font-size:18px;
  8284. }
  8285. #u13454 {
  8286. border-width:0px;
  8287. position:absolute;
  8288. left:1166px;
  8289. top:373px;
  8290. width:37px;
  8291. height:25px;
  8292. display:flex;
  8293. transition:none;
  8294. transform-origin:50% 50%;
  8295. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8296. font-weight:500;
  8297. font-style:normal;
  8298. font-size:18px;
  8299. }
  8300. #u13454 .text {
  8301. position:absolute;
  8302. align-self:flex-start;
  8303. padding:0px 0px 0px 0px;
  8304. box-sizing:border-box;
  8305. width:100%;
  8306. }
  8307. #u13454_text {
  8308. border-width:0px;
  8309. white-space:nowrap;
  8310. text-transform:none;
  8311. }
  8312. #u13455 {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:1480px;
  8316. top:369px;
  8317. width:8px;
  8318. height:8px;
  8319. display:flex;
  8320. opacity:0.5;
  8321. transition:none;
  8322. }
  8323. #u13455 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:2px 2px 2px 2px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u13455_img {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:8px;
  8336. height:8px;
  8337. }
  8338. #u13455_text {
  8339. border-width:0px;
  8340. word-wrap:break-word;
  8341. text-transform:none;
  8342. visibility:hidden;
  8343. }
  8344. #u13456_div {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:80px;
  8350. height:30px;
  8351. background:inherit;
  8352. background-color:rgba(51, 153, 255, 1);
  8353. border-radius:4px;
  8354. filter:drop-shadow(none);
  8355. transition:none;
  8356. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8357. font-weight:400;
  8358. font-style:normal;
  8359. font-size:14px;
  8360. color:#FFFFFF;
  8361. }
  8362. #u13456 {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:1408px;
  8366. top:607px;
  8367. width:80px;
  8368. height:30px;
  8369. display:flex;
  8370. transition:none;
  8371. transform-origin:50% 50%;
  8372. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8373. font-weight:400;
  8374. font-style:normal;
  8375. font-size:14px;
  8376. color:#FFFFFF;
  8377. }
  8378. #u13456 .text {
  8379. position:absolute;
  8380. align-self:center;
  8381. padding:8px 0px 8px 0px;
  8382. box-sizing:border-box;
  8383. width:100%;
  8384. }
  8385. #u13456_text {
  8386. border-width:0px;
  8387. word-wrap:break-word;
  8388. text-transform:none;
  8389. }
  8390. #u13457 {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:0px;
  8396. height:0px;
  8397. }
  8398. #u13458_div {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:322px;
  8404. height:80px;
  8405. background:inherit;
  8406. background-color:rgba(255, 255, 255, 1);
  8407. box-sizing:border-box;
  8408. border-width:1px;
  8409. border-style:solid;
  8410. border-color:rgba(51, 153, 255, 1);
  8411. border-radius:2px;
  8412. filter:drop-shadow(none);
  8413. transition:none;
  8414. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8415. font-weight:400;
  8416. font-style:normal;
  8417. font-size:12px;
  8418. color:#FFFFFF;
  8419. text-align:left;
  8420. }
  8421. #u13458 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:1166px;
  8425. top:507px;
  8426. width:322px;
  8427. height:80px;
  8428. display:flex;
  8429. transition:none;
  8430. transform-origin:50% 50%;
  8431. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:12px;
  8435. color:#FFFFFF;
  8436. text-align:left;
  8437. }
  8438. #u13458 .text {
  8439. position:absolute;
  8440. align-self:center;
  8441. padding:8px 15px 8px 15px;
  8442. box-sizing:border-box;
  8443. width:100%;
  8444. }
  8445. #u13458_text {
  8446. border-width:0px;
  8447. word-wrap:break-word;
  8448. text-transform:none;
  8449. }
  8450. #u13459_div {
  8451. border-width:0px;
  8452. position:absolute;
  8453. left:0px;
  8454. top:0px;
  8455. width:99px;
  8456. height:20px;
  8457. background:inherit;
  8458. background-color:rgba(255, 255, 255, 0);
  8459. border-radius:0px;
  8460. filter:drop-shadow(none);
  8461. transition:none;
  8462. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. color:#D7D7D7;
  8466. }
  8467. #u13459 {
  8468. border-width:0px;
  8469. position:absolute;
  8470. left:1177px;
  8471. top:518px;
  8472. width:99px;
  8473. height:20px;
  8474. display:flex;
  8475. transition:none;
  8476. transform-origin:50% 50%;
  8477. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8478. font-weight:400;
  8479. font-style:normal;
  8480. color:#D7D7D7;
  8481. }
  8482. #u13459 .text {
  8483. position:absolute;
  8484. align-self:flex-start;
  8485. padding:0px 0px 0px 0px;
  8486. box-sizing:border-box;
  8487. width:100%;
  8488. }
  8489. #u13459_text {
  8490. border-width:0px;
  8491. white-space:nowrap;
  8492. text-transform:none;
  8493. }
  8494. #u13460_div {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:0px;
  8498. top:0px;
  8499. width:60px;
  8500. height:30px;
  8501. background:inherit;
  8502. background-color:rgba(255, 255, 255, 1);
  8503. box-sizing:border-box;
  8504. border-width:1px;
  8505. border-style:solid;
  8506. border-color:rgba(170, 170, 170, 1);
  8507. border-radius:4px;
  8508. filter:drop-shadow(none);
  8509. transition:none;
  8510. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8511. font-weight:400;
  8512. font-style:normal;
  8513. font-size:14px;
  8514. }
  8515. #u13460 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:1338px;
  8519. top:607px;
  8520. width:60px;
  8521. height:30px;
  8522. display:flex;
  8523. transition:none;
  8524. transform-origin:50% 50%;
  8525. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8526. font-weight:400;
  8527. font-style:normal;
  8528. font-size:14px;
  8529. }
  8530. #u13460 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 2px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u13460_text {
  8538. border-width:0px;
  8539. word-wrap:break-word;
  8540. text-transform:none;
  8541. }
  8542. #u13461_div {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:0px;
  8546. top:0px;
  8547. width:319px;
  8548. height:75px;
  8549. background:inherit;
  8550. background-color:rgba(255, 255, 255, 0);
  8551. border-radius:0px;
  8552. filter:drop-shadow(none);
  8553. transition:none;
  8554. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8555. font-weight:400;
  8556. font-style:normal;
  8557. font-size:14px;
  8558. line-height:25px;
  8559. }
  8560. #u13461 {
  8561. border-width:0px;
  8562. position:absolute;
  8563. left:1166px;
  8564. top:412px;
  8565. width:319px;
  8566. height:75px;
  8567. display:flex;
  8568. transition:none;
  8569. transform-origin:50% 50%;
  8570. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. font-size:14px;
  8574. line-height:25px;
  8575. }
  8576. #u13461 .text {
  8577. position:absolute;
  8578. align-self:flex-start;
  8579. padding:0px 0px 0px 0px;
  8580. box-sizing:border-box;
  8581. width:100%;
  8582. }
  8583. #u13461_text {
  8584. border-width:0px;
  8585. word-wrap:break-word;
  8586. text-transform:none;
  8587. }
  8588. #u13462 {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:0px;
  8592. top:0px;
  8593. width:0px;
  8594. height:0px;
  8595. }
  8596. #u13463_div {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:0px;
  8600. top:0px;
  8601. width:360px;
  8602. height:190px;
  8603. background:inherit;
  8604. background-color:rgba(255, 255, 255, 1);
  8605. border-radius:6px;
  8606. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  8607. transition:none;
  8608. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8609. font-weight:400;
  8610. font-style:normal;
  8611. font-size:12px;
  8612. color:#FFFFFF;
  8613. }
  8614. #u13463 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:753px;
  8618. top:357px;
  8619. width:360px;
  8620. height:190px;
  8621. display:flex;
  8622. transition:none;
  8623. transform-origin:50% 50%;
  8624. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8625. font-weight:400;
  8626. font-style:normal;
  8627. font-size:12px;
  8628. color:#FFFFFF;
  8629. }
  8630. #u13463 .text {
  8631. position:absolute;
  8632. align-self:center;
  8633. padding:2px 2px 2px 2px;
  8634. box-sizing:border-box;
  8635. width:100%;
  8636. }
  8637. #u13463_text {
  8638. border-width:0px;
  8639. word-wrap:break-word;
  8640. text-transform:none;
  8641. visibility:hidden;
  8642. }
  8643. #u13464_div {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:0px;
  8647. top:0px;
  8648. width:37px;
  8649. height:25px;
  8650. background:inherit;
  8651. background-color:rgba(255, 255, 255, 0);
  8652. border-radius:0px;
  8653. filter:drop-shadow(none);
  8654. transition:none;
  8655. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8656. font-weight:500;
  8657. font-style:normal;
  8658. font-size:18px;
  8659. }
  8660. #u13464 {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:776px;
  8664. top:373px;
  8665. width:37px;
  8666. height:25px;
  8667. display:flex;
  8668. transition:none;
  8669. transform-origin:50% 50%;
  8670. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  8671. font-weight:500;
  8672. font-style:normal;
  8673. font-size:18px;
  8674. }
  8675. #u13464 .text {
  8676. position:absolute;
  8677. align-self:flex-start;
  8678. padding:0px 0px 0px 0px;
  8679. box-sizing:border-box;
  8680. width:100%;
  8681. }
  8682. #u13464_text {
  8683. border-width:0px;
  8684. white-space:nowrap;
  8685. text-transform:none;
  8686. }
  8687. #u13465 {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:1090px;
  8691. top:369px;
  8692. width:8px;
  8693. height:8px;
  8694. display:flex;
  8695. opacity:0.5;
  8696. transition:none;
  8697. }
  8698. #u13465 .text {
  8699. position:absolute;
  8700. align-self:center;
  8701. padding:2px 2px 2px 2px;
  8702. box-sizing:border-box;
  8703. width:100%;
  8704. }
  8705. #u13465_img {
  8706. border-width:0px;
  8707. position:absolute;
  8708. left:0px;
  8709. top:0px;
  8710. width:8px;
  8711. height:8px;
  8712. }
  8713. #u13465_text {
  8714. border-width:0px;
  8715. word-wrap:break-word;
  8716. text-transform:none;
  8717. visibility:hidden;
  8718. }
  8719. #u13466_div {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:0px;
  8723. top:0px;
  8724. width:80px;
  8725. height:30px;
  8726. background:inherit;
  8727. background-color:rgba(51, 153, 255, 1);
  8728. border-radius:4px;
  8729. filter:drop-shadow(none);
  8730. transition:none;
  8731. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:14px;
  8735. color:#FFFFFF;
  8736. }
  8737. #u13466 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:1018px;
  8741. top:501px;
  8742. width:80px;
  8743. height:30px;
  8744. display:flex;
  8745. transition:none;
  8746. transform-origin:50% 50%;
  8747. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8748. font-weight:400;
  8749. font-style:normal;
  8750. font-size:14px;
  8751. color:#FFFFFF;
  8752. }
  8753. #u13466 .text {
  8754. position:absolute;
  8755. align-self:center;
  8756. padding:8px 0px 8px 0px;
  8757. box-sizing:border-box;
  8758. width:100%;
  8759. }
  8760. #u13466_text {
  8761. border-width:0px;
  8762. word-wrap:break-word;
  8763. text-transform:none;
  8764. }
  8765. #u13467_div {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:0px;
  8769. top:0px;
  8770. width:322px;
  8771. height:80px;
  8772. background:inherit;
  8773. background-color:rgba(255, 255, 255, 1);
  8774. box-sizing:border-box;
  8775. border-width:1px;
  8776. border-style:solid;
  8777. border-color:rgba(51, 153, 255, 1);
  8778. border-radius:2px;
  8779. filter:drop-shadow(none);
  8780. transition:none;
  8781. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8782. font-weight:400;
  8783. font-style:normal;
  8784. font-size:12px;
  8785. color:#FFFFFF;
  8786. text-align:left;
  8787. }
  8788. #u13467 {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:776px;
  8792. top:408px;
  8793. width:322px;
  8794. height:80px;
  8795. display:flex;
  8796. transition:none;
  8797. transform-origin:50% 50%;
  8798. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8799. font-weight:400;
  8800. font-style:normal;
  8801. font-size:12px;
  8802. color:#FFFFFF;
  8803. text-align:left;
  8804. }
  8805. #u13467 .text {
  8806. position:absolute;
  8807. align-self:center;
  8808. padding:8px 15px 8px 15px;
  8809. box-sizing:border-box;
  8810. width:100%;
  8811. }
  8812. #u13467_text {
  8813. border-width:0px;
  8814. word-wrap:break-word;
  8815. text-transform:none;
  8816. }
  8817. #u13468_div {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:0px;
  8821. top:0px;
  8822. width:99px;
  8823. height:20px;
  8824. background:inherit;
  8825. background-color:rgba(255, 255, 255, 0);
  8826. border-radius:0px;
  8827. filter:drop-shadow(none);
  8828. transition:none;
  8829. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8830. font-weight:400;
  8831. font-style:normal;
  8832. color:#D7D7D7;
  8833. }
  8834. #u13468 {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:787px;
  8838. top:419px;
  8839. width:99px;
  8840. height:20px;
  8841. display:flex;
  8842. transition:none;
  8843. transform-origin:50% 50%;
  8844. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8845. font-weight:400;
  8846. font-style:normal;
  8847. color:#D7D7D7;
  8848. }
  8849. #u13468 .text {
  8850. position:absolute;
  8851. align-self:flex-start;
  8852. padding:0px 0px 0px 0px;
  8853. box-sizing:border-box;
  8854. width:100%;
  8855. }
  8856. #u13468_text {
  8857. border-width:0px;
  8858. white-space:nowrap;
  8859. text-transform:none;
  8860. }
  8861. #u13469_div {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:60px;
  8867. height:30px;
  8868. background:inherit;
  8869. background-color:rgba(255, 255, 255, 1);
  8870. box-sizing:border-box;
  8871. border-width:1px;
  8872. border-style:solid;
  8873. border-color:rgba(170, 170, 170, 1);
  8874. border-radius:4px;
  8875. filter:drop-shadow(none);
  8876. transition:none;
  8877. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:14px;
  8881. }
  8882. #u13469 {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:948px;
  8886. top:501px;
  8887. width:60px;
  8888. height:30px;
  8889. display:flex;
  8890. transition:none;
  8891. transform-origin:50% 50%;
  8892. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:14px;
  8896. }
  8897. #u13469 .text {
  8898. position:absolute;
  8899. align-self:center;
  8900. padding:2px 2px 2px 2px;
  8901. box-sizing:border-box;
  8902. width:100%;
  8903. }
  8904. #u13469_text {
  8905. border-width:0px;
  8906. word-wrap:break-word;
  8907. text-transform:none;
  8908. }
  8909. #u13470 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:0px;
  8915. height:0px;
  8916. }
  8917. #u13471 {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:0px;
  8921. top:0px;
  8922. width:0px;
  8923. height:0px;
  8924. }
  8925. #u13472_div {
  8926. border-width:0px;
  8927. position:absolute;
  8928. left:0px;
  8929. top:0px;
  8930. width:380px;
  8931. height:180px;
  8932. background:inherit;
  8933. background-color:rgba(255, 255, 255, 1);
  8934. box-sizing:border-box;
  8935. border-width:1px;
  8936. border-style:solid;
  8937. border-color:rgba(204, 204, 204, 1);
  8938. border-radius:4px;
  8939. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  8940. transition:none;
  8941. font-family:"Microsoft YaHei", sans-serif;
  8942. font-weight:400;
  8943. font-style:normal;
  8944. }
  8945. #u13472 {
  8946. border-width:0px;
  8947. position:absolute;
  8948. left:1123px;
  8949. top:695px;
  8950. width:380px;
  8951. height:180px;
  8952. display:flex;
  8953. transition:none;
  8954. transform-origin:50% 50%;
  8955. font-family:"Microsoft YaHei", sans-serif;
  8956. font-weight:400;
  8957. font-style:normal;
  8958. }
  8959. #u13472 .text {
  8960. position:absolute;
  8961. align-self:center;
  8962. padding:2px 2px 2px 2px;
  8963. box-sizing:border-box;
  8964. width:100%;
  8965. }
  8966. #u13472_text {
  8967. border-width:0px;
  8968. word-wrap:break-word;
  8969. text-transform:none;
  8970. visibility:hidden;
  8971. }
  8972. #u13473_div {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:0px;
  8976. top:0px;
  8977. width:299px;
  8978. height:44px;
  8979. background:inherit;
  8980. background-color:rgba(255, 255, 255, 0);
  8981. border-radius:0px;
  8982. filter:drop-shadow(none);
  8983. transition:none;
  8984. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8985. font-weight:400;
  8986. font-style:normal;
  8987. font-size:14px;
  8988. color:#666666;
  8989. line-height:22px;
  8990. }
  8991. #u13473 {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:1186px;
  8995. top:754px;
  8996. width:299px;
  8997. height:44px;
  8998. display:flex;
  8999. transition:none;
  9000. transform-origin:50% 50%;
  9001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9002. font-weight:400;
  9003. font-style:normal;
  9004. font-size:14px;
  9005. color:#666666;
  9006. line-height:22px;
  9007. }
  9008. #u13473 .text {
  9009. position:absolute;
  9010. align-self:flex-start;
  9011. padding:0px 0px 0px 0px;
  9012. box-sizing:border-box;
  9013. width:100%;
  9014. }
  9015. #u13473_text {
  9016. border-width:0px;
  9017. word-wrap:break-word;
  9018. text-transform:none;
  9019. }
  9020. #u13474_div {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:0px;
  9024. top:0px;
  9025. width:235px;
  9026. height:21px;
  9027. background:inherit;
  9028. background-color:rgba(255, 255, 255, 0);
  9029. border-radius:0px;
  9030. filter:drop-shadow(none);
  9031. transition:none;
  9032. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  9033. font-weight:650;
  9034. font-style:normal;
  9035. font-size:18px;
  9036. color:#000000;
  9037. line-height:22px;
  9038. }
  9039. #u13474 {
  9040. border-width:0px;
  9041. position:absolute;
  9042. left:1182px;
  9043. top:723px;
  9044. width:235px;
  9045. height:21px;
  9046. display:flex;
  9047. transition:none;
  9048. transform-origin:50% 50%;
  9049. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  9050. font-weight:650;
  9051. font-style:normal;
  9052. font-size:18px;
  9053. color:#000000;
  9054. line-height:22px;
  9055. }
  9056. #u13474 .text {
  9057. position:absolute;
  9058. align-self:flex-start;
  9059. padding:0px 0px 0px 0px;
  9060. box-sizing:border-box;
  9061. width:100%;
  9062. }
  9063. #u13474_text {
  9064. border-width:0px;
  9065. white-space:nowrap;
  9066. text-transform:none;
  9067. }
  9068. #u13475_div {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:0px;
  9072. top:0px;
  9073. width:89px;
  9074. height:30px;
  9075. background:inherit;
  9076. background-color:rgba(24, 144, 255, 1);
  9077. border-radius:4px;
  9078. filter:drop-shadow(none);
  9079. transition:none;
  9080. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9081. font-weight:400;
  9082. font-style:normal;
  9083. font-size:14px;
  9084. color:#FFFFFF;
  9085. }
  9086. #u13475 {
  9087. border-width:0px;
  9088. position:absolute;
  9089. left:1391px;
  9090. top:820px;
  9091. width:89px;
  9092. height:30px;
  9093. display:flex;
  9094. transition:none;
  9095. transform-origin:50% 50%;
  9096. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9097. font-weight:400;
  9098. font-style:normal;
  9099. font-size:14px;
  9100. color:#FFFFFF;
  9101. }
  9102. #u13475 .text {
  9103. position:absolute;
  9104. align-self:center;
  9105. padding:2px 16px 2px 16px;
  9106. box-sizing:border-box;
  9107. width:100%;
  9108. }
  9109. #u13475_text {
  9110. border-width:0px;
  9111. white-space:nowrap;
  9112. text-transform:none;
  9113. }
  9114. #u13476_div {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:0px;
  9118. top:0px;
  9119. width:66px;
  9120. height:30px;
  9121. background:inherit;
  9122. background-color:rgba(255, 255, 255, 1);
  9123. box-sizing:border-box;
  9124. border-width:1px;
  9125. border-style:solid;
  9126. border-color:rgba(217, 217, 217, 1);
  9127. border-radius:4px;
  9128. filter:drop-shadow(none);
  9129. transition:none;
  9130. font-family:"Microsoft YaHei", sans-serif;
  9131. font-weight:400;
  9132. font-style:normal;
  9133. font-size:14px;
  9134. color:rgba(0, 0, 0, 0.6470588235294118);
  9135. line-height:21px;
  9136. }
  9137. #u13476 {
  9138. border-width:0px;
  9139. position:absolute;
  9140. left:1315px;
  9141. top:820px;
  9142. width:66px;
  9143. height:30px;
  9144. display:flex;
  9145. transition:none;
  9146. transform-origin:50% 50%;
  9147. font-family:"Microsoft YaHei", sans-serif;
  9148. font-weight:400;
  9149. font-style:normal;
  9150. font-size:14px;
  9151. color:rgba(0, 0, 0, 0.6470588235294118);
  9152. line-height:21px;
  9153. }
  9154. #u13476 .text {
  9155. position:absolute;
  9156. align-self:center;
  9157. padding:2px 16px 2px 16px;
  9158. box-sizing:border-box;
  9159. width:100%;
  9160. }
  9161. #u13476_text {
  9162. border-width:0px;
  9163. white-space:nowrap;
  9164. text-transform:none;
  9165. }
  9166. #u13477 {
  9167. border-width:0px;
  9168. position:absolute;
  9169. left:1152px;
  9170. top:724px;
  9171. width:20px;
  9172. height:20px;
  9173. display:flex;
  9174. transition:none;
  9175. }
  9176. #u13477 .text {
  9177. position:absolute;
  9178. align-self:center;
  9179. padding:2px 2px 2px 2px;
  9180. box-sizing:border-box;
  9181. width:100%;
  9182. }
  9183. #u13477_img {
  9184. border-width:0px;
  9185. position:absolute;
  9186. left:0px;
  9187. top:0px;
  9188. width:20px;
  9189. height:20px;
  9190. }
  9191. #u13477_text {
  9192. border-width:0px;
  9193. word-wrap:break-word;
  9194. text-transform:none;
  9195. visibility:hidden;
  9196. }