styles.css 141 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2324px;
  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. #u20093_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u20093 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u20093 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u20093_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u20094_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u20094 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u20094 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u20094_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u20095 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u20096_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u20096 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u20096 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u20096_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u20097_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u20097 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u20097 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u20097_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u20098_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u20098 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u20098 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u20098_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u20099_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u20099 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u20099 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u20099_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u20100 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u20101_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u20101 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u20101 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u20101_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u20102_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u20102 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u20102 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u20102_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u20103 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u20104_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u20104 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u20104 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u20104_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u20105_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u20105 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u20105 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u20105_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u20106 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u20107_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u20107 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u20107 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u20107_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u20108_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u20108 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u20108 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u20108_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u20109 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u20110_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u20110 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u20110 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u20110_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u20111_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u20111 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u20111 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u20111_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u20112 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u20113_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u20113 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u20113 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u20113_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u20114_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u20114 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u20114 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u20114_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u20115 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u20116_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u20116 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u20116 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u20116_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u20117_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u20117 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u20117 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u20117_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u20118 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u20119_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u20119 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:445px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u20119 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u20119_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u20120_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u20120 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:449px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u20120 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u20120_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u20121 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u20122_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u20122 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:487px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u20122 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u20122_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u20123_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u20123 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:491px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u20123 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u20123_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u20124 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u20125_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u20125 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u20125 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u20125_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u20126_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u20126 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u20126 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u20126_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u20127 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u20128_input {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:214px;
  1022. height:27px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:'ArialMT', 'Arial', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#FFFFFF;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u20128_input.disabled {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:214px;
  1041. height:27px;
  1042. padding:2px 2px 2px 2px;
  1043. font-family:'ArialMT', 'Arial', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. letter-spacing:normal;
  1048. color:#FFFFFF;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u20128_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:214px;
  1061. height:27px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-size:14px;
  1070. color:#FFFFFF;
  1071. }
  1072. #u20128 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1221px;
  1076. top:11px;
  1077. width:214px;
  1078. height:27px;
  1079. display:flex;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u20128 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u20128_div.disabled {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:214px;
  1096. height:27px;
  1097. background:inherit;
  1098. background-color:rgba(240, 240, 240, 1);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u20128.disabled {
  1108. }
  1109. .u20128_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u20129_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u20129 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:14px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u20129 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u20129_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u20130_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:100px;
  1148. height:24px;
  1149. background:inherit;
  1150. background-color:rgba(242, 242, 242, 0.2);
  1151. border:none;
  1152. border-radius:25px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. color:#FFFFFF;
  1160. text-align:center;
  1161. }
  1162. #u20130 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:1480px;
  1166. top:13px;
  1167. width:100px;
  1168. height:24px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. color:#FFFFFF;
  1174. text-align:center;
  1175. }
  1176. #u20130 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u20130_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u20131_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u20131 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u20131 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u20131_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u20132 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u20133_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:33px;
  1232. height:22px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u20133 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:39px;
  1250. top:361px;
  1251. width:33px;
  1252. height:22px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:16px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u20133 .text {
  1261. position:absolute;
  1262. align-self:flex-start;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u20133_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u20134_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u20134 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:365px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u20134 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u20134_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u20135 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u20136_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u20136 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u20136 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u20136_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u20137_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u20137 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u20137 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u20137_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u20138 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u20139_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u20139 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:151px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u20139 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u20139_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u20140_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u20140 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u20140 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u20140_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u20141 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u20142_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u20142 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:529px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u20142 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u20142_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u20143_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u20143 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:533px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u20143 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u20143_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u20144 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u20145_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u20145 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:193px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u20145 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u20145_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u20146_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u20146 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u20146 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u20146_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u20147 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u20148_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u20148 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:403px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u20148 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u20148_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u20149_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u20149 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:407px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u20149 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u20149_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u20150_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1257px;
  1728. height:1192px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#FFFFFF;
  1741. text-align:left;
  1742. }
  1743. #u20150 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:332px;
  1747. top:50px;
  1748. width:1257px;
  1749. height:1192px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:12px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. }
  1758. #u20150 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 50px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u20150_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. visibility:hidden;
  1770. }
  1771. #u20151 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:0px;
  1777. height:0px;
  1778. }
  1779. #u20152_div {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:200px;
  1785. height:1192px;
  1786. background:inherit;
  1787. background-color:rgba(255, 255, 255, 1);
  1788. border:none;
  1789. border-radius:0px;
  1790. -moz-box-shadow:none;
  1791. -webkit-box-shadow:none;
  1792. box-shadow:none;
  1793. }
  1794. #u20152 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:120px;
  1798. top:50px;
  1799. width:200px;
  1800. height:1192px;
  1801. display:flex;
  1802. }
  1803. #u20152 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 2px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u20152_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. visibility:hidden;
  1815. }
  1816. #u20153_div {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:200px;
  1822. height:60px;
  1823. background:inherit;
  1824. background-color:rgba(224, 231, 247, 1);
  1825. border:none;
  1826. border-radius:0px;
  1827. -moz-box-shadow:none;
  1828. -webkit-box-shadow:none;
  1829. box-shadow:none;
  1830. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1831. font-weight:500;
  1832. font-style:normal;
  1833. font-size:18px;
  1834. }
  1835. #u20153 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:120px;
  1839. top:50px;
  1840. width:200px;
  1841. height:60px;
  1842. display:flex;
  1843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1844. font-weight:500;
  1845. font-style:normal;
  1846. font-size:18px;
  1847. }
  1848. #u20153 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:0px 0px 0px 20px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u20153_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. }
  1860. #u20154_div {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:65px;
  1866. height:22px;
  1867. background:inherit;
  1868. background-color:rgba(255, 255, 255, 0);
  1869. border:none;
  1870. border-radius:0px;
  1871. -moz-box-shadow:none;
  1872. -webkit-box-shadow:none;
  1873. box-shadow:none;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:16px;
  1878. }
  1879. #u20154 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:150px;
  1883. top:166px;
  1884. width:65px;
  1885. height:22px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:16px;
  1891. }
  1892. #u20154 .text {
  1893. position:absolute;
  1894. align-self:flex-start;
  1895. padding:0px 0px 0px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u20154_text {
  1900. border-width:0px;
  1901. white-space:nowrap;
  1902. text-transform:none;
  1903. }
  1904. #u20155_div {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:49px;
  1910. height:17px;
  1911. background:inherit;
  1912. background-color:rgba(255, 255, 255, 0);
  1913. border:none;
  1914. border-radius:0px;
  1915. -moz-box-shadow:none;
  1916. -webkit-box-shadow:none;
  1917. box-shadow:none;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:12px;
  1922. color:#AAAAAA;
  1923. }
  1924. #u20155 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:150px;
  1928. top:130px;
  1929. width:49px;
  1930. height:17px;
  1931. display:flex;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:12px;
  1936. color:#AAAAAA;
  1937. }
  1938. #u20155 .text {
  1939. position:absolute;
  1940. align-self:flex-start;
  1941. padding:0px 0px 0px 0px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u20155_text {
  1946. border-width:0px;
  1947. white-space:nowrap;
  1948. text-transform:none;
  1949. }
  1950. #u20156_div {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:65px;
  1956. height:22px;
  1957. background:inherit;
  1958. background-color:rgba(255, 255, 255, 0);
  1959. border:none;
  1960. border-radius:0px;
  1961. -moz-box-shadow:none;
  1962. -webkit-box-shadow:none;
  1963. box-shadow:none;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:16px;
  1968. }
  1969. #u20156 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:150px;
  1973. top:208px;
  1974. width:65px;
  1975. height:22px;
  1976. display:flex;
  1977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1978. font-weight:400;
  1979. font-style:normal;
  1980. font-size:16px;
  1981. }
  1982. #u20156 .text {
  1983. position:absolute;
  1984. align-self:flex-start;
  1985. padding:0px 0px 0px 0px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u20156_text {
  1990. border-width:0px;
  1991. white-space:nowrap;
  1992. text-transform:none;
  1993. }
  1994. #u20157_div {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:65px;
  2000. height:22px;
  2001. background:inherit;
  2002. background-color:rgba(255, 255, 255, 0);
  2003. border:none;
  2004. border-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:16px;
  2012. }
  2013. #u20157 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:147px;
  2017. top:307px;
  2018. width:65px;
  2019. height:22px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:16px;
  2025. }
  2026. #u20157 .text {
  2027. position:absolute;
  2028. align-self:flex-start;
  2029. padding:0px 0px 0px 0px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u20157_text {
  2034. border-width:0px;
  2035. white-space:nowrap;
  2036. text-transform:none;
  2037. }
  2038. #u20158_img {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:201px;
  2044. height:2px;
  2045. }
  2046. #u20158 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:120px;
  2050. top:250px;
  2051. width:200px;
  2052. height:1px;
  2053. display:flex;
  2054. }
  2055. #u20158 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u20158_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u20159_div {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:49px;
  2074. height:17px;
  2075. background:inherit;
  2076. background-color:rgba(255, 255, 255, 0);
  2077. border:none;
  2078. border-radius:0px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:12px;
  2086. color:#AAAAAA;
  2087. }
  2088. #u20159 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:147px;
  2092. top:270px;
  2093. width:49px;
  2094. height:17px;
  2095. display:flex;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:12px;
  2100. color:#AAAAAA;
  2101. }
  2102. #u20159 .text {
  2103. position:absolute;
  2104. align-self:flex-start;
  2105. padding:0px 0px 0px 0px;
  2106. box-sizing:border-box;
  2107. width:100%;
  2108. }
  2109. #u20159_text {
  2110. border-width:0px;
  2111. white-space:nowrap;
  2112. text-transform:none;
  2113. }
  2114. #u20160_div {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:73px;
  2120. height:50px;
  2121. background:inherit;
  2122. background-color:rgba(255, 255, 255, 0);
  2123. border:none;
  2124. border-left:0px;
  2125. border-top:0px;
  2126. border-right:0px;
  2127. border-radius:0px;
  2128. border-bottom-right-radius:0px;
  2129. border-bottom-left-radius:0px;
  2130. -moz-box-shadow:none;
  2131. -webkit-box-shadow:none;
  2132. box-shadow:none;
  2133. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2134. font-weight:500;
  2135. font-style:normal;
  2136. font-size:18px;
  2137. }
  2138. #u20160 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:348px;
  2142. top:50px;
  2143. width:73px;
  2144. height:50px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2147. font-weight:500;
  2148. font-style:normal;
  2149. font-size:18px;
  2150. }
  2151. #u20160 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:0px 0px 0px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u20160_text {
  2159. border-width:0px;
  2160. white-space:nowrap;
  2161. text-transform:none;
  2162. }
  2163. #u20161_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:67px;
  2169. height:30px;
  2170. background:inherit;
  2171. background-color:rgba(24, 144, 255, 1);
  2172. border:none;
  2173. border-radius:4px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. color:#FFFFFF;
  2182. }
  2183. #u20161 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:350px;
  2187. top:154px;
  2188. width:67px;
  2189. height:30px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. color:#FFFFFF;
  2196. }
  2197. #u20161 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:5px 15px 5px 15px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u20161_text {
  2205. border-width:0px;
  2206. white-space:nowrap;
  2207. text-transform:none;
  2208. }
  2209. #u20162 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:348px;
  2213. top:194px;
  2214. width:1215px;
  2215. height:572px;
  2216. }
  2217. #u20163_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:122px;
  2223. height:39px;
  2224. }
  2225. #u20163 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:122px;
  2231. height:39px;
  2232. display:flex;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:12px;
  2237. color:#FFFFFF;
  2238. }
  2239. #u20163 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 0px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u20163_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. }
  2251. #u20164_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:122px;
  2257. height:39px;
  2258. }
  2259. #u20164 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:122px;
  2263. top:0px;
  2264. width:122px;
  2265. height:39px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:12px;
  2271. color:#FFFFFF;
  2272. }
  2273. #u20164 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 0px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u20164_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. }
  2285. #u20165_img {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:122px;
  2291. height:39px;
  2292. }
  2293. #u20165 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:244px;
  2297. top:0px;
  2298. width:122px;
  2299. height:39px;
  2300. display:flex;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:12px;
  2305. color:#FFFFFF;
  2306. }
  2307. #u20165 .text {
  2308. position:absolute;
  2309. align-self:center;
  2310. padding:2px 2px 2px 0px;
  2311. box-sizing:border-box;
  2312. width:100%;
  2313. }
  2314. #u20165_text {
  2315. border-width:0px;
  2316. word-wrap:break-word;
  2317. text-transform:none;
  2318. }
  2319. #u20166_img {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:122px;
  2325. height:39px;
  2326. }
  2327. #u20166 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:366px;
  2331. top:0px;
  2332. width:122px;
  2333. height:39px;
  2334. display:flex;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:12px;
  2339. color:#FFFFFF;
  2340. }
  2341. #u20166 .text {
  2342. position:absolute;
  2343. align-self:center;
  2344. padding:2px 2px 2px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u20166_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. }
  2353. #u20167_img {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:365px;
  2359. height:39px;
  2360. }
  2361. #u20167 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:488px;
  2365. top:0px;
  2366. width:365px;
  2367. height:39px;
  2368. display:flex;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:12px;
  2373. color:#FFFFFF;
  2374. }
  2375. #u20167 .text {
  2376. position:absolute;
  2377. align-self:center;
  2378. padding:2px 2px 2px 0px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u20167_text {
  2383. border-width:0px;
  2384. word-wrap:break-word;
  2385. text-transform:none;
  2386. }
  2387. #u20168_img {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:243px;
  2393. height:39px;
  2394. }
  2395. #u20168 {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:853px;
  2399. top:0px;
  2400. width:243px;
  2401. height:39px;
  2402. display:flex;
  2403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2404. font-weight:400;
  2405. font-style:normal;
  2406. font-size:12px;
  2407. color:#FFFFFF;
  2408. }
  2409. #u20168 .text {
  2410. position:absolute;
  2411. align-self:center;
  2412. padding:2px 2px 2px 0px;
  2413. box-sizing:border-box;
  2414. width:100%;
  2415. }
  2416. #u20168_text {
  2417. border-width:0px;
  2418. word-wrap:break-word;
  2419. text-transform:none;
  2420. }
  2421. #u20169_img {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:119px;
  2427. height:39px;
  2428. }
  2429. #u20169 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:1096px;
  2433. top:0px;
  2434. width:119px;
  2435. height:39px;
  2436. display:flex;
  2437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2438. font-weight:400;
  2439. font-style:normal;
  2440. font-size:12px;
  2441. color:#FFFFFF;
  2442. }
  2443. #u20169 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:2px 2px 2px 0px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u20169_text {
  2451. border-width:0px;
  2452. word-wrap:break-word;
  2453. text-transform:none;
  2454. }
  2455. #u20170_img {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:122px;
  2461. height:36px;
  2462. }
  2463. #u20170 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:39px;
  2468. width:122px;
  2469. height:36px;
  2470. display:flex;
  2471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2472. font-weight:400;
  2473. font-style:normal;
  2474. font-size:12px;
  2475. }
  2476. #u20170 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:2px 2px 2px 0px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u20170_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. visibility:hidden;
  2488. }
  2489. #u20171_img {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:122px;
  2495. height:36px;
  2496. }
  2497. #u20171 {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:122px;
  2501. top:39px;
  2502. width:122px;
  2503. height:36px;
  2504. display:flex;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:12px;
  2509. }
  2510. #u20171 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 2px 2px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u20171_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u20172_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:122px;
  2529. height:36px;
  2530. }
  2531. #u20172 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:244px;
  2535. top:39px;
  2536. width:122px;
  2537. height:36px;
  2538. display:flex;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:12px;
  2543. color:#333333;
  2544. }
  2545. #u20172 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 0px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u20172_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. }
  2557. #u20173_img {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:122px;
  2563. height:36px;
  2564. }
  2565. #u20173 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:366px;
  2569. top:39px;
  2570. width:122px;
  2571. height:36px;
  2572. display:flex;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:12px;
  2577. color:#333333;
  2578. }
  2579. #u20173 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u20173_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. }
  2591. #u20174_img {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:365px;
  2597. height:36px;
  2598. }
  2599. #u20174 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:488px;
  2603. top:39px;
  2604. width:365px;
  2605. height:36px;
  2606. display:flex;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:12px;
  2611. color:#333333;
  2612. }
  2613. #u20174 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 0px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u20174_text {
  2621. border-width:0px;
  2622. word-wrap:break-word;
  2623. text-transform:none;
  2624. visibility:hidden;
  2625. }
  2626. #u20175_img {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:243px;
  2632. height:36px;
  2633. }
  2634. #u20175 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:853px;
  2638. top:39px;
  2639. width:243px;
  2640. height:36px;
  2641. display:flex;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:12px;
  2646. }
  2647. #u20175 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:2px 2px 2px 0px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u20175_text {
  2655. border-width:0px;
  2656. word-wrap:break-word;
  2657. text-transform:none;
  2658. visibility:hidden;
  2659. }
  2660. #u20176_img {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:119px;
  2666. height:36px;
  2667. }
  2668. #u20176 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:1096px;
  2672. top:39px;
  2673. width:119px;
  2674. height:36px;
  2675. display:flex;
  2676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2677. font-weight:400;
  2678. font-style:normal;
  2679. font-size:12px;
  2680. color:#1890FF;
  2681. }
  2682. #u20176 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u20176_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. }
  2694. #u20177_img {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:122px;
  2700. height:38px;
  2701. }
  2702. #u20177 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:75px;
  2707. width:122px;
  2708. height:38px;
  2709. display:flex;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:12px;
  2714. }
  2715. #u20177 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 0px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u20177_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u20178_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:122px;
  2734. height:38px;
  2735. }
  2736. #u20178 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:122px;
  2740. top:75px;
  2741. width:122px;
  2742. height:38px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:12px;
  2748. }
  2749. #u20178 .text {
  2750. position:absolute;
  2751. align-self:center;
  2752. padding:2px 2px 2px 0px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u20178_text {
  2757. border-width:0px;
  2758. word-wrap:break-word;
  2759. text-transform:none;
  2760. visibility:hidden;
  2761. }
  2762. #u20179_img {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:122px;
  2768. height:38px;
  2769. }
  2770. #u20179 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:244px;
  2774. top:75px;
  2775. width:122px;
  2776. height:38px;
  2777. display:flex;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:12px;
  2782. color:#333333;
  2783. }
  2784. #u20179 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 0px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u20179_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. }
  2796. #u20180_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:122px;
  2802. height:38px;
  2803. }
  2804. #u20180 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:366px;
  2808. top:75px;
  2809. width:122px;
  2810. height:38px;
  2811. display:flex;
  2812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:12px;
  2816. color:#333333;
  2817. }
  2818. #u20180 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 0px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u20180_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. }
  2830. #u20181_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:365px;
  2836. height:38px;
  2837. }
  2838. #u20181 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:488px;
  2842. top:75px;
  2843. width:365px;
  2844. height:38px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. font-size:12px;
  2850. color:#333333;
  2851. }
  2852. #u20181 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 0px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u20181_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. visibility:hidden;
  2864. }
  2865. #u20182_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:243px;
  2871. height:38px;
  2872. }
  2873. #u20182 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:853px;
  2877. top:75px;
  2878. width:243px;
  2879. height:38px;
  2880. display:flex;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. }
  2886. #u20182 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 0px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u20182_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u20183_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:119px;
  2905. height:38px;
  2906. }
  2907. #u20183 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:1096px;
  2911. top:75px;
  2912. width:119px;
  2913. height:38px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#1890FF;
  2920. }
  2921. #u20183 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u20183_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u20184_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:122px;
  2940. height:38px;
  2941. }
  2942. #u20184 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:113px;
  2947. width:122px;
  2948. height:38px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. }
  2955. #u20184 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u20184_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u20185_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:122px;
  2974. height:38px;
  2975. }
  2976. #u20185 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:122px;
  2980. top:113px;
  2981. width:122px;
  2982. height:38px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. }
  2989. #u20185 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u20185_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. visibility:hidden;
  3001. }
  3002. #u20186_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:122px;
  3008. height:38px;
  3009. }
  3010. #u20186 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:244px;
  3014. top:113px;
  3015. width:122px;
  3016. height:38px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:12px;
  3022. color:#AAAAAA;
  3023. }
  3024. #u20186 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 0px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u20186_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. }
  3036. #u20187_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:122px;
  3042. height:38px;
  3043. }
  3044. #u20187 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:366px;
  3048. top:113px;
  3049. width:122px;
  3050. height:38px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. color:#AAAAAA;
  3057. }
  3058. #u20187 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 0px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u20187_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. }
  3070. #u20188_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:365px;
  3076. height:38px;
  3077. }
  3078. #u20188 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:488px;
  3082. top:113px;
  3083. width:365px;
  3084. height:38px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. color:#AAAAAA;
  3091. }
  3092. #u20188 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u20188_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u20189_img {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:243px;
  3111. height:38px;
  3112. }
  3113. #u20189 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:853px;
  3117. top:113px;
  3118. width:243px;
  3119. height:38px;
  3120. display:flex;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:12px;
  3125. }
  3126. #u20189 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u20189_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. visibility:hidden;
  3138. }
  3139. #u20190_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:119px;
  3145. height:38px;
  3146. }
  3147. #u20190 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:1096px;
  3151. top:113px;
  3152. width:119px;
  3153. height:38px;
  3154. display:flex;
  3155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3156. font-weight:400;
  3157. font-style:normal;
  3158. font-size:12px;
  3159. color:#1890FF;
  3160. }
  3161. #u20190 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 0px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u20190_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u20191_img {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:122px;
  3180. height:38px;
  3181. }
  3182. #u20191 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:151px;
  3187. width:122px;
  3188. height:38px;
  3189. display:flex;
  3190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:12px;
  3194. }
  3195. #u20191 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 0px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u20191_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u20192_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:122px;
  3214. height:38px;
  3215. }
  3216. #u20192 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:122px;
  3220. top:151px;
  3221. width:122px;
  3222. height:38px;
  3223. display:flex;
  3224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:12px;
  3228. }
  3229. #u20192 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 0px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u20192_text {
  3237. border-width:0px;
  3238. word-wrap:break-word;
  3239. text-transform:none;
  3240. visibility:hidden;
  3241. }
  3242. #u20193_img {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:122px;
  3248. height:38px;
  3249. }
  3250. #u20193 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:244px;
  3254. top:151px;
  3255. width:122px;
  3256. height:38px;
  3257. display:flex;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:12px;
  3262. color:#333333;
  3263. }
  3264. #u20193 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 0px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u20193_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. }
  3276. #u20194_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:122px;
  3282. height:38px;
  3283. }
  3284. #u20194 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:366px;
  3288. top:151px;
  3289. width:122px;
  3290. height:38px;
  3291. display:flex;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. font-size:12px;
  3296. color:#333333;
  3297. }
  3298. #u20194 .text {
  3299. position:absolute;
  3300. align-self:center;
  3301. padding:2px 2px 2px 0px;
  3302. box-sizing:border-box;
  3303. width:100%;
  3304. }
  3305. #u20194_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. }
  3310. #u20195_img {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:365px;
  3316. height:38px;
  3317. }
  3318. #u20195 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:488px;
  3322. top:151px;
  3323. width:365px;
  3324. height:38px;
  3325. display:flex;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:12px;
  3330. color:#333333;
  3331. }
  3332. #u20195 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:2px 2px 2px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u20195_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u20196_img {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:243px;
  3351. height:38px;
  3352. }
  3353. #u20196 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:853px;
  3357. top:151px;
  3358. width:243px;
  3359. height:38px;
  3360. display:flex;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. }
  3366. #u20196 .text {
  3367. position:absolute;
  3368. align-self:center;
  3369. padding:2px 2px 2px 0px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u20196_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. visibility:hidden;
  3378. }
  3379. #u20197_img {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:119px;
  3385. height:38px;
  3386. }
  3387. #u20197 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:1096px;
  3391. top:151px;
  3392. width:119px;
  3393. height:38px;
  3394. display:flex;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:12px;
  3399. color:#1890FF;
  3400. }
  3401. #u20197 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 0px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u20197_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. visibility:hidden;
  3413. }
  3414. #u20198_img {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:122px;
  3420. height:35px;
  3421. }
  3422. #u20198 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:189px;
  3427. width:122px;
  3428. height:35px;
  3429. display:flex;
  3430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. color:#606266;
  3435. }
  3436. #u20198 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u20198_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u20199_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:122px;
  3455. height:35px;
  3456. }
  3457. #u20199 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:122px;
  3461. top:189px;
  3462. width:122px;
  3463. height:35px;
  3464. display:flex;
  3465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:12px;
  3469. color:#606266;
  3470. }
  3471. #u20199 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u20199_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u20200_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:122px;
  3490. height:35px;
  3491. }
  3492. #u20200 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:244px;
  3496. top:189px;
  3497. width:122px;
  3498. height:35px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. color:#AAAAAA;
  3505. }
  3506. #u20200 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u20200_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. }
  3518. #u20201_img {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:122px;
  3524. height:35px;
  3525. }
  3526. #u20201 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:366px;
  3530. top:189px;
  3531. width:122px;
  3532. height:35px;
  3533. display:flex;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. color:#AAAAAA;
  3539. }
  3540. #u20201 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 0px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u20201_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. }
  3552. #u20202_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:365px;
  3558. height:35px;
  3559. }
  3560. #u20202 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:488px;
  3564. top:189px;
  3565. width:365px;
  3566. height:35px;
  3567. display:flex;
  3568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:12px;
  3572. color:#AAAAAA;
  3573. }
  3574. #u20202 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 0px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u20202_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. visibility:hidden;
  3586. }
  3587. #u20203_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:243px;
  3593. height:35px;
  3594. }
  3595. #u20203 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:853px;
  3599. top:189px;
  3600. width:243px;
  3601. height:35px;
  3602. display:flex;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:12px;
  3607. color:#606266;
  3608. }
  3609. #u20203 .text {
  3610. position:absolute;
  3611. align-self:center;
  3612. padding:2px 2px 2px 0px;
  3613. box-sizing:border-box;
  3614. width:100%;
  3615. }
  3616. #u20203_text {
  3617. border-width:0px;
  3618. word-wrap:break-word;
  3619. text-transform:none;
  3620. visibility:hidden;
  3621. }
  3622. #u20204_img {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:119px;
  3628. height:35px;
  3629. }
  3630. #u20204 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:1096px;
  3634. top:189px;
  3635. width:119px;
  3636. height:35px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:12px;
  3642. color:#02A7F0;
  3643. }
  3644. #u20204 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 0px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u20204_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u20205_img {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:122px;
  3663. height:35px;
  3664. }
  3665. #u20205 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:224px;
  3670. width:122px;
  3671. height:35px;
  3672. display:flex;
  3673. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:12px;
  3677. color:#606266;
  3678. }
  3679. #u20205 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:2px 2px 2px 0px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u20205_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. visibility:hidden;
  3691. }
  3692. #u20206_img {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:122px;
  3698. height:35px;
  3699. }
  3700. #u20206 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:122px;
  3704. top:224px;
  3705. width:122px;
  3706. height:35px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. color:#606266;
  3713. }
  3714. #u20206 .text {
  3715. position:absolute;
  3716. align-self:center;
  3717. padding:2px 2px 2px 0px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u20206_text {
  3722. border-width:0px;
  3723. word-wrap:break-word;
  3724. text-transform:none;
  3725. visibility:hidden;
  3726. }
  3727. #u20207_img {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:122px;
  3733. height:35px;
  3734. }
  3735. #u20207 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:244px;
  3739. top:224px;
  3740. width:122px;
  3741. height:35px;
  3742. display:flex;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:12px;
  3747. color:#AAAAAA;
  3748. }
  3749. #u20207 .text {
  3750. position:absolute;
  3751. align-self:center;
  3752. padding:2px 2px 2px 0px;
  3753. box-sizing:border-box;
  3754. width:100%;
  3755. }
  3756. #u20207_text {
  3757. border-width:0px;
  3758. word-wrap:break-word;
  3759. text-transform:none;
  3760. }
  3761. #u20208_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:122px;
  3767. height:35px;
  3768. }
  3769. #u20208 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:366px;
  3773. top:224px;
  3774. width:122px;
  3775. height:35px;
  3776. display:flex;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:12px;
  3781. color:#AAAAAA;
  3782. }
  3783. #u20208 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 0px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u20208_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. }
  3795. #u20209_img {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:365px;
  3801. height:35px;
  3802. }
  3803. #u20209 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:488px;
  3807. top:224px;
  3808. width:365px;
  3809. height:35px;
  3810. display:flex;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:12px;
  3815. color:#AAAAAA;
  3816. }
  3817. #u20209 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:2px 2px 2px 0px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u20209_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u20210_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:243px;
  3836. height:35px;
  3837. }
  3838. #u20210 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:853px;
  3842. top:224px;
  3843. width:243px;
  3844. height:35px;
  3845. display:flex;
  3846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:12px;
  3850. color:#606266;
  3851. }
  3852. #u20210 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:2px 2px 2px 0px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u20210_text {
  3860. border-width:0px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. visibility:hidden;
  3864. }
  3865. #u20211_img {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:119px;
  3871. height:35px;
  3872. }
  3873. #u20211 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:1096px;
  3877. top:224px;
  3878. width:119px;
  3879. height:35px;
  3880. display:flex;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:12px;
  3885. color:#02A7F0;
  3886. }
  3887. #u20211 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 0px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u20211_text {
  3895. border-width:0px;
  3896. word-wrap:break-word;
  3897. text-transform:none;
  3898. visibility:hidden;
  3899. }
  3900. #u20212_img {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:122px;
  3906. height:35px;
  3907. }
  3908. #u20212 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:259px;
  3913. width:122px;
  3914. height:35px;
  3915. display:flex;
  3916. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3917. font-weight:400;
  3918. font-style:normal;
  3919. font-size:12px;
  3920. color:#606266;
  3921. }
  3922. #u20212 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 0px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u20212_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. visibility:hidden;
  3934. }
  3935. #u20213_img {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:122px;
  3941. height:35px;
  3942. }
  3943. #u20213 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:122px;
  3947. top:259px;
  3948. width:122px;
  3949. height:35px;
  3950. display:flex;
  3951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3952. font-weight:400;
  3953. font-style:normal;
  3954. font-size:12px;
  3955. color:#606266;
  3956. }
  3957. #u20213 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 2px 2px 0px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u20213_text {
  3965. border-width:0px;
  3966. word-wrap:break-word;
  3967. text-transform:none;
  3968. visibility:hidden;
  3969. }
  3970. #u20214_img {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:122px;
  3976. height:35px;
  3977. }
  3978. #u20214 {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:244px;
  3982. top:259px;
  3983. width:122px;
  3984. height:35px;
  3985. display:flex;
  3986. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3987. font-weight:400;
  3988. font-style:normal;
  3989. font-size:12px;
  3990. color:#AAAAAA;
  3991. }
  3992. #u20214 .text {
  3993. position:absolute;
  3994. align-self:center;
  3995. padding:2px 2px 2px 0px;
  3996. box-sizing:border-box;
  3997. width:100%;
  3998. }
  3999. #u20214_text {
  4000. border-width:0px;
  4001. word-wrap:break-word;
  4002. text-transform:none;
  4003. }
  4004. #u20215_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:122px;
  4010. height:35px;
  4011. }
  4012. #u20215 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:366px;
  4016. top:259px;
  4017. width:122px;
  4018. height:35px;
  4019. display:flex;
  4020. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:12px;
  4024. color:#AAAAAA;
  4025. }
  4026. #u20215 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 0px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u20215_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. }
  4038. #u20216_img {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:365px;
  4044. height:35px;
  4045. }
  4046. #u20216 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:488px;
  4050. top:259px;
  4051. width:365px;
  4052. height:35px;
  4053. display:flex;
  4054. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:12px;
  4058. color:#AAAAAA;
  4059. }
  4060. #u20216 .text {
  4061. position:absolute;
  4062. align-self:center;
  4063. padding:2px 2px 2px 0px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u20216_text {
  4068. border-width:0px;
  4069. word-wrap:break-word;
  4070. text-transform:none;
  4071. visibility:hidden;
  4072. }
  4073. #u20217_img {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:0px;
  4077. top:0px;
  4078. width:243px;
  4079. height:35px;
  4080. }
  4081. #u20217 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:853px;
  4085. top:259px;
  4086. width:243px;
  4087. height:35px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:12px;
  4093. color:#606266;
  4094. }
  4095. #u20217 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 0px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u20217_text {
  4103. border-width:0px;
  4104. word-wrap:break-word;
  4105. text-transform:none;
  4106. visibility:hidden;
  4107. }
  4108. #u20218_img {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:119px;
  4114. height:35px;
  4115. }
  4116. #u20218 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:1096px;
  4120. top:259px;
  4121. width:119px;
  4122. height:35px;
  4123. display:flex;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. font-size:12px;
  4128. color:#02A7F0;
  4129. }
  4130. #u20218 .text {
  4131. position:absolute;
  4132. align-self:center;
  4133. padding:2px 2px 2px 0px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u20218_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. visibility:hidden;
  4142. }
  4143. #u20219_img {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:122px;
  4149. height:33px;
  4150. }
  4151. #u20219 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:294px;
  4156. width:122px;
  4157. height:33px;
  4158. display:flex;
  4159. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. color:#606266;
  4164. }
  4165. #u20219 .text {
  4166. position:absolute;
  4167. align-self:center;
  4168. padding:2px 2px 2px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u20219_text {
  4173. border-width:0px;
  4174. word-wrap:break-word;
  4175. text-transform:none;
  4176. visibility:hidden;
  4177. }
  4178. #u20220_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:122px;
  4184. height:33px;
  4185. }
  4186. #u20220 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:122px;
  4190. top:294px;
  4191. width:122px;
  4192. height:33px;
  4193. display:flex;
  4194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:12px;
  4198. color:#606266;
  4199. }
  4200. #u20220 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u20220_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u20221_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:122px;
  4219. height:33px;
  4220. }
  4221. #u20221 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:244px;
  4225. top:294px;
  4226. width:122px;
  4227. height:33px;
  4228. display:flex;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. color:#333333;
  4234. }
  4235. #u20221 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 0px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u20221_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. }
  4247. #u20222_img {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:122px;
  4253. height:33px;
  4254. }
  4255. #u20222 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:366px;
  4259. top:294px;
  4260. width:122px;
  4261. height:33px;
  4262. display:flex;
  4263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. font-size:12px;
  4267. color:#333333;
  4268. }
  4269. #u20222 .text {
  4270. position:absolute;
  4271. align-self:center;
  4272. padding:2px 2px 2px 0px;
  4273. box-sizing:border-box;
  4274. width:100%;
  4275. }
  4276. #u20222_text {
  4277. border-width:0px;
  4278. word-wrap:break-word;
  4279. text-transform:none;
  4280. }
  4281. #u20223_img {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:365px;
  4287. height:33px;
  4288. }
  4289. #u20223 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:488px;
  4293. top:294px;
  4294. width:365px;
  4295. height:33px;
  4296. display:flex;
  4297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. font-size:12px;
  4301. color:#333333;
  4302. }
  4303. #u20223 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 0px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u20223_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u20224_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:243px;
  4322. height:33px;
  4323. }
  4324. #u20224 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:853px;
  4328. top:294px;
  4329. width:243px;
  4330. height:33px;
  4331. display:flex;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:12px;
  4336. color:#606266;
  4337. }
  4338. #u20224 .text {
  4339. position:absolute;
  4340. align-self:center;
  4341. padding:2px 2px 2px 0px;
  4342. box-sizing:border-box;
  4343. width:100%;
  4344. }
  4345. #u20224_text {
  4346. border-width:0px;
  4347. word-wrap:break-word;
  4348. text-transform:none;
  4349. visibility:hidden;
  4350. }
  4351. #u20225_img {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:119px;
  4357. height:33px;
  4358. }
  4359. #u20225 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:1096px;
  4363. top:294px;
  4364. width:119px;
  4365. height:33px;
  4366. display:flex;
  4367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:12px;
  4371. color:#02A7F0;
  4372. }
  4373. #u20225 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:2px 2px 2px 0px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u20225_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. visibility:hidden;
  4385. }
  4386. #u20226_img {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:122px;
  4392. height:35px;
  4393. }
  4394. #u20226 {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:327px;
  4399. width:122px;
  4400. height:35px;
  4401. display:flex;
  4402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:12px;
  4406. color:#606266;
  4407. }
  4408. #u20226 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 0px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u20226_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u20227_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:122px;
  4427. height:35px;
  4428. }
  4429. #u20227 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:122px;
  4433. top:327px;
  4434. width:122px;
  4435. height:35px;
  4436. display:flex;
  4437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4438. font-weight:400;
  4439. font-style:normal;
  4440. font-size:12px;
  4441. color:#606266;
  4442. }
  4443. #u20227 .text {
  4444. position:absolute;
  4445. align-self:center;
  4446. padding:2px 2px 2px 0px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u20227_text {
  4451. border-width:0px;
  4452. word-wrap:break-word;
  4453. text-transform:none;
  4454. visibility:hidden;
  4455. }
  4456. #u20228_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:122px;
  4462. height:35px;
  4463. }
  4464. #u20228 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:244px;
  4468. top:327px;
  4469. width:122px;
  4470. height:35px;
  4471. display:flex;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:12px;
  4476. color:#333333;
  4477. }
  4478. #u20228 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 0px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u20228_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. }
  4490. #u20229_img {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:122px;
  4496. height:35px;
  4497. }
  4498. #u20229 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:366px;
  4502. top:327px;
  4503. width:122px;
  4504. height:35px;
  4505. display:flex;
  4506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. color:#333333;
  4511. }
  4512. #u20229 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u20229_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. }
  4524. #u20230_img {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:365px;
  4530. height:35px;
  4531. }
  4532. #u20230 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:488px;
  4536. top:327px;
  4537. width:365px;
  4538. height:35px;
  4539. display:flex;
  4540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:12px;
  4544. color:#333333;
  4545. }
  4546. #u20230 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 0px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u20230_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. visibility:hidden;
  4558. }
  4559. #u20231_img {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:243px;
  4565. height:35px;
  4566. }
  4567. #u20231 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:853px;
  4571. top:327px;
  4572. width:243px;
  4573. height:35px;
  4574. display:flex;
  4575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:12px;
  4579. color:#606266;
  4580. }
  4581. #u20231 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 0px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u20231_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u20232_img {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:119px;
  4600. height:35px;
  4601. }
  4602. #u20232 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:1096px;
  4606. top:327px;
  4607. width:119px;
  4608. height:35px;
  4609. display:flex;
  4610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4611. font-weight:400;
  4612. font-style:normal;
  4613. font-size:12px;
  4614. color:#02A7F0;
  4615. }
  4616. #u20232 .text {
  4617. position:absolute;
  4618. align-self:center;
  4619. padding:2px 2px 2px 0px;
  4620. box-sizing:border-box;
  4621. width:100%;
  4622. }
  4623. #u20232_text {
  4624. border-width:0px;
  4625. word-wrap:break-word;
  4626. text-transform:none;
  4627. visibility:hidden;
  4628. }
  4629. #u20233_img {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:122px;
  4635. height:35px;
  4636. }
  4637. #u20233 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:362px;
  4642. width:122px;
  4643. height:35px;
  4644. display:flex;
  4645. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:12px;
  4649. color:#606266;
  4650. }
  4651. #u20233 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:2px 2px 2px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u20233_text {
  4659. border-width:0px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. visibility:hidden;
  4663. }
  4664. #u20234_img {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:122px;
  4670. height:35px;
  4671. }
  4672. #u20234 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:122px;
  4676. top:362px;
  4677. width:122px;
  4678. height:35px;
  4679. display:flex;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:12px;
  4684. color:#606266;
  4685. }
  4686. #u20234 .text {
  4687. position:absolute;
  4688. align-self:center;
  4689. padding:2px 2px 2px 0px;
  4690. box-sizing:border-box;
  4691. width:100%;
  4692. }
  4693. #u20234_text {
  4694. border-width:0px;
  4695. word-wrap:break-word;
  4696. text-transform:none;
  4697. visibility:hidden;
  4698. }
  4699. #u20235_img {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:122px;
  4705. height:35px;
  4706. }
  4707. #u20235 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:244px;
  4711. top:362px;
  4712. width:122px;
  4713. height:35px;
  4714. display:flex;
  4715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4716. font-weight:400;
  4717. font-style:normal;
  4718. font-size:12px;
  4719. color:#333333;
  4720. }
  4721. #u20235 .text {
  4722. position:absolute;
  4723. align-self:center;
  4724. padding:2px 2px 2px 0px;
  4725. box-sizing:border-box;
  4726. width:100%;
  4727. }
  4728. #u20235_text {
  4729. border-width:0px;
  4730. word-wrap:break-word;
  4731. text-transform:none;
  4732. }
  4733. #u20236_img {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:122px;
  4739. height:35px;
  4740. }
  4741. #u20236 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:366px;
  4745. top:362px;
  4746. width:122px;
  4747. height:35px;
  4748. display:flex;
  4749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:12px;
  4753. color:#333333;
  4754. }
  4755. #u20236 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u20236_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. }
  4767. #u20237_img {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:365px;
  4773. height:35px;
  4774. }
  4775. #u20237 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:488px;
  4779. top:362px;
  4780. width:365px;
  4781. height:35px;
  4782. display:flex;
  4783. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4784. font-weight:400;
  4785. font-style:normal;
  4786. font-size:12px;
  4787. color:#333333;
  4788. }
  4789. #u20237 .text {
  4790. position:absolute;
  4791. align-self:center;
  4792. padding:2px 2px 2px 0px;
  4793. box-sizing:border-box;
  4794. width:100%;
  4795. }
  4796. #u20237_text {
  4797. border-width:0px;
  4798. word-wrap:break-word;
  4799. text-transform:none;
  4800. visibility:hidden;
  4801. }
  4802. #u20238_img {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:243px;
  4808. height:35px;
  4809. }
  4810. #u20238 {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:853px;
  4814. top:362px;
  4815. width:243px;
  4816. height:35px;
  4817. display:flex;
  4818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4819. font-weight:400;
  4820. font-style:normal;
  4821. font-size:12px;
  4822. color:#606266;
  4823. }
  4824. #u20238 .text {
  4825. position:absolute;
  4826. align-self:center;
  4827. padding:2px 2px 2px 0px;
  4828. box-sizing:border-box;
  4829. width:100%;
  4830. }
  4831. #u20238_text {
  4832. border-width:0px;
  4833. word-wrap:break-word;
  4834. text-transform:none;
  4835. visibility:hidden;
  4836. }
  4837. #u20239_img {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:119px;
  4843. height:35px;
  4844. }
  4845. #u20239 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:1096px;
  4849. top:362px;
  4850. width:119px;
  4851. height:35px;
  4852. display:flex;
  4853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:12px;
  4857. color:#02A7F0;
  4858. }
  4859. #u20239 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 0px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u20239_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u20240_img {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:122px;
  4878. height:35px;
  4879. }
  4880. #u20240 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:397px;
  4885. width:122px;
  4886. height:35px;
  4887. display:flex;
  4888. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:12px;
  4892. color:#606266;
  4893. }
  4894. #u20240 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 2px 2px 0px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u20240_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. visibility:hidden;
  4906. }
  4907. #u20241_img {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:122px;
  4913. height:35px;
  4914. }
  4915. #u20241 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:122px;
  4919. top:397px;
  4920. width:122px;
  4921. height:35px;
  4922. display:flex;
  4923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:12px;
  4927. color:#606266;
  4928. }
  4929. #u20241 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:2px 2px 2px 0px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u20241_text {
  4937. border-width:0px;
  4938. word-wrap:break-word;
  4939. text-transform:none;
  4940. visibility:hidden;
  4941. }
  4942. #u20242_img {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:122px;
  4948. height:35px;
  4949. }
  4950. #u20242 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:244px;
  4954. top:397px;
  4955. width:122px;
  4956. height:35px;
  4957. display:flex;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:12px;
  4962. color:#333333;
  4963. }
  4964. #u20242 .text {
  4965. position:absolute;
  4966. align-self:center;
  4967. padding:2px 2px 2px 0px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u20242_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. visibility:hidden;
  4976. }
  4977. #u20243_img {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:122px;
  4983. height:35px;
  4984. }
  4985. #u20243 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:366px;
  4989. top:397px;
  4990. width:122px;
  4991. height:35px;
  4992. display:flex;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:12px;
  4997. color:#333333;
  4998. }
  4999. #u20243 .text {
  5000. position:absolute;
  5001. align-self:center;
  5002. padding:2px 2px 2px 0px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u20243_text {
  5007. border-width:0px;
  5008. word-wrap:break-word;
  5009. text-transform:none;
  5010. visibility:hidden;
  5011. }
  5012. #u20244_img {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:0px;
  5016. top:0px;
  5017. width:365px;
  5018. height:35px;
  5019. }
  5020. #u20244 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:488px;
  5024. top:397px;
  5025. width:365px;
  5026. height:35px;
  5027. display:flex;
  5028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5029. font-weight:400;
  5030. font-style:normal;
  5031. font-size:12px;
  5032. color:#333333;
  5033. }
  5034. #u20244 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:2px 2px 2px 0px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u20244_text {
  5042. border-width:0px;
  5043. word-wrap:break-word;
  5044. text-transform:none;
  5045. visibility:hidden;
  5046. }
  5047. #u20245_img {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:243px;
  5053. height:35px;
  5054. }
  5055. #u20245 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:853px;
  5059. top:397px;
  5060. width:243px;
  5061. height:35px;
  5062. display:flex;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:12px;
  5067. color:#606266;
  5068. }
  5069. #u20245 .text {
  5070. position:absolute;
  5071. align-self:center;
  5072. padding:2px 2px 2px 0px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u20245_text {
  5077. border-width:0px;
  5078. word-wrap:break-word;
  5079. text-transform:none;
  5080. visibility:hidden;
  5081. }
  5082. #u20246_img {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:119px;
  5088. height:35px;
  5089. }
  5090. #u20246 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:1096px;
  5094. top:397px;
  5095. width:119px;
  5096. height:35px;
  5097. display:flex;
  5098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:12px;
  5102. color:#02A7F0;
  5103. }
  5104. #u20246 .text {
  5105. position:absolute;
  5106. align-self:center;
  5107. padding:2px 2px 2px 0px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u20246_text {
  5112. border-width:0px;
  5113. word-wrap:break-word;
  5114. text-transform:none;
  5115. visibility:hidden;
  5116. }
  5117. #u20247_img {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:122px;
  5123. height:35px;
  5124. }
  5125. #u20247 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:0px;
  5129. top:432px;
  5130. width:122px;
  5131. height:35px;
  5132. display:flex;
  5133. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. font-size:12px;
  5137. color:#606266;
  5138. }
  5139. #u20247 .text {
  5140. position:absolute;
  5141. align-self:center;
  5142. padding:2px 2px 2px 0px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u20247_text {
  5147. border-width:0px;
  5148. word-wrap:break-word;
  5149. text-transform:none;
  5150. visibility:hidden;
  5151. }
  5152. #u20248_img {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:122px;
  5158. height:35px;
  5159. }
  5160. #u20248 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:122px;
  5164. top:432px;
  5165. width:122px;
  5166. height:35px;
  5167. display:flex;
  5168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5169. font-weight:400;
  5170. font-style:normal;
  5171. font-size:12px;
  5172. color:#606266;
  5173. }
  5174. #u20248 .text {
  5175. position:absolute;
  5176. align-self:center;
  5177. padding:2px 2px 2px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u20248_text {
  5182. border-width:0px;
  5183. word-wrap:break-word;
  5184. text-transform:none;
  5185. visibility:hidden;
  5186. }
  5187. #u20249_img {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:122px;
  5193. height:35px;
  5194. }
  5195. #u20249 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:244px;
  5199. top:432px;
  5200. width:122px;
  5201. height:35px;
  5202. display:flex;
  5203. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:12px;
  5207. color:#333333;
  5208. }
  5209. #u20249 .text {
  5210. position:absolute;
  5211. align-self:center;
  5212. padding:2px 2px 2px 0px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u20249_text {
  5217. border-width:0px;
  5218. word-wrap:break-word;
  5219. text-transform:none;
  5220. visibility:hidden;
  5221. }
  5222. #u20250_img {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:122px;
  5228. height:35px;
  5229. }
  5230. #u20250 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:366px;
  5234. top:432px;
  5235. width:122px;
  5236. height:35px;
  5237. display:flex;
  5238. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:12px;
  5242. color:#333333;
  5243. }
  5244. #u20250 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:2px 2px 2px 0px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u20250_text {
  5252. border-width:0px;
  5253. word-wrap:break-word;
  5254. text-transform:none;
  5255. visibility:hidden;
  5256. }
  5257. #u20251_img {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:365px;
  5263. height:35px;
  5264. }
  5265. #u20251 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:488px;
  5269. top:432px;
  5270. width:365px;
  5271. height:35px;
  5272. display:flex;
  5273. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:12px;
  5277. color:#333333;
  5278. }
  5279. #u20251 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:2px 2px 2px 0px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u20251_text {
  5287. border-width:0px;
  5288. word-wrap:break-word;
  5289. text-transform:none;
  5290. visibility:hidden;
  5291. }
  5292. #u20252_img {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:243px;
  5298. height:35px;
  5299. }
  5300. #u20252 {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:853px;
  5304. top:432px;
  5305. width:243px;
  5306. height:35px;
  5307. display:flex;
  5308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. font-size:12px;
  5312. color:#606266;
  5313. }
  5314. #u20252 .text {
  5315. position:absolute;
  5316. align-self:center;
  5317. padding:2px 2px 2px 0px;
  5318. box-sizing:border-box;
  5319. width:100%;
  5320. }
  5321. #u20252_text {
  5322. border-width:0px;
  5323. word-wrap:break-word;
  5324. text-transform:none;
  5325. visibility:hidden;
  5326. }
  5327. #u20253_img {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:0px;
  5331. top:0px;
  5332. width:119px;
  5333. height:35px;
  5334. }
  5335. #u20253 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:1096px;
  5339. top:432px;
  5340. width:119px;
  5341. height:35px;
  5342. display:flex;
  5343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:12px;
  5347. color:#02A7F0;
  5348. }
  5349. #u20253 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 0px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u20253_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u20254_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:122px;
  5368. height:35px;
  5369. }
  5370. #u20254 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:467px;
  5375. width:122px;
  5376. height:35px;
  5377. display:flex;
  5378. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:12px;
  5382. color:#606266;
  5383. }
  5384. #u20254 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:2px 2px 2px 0px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u20254_text {
  5392. border-width:0px;
  5393. word-wrap:break-word;
  5394. text-transform:none;
  5395. visibility:hidden;
  5396. }
  5397. #u20255_img {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:122px;
  5403. height:35px;
  5404. }
  5405. #u20255 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:122px;
  5409. top:467px;
  5410. width:122px;
  5411. height:35px;
  5412. display:flex;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:12px;
  5417. color:#606266;
  5418. }
  5419. #u20255 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:2px 2px 2px 0px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u20255_text {
  5427. border-width:0px;
  5428. word-wrap:break-word;
  5429. text-transform:none;
  5430. visibility:hidden;
  5431. }
  5432. #u20256_img {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:122px;
  5438. height:35px;
  5439. }
  5440. #u20256 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:244px;
  5444. top:467px;
  5445. width:122px;
  5446. height:35px;
  5447. display:flex;
  5448. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:12px;
  5452. color:#333333;
  5453. }
  5454. #u20256 .text {
  5455. position:absolute;
  5456. align-self:center;
  5457. padding:2px 2px 2px 0px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u20256_text {
  5462. border-width:0px;
  5463. word-wrap:break-word;
  5464. text-transform:none;
  5465. visibility:hidden;
  5466. }
  5467. #u20257_img {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:122px;
  5473. height:35px;
  5474. }
  5475. #u20257 {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:366px;
  5479. top:467px;
  5480. width:122px;
  5481. height:35px;
  5482. display:flex;
  5483. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:12px;
  5487. color:#333333;
  5488. }
  5489. #u20257 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 0px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u20257_text {
  5497. border-width:0px;
  5498. word-wrap:break-word;
  5499. text-transform:none;
  5500. visibility:hidden;
  5501. }
  5502. #u20258_img {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:365px;
  5508. height:35px;
  5509. }
  5510. #u20258 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:488px;
  5514. top:467px;
  5515. width:365px;
  5516. height:35px;
  5517. display:flex;
  5518. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:12px;
  5522. color:#333333;
  5523. }
  5524. #u20258 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:2px 2px 2px 0px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u20258_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. visibility:hidden;
  5536. }
  5537. #u20259_img {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:243px;
  5543. height:35px;
  5544. }
  5545. #u20259 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:853px;
  5549. top:467px;
  5550. width:243px;
  5551. height:35px;
  5552. display:flex;
  5553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5554. font-weight:400;
  5555. font-style:normal;
  5556. font-size:12px;
  5557. color:#606266;
  5558. }
  5559. #u20259 .text {
  5560. position:absolute;
  5561. align-self:center;
  5562. padding:2px 2px 2px 0px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u20259_text {
  5567. border-width:0px;
  5568. word-wrap:break-word;
  5569. text-transform:none;
  5570. visibility:hidden;
  5571. }
  5572. #u20260_img {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:119px;
  5578. height:35px;
  5579. }
  5580. #u20260 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:1096px;
  5584. top:467px;
  5585. width:119px;
  5586. height:35px;
  5587. display:flex;
  5588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:12px;
  5592. color:#02A7F0;
  5593. }
  5594. #u20260 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 0px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u20260_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u20261_img {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:122px;
  5613. height:35px;
  5614. }
  5615. #u20261 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:502px;
  5620. width:122px;
  5621. height:35px;
  5622. display:flex;
  5623. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:12px;
  5627. color:#606266;
  5628. }
  5629. #u20261 .text {
  5630. position:absolute;
  5631. align-self:center;
  5632. padding:2px 2px 2px 0px;
  5633. box-sizing:border-box;
  5634. width:100%;
  5635. }
  5636. #u20261_text {
  5637. border-width:0px;
  5638. word-wrap:break-word;
  5639. text-transform:none;
  5640. visibility:hidden;
  5641. }
  5642. #u20262_img {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:122px;
  5648. height:35px;
  5649. }
  5650. #u20262 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:122px;
  5654. top:502px;
  5655. width:122px;
  5656. height:35px;
  5657. display:flex;
  5658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:12px;
  5662. color:#606266;
  5663. }
  5664. #u20262 .text {
  5665. position:absolute;
  5666. align-self:center;
  5667. padding:2px 2px 2px 0px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u20262_text {
  5672. border-width:0px;
  5673. word-wrap:break-word;
  5674. text-transform:none;
  5675. visibility:hidden;
  5676. }
  5677. #u20263_img {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:122px;
  5683. height:35px;
  5684. }
  5685. #u20263 {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:244px;
  5689. top:502px;
  5690. width:122px;
  5691. height:35px;
  5692. display:flex;
  5693. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. font-size:12px;
  5697. color:#333333;
  5698. }
  5699. #u20263 .text {
  5700. position:absolute;
  5701. align-self:center;
  5702. padding:2px 2px 2px 0px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u20263_text {
  5707. border-width:0px;
  5708. word-wrap:break-word;
  5709. text-transform:none;
  5710. visibility:hidden;
  5711. }
  5712. #u20264_img {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:122px;
  5718. height:35px;
  5719. }
  5720. #u20264 {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:366px;
  5724. top:502px;
  5725. width:122px;
  5726. height:35px;
  5727. display:flex;
  5728. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. font-size:12px;
  5732. color:#333333;
  5733. }
  5734. #u20264 .text {
  5735. position:absolute;
  5736. align-self:center;
  5737. padding:2px 2px 2px 0px;
  5738. box-sizing:border-box;
  5739. width:100%;
  5740. }
  5741. #u20264_text {
  5742. border-width:0px;
  5743. word-wrap:break-word;
  5744. text-transform:none;
  5745. visibility:hidden;
  5746. }
  5747. #u20265_img {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:365px;
  5753. height:35px;
  5754. }
  5755. #u20265 {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:488px;
  5759. top:502px;
  5760. width:365px;
  5761. height:35px;
  5762. display:flex;
  5763. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:12px;
  5767. color:#333333;
  5768. }
  5769. #u20265 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 0px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u20265_text {
  5777. border-width:0px;
  5778. word-wrap:break-word;
  5779. text-transform:none;
  5780. visibility:hidden;
  5781. }
  5782. #u20266_img {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:243px;
  5788. height:35px;
  5789. }
  5790. #u20266 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:853px;
  5794. top:502px;
  5795. width:243px;
  5796. height:35px;
  5797. display:flex;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:12px;
  5802. color:#606266;
  5803. }
  5804. #u20266 .text {
  5805. position:absolute;
  5806. align-self:center;
  5807. padding:2px 2px 2px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u20266_text {
  5812. border-width:0px;
  5813. word-wrap:break-word;
  5814. text-transform:none;
  5815. visibility:hidden;
  5816. }
  5817. #u20267_img {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:119px;
  5823. height:35px;
  5824. }
  5825. #u20267 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:1096px;
  5829. top:502px;
  5830. width:119px;
  5831. height:35px;
  5832. display:flex;
  5833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5834. font-weight:400;
  5835. font-style:normal;
  5836. font-size:12px;
  5837. color:#02A7F0;
  5838. }
  5839. #u20267 .text {
  5840. position:absolute;
  5841. align-self:center;
  5842. padding:2px 2px 2px 0px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u20267_text {
  5847. border-width:0px;
  5848. word-wrap:break-word;
  5849. text-transform:none;
  5850. visibility:hidden;
  5851. }
  5852. #u20268_img {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:122px;
  5858. height:35px;
  5859. }
  5860. #u20268 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:537px;
  5865. width:122px;
  5866. height:35px;
  5867. display:flex;
  5868. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:12px;
  5872. color:#606266;
  5873. }
  5874. #u20268 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 0px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u20268_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. visibility:hidden;
  5886. }
  5887. #u20269_img {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:0px;
  5891. top:0px;
  5892. width:122px;
  5893. height:35px;
  5894. }
  5895. #u20269 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:122px;
  5899. top:537px;
  5900. width:122px;
  5901. height:35px;
  5902. display:flex;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:12px;
  5907. color:#606266;
  5908. }
  5909. #u20269 .text {
  5910. position:absolute;
  5911. align-self:center;
  5912. padding:2px 2px 2px 0px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u20269_text {
  5917. border-width:0px;
  5918. word-wrap:break-word;
  5919. text-transform:none;
  5920. visibility:hidden;
  5921. }
  5922. #u20270_img {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:122px;
  5928. height:35px;
  5929. }
  5930. #u20270 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:244px;
  5934. top:537px;
  5935. width:122px;
  5936. height:35px;
  5937. display:flex;
  5938. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5939. font-weight:400;
  5940. font-style:normal;
  5941. font-size:12px;
  5942. color:#333333;
  5943. }
  5944. #u20270 .text {
  5945. position:absolute;
  5946. align-self:center;
  5947. padding:2px 2px 2px 0px;
  5948. box-sizing:border-box;
  5949. width:100%;
  5950. }
  5951. #u20270_text {
  5952. border-width:0px;
  5953. word-wrap:break-word;
  5954. text-transform:none;
  5955. visibility:hidden;
  5956. }
  5957. #u20271_img {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:122px;
  5963. height:35px;
  5964. }
  5965. #u20271 {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:366px;
  5969. top:537px;
  5970. width:122px;
  5971. height:35px;
  5972. display:flex;
  5973. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5974. font-weight:400;
  5975. font-style:normal;
  5976. font-size:12px;
  5977. color:#333333;
  5978. }
  5979. #u20271 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:2px 2px 2px 0px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u20271_text {
  5987. border-width:0px;
  5988. word-wrap:break-word;
  5989. text-transform:none;
  5990. visibility:hidden;
  5991. }
  5992. #u20272_img {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:365px;
  5998. height:35px;
  5999. }
  6000. #u20272 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:488px;
  6004. top:537px;
  6005. width:365px;
  6006. height:35px;
  6007. display:flex;
  6008. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:12px;
  6012. color:#333333;
  6013. }
  6014. #u20272 .text {
  6015. position:absolute;
  6016. align-self:center;
  6017. padding:2px 2px 2px 0px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u20272_text {
  6022. border-width:0px;
  6023. word-wrap:break-word;
  6024. text-transform:none;
  6025. visibility:hidden;
  6026. }
  6027. #u20273_img {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:243px;
  6033. height:35px;
  6034. }
  6035. #u20273 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:853px;
  6039. top:537px;
  6040. width:243px;
  6041. height:35px;
  6042. display:flex;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:12px;
  6047. color:#606266;
  6048. }
  6049. #u20273 .text {
  6050. position:absolute;
  6051. align-self:center;
  6052. padding:2px 2px 2px 0px;
  6053. box-sizing:border-box;
  6054. width:100%;
  6055. }
  6056. #u20273_text {
  6057. border-width:0px;
  6058. word-wrap:break-word;
  6059. text-transform:none;
  6060. visibility:hidden;
  6061. }
  6062. #u20274_img {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:119px;
  6068. height:35px;
  6069. }
  6070. #u20274 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:1096px;
  6074. top:537px;
  6075. width:119px;
  6076. height:35px;
  6077. display:flex;
  6078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:12px;
  6082. color:#02A7F0;
  6083. }
  6084. #u20274 .text {
  6085. position:absolute;
  6086. align-self:center;
  6087. padding:2px 2px 2px 0px;
  6088. box-sizing:border-box;
  6089. width:100%;
  6090. }
  6091. #u20274_text {
  6092. border-width:0px;
  6093. word-wrap:break-word;
  6094. text-transform:none;
  6095. visibility:hidden;
  6096. }
  6097. #u20275 {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:0px;
  6103. height:0px;
  6104. }
  6105. #u20276_div {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:140px;
  6111. height:30px;
  6112. background:inherit;
  6113. background-color:rgba(255, 255, 255, 1);
  6114. box-sizing:border-box;
  6115. border-width:1px;
  6116. border-style:solid;
  6117. border-color:rgba(201, 201, 201, 1);
  6118. border-radius:4px;
  6119. -moz-box-shadow:none;
  6120. -webkit-box-shadow:none;
  6121. box-shadow:none;
  6122. font-family:'Microsoft YaHei', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:14px;
  6126. color:#CCCCCC;
  6127. text-align:left;
  6128. }
  6129. #u20276 {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:350px;
  6133. top:105px;
  6134. width:140px;
  6135. height:30px;
  6136. display:flex;
  6137. font-family:'Microsoft YaHei', sans-serif;
  6138. font-weight:400;
  6139. font-style:normal;
  6140. font-size:14px;
  6141. color:#CCCCCC;
  6142. text-align:left;
  6143. }
  6144. #u20276 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 8px 2px 8px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u20276_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u20277_input {
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:127px;
  6162. height:25px;
  6163. padding:2px 2px 2px 2px;
  6164. font-family:'Microsoft YaHei', sans-serif;
  6165. font-weight:400;
  6166. font-style:normal;
  6167. font-size:10px;
  6168. letter-spacing:normal;
  6169. color:#000000;
  6170. vertical-align:none;
  6171. text-align:left;
  6172. text-transform:none;
  6173. background-color:transparent;
  6174. border-color:transparent;
  6175. }
  6176. #u20277_input.disabled {
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:127px;
  6181. height:25px;
  6182. padding:2px 2px 2px 2px;
  6183. font-family:'Microsoft YaHei', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:10px;
  6187. letter-spacing:normal;
  6188. color:#000000;
  6189. vertical-align:none;
  6190. text-align:left;
  6191. text-transform:none;
  6192. background-color:transparent;
  6193. border-color:transparent;
  6194. }
  6195. #u20277_div {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:127px;
  6201. height:25px;
  6202. background:inherit;
  6203. background-color:rgba(255, 255, 255, 1);
  6204. border:none;
  6205. border-radius:0px;
  6206. -moz-box-shadow:none;
  6207. -webkit-box-shadow:none;
  6208. box-shadow:none;
  6209. font-family:'Microsoft YaHei', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:10px;
  6213. }
  6214. #u20277 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:358px;
  6218. top:106px;
  6219. width:127px;
  6220. height:25px;
  6221. display:flex;
  6222. font-family:'Microsoft YaHei', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:10px;
  6226. }
  6227. #u20277 .text {
  6228. position:absolute;
  6229. align-self:center;
  6230. padding:2px 2px 2px 2px;
  6231. box-sizing:border-box;
  6232. width:100%;
  6233. }
  6234. #u20277_div.disabled {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:127px;
  6240. height:25px;
  6241. background:inherit;
  6242. background-color:rgba(240, 240, 240, 1);
  6243. border:none;
  6244. border-radius:0px;
  6245. -moz-box-shadow:none;
  6246. -webkit-box-shadow:none;
  6247. box-shadow:none;
  6248. font-family:'Microsoft YaHei', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:10px;
  6252. }
  6253. #u20277.disabled {
  6254. }
  6255. #u20278 {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:0px;
  6261. height:0px;
  6262. }
  6263. #u20279_div {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:140px;
  6269. height:30px;
  6270. background:inherit;
  6271. background-color:rgba(255, 255, 255, 1);
  6272. box-sizing:border-box;
  6273. border-width:1px;
  6274. border-style:solid;
  6275. border-color:rgba(215, 215, 215, 1);
  6276. border-radius:4px;
  6277. -moz-box-shadow:none;
  6278. -webkit-box-shadow:none;
  6279. box-shadow:none;
  6280. font-size:11px;
  6281. }
  6282. #u20279 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:500px;
  6286. top:104px;
  6287. width:140px;
  6288. height:30px;
  6289. display:flex;
  6290. font-size:11px;
  6291. }
  6292. #u20279 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:2px 2px 2px 2px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u20279_text {
  6300. border-width:0px;
  6301. word-wrap:break-word;
  6302. text-transform:none;
  6303. visibility:hidden;
  6304. }
  6305. #u20280_input {
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:126px;
  6310. height:23px;
  6311. padding:2px 2px 2px 2px;
  6312. font-family:'ArialMT', 'Arial', sans-serif;
  6313. font-weight:400;
  6314. font-style:normal;
  6315. font-size:11px;
  6316. letter-spacing:normal;
  6317. color:#AAAAAA;
  6318. vertical-align:none;
  6319. text-align:left;
  6320. text-transform:none;
  6321. background-color:transparent;
  6322. border-color:transparent;
  6323. }
  6324. #u20280_input.disabled {
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:126px;
  6329. height:23px;
  6330. padding:2px 2px 2px 2px;
  6331. font-family:'ArialMT', 'Arial', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:11px;
  6335. letter-spacing:normal;
  6336. color:#AAAAAA;
  6337. vertical-align:none;
  6338. text-align:left;
  6339. text-transform:none;
  6340. background-color:transparent;
  6341. border-color:transparent;
  6342. }
  6343. #u20280_div {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:126px;
  6349. height:23px;
  6350. background:inherit;
  6351. background-color:rgba(255, 255, 255, 1);
  6352. border:none;
  6353. border-radius:0px;
  6354. -moz-box-shadow:none;
  6355. -webkit-box-shadow:none;
  6356. box-shadow:none;
  6357. font-size:11px;
  6358. color:#AAAAAA;
  6359. }
  6360. #u20280 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:507px;
  6364. top:106px;
  6365. width:126px;
  6366. height:23px;
  6367. display:flex;
  6368. font-size:11px;
  6369. color:#AAAAAA;
  6370. }
  6371. #u20280 .text {
  6372. position:absolute;
  6373. align-self:flex-start;
  6374. padding:2px 2px 2px 2px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u20280_div.disabled {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:126px;
  6384. height:23px;
  6385. background:inherit;
  6386. background-color:rgba(240, 240, 240, 1);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-size:11px;
  6393. color:#AAAAAA;
  6394. }
  6395. #u20280.disabled {
  6396. }
  6397. .u20280_input_option {
  6398. font-size:11px;
  6399. }
  6400. #u20281 {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:0px;
  6406. height:0px;
  6407. }
  6408. #u20282_div {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:140px;
  6414. height:30px;
  6415. background:inherit;
  6416. background-color:rgba(255, 255, 255, 1);
  6417. box-sizing:border-box;
  6418. border-width:1px;
  6419. border-style:solid;
  6420. border-color:rgba(215, 215, 215, 1);
  6421. border-radius:4px;
  6422. -moz-box-shadow:none;
  6423. -webkit-box-shadow:none;
  6424. box-shadow:none;
  6425. font-size:11px;
  6426. }
  6427. #u20282 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:650px;
  6431. top:104px;
  6432. width:140px;
  6433. height:30px;
  6434. display:flex;
  6435. font-size:11px;
  6436. }
  6437. #u20282 .text {
  6438. position:absolute;
  6439. align-self:center;
  6440. padding:2px 2px 2px 2px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u20282_text {
  6445. border-width:0px;
  6446. word-wrap:break-word;
  6447. text-transform:none;
  6448. visibility:hidden;
  6449. }
  6450. #u20283_input {
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:126px;
  6455. height:23px;
  6456. padding:2px 2px 2px 2px;
  6457. font-family:'ArialMT', 'Arial', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:11px;
  6461. letter-spacing:normal;
  6462. color:#AAAAAA;
  6463. vertical-align:none;
  6464. text-align:left;
  6465. text-transform:none;
  6466. background-color:transparent;
  6467. border-color:transparent;
  6468. }
  6469. #u20283_input.disabled {
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:126px;
  6474. height:23px;
  6475. padding:2px 2px 2px 2px;
  6476. font-family:'ArialMT', 'Arial', sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. font-size:11px;
  6480. letter-spacing:normal;
  6481. color:#AAAAAA;
  6482. vertical-align:none;
  6483. text-align:left;
  6484. text-transform:none;
  6485. background-color:transparent;
  6486. border-color:transparent;
  6487. }
  6488. #u20283_div {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:126px;
  6494. height:23px;
  6495. background:inherit;
  6496. background-color:rgba(255, 255, 255, 1);
  6497. border:none;
  6498. border-radius:0px;
  6499. -moz-box-shadow:none;
  6500. -webkit-box-shadow:none;
  6501. box-shadow:none;
  6502. font-size:11px;
  6503. color:#AAAAAA;
  6504. }
  6505. #u20283 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:657px;
  6509. top:106px;
  6510. width:126px;
  6511. height:23px;
  6512. display:flex;
  6513. font-size:11px;
  6514. color:#AAAAAA;
  6515. }
  6516. #u20283 .text {
  6517. position:absolute;
  6518. align-self:flex-start;
  6519. padding:2px 2px 2px 2px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u20283_div.disabled {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:126px;
  6529. height:23px;
  6530. background:inherit;
  6531. background-color:rgba(240, 240, 240, 1);
  6532. border:none;
  6533. border-radius:0px;
  6534. -moz-box-shadow:none;
  6535. -webkit-box-shadow:none;
  6536. box-shadow:none;
  6537. font-size:11px;
  6538. color:#AAAAAA;
  6539. }
  6540. #u20283.disabled {
  6541. }
  6542. .u20283_input_option {
  6543. font-size:11px;
  6544. }
  6545. #u20284_div {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:59px;
  6551. height:30px;
  6552. background:inherit;
  6553. background-color:rgba(24, 144, 255, 1);
  6554. box-sizing:border-box;
  6555. border-width:1px;
  6556. border-style:solid;
  6557. border-color:rgba(0, 153, 255, 1);
  6558. border-radius:4px;
  6559. -moz-box-shadow:none;
  6560. -webkit-box-shadow:none;
  6561. box-shadow:none;
  6562. font-family:'Microsoft YaHei', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:14px;
  6566. color:#FFFFFF;
  6567. }
  6568. #u20284 {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:800px;
  6572. top:103px;
  6573. width:59px;
  6574. height:30px;
  6575. display:flex;
  6576. font-family:'Microsoft YaHei', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:14px;
  6580. color:#FFFFFF;
  6581. }
  6582. #u20284 .text {
  6583. position:absolute;
  6584. align-self:center;
  6585. padding:5px 15px 5px 15px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u20284_text {
  6590. border-width:0px;
  6591. white-space:nowrap;
  6592. text-transform:none;
  6593. }
  6594. #u20285_div {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:55px;
  6600. height:30px;
  6601. background:inherit;
  6602. background-color:rgba(255, 255, 255, 1);
  6603. box-sizing:border-box;
  6604. border-width:1px;
  6605. border-style:solid;
  6606. border-color:rgba(170, 170, 170, 1);
  6607. border-radius:4px;
  6608. -moz-box-shadow:none;
  6609. -webkit-box-shadow:none;
  6610. box-shadow:none;
  6611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6612. font-weight:400;
  6613. font-style:normal;
  6614. font-size:12px;
  6615. color:#555555;
  6616. }
  6617. #u20285 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:869px;
  6621. top:103px;
  6622. width:55px;
  6623. height:30px;
  6624. display:flex;
  6625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6626. font-weight:400;
  6627. font-style:normal;
  6628. font-size:12px;
  6629. color:#555555;
  6630. }
  6631. #u20285 .text {
  6632. position:absolute;
  6633. align-self:center;
  6634. padding:5px 15px 5px 15px;
  6635. box-sizing:border-box;
  6636. width:100%;
  6637. }
  6638. #u20285_text {
  6639. border-width:0px;
  6640. white-space:nowrap;
  6641. text-transform:none;
  6642. }
  6643. #u20286_div {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:55px;
  6649. height:30px;
  6650. background:inherit;
  6651. background-color:rgba(255, 255, 255, 1);
  6652. box-sizing:border-box;
  6653. border-width:1px;
  6654. border-style:solid;
  6655. border-color:rgba(170, 170, 170, 1);
  6656. border-radius:4px;
  6657. -moz-box-shadow:none;
  6658. -webkit-box-shadow:none;
  6659. box-shadow:none;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:12px;
  6664. color:#555555;
  6665. }
  6666. #u20286 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:427px;
  6670. top:154px;
  6671. width:55px;
  6672. height:30px;
  6673. display:flex;
  6674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:12px;
  6678. color:#555555;
  6679. }
  6680. #u20286 .text {
  6681. position:absolute;
  6682. align-self:center;
  6683. padding:5px 15px 5px 15px;
  6684. box-sizing:border-box;
  6685. width:100%;
  6686. }
  6687. #u20286_text {
  6688. border-width:0px;
  6689. white-space:nowrap;
  6690. text-transform:none;
  6691. }
  6692. #u20287_div {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:0px;
  6696. top:0px;
  6697. width:55px;
  6698. height:30px;
  6699. background:inherit;
  6700. background-color:rgba(255, 255, 255, 1);
  6701. box-sizing:border-box;
  6702. border-width:1px;
  6703. border-style:solid;
  6704. border-color:rgba(170, 170, 170, 1);
  6705. border-radius:4px;
  6706. -moz-box-shadow:none;
  6707. -webkit-box-shadow:none;
  6708. box-shadow:none;
  6709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:12px;
  6713. color:#555555;
  6714. }
  6715. #u20287 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:492px;
  6719. top:154px;
  6720. width:55px;
  6721. height:30px;
  6722. display:flex;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:12px;
  6727. color:#555555;
  6728. }
  6729. #u20287 .text {
  6730. position:absolute;
  6731. align-self:center;
  6732. padding:5px 15px 5px 15px;
  6733. box-sizing:border-box;
  6734. width:100%;
  6735. }
  6736. #u20287_text {
  6737. border-width:0px;
  6738. white-space:nowrap;
  6739. text-transform:none;
  6740. }
  6741. #u20288 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:0px;
  6745. top:0px;
  6746. width:0px;
  6747. height:0px;
  6748. }
  6749. #u20289_div {
  6750. border-width:0px;
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:680px;
  6755. height:1240px;
  6756. background:inherit;
  6757. background-color:rgba(255, 255, 255, 1);
  6758. box-sizing:border-box;
  6759. border-width:1px;
  6760. border-style:solid;
  6761. border-color:rgba(215, 215, 215, 1);
  6762. border-radius:0px;
  6763. -moz-box-shadow:none;
  6764. -webkit-box-shadow:none;
  6765. box-shadow:none;
  6766. }
  6767. #u20289 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:1644px;
  6771. top:10px;
  6772. width:680px;
  6773. height:1240px;
  6774. display:flex;
  6775. }
  6776. #u20289 .text {
  6777. position:absolute;
  6778. align-self:center;
  6779. padding:2px 2px 2px 2px;
  6780. box-sizing:border-box;
  6781. width:100%;
  6782. }
  6783. #u20289_text {
  6784. border-width:0px;
  6785. word-wrap:break-word;
  6786. text-transform:none;
  6787. visibility:hidden;
  6788. }
  6789. #u20290_div {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:0px;
  6793. top:0px;
  6794. width:73px;
  6795. height:30px;
  6796. background:inherit;
  6797. background-color:rgba(255, 255, 255, 0);
  6798. border:none;
  6799. border-radius:0px;
  6800. -moz-box-shadow:none;
  6801. -webkit-box-shadow:none;
  6802. box-shadow:none;
  6803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:18px;
  6807. color:#000000;
  6808. line-height:30px;
  6809. }
  6810. #u20290 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:1664px;
  6814. top:30px;
  6815. width:73px;
  6816. height:30px;
  6817. display:flex;
  6818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:18px;
  6822. color:#000000;
  6823. line-height:30px;
  6824. }
  6825. #u20290 .text {
  6826. position:absolute;
  6827. align-self:flex-start;
  6828. padding:0px 0px 0px 0px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u20290_text {
  6833. border-width:0px;
  6834. white-space:nowrap;
  6835. text-transform:none;
  6836. }
  6837. #u20291 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:0px;
  6843. height:0px;
  6844. }
  6845. #u20292_div {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:400px;
  6851. height:120px;
  6852. background:inherit;
  6853. background-color:rgba(255, 255, 255, 1);
  6854. box-sizing:border-box;
  6855. border-width:1px;
  6856. border-style:solid;
  6857. border-color:rgba(170, 170, 170, 1);
  6858. border-radius:4px;
  6859. -moz-box-shadow:none;
  6860. -webkit-box-shadow:none;
  6861. box-shadow:none;
  6862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6863. font-weight:400;
  6864. font-style:normal;
  6865. text-align:left;
  6866. }
  6867. #u20292 {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:1783px;
  6871. top:230px;
  6872. width:400px;
  6873. height:120px;
  6874. display:flex;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. text-align:left;
  6879. }
  6880. #u20292 .text {
  6881. position:absolute;
  6882. align-self:center;
  6883. padding:2px 2px 2px 10px;
  6884. box-sizing:border-box;
  6885. width:100%;
  6886. }
  6887. #u20292_text {
  6888. border-width:0px;
  6889. word-wrap:break-word;
  6890. text-transform:none;
  6891. visibility:hidden;
  6892. }
  6893. #u20293_input {
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:373px;
  6898. height:31px;
  6899. padding:2px 2px 2px 2px;
  6900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:13px;
  6904. letter-spacing:normal;
  6905. color:#AAAAAA;
  6906. vertical-align:none;
  6907. text-align:left;
  6908. text-transform:none;
  6909. background-color:transparent;
  6910. border-color:transparent;
  6911. }
  6912. #u20293_input.disabled {
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:373px;
  6917. height:31px;
  6918. padding:2px 2px 2px 2px;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:13px;
  6923. letter-spacing:normal;
  6924. color:#AAAAAA;
  6925. vertical-align:none;
  6926. text-align:left;
  6927. text-transform:none;
  6928. background-color:transparent;
  6929. border-color:transparent;
  6930. }
  6931. #u20293_div {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:0px;
  6935. top:0px;
  6936. width:373px;
  6937. height:31px;
  6938. background:inherit;
  6939. background-color:rgba(255, 255, 255, 0);
  6940. border:none;
  6941. border-radius:0px;
  6942. -moz-box-shadow:none;
  6943. -webkit-box-shadow:none;
  6944. box-shadow:none;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. color:#AAAAAA;
  6949. }
  6950. #u20293 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:1793px;
  6954. top:235px;
  6955. width:373px;
  6956. height:31px;
  6957. display:flex;
  6958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6959. font-weight:400;
  6960. font-style:normal;
  6961. color:#AAAAAA;
  6962. }
  6963. #u20293 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:2px 2px 2px 2px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u20293_div.disabled {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:373px;
  6976. height:31px;
  6977. background:inherit;
  6978. background-color:rgba(240, 240, 240, 1);
  6979. border:none;
  6980. border-radius:0px;
  6981. -moz-box-shadow:none;
  6982. -webkit-box-shadow:none;
  6983. box-shadow:none;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. color:#AAAAAA;
  6988. }
  6989. #u20293.disabled {
  6990. }
  6991. #u20294 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:0px;
  6997. height:0px;
  6998. }
  6999. #u20295_div {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:40px;
  7005. height:40px;
  7006. background:inherit;
  7007. background-color:rgba(255, 255, 255, 0);
  7008. border:none;
  7009. border-top:0px;
  7010. border-right:0px;
  7011. border-bottom:0px;
  7012. border-radius:0px;
  7013. border-top-left-radius:0px;
  7014. border-bottom-left-radius:0px;
  7015. -moz-box-shadow:none;
  7016. -webkit-box-shadow:none;
  7017. box-shadow:none;
  7018. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7019. font-weight:500;
  7020. font-style:normal;
  7021. font-size:18px;
  7022. text-align:center;
  7023. }
  7024. #u20295 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:2284px;
  7028. top:10px;
  7029. width:40px;
  7030. height:40px;
  7031. display:flex;
  7032. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7033. font-weight:500;
  7034. font-style:normal;
  7035. font-size:18px;
  7036. text-align:center;
  7037. }
  7038. #u20295 .text {
  7039. position:absolute;
  7040. align-self:center;
  7041. padding:5px 10px 5px 0px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u20295_text {
  7046. border-width:0px;
  7047. word-wrap:break-word;
  7048. text-transform:none;
  7049. }
  7050. #u20296_img {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:13px;
  7056. height:13px;
  7057. }
  7058. #u20296 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:2271px;
  7062. top:28px;
  7063. width:13px;
  7064. height:13px;
  7065. display:flex;
  7066. }
  7067. #u20296 .text {
  7068. position:absolute;
  7069. align-self:center;
  7070. padding:2px 2px 2px 2px;
  7071. box-sizing:border-box;
  7072. width:100%;
  7073. }
  7074. #u20296_text {
  7075. border-width:0px;
  7076. word-wrap:break-word;
  7077. text-transform:none;
  7078. visibility:hidden;
  7079. }
  7080. #u20297 {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:0px;
  7084. top:0px;
  7085. width:0px;
  7086. height:0px;
  7087. }
  7088. #u20298_div {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:0px;
  7092. top:0px;
  7093. width:680px;
  7094. height:60px;
  7095. background:inherit;
  7096. background-color:rgba(255, 255, 255, 1);
  7097. box-sizing:border-box;
  7098. border-width:1px;
  7099. border-style:solid;
  7100. border-color:rgba(215, 215, 215, 1);
  7101. border-radius:0px;
  7102. -moz-box-shadow:none;
  7103. -webkit-box-shadow:none;
  7104. box-shadow:none;
  7105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:14px;
  7109. color:#AAAAAA;
  7110. text-align:center;
  7111. line-height:30px;
  7112. }
  7113. #u20298 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:1644px;
  7117. top:1190px;
  7118. width:680px;
  7119. height:60px;
  7120. display:flex;
  7121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7122. font-weight:400;
  7123. font-style:normal;
  7124. font-size:14px;
  7125. color:#AAAAAA;
  7126. text-align:center;
  7127. line-height:30px;
  7128. }
  7129. #u20298 .text {
  7130. position:absolute;
  7131. align-self:center;
  7132. padding:5px 10px 5px 10px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u20298_text {
  7137. border-width:0px;
  7138. word-wrap:break-word;
  7139. text-transform:none;
  7140. visibility:hidden;
  7141. }
  7142. #u20299_div {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:80px;
  7148. height:30px;
  7149. background:inherit;
  7150. background-color:rgba(24, 144, 255, 1);
  7151. border:none;
  7152. border-radius:4px;
  7153. -moz-box-shadow:none;
  7154. -webkit-box-shadow:none;
  7155. box-shadow:none;
  7156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7157. font-weight:400;
  7158. font-style:normal;
  7159. font-size:14px;
  7160. color:#FFFFFF;
  7161. }
  7162. #u20299 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:2199px;
  7166. top:1205px;
  7167. width:80px;
  7168. height:30px;
  7169. display:flex;
  7170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:14px;
  7174. color:#FFFFFF;
  7175. }
  7176. #u20299 .text {
  7177. position:absolute;
  7178. align-self:center;
  7179. padding:2px 2px 2px 2px;
  7180. box-sizing:border-box;
  7181. width:100%;
  7182. }
  7183. #u20299_text {
  7184. border-width:0px;
  7185. word-wrap:break-word;
  7186. text-transform:none;
  7187. }
  7188. #u20300_div {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:0px;
  7192. top:0px;
  7193. width:80px;
  7194. height:30px;
  7195. background:inherit;
  7196. background-color:rgba(255, 255, 255, 1);
  7197. box-sizing:border-box;
  7198. border-width:1px;
  7199. border-style:solid;
  7200. border-color:rgba(170, 170, 170, 1);
  7201. border-radius:4px;
  7202. -moz-box-shadow:none;
  7203. -webkit-box-shadow:none;
  7204. box-shadow:none;
  7205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:14px;
  7209. }
  7210. #u20300 {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:2100px;
  7214. top:1205px;
  7215. width:80px;
  7216. height:30px;
  7217. display:flex;
  7218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7219. font-weight:400;
  7220. font-style:normal;
  7221. font-size:14px;
  7222. }
  7223. #u20300 .text {
  7224. position:absolute;
  7225. align-self:center;
  7226. padding:2px 2px 2px 2px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u20300_text {
  7231. border-width:0px;
  7232. word-wrap:break-word;
  7233. text-transform:none;
  7234. }
  7235. #u20301_div {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:88px;
  7241. height:30px;
  7242. background:inherit;
  7243. background-color:rgba(255, 255, 255, 0);
  7244. border:none;
  7245. border-top:0px;
  7246. border-right:0px;
  7247. border-bottom:0px;
  7248. border-radius:0px;
  7249. border-top-left-radius:0px;
  7250. border-bottom-left-radius:0px;
  7251. -moz-box-shadow:none;
  7252. -webkit-box-shadow:none;
  7253. box-shadow:none;
  7254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:14px;
  7258. }
  7259. #u20301 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:1675px;
  7263. top:235px;
  7264. width:88px;
  7265. height:30px;
  7266. display:flex;
  7267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:14px;
  7271. }
  7272. #u20301 .text {
  7273. position:absolute;
  7274. align-self:center;
  7275. padding:5px 10px 5px 0px;
  7276. box-sizing:border-box;
  7277. width:100%;
  7278. }
  7279. #u20301_text {
  7280. border-width:0px;
  7281. white-space:nowrap;
  7282. text-transform:none;
  7283. }
  7284. #u20302_div {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:0px;
  7288. top:0px;
  7289. width:88px;
  7290. height:30px;
  7291. background:inherit;
  7292. background-color:rgba(255, 255, 255, 0);
  7293. border:none;
  7294. border-top:0px;
  7295. border-right:0px;
  7296. border-bottom:0px;
  7297. border-radius:0px;
  7298. border-top-left-radius:0px;
  7299. border-bottom-left-radius:0px;
  7300. -moz-box-shadow:none;
  7301. -webkit-box-shadow:none;
  7302. box-shadow:none;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:14px;
  7307. }
  7308. #u20302 {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:1675px;
  7312. top:85px;
  7313. width:88px;
  7314. height:30px;
  7315. display:flex;
  7316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. font-size:14px;
  7320. }
  7321. #u20302 .text {
  7322. position:absolute;
  7323. align-self:center;
  7324. padding:5px 10px 5px 0px;
  7325. box-sizing:border-box;
  7326. width:100%;
  7327. }
  7328. #u20302_text {
  7329. border-width:0px;
  7330. white-space:nowrap;
  7331. text-transform:none;
  7332. }
  7333. #u20303_div {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:88px;
  7339. height:30px;
  7340. background:inherit;
  7341. background-color:rgba(255, 255, 255, 0);
  7342. border:none;
  7343. border-top:0px;
  7344. border-right:0px;
  7345. border-bottom:0px;
  7346. border-radius:0px;
  7347. border-top-left-radius:0px;
  7348. border-bottom-left-radius:0px;
  7349. -moz-box-shadow:none;
  7350. -webkit-box-shadow:none;
  7351. box-shadow:none;
  7352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. font-size:14px;
  7356. }
  7357. #u20303 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:1675px;
  7361. top:135px;
  7362. width:88px;
  7363. height:30px;
  7364. display:flex;
  7365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:14px;
  7369. }
  7370. #u20303 .text {
  7371. position:absolute;
  7372. align-self:center;
  7373. padding:5px 10px 5px 0px;
  7374. box-sizing:border-box;
  7375. width:100%;
  7376. }
  7377. #u20303_text {
  7378. border-width:0px;
  7379. white-space:nowrap;
  7380. text-transform:none;
  7381. }
  7382. #u20304_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:81px;
  7388. height:30px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 0);
  7391. border:none;
  7392. border-top:0px;
  7393. border-right:0px;
  7394. border-bottom:0px;
  7395. border-radius:0px;
  7396. border-top-left-radius:0px;
  7397. border-bottom-left-radius:0px;
  7398. -moz-box-shadow:none;
  7399. -webkit-box-shadow:none;
  7400. box-shadow:none;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. font-size:14px;
  7405. }
  7406. #u20304 {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:1675px;
  7410. top:365px;
  7411. width:81px;
  7412. height:30px;
  7413. display:flex;
  7414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:14px;
  7418. }
  7419. #u20304 .text {
  7420. position:absolute;
  7421. align-self:center;
  7422. padding:5px 10px 5px 0px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u20304_text {
  7427. border-width:0px;
  7428. white-space:nowrap;
  7429. text-transform:none;
  7430. }
  7431. #u20305 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:0px;
  7437. height:0px;
  7438. }
  7439. #u20306_div {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:400px;
  7445. height:120px;
  7446. background:inherit;
  7447. background-color:rgba(255, 255, 255, 1);
  7448. box-sizing:border-box;
  7449. border-width:1px;
  7450. border-style:solid;
  7451. border-color:rgba(170, 170, 170, 1);
  7452. border-radius:4px;
  7453. -moz-box-shadow:none;
  7454. -webkit-box-shadow:none;
  7455. box-shadow:none;
  7456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7457. font-weight:400;
  7458. font-style:normal;
  7459. text-align:left;
  7460. }
  7461. #u20306 {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:1783px;
  7465. top:360px;
  7466. width:400px;
  7467. height:120px;
  7468. display:flex;
  7469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7470. font-weight:400;
  7471. font-style:normal;
  7472. text-align:left;
  7473. }
  7474. #u20306 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:2px 2px 2px 10px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u20306_text {
  7482. border-width:0px;
  7483. word-wrap:break-word;
  7484. text-transform:none;
  7485. visibility:hidden;
  7486. }
  7487. #u20307_input {
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:373px;
  7492. height:31px;
  7493. padding:2px 2px 2px 2px;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:13px;
  7498. letter-spacing:normal;
  7499. color:#AAAAAA;
  7500. vertical-align:none;
  7501. text-align:left;
  7502. text-transform:none;
  7503. background-color:transparent;
  7504. border-color:transparent;
  7505. }
  7506. #u20307_input.disabled {
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:373px;
  7511. height:31px;
  7512. padding:2px 2px 2px 2px;
  7513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7514. font-weight:400;
  7515. font-style:normal;
  7516. font-size:13px;
  7517. letter-spacing:normal;
  7518. color:#AAAAAA;
  7519. vertical-align:none;
  7520. text-align:left;
  7521. text-transform:none;
  7522. background-color:transparent;
  7523. border-color:transparent;
  7524. }
  7525. #u20307_div {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:373px;
  7531. height:31px;
  7532. background:inherit;
  7533. background-color:rgba(255, 255, 255, 0);
  7534. border:none;
  7535. border-radius:0px;
  7536. -moz-box-shadow:none;
  7537. -webkit-box-shadow:none;
  7538. box-shadow:none;
  7539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. color:#AAAAAA;
  7543. }
  7544. #u20307 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:1793px;
  7548. top:365px;
  7549. width:373px;
  7550. height:31px;
  7551. display:flex;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. color:#AAAAAA;
  7556. }
  7557. #u20307 .text {
  7558. position:absolute;
  7559. align-self:center;
  7560. padding:2px 2px 2px 2px;
  7561. box-sizing:border-box;
  7562. width:100%;
  7563. }
  7564. #u20307_div.disabled {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:373px;
  7570. height:31px;
  7571. background:inherit;
  7572. background-color:rgba(240, 240, 240, 1);
  7573. border:none;
  7574. border-radius:0px;
  7575. -moz-box-shadow:none;
  7576. -webkit-box-shadow:none;
  7577. box-shadow:none;
  7578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7579. font-weight:400;
  7580. font-style:normal;
  7581. color:#AAAAAA;
  7582. }
  7583. #u20307.disabled {
  7584. }
  7585. #u20308 {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:0px;
  7589. top:0px;
  7590. width:0px;
  7591. height:0px;
  7592. }
  7593. #u20309_div {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:0px;
  7597. top:0px;
  7598. width:400px;
  7599. height:40px;
  7600. background:inherit;
  7601. background-color:rgba(255, 255, 255, 1);
  7602. box-sizing:border-box;
  7603. border-width:1px;
  7604. border-style:solid;
  7605. border-color:rgba(170, 170, 170, 1);
  7606. border-radius:4px;
  7607. -moz-box-shadow:none;
  7608. -webkit-box-shadow:none;
  7609. box-shadow:none;
  7610. }
  7611. #u20309 {
  7612. border-width:0px;
  7613. position:absolute;
  7614. left:1783px;
  7615. top:130px;
  7616. width:400px;
  7617. height:40px;
  7618. display:flex;
  7619. }
  7620. #u20309 .text {
  7621. position:absolute;
  7622. align-self:center;
  7623. padding:2px 2px 2px 0px;
  7624. box-sizing:border-box;
  7625. width:100%;
  7626. }
  7627. #u20309_text {
  7628. border-width:0px;
  7629. word-wrap:break-word;
  7630. text-transform:none;
  7631. visibility:hidden;
  7632. }
  7633. #u20310_input {
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:380px;
  7638. height:30px;
  7639. padding:2px 2px 2px 0px;
  7640. font-family:'ArialMT', 'Arial', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:13px;
  7644. letter-spacing:normal;
  7645. color:#AAAAAA;
  7646. vertical-align:none;
  7647. text-align:left;
  7648. text-transform:none;
  7649. background-color:transparent;
  7650. border-color:transparent;
  7651. }
  7652. #u20310_input.disabled {
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:380px;
  7657. height:30px;
  7658. padding:2px 2px 2px 0px;
  7659. font-family:'ArialMT', 'Arial', sans-serif;
  7660. font-weight:400;
  7661. font-style:normal;
  7662. font-size:13px;
  7663. letter-spacing:normal;
  7664. color:#AAAAAA;
  7665. vertical-align:none;
  7666. text-align:left;
  7667. text-transform:none;
  7668. background-color:transparent;
  7669. border-color:transparent;
  7670. }
  7671. #u20310_div {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:380px;
  7677. height:30px;
  7678. background:inherit;
  7679. background-color:rgba(255, 255, 255, 1);
  7680. border:none;
  7681. border-radius:0px;
  7682. -moz-box-shadow:none;
  7683. -webkit-box-shadow:none;
  7684. box-shadow:none;
  7685. color:#AAAAAA;
  7686. }
  7687. #u20310 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:1793px;
  7691. top:136px;
  7692. width:380px;
  7693. height:30px;
  7694. display:flex;
  7695. color:#AAAAAA;
  7696. }
  7697. #u20310 .text {
  7698. position:absolute;
  7699. align-self:flex-start;
  7700. padding:2px 2px 2px 0px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u20310_div.disabled {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:380px;
  7710. height:30px;
  7711. background:inherit;
  7712. background-color:rgba(240, 240, 240, 1);
  7713. border:none;
  7714. border-radius:0px;
  7715. -moz-box-shadow:none;
  7716. -webkit-box-shadow:none;
  7717. box-shadow:none;
  7718. color:#AAAAAA;
  7719. }
  7720. #u20310.disabled {
  7721. }
  7722. .u20310_input_option {
  7723. }
  7724. #u20311_div {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:88px;
  7730. height:30px;
  7731. background:inherit;
  7732. background-color:rgba(255, 255, 255, 0);
  7733. border:none;
  7734. border-top:0px;
  7735. border-right:0px;
  7736. border-bottom:0px;
  7737. border-radius:0px;
  7738. border-top-left-radius:0px;
  7739. border-bottom-left-radius:0px;
  7740. -moz-box-shadow:none;
  7741. -webkit-box-shadow:none;
  7742. box-shadow:none;
  7743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7744. font-weight:400;
  7745. font-style:normal;
  7746. font-size:14px;
  7747. }
  7748. #u20311 {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:1675px;
  7752. top:185px;
  7753. width:88px;
  7754. height:30px;
  7755. display:flex;
  7756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:14px;
  7760. }
  7761. #u20311 .text {
  7762. position:absolute;
  7763. align-self:center;
  7764. padding:5px 10px 5px 0px;
  7765. box-sizing:border-box;
  7766. width:100%;
  7767. }
  7768. #u20311_text {
  7769. border-width:0px;
  7770. white-space:nowrap;
  7771. text-transform:none;
  7772. }
  7773. #u20312 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:0px;
  7777. top:0px;
  7778. width:0px;
  7779. height:0px;
  7780. }
  7781. #u20313_div {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:400px;
  7787. height:40px;
  7788. background:inherit;
  7789. background-color:rgba(255, 255, 255, 1);
  7790. box-sizing:border-box;
  7791. border-width:1px;
  7792. border-style:solid;
  7793. border-color:rgba(170, 170, 170, 1);
  7794. border-radius:4px;
  7795. -moz-box-shadow:none;
  7796. -webkit-box-shadow:none;
  7797. box-shadow:none;
  7798. }
  7799. #u20313 {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:1783px;
  7803. top:180px;
  7804. width:400px;
  7805. height:40px;
  7806. display:flex;
  7807. }
  7808. #u20313 .text {
  7809. position:absolute;
  7810. align-self:center;
  7811. padding:2px 2px 2px 0px;
  7812. box-sizing:border-box;
  7813. width:100%;
  7814. }
  7815. #u20313_text {
  7816. border-width:0px;
  7817. word-wrap:break-word;
  7818. text-transform:none;
  7819. visibility:hidden;
  7820. }
  7821. #u20314_input {
  7822. position:absolute;
  7823. left:0px;
  7824. top:0px;
  7825. width:380px;
  7826. height:30px;
  7827. padding:2px 2px 2px 0px;
  7828. font-family:'ArialMT', 'Arial', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:13px;
  7832. letter-spacing:normal;
  7833. color:#AAAAAA;
  7834. vertical-align:none;
  7835. text-align:left;
  7836. text-transform:none;
  7837. background-color:transparent;
  7838. border-color:transparent;
  7839. }
  7840. #u20314_input.disabled {
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:380px;
  7845. height:30px;
  7846. padding:2px 2px 2px 0px;
  7847. font-family:'ArialMT', 'Arial', sans-serif;
  7848. font-weight:400;
  7849. font-style:normal;
  7850. font-size:13px;
  7851. letter-spacing:normal;
  7852. color:#AAAAAA;
  7853. vertical-align:none;
  7854. text-align:left;
  7855. text-transform:none;
  7856. background-color:transparent;
  7857. border-color:transparent;
  7858. }
  7859. #u20314_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:380px;
  7865. height:30px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 1);
  7868. border:none;
  7869. border-radius:0px;
  7870. -moz-box-shadow:none;
  7871. -webkit-box-shadow:none;
  7872. box-shadow:none;
  7873. color:#AAAAAA;
  7874. }
  7875. #u20314 {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:1793px;
  7879. top:186px;
  7880. width:380px;
  7881. height:30px;
  7882. display:flex;
  7883. color:#AAAAAA;
  7884. }
  7885. #u20314 .text {
  7886. position:absolute;
  7887. align-self:flex-start;
  7888. padding:2px 2px 2px 0px;
  7889. box-sizing:border-box;
  7890. width:100%;
  7891. }
  7892. #u20314_div.disabled {
  7893. border-width:0px;
  7894. position:absolute;
  7895. left:0px;
  7896. top:0px;
  7897. width:380px;
  7898. height:30px;
  7899. background:inherit;
  7900. background-color:rgba(240, 240, 240, 1);
  7901. border:none;
  7902. border-radius:0px;
  7903. -moz-box-shadow:none;
  7904. -webkit-box-shadow:none;
  7905. box-shadow:none;
  7906. color:#AAAAAA;
  7907. }
  7908. #u20314.disabled {
  7909. }
  7910. .u20314_input_option {
  7911. }
  7912. #u20315 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:0px;
  7916. top:0px;
  7917. width:0px;
  7918. height:0px;
  7919. }
  7920. #u20316_div {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:400px;
  7926. height:40px;
  7927. background:inherit;
  7928. background-color:rgba(255, 255, 255, 1);
  7929. box-sizing:border-box;
  7930. border-width:1px;
  7931. border-style:solid;
  7932. border-color:rgba(170, 170, 170, 1);
  7933. border-radius:4px;
  7934. -moz-box-shadow:none;
  7935. -webkit-box-shadow:none;
  7936. box-shadow:none;
  7937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. text-align:left;
  7941. }
  7942. #u20316 {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:1783px;
  7946. top:80px;
  7947. width:400px;
  7948. height:40px;
  7949. display:flex;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. text-align:left;
  7954. }
  7955. #u20316 .text {
  7956. position:absolute;
  7957. align-self:center;
  7958. padding:2px 2px 2px 10px;
  7959. box-sizing:border-box;
  7960. width:100%;
  7961. }
  7962. #u20316_text {
  7963. border-width:0px;
  7964. word-wrap:break-word;
  7965. text-transform:none;
  7966. visibility:hidden;
  7967. }
  7968. #u20317_input {
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:373px;
  7973. height:31px;
  7974. padding:2px 2px 2px 2px;
  7975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7976. font-weight:400;
  7977. font-style:normal;
  7978. font-size:13px;
  7979. letter-spacing:normal;
  7980. color:#AAAAAA;
  7981. vertical-align:none;
  7982. text-align:left;
  7983. text-transform:none;
  7984. background-color:transparent;
  7985. border-color:transparent;
  7986. }
  7987. #u20317_input.disabled {
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:373px;
  7992. height:31px;
  7993. padding:2px 2px 2px 2px;
  7994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7995. font-weight:400;
  7996. font-style:normal;
  7997. font-size:13px;
  7998. letter-spacing:normal;
  7999. color:#AAAAAA;
  8000. vertical-align:none;
  8001. text-align:left;
  8002. text-transform:none;
  8003. background-color:transparent;
  8004. border-color:transparent;
  8005. }
  8006. #u20317_div {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:373px;
  8012. height:31px;
  8013. background:inherit;
  8014. background-color:rgba(255, 255, 255, 0);
  8015. border:none;
  8016. border-radius:0px;
  8017. -moz-box-shadow:none;
  8018. -webkit-box-shadow:none;
  8019. box-shadow:none;
  8020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8021. font-weight:400;
  8022. font-style:normal;
  8023. color:#AAAAAA;
  8024. }
  8025. #u20317 {
  8026. border-width:0px;
  8027. position:absolute;
  8028. left:1793px;
  8029. top:85px;
  8030. width:373px;
  8031. height:31px;
  8032. display:flex;
  8033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8034. font-weight:400;
  8035. font-style:normal;
  8036. color:#AAAAAA;
  8037. }
  8038. #u20317 .text {
  8039. position:absolute;
  8040. align-self:center;
  8041. padding:2px 2px 2px 2px;
  8042. box-sizing:border-box;
  8043. width:100%;
  8044. }
  8045. #u20317_div.disabled {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:0px;
  8049. top:0px;
  8050. width:373px;
  8051. height:31px;
  8052. background:inherit;
  8053. background-color:rgba(240, 240, 240, 1);
  8054. border:none;
  8055. border-radius:0px;
  8056. -moz-box-shadow:none;
  8057. -webkit-box-shadow:none;
  8058. box-shadow:none;
  8059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. color:#AAAAAA;
  8063. }
  8064. #u20317.disabled {
  8065. }