styles.css 189 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2018px;
  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. #u20244_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u20244 {
  35. border-width:0px;
  36. position:absolute;
  37. left:133px;
  38. top:1724px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u20244 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u20244_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u20245_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u20245 {
  74. border-width:0px;
  75. position:absolute;
  76. left:62px;
  77. top:1688px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u20245 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u20245_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u20246_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u20246 {
  113. border-width:0px;
  114. position:absolute;
  115. left:13px;
  116. top:1674px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u20246 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u20246_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u20247 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u20248_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u20248 {
  152. border-width:0px;
  153. position:absolute;
  154. left:32px;
  155. top:1684px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u20248 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u20248_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u20249_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u20249 {
  193. border-width:0px;
  194. position:absolute;
  195. left:75px;
  196. top:1688px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u20249 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u20249_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u20250_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u20250 {
  235. border-width:0px;
  236. position:absolute;
  237. left:13px;
  238. top:1721px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u20250 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u20250_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u20251 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u20252_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. #u20252 {
  286. border-width:0px;
  287. position:absolute;
  288. left:52px;
  289. top:1845px;
  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. #u20252 .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. #u20252_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u20253_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u20253 {
  320. border-width:0px;
  321. position:absolute;
  322. left:33px;
  323. top:1849px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u20253 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u20253_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u20254 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u20255_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. #u20255 {
  370. border-width:0px;
  371. position:absolute;
  372. left:52px;
  373. top:2055px;
  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. #u20255 .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. #u20255_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u20256_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u20256 {
  404. border-width:0px;
  405. position:absolute;
  406. left:33px;
  407. top:2059px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u20256 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u20256_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u20257 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u20258_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  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. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u20258 {
  454. border-width:0px;
  455. position:absolute;
  456. left:52px;
  457. top:1807px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u20258 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u20258_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u20259_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u20259 {
  488. border-width:0px;
  489. position:absolute;
  490. left:33px;
  491. top:1811px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u20259 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u20259_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u20260 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u20261_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u20261 {
  538. border-width:0px;
  539. position:absolute;
  540. left:52px;
  541. top:2097px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u20261 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u20261_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u20262_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u20262 {
  572. border-width:0px;
  573. position:absolute;
  574. left:33px;
  575. top:2101px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u20262 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u20262_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u20263 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u20264_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u20264 {
  622. border-width:0px;
  623. position:absolute;
  624. left:52px;
  625. top:1971px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u20264 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u20264_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u20265_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u20265 {
  656. border-width:0px;
  657. position:absolute;
  658. left:33px;
  659. top:1975px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u20265 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u20265_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u20266 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u20267_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u20267 {
  706. border-width:0px;
  707. position:absolute;
  708. left:52px;
  709. top:1887px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u20267 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u20267_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u20268_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u20268 {
  740. border-width:0px;
  741. position:absolute;
  742. left:33px;
  743. top:1891px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u20268 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u20268_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u20269 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u20270_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u20270 {
  790. border-width:0px;
  791. position:absolute;
  792. left:52px;
  793. top:2013px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u20270 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u20270_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u20271_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u20271 {
  824. border-width:0px;
  825. position:absolute;
  826. left:33px;
  827. top:2017px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u20271 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u20271_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u20272 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u20273_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u20273 {
  874. border-width:0px;
  875. position:absolute;
  876. left:52px;
  877. top:2139px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u20273 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u20273_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u20274_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u20274 {
  908. border-width:0px;
  909. position:absolute;
  910. left:33px;
  911. top:2143px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u20274 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u20274_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u20275 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u20276_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u20276 {
  957. border-width:0px;
  958. position:absolute;
  959. left:65px;
  960. top:2819px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u20276 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u20276_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u20277_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u20277 {
  990. border-width:0px;
  991. position:absolute;
  992. left:33px;
  993. top:2818px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u20277 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u20277_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u20278 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u20279_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u20279 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:65px;
  1042. top:2861px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u20279 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u20279_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u20280_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u20280 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:33px;
  1075. top:2860px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u20280 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u20280_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u20281 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u20282_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u20282 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:52px;
  1125. top:1929px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u20282 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u20282_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u20283_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u20283 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:33px;
  1159. top:1933px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u20283 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u20283_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u20284 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u20285_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u20285_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u20285_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u20285 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1234px;
  1244. top:1685px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u20285 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u20285_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u20285.disabled {
  1276. }
  1277. .u20285_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u20286_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u20286 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1207px;
  1292. top:1688px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u20286 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u20286_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u20287_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  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. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u20287 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1493px;
  1334. top:1687px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u20287 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u20287_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u20288_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u20288 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1465px;
  1368. top:1693px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u20288 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u20288_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u20289 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u20290_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  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. color:#FFFFFF;
  1412. }
  1413. #u20290 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:65px;
  1417. top:2756px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u20290 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u20290_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u20291_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u20291 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:33px;
  1450. top:2755px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u20291 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u20291_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u20292_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u20292 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:33px;
  1480. top:2797px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u20292 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u20292_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u20293_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u20293 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:33px;
  1510. top:2735px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u20293 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u20293_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u20294_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u20294 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:33px;
  1540. top:1786px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u20294 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u20294_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u20295 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u20296_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u20296 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:56px;
  1590. top:1745px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u20296 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u20296_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u20297_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u20297 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:33px;
  1624. top:1749px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u20297 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u20297_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u20298_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1265px;
  1648. height:1193px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1656. color:#1890FF;
  1657. }
  1658. #u20298 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:342px;
  1662. top:1724px;
  1663. width:1265px;
  1664. height:1193px;
  1665. display:flex;
  1666. color:#1890FF;
  1667. }
  1668. #u20298 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u20298_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u20299_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:55px;
  1687. height:50px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 0);
  1690. border:none;
  1691. border-left:0px;
  1692. border-top:0px;
  1693. border-right:0px;
  1694. border-radius:0px;
  1695. border-bottom-right-radius:0px;
  1696. border-bottom-left-radius:0px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1701. font-weight:500;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. }
  1705. #u20299 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:361px;
  1709. top:1724px;
  1710. width:55px;
  1711. height:50px;
  1712. display:flex;
  1713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1714. font-weight:500;
  1715. font-style:normal;
  1716. font-size:18px;
  1717. }
  1718. #u20299 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u20299_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u20301 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:0px;
  1736. height:0px;
  1737. }
  1738. #u20302_div {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:200px;
  1744. height:1193px;
  1745. background:inherit;
  1746. background-color:rgba(255, 255, 255, 1);
  1747. border:none;
  1748. border-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. }
  1753. #u20302 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:133px;
  1757. top:1724px;
  1758. width:200px;
  1759. height:1193px;
  1760. display:flex;
  1761. }
  1762. #u20302 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 2px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u20302_text {
  1770. border-width:0px;
  1771. word-wrap:break-word;
  1772. text-transform:none;
  1773. visibility:hidden;
  1774. }
  1775. #u20303_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:200px;
  1781. height:60px;
  1782. background:inherit;
  1783. background-color:rgba(224, 231, 247, 1);
  1784. border:none;
  1785. border-radius:0px;
  1786. -moz-box-shadow:none;
  1787. -webkit-box-shadow:none;
  1788. box-shadow:none;
  1789. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1790. font-weight:500;
  1791. font-style:normal;
  1792. font-size:18px;
  1793. }
  1794. #u20303 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:133px;
  1798. top:1724px;
  1799. width:200px;
  1800. height:60px;
  1801. display:flex;
  1802. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1803. font-weight:500;
  1804. font-style:normal;
  1805. font-size:18px;
  1806. }
  1807. #u20303 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:0px 0px 0px 20px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u20303_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u20304_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:65px;
  1825. height:22px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 0);
  1828. border:none;
  1829. border-radius:0px;
  1830. -moz-box-shadow:none;
  1831. -webkit-box-shadow:none;
  1832. box-shadow:none;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:16px;
  1837. }
  1838. #u20304 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:163px;
  1842. top:1838px;
  1843. width:65px;
  1844. height:22px;
  1845. display:flex;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:16px;
  1850. }
  1851. #u20304 .text {
  1852. position:absolute;
  1853. align-self:flex-start;
  1854. padding:0px 0px 0px 0px;
  1855. box-sizing:border-box;
  1856. width:100%;
  1857. }
  1858. #u20304_text {
  1859. border-width:0px;
  1860. white-space:nowrap;
  1861. text-transform:none;
  1862. }
  1863. #u20305_div {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:61px;
  1869. height:17px;
  1870. background:inherit;
  1871. background-color:rgba(255, 255, 255, 0);
  1872. border:none;
  1873. border-radius:0px;
  1874. -moz-box-shadow:none;
  1875. -webkit-box-shadow:none;
  1876. box-shadow:none;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. color:#AAAAAA;
  1882. }
  1883. #u20305 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:163px;
  1887. top:1802px;
  1888. width:61px;
  1889. height:17px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:12px;
  1895. color:#AAAAAA;
  1896. }
  1897. #u20305 .text {
  1898. position:absolute;
  1899. align-self:flex-start;
  1900. padding:0px 0px 0px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u20305_text {
  1905. border-width:0px;
  1906. white-space:nowrap;
  1907. text-transform:none;
  1908. }
  1909. #u20306_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:201px;
  1915. height:2px;
  1916. }
  1917. #u20306 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:133px;
  1921. top:1966px;
  1922. width:200px;
  1923. height:1px;
  1924. display:flex;
  1925. }
  1926. #u20306 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 2px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u20306_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. visibility:hidden;
  1938. }
  1939. #u20307_div {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:65px;
  1945. height:22px;
  1946. background:inherit;
  1947. background-color:rgba(255, 255, 255, 0);
  1948. border:none;
  1949. border-radius:0px;
  1950. -moz-box-shadow:none;
  1951. -webkit-box-shadow:none;
  1952. box-shadow:none;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:16px;
  1957. }
  1958. #u20307 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:163px;
  1962. top:1922px;
  1963. width:65px;
  1964. height:22px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:16px;
  1970. }
  1971. #u20307 .text {
  1972. position:absolute;
  1973. align-self:flex-start;
  1974. padding:0px 0px 0px 0px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u20307_text {
  1979. border-width:0px;
  1980. white-space:nowrap;
  1981. text-transform:none;
  1982. }
  1983. #u20308_div {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:65px;
  1989. height:22px;
  1990. background:inherit;
  1991. background-color:rgba(255, 255, 255, 0);
  1992. border:none;
  1993. border-radius:0px;
  1994. -moz-box-shadow:none;
  1995. -webkit-box-shadow:none;
  1996. box-shadow:none;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:16px;
  2001. }
  2002. #u20308 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:163px;
  2006. top:2023px;
  2007. width:65px;
  2008. height:22px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:16px;
  2014. }
  2015. #u20308 .text {
  2016. position:absolute;
  2017. align-self:flex-start;
  2018. padding:0px 0px 0px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u20308_text {
  2023. border-width:0px;
  2024. white-space:nowrap;
  2025. text-transform:none;
  2026. }
  2027. #u20309_div {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:49px;
  2033. height:17px;
  2034. background:inherit;
  2035. background-color:rgba(255, 255, 255, 0);
  2036. border:none;
  2037. border-radius:0px;
  2038. -moz-box-shadow:none;
  2039. -webkit-box-shadow:none;
  2040. box-shadow:none;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:12px;
  2045. color:#AAAAAA;
  2046. }
  2047. #u20309 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:163px;
  2051. top:1987px;
  2052. width:49px;
  2053. height:17px;
  2054. display:flex;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:12px;
  2059. color:#AAAAAA;
  2060. }
  2061. #u20309 .text {
  2062. position:absolute;
  2063. align-self:flex-start;
  2064. padding:0px 0px 0px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u20309_text {
  2069. border-width:0px;
  2070. white-space:nowrap;
  2071. text-transform:none;
  2072. }
  2073. #u20310_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:65px;
  2079. height:22px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 0);
  2082. border:none;
  2083. border-radius:0px;
  2084. -moz-box-shadow:none;
  2085. -webkit-box-shadow:none;
  2086. box-shadow:none;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:16px;
  2091. }
  2092. #u20310 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:163px;
  2096. top:2065px;
  2097. width:65px;
  2098. height:22px;
  2099. display:flex;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:16px;
  2104. }
  2105. #u20310 .text {
  2106. position:absolute;
  2107. align-self:flex-start;
  2108. padding:0px 0px 0px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u20310_text {
  2113. border-width:0px;
  2114. white-space:nowrap;
  2115. text-transform:none;
  2116. }
  2117. #u20311_img {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:201px;
  2123. height:2px;
  2124. }
  2125. #u20311 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:133px;
  2129. top:2147px;
  2130. width:200px;
  2131. height:1px;
  2132. display:flex;
  2133. }
  2134. #u20311 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u20311_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. visibility:hidden;
  2146. }
  2147. #u20312_div {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:49px;
  2153. height:22px;
  2154. background:inherit;
  2155. background-color:rgba(255, 255, 255, 0);
  2156. border:none;
  2157. border-radius:0px;
  2158. -moz-box-shadow:none;
  2159. -webkit-box-shadow:none;
  2160. box-shadow:none;
  2161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2162. font-weight:400;
  2163. font-style:normal;
  2164. font-size:16px;
  2165. }
  2166. #u20312 {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:163px;
  2170. top:2204px;
  2171. width:49px;
  2172. height:22px;
  2173. display:flex;
  2174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:16px;
  2178. }
  2179. #u20312 .text {
  2180. position:absolute;
  2181. align-self:flex-start;
  2182. padding:0px 0px 0px 0px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u20312_text {
  2187. border-width:0px;
  2188. white-space:nowrap;
  2189. text-transform:none;
  2190. }
  2191. #u20313_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:49px;
  2197. height:17px;
  2198. background:inherit;
  2199. background-color:rgba(255, 255, 255, 0);
  2200. border:none;
  2201. border-radius:0px;
  2202. -moz-box-shadow:none;
  2203. -webkit-box-shadow:none;
  2204. box-shadow:none;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:12px;
  2209. color:#AAAAAA;
  2210. }
  2211. #u20313 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:163px;
  2215. top:2168px;
  2216. width:49px;
  2217. height:17px;
  2218. display:flex;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. color:#AAAAAA;
  2224. }
  2225. #u20313 .text {
  2226. position:absolute;
  2227. align-self:flex-start;
  2228. padding:0px 0px 0px 0px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u20313_text {
  2233. border-width:0px;
  2234. white-space:nowrap;
  2235. text-transform:none;
  2236. }
  2237. #u20314_div {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:65px;
  2243. height:22px;
  2244. background:inherit;
  2245. background-color:rgba(255, 255, 255, 0);
  2246. border:none;
  2247. border-radius:0px;
  2248. -moz-box-shadow:none;
  2249. -webkit-box-shadow:none;
  2250. box-shadow:none;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:16px;
  2255. }
  2256. #u20314 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:163px;
  2260. top:1880px;
  2261. width:65px;
  2262. height:22px;
  2263. display:flex;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:16px;
  2268. }
  2269. #u20314 .text {
  2270. position:absolute;
  2271. align-self:flex-start;
  2272. padding:0px 0px 0px 0px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u20314_text {
  2277. border-width:0px;
  2278. white-space:nowrap;
  2279. text-transform:none;
  2280. }
  2281. #u20315_div {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:65px;
  2287. height:22px;
  2288. background:inherit;
  2289. background-color:rgba(255, 255, 255, 0);
  2290. border:none;
  2291. border-radius:0px;
  2292. -moz-box-shadow:none;
  2293. -webkit-box-shadow:none;
  2294. box-shadow:none;
  2295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:16px;
  2299. }
  2300. #u20315 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:163px;
  2304. top:2107px;
  2305. width:65px;
  2306. height:22px;
  2307. display:flex;
  2308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:16px;
  2312. }
  2313. #u20315 .text {
  2314. position:absolute;
  2315. align-self:flex-start;
  2316. padding:0px 0px 0px 0px;
  2317. box-sizing:border-box;
  2318. width:100%;
  2319. }
  2320. #u20315_text {
  2321. border-width:0px;
  2322. white-space:nowrap;
  2323. text-transform:none;
  2324. }
  2325. #u20316_div {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:225px;
  2331. height:20px;
  2332. background:inherit;
  2333. background-color:rgba(255, 255, 255, 0);
  2334. border:none;
  2335. border-left:0px;
  2336. border-top:0px;
  2337. border-right:0px;
  2338. border-radius:0px;
  2339. border-bottom-right-radius:0px;
  2340. border-bottom-left-radius:0px;
  2341. -moz-box-shadow:none;
  2342. -webkit-box-shadow:none;
  2343. box-shadow:none;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. color:#7F7F7F;
  2349. }
  2350. #u20316 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:365px;
  2354. top:1774px;
  2355. width:225px;
  2356. height:20px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. color:#7F7F7F;
  2363. }
  2364. #u20316 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:0px 0px 0px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u20316_text {
  2372. border-width:0px;
  2373. white-space:nowrap;
  2374. text-transform:none;
  2375. }
  2376. #u20317 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:369px;
  2380. top:1909px;
  2381. width:1211px;
  2382. height:328px;
  2383. }
  2384. #u20318_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:148px;
  2390. height:44px;
  2391. }
  2392. #u20318 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:148px;
  2398. height:44px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:12px;
  2404. color:#FFFFFF;
  2405. }
  2406. #u20318 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:2px 2px 2px 0px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u20318_text {
  2414. border-width:0px;
  2415. word-wrap:break-word;
  2416. text-transform:none;
  2417. }
  2418. #u20319_img {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:148px;
  2424. height:44px;
  2425. }
  2426. #u20319 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:148px;
  2430. top:0px;
  2431. width:148px;
  2432. height:44px;
  2433. display:flex;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:12px;
  2438. color:#FFFFFF;
  2439. }
  2440. #u20319 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 0px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u20319_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. }
  2452. #u20320_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:143px;
  2458. height:44px;
  2459. }
  2460. #u20320 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:296px;
  2464. top:0px;
  2465. width:143px;
  2466. height:44px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:12px;
  2472. color:#FFFFFF;
  2473. }
  2474. #u20320 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:2px 2px 2px 0px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u20320_text {
  2482. border-width:0px;
  2483. word-wrap:break-word;
  2484. text-transform:none;
  2485. }
  2486. #u20321_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:130px;
  2492. height:44px;
  2493. }
  2494. #u20321 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:439px;
  2498. top:0px;
  2499. width:130px;
  2500. height:44px;
  2501. display:flex;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:12px;
  2506. color:#FFFFFF;
  2507. }
  2508. #u20321 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 2px 2px 0px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u20321_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. }
  2520. #u20322_img {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:141px;
  2526. height:44px;
  2527. }
  2528. #u20322 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:569px;
  2532. top:0px;
  2533. width:141px;
  2534. height:44px;
  2535. display:flex;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:12px;
  2540. color:#FFFFFF;
  2541. }
  2542. #u20322 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 2px 2px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u20322_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. }
  2554. #u20323_img {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:130px;
  2560. height:44px;
  2561. }
  2562. #u20323 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:710px;
  2566. top:0px;
  2567. width:130px;
  2568. height:44px;
  2569. display:flex;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:12px;
  2574. color:#FFFFFF;
  2575. }
  2576. #u20323 .text {
  2577. position:absolute;
  2578. align-self:center;
  2579. padding:2px 2px 2px 0px;
  2580. box-sizing:border-box;
  2581. width:100%;
  2582. }
  2583. #u20323_text {
  2584. border-width:0px;
  2585. word-wrap:break-word;
  2586. text-transform:none;
  2587. }
  2588. #u20324_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:130px;
  2594. height:44px;
  2595. }
  2596. #u20324 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:840px;
  2600. top:0px;
  2601. width:130px;
  2602. height:44px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. color:#FFFFFF;
  2609. }
  2610. #u20324 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u20324_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. }
  2622. #u20325_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:130px;
  2628. height:44px;
  2629. }
  2630. #u20325 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:970px;
  2634. top:0px;
  2635. width:130px;
  2636. height:44px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. color:#FFFFFF;
  2643. }
  2644. #u20325 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u20325_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. }
  2656. #u20326_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:111px;
  2662. height:44px;
  2663. }
  2664. #u20326 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:1100px;
  2668. top:0px;
  2669. width:111px;
  2670. height:44px;
  2671. display:flex;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:12px;
  2676. color:#FFFFFF;
  2677. }
  2678. #u20326 .text {
  2679. position:absolute;
  2680. align-self:center;
  2681. padding:2px 2px 2px 0px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u20326_text {
  2686. border-width:0px;
  2687. word-wrap:break-word;
  2688. text-transform:none;
  2689. }
  2690. #u20327_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:148px;
  2696. height:38px;
  2697. }
  2698. #u20327 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:44px;
  2703. width:148px;
  2704. height:38px;
  2705. display:flex;
  2706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. font-size:12px;
  2710. color:#333333;
  2711. }
  2712. #u20327 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 0px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u20327_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. visibility:hidden;
  2724. }
  2725. #u20328_img {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:148px;
  2731. height:38px;
  2732. }
  2733. #u20328 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:148px;
  2737. top:44px;
  2738. width:148px;
  2739. height:38px;
  2740. display:flex;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:12px;
  2745. color:#333333;
  2746. }
  2747. #u20328 .text {
  2748. position:absolute;
  2749. align-self:center;
  2750. padding:2px 2px 2px 0px;
  2751. box-sizing:border-box;
  2752. width:100%;
  2753. }
  2754. #u20328_text {
  2755. border-width:0px;
  2756. word-wrap:break-word;
  2757. text-transform:none;
  2758. visibility:hidden;
  2759. }
  2760. #u20329_img {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:143px;
  2766. height:38px;
  2767. }
  2768. #u20329 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:296px;
  2772. top:44px;
  2773. width:143px;
  2774. height:38px;
  2775. display:flex;
  2776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2777. font-weight:400;
  2778. font-style:normal;
  2779. font-size:12px;
  2780. color:#333333;
  2781. }
  2782. #u20329 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 2px 2px 0px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u20329_text {
  2790. border-width:0px;
  2791. word-wrap:break-word;
  2792. text-transform:none;
  2793. visibility:hidden;
  2794. }
  2795. #u20330_img {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:130px;
  2801. height:38px;
  2802. }
  2803. #u20330 {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:439px;
  2807. top:44px;
  2808. width:130px;
  2809. height:38px;
  2810. display:flex;
  2811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2812. font-weight:400;
  2813. font-style:normal;
  2814. font-size:12px;
  2815. color:#333333;
  2816. }
  2817. #u20330 .text {
  2818. position:absolute;
  2819. align-self:center;
  2820. padding:2px 2px 2px 0px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u20330_text {
  2825. border-width:0px;
  2826. word-wrap:break-word;
  2827. text-transform:none;
  2828. visibility:hidden;
  2829. }
  2830. #u20331_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:141px;
  2836. height:38px;
  2837. }
  2838. #u20331 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:569px;
  2842. top:44px;
  2843. width:141px;
  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. #u20331 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 0px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u20331_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. visibility:hidden;
  2864. }
  2865. #u20332_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:130px;
  2871. height:38px;
  2872. }
  2873. #u20332 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:710px;
  2877. top:44px;
  2878. width:130px;
  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. color:#333333;
  2886. }
  2887. #u20332 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u20332_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. visibility:hidden;
  2899. }
  2900. #u20333_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:130px;
  2906. height:38px;
  2907. }
  2908. #u20333 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:840px;
  2912. top:44px;
  2913. width:130px;
  2914. height:38px;
  2915. display:flex;
  2916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2917. font-weight:400;
  2918. font-style:normal;
  2919. font-size:12px;
  2920. color:#333333;
  2921. }
  2922. #u20333 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 0px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u20333_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u20334_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:130px;
  2941. height:38px;
  2942. }
  2943. #u20334 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:970px;
  2947. top:44px;
  2948. width:130px;
  2949. height:38px;
  2950. display:flex;
  2951. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:12px;
  2955. color:#333333;
  2956. }
  2957. #u20334 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:2px 2px 2px 0px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u20334_text {
  2965. border-width:0px;
  2966. word-wrap:break-word;
  2967. text-transform:none;
  2968. visibility:hidden;
  2969. }
  2970. #u20335_img {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:0px;
  2975. width:111px;
  2976. height:38px;
  2977. }
  2978. #u20335 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:1100px;
  2982. top:44px;
  2983. width:111px;
  2984. height:38px;
  2985. display:flex;
  2986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. font-size:12px;
  2990. color:#0089FE;
  2991. }
  2992. #u20335 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 2px 2px 0px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u20335_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. }
  3004. #u20336_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:148px;
  3010. height:38px;
  3011. }
  3012. #u20336 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:82px;
  3017. width:148px;
  3018. height:38px;
  3019. display:flex;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:12px;
  3024. color:#333333;
  3025. }
  3026. #u20336 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u20336_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u20337_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:148px;
  3045. height:38px;
  3046. }
  3047. #u20337 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:148px;
  3051. top:82px;
  3052. width:148px;
  3053. height:38px;
  3054. display:flex;
  3055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:12px;
  3059. color:#333333;
  3060. }
  3061. #u20337 .text {
  3062. position:absolute;
  3063. align-self:center;
  3064. padding:2px 2px 2px 0px;
  3065. box-sizing:border-box;
  3066. width:100%;
  3067. }
  3068. #u20337_text {
  3069. border-width:0px;
  3070. word-wrap:break-word;
  3071. text-transform:none;
  3072. visibility:hidden;
  3073. }
  3074. #u20338_img {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:143px;
  3080. height:38px;
  3081. }
  3082. #u20338 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:296px;
  3086. top:82px;
  3087. width:143px;
  3088. height:38px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:12px;
  3094. color:#333333;
  3095. }
  3096. #u20338 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u20338_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. visibility:hidden;
  3108. }
  3109. #u20339_img {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:130px;
  3115. height:38px;
  3116. }
  3117. #u20339 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:439px;
  3121. top:82px;
  3122. width:130px;
  3123. height:38px;
  3124. display:flex;
  3125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3126. font-weight:400;
  3127. font-style:normal;
  3128. font-size:12px;
  3129. color:#333333;
  3130. }
  3131. #u20339 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 0px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u20339_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u20340_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:141px;
  3150. height:38px;
  3151. }
  3152. #u20340 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:569px;
  3156. top:82px;
  3157. width:141px;
  3158. height:38px;
  3159. display:flex;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. color:#333333;
  3165. }
  3166. #u20340 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 0px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u20340_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. visibility:hidden;
  3178. }
  3179. #u20341_img {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:130px;
  3185. height:38px;
  3186. }
  3187. #u20341 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:710px;
  3191. top:82px;
  3192. width:130px;
  3193. height:38px;
  3194. display:flex;
  3195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:12px;
  3199. color:#333333;
  3200. }
  3201. #u20341 .text {
  3202. position:absolute;
  3203. align-self:center;
  3204. padding:2px 2px 2px 0px;
  3205. box-sizing:border-box;
  3206. width:100%;
  3207. }
  3208. #u20341_text {
  3209. border-width:0px;
  3210. word-wrap:break-word;
  3211. text-transform:none;
  3212. visibility:hidden;
  3213. }
  3214. #u20342_img {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:130px;
  3220. height:38px;
  3221. }
  3222. #u20342 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:840px;
  3226. top:82px;
  3227. width:130px;
  3228. height:38px;
  3229. display:flex;
  3230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:12px;
  3234. color:#333333;
  3235. }
  3236. #u20342 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 2px 2px 0px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u20342_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u20343_img {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:130px;
  3255. height:38px;
  3256. }
  3257. #u20343 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:970px;
  3261. top:82px;
  3262. width:130px;
  3263. height:38px;
  3264. display:flex;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:12px;
  3269. color:#333333;
  3270. }
  3271. #u20343 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 0px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u20343_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. visibility:hidden;
  3283. }
  3284. #u20344_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:111px;
  3290. height:38px;
  3291. }
  3292. #u20344 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:1100px;
  3296. top:82px;
  3297. width:111px;
  3298. height:38px;
  3299. display:flex;
  3300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3301. font-weight:400;
  3302. font-style:normal;
  3303. font-size:12px;
  3304. color:#0089FE;
  3305. }
  3306. #u20344 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 0px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u20344_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. }
  3318. #u20345_img {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:148px;
  3324. height:38px;
  3325. }
  3326. #u20345 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:120px;
  3331. width:148px;
  3332. height:38px;
  3333. display:flex;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:12px;
  3338. color:#333333;
  3339. }
  3340. #u20345 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u20345_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u20346_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:148px;
  3359. height:38px;
  3360. }
  3361. #u20346 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:148px;
  3365. top:120px;
  3366. width:148px;
  3367. height:38px;
  3368. display:flex;
  3369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:12px;
  3373. color:#333333;
  3374. }
  3375. #u20346 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u20346_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u20347_img {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:143px;
  3394. height:38px;
  3395. }
  3396. #u20347 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:296px;
  3400. top:120px;
  3401. width:143px;
  3402. height:38px;
  3403. display:flex;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:12px;
  3408. color:#333333;
  3409. }
  3410. #u20347 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u20347_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u20348_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:130px;
  3429. height:38px;
  3430. }
  3431. #u20348 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:439px;
  3435. top:120px;
  3436. width:130px;
  3437. height:38px;
  3438. display:flex;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. color:#333333;
  3444. }
  3445. #u20348 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u20348_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u20349_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:141px;
  3464. height:38px;
  3465. }
  3466. #u20349 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:569px;
  3470. top:120px;
  3471. width:141px;
  3472. height:38px;
  3473. display:flex;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:12px;
  3478. color:#333333;
  3479. }
  3480. #u20349 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 2px 2px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u20349_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u20350_img {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:130px;
  3499. height:38px;
  3500. }
  3501. #u20350 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:710px;
  3505. top:120px;
  3506. width:130px;
  3507. height:38px;
  3508. display:flex;
  3509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:12px;
  3513. color:#333333;
  3514. }
  3515. #u20350 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 0px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u20350_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u20351_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:130px;
  3534. height:38px;
  3535. }
  3536. #u20351 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:840px;
  3540. top:120px;
  3541. width:130px;
  3542. height:38px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#333333;
  3549. }
  3550. #u20351 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u20351_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u20352_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:130px;
  3569. height:38px;
  3570. }
  3571. #u20352 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:970px;
  3575. top:120px;
  3576. width:130px;
  3577. height:38px;
  3578. display:flex;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. color:#333333;
  3584. }
  3585. #u20352 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 0px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u20352_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u20353_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:111px;
  3604. height:38px;
  3605. }
  3606. #u20353 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:1100px;
  3610. top:120px;
  3611. width:111px;
  3612. height:38px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:12px;
  3618. color:#0089FE;
  3619. }
  3620. #u20353 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u20353_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u20354_img {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:148px;
  3639. height:38px;
  3640. }
  3641. #u20354 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:158px;
  3646. width:148px;
  3647. height:38px;
  3648. display:flex;
  3649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3650. font-weight:400;
  3651. font-style:normal;
  3652. font-size:12px;
  3653. color:#333333;
  3654. }
  3655. #u20354 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 0px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u20354_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u20355_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:148px;
  3674. height:38px;
  3675. }
  3676. #u20355 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:148px;
  3680. top:158px;
  3681. width:148px;
  3682. height:38px;
  3683. display:flex;
  3684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:12px;
  3688. color:#333333;
  3689. }
  3690. #u20355 .text {
  3691. position:absolute;
  3692. align-self:center;
  3693. padding:2px 2px 2px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u20355_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. visibility:hidden;
  3702. }
  3703. #u20356_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:143px;
  3709. height:38px;
  3710. }
  3711. #u20356 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:296px;
  3715. top:158px;
  3716. width:143px;
  3717. height:38px;
  3718. display:flex;
  3719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. color:#333333;
  3724. }
  3725. #u20356 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u20356_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u20357_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:130px;
  3744. height:38px;
  3745. }
  3746. #u20357 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:439px;
  3750. top:158px;
  3751. width:130px;
  3752. height:38px;
  3753. display:flex;
  3754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:12px;
  3758. color:#333333;
  3759. }
  3760. #u20357 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u20357_text {
  3768. border-width:0px;
  3769. word-wrap:break-word;
  3770. text-transform:none;
  3771. visibility:hidden;
  3772. }
  3773. #u20358_img {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:141px;
  3779. height:38px;
  3780. }
  3781. #u20358 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:569px;
  3785. top:158px;
  3786. width:141px;
  3787. height:38px;
  3788. display:flex;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:12px;
  3793. color:#333333;
  3794. }
  3795. #u20358 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u20358_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u20359_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:130px;
  3814. height:38px;
  3815. }
  3816. #u20359 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:710px;
  3820. top:158px;
  3821. width:130px;
  3822. height:38px;
  3823. display:flex;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. color:#333333;
  3829. }
  3830. #u20359 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 0px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u20359_text {
  3838. border-width:0px;
  3839. word-wrap:break-word;
  3840. text-transform:none;
  3841. visibility:hidden;
  3842. }
  3843. #u20360_img {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:130px;
  3849. height:38px;
  3850. }
  3851. #u20360 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:840px;
  3855. top:158px;
  3856. width:130px;
  3857. height:38px;
  3858. display:flex;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#333333;
  3864. }
  3865. #u20360 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 2px 2px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u20360_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. visibility:hidden;
  3877. }
  3878. #u20361_img {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:130px;
  3884. height:38px;
  3885. }
  3886. #u20361 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:970px;
  3890. top:158px;
  3891. width:130px;
  3892. height:38px;
  3893. display:flex;
  3894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:12px;
  3898. color:#333333;
  3899. }
  3900. #u20361 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 0px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u20361_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. visibility:hidden;
  3912. }
  3913. #u20362_img {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:111px;
  3919. height:38px;
  3920. }
  3921. #u20362 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:1100px;
  3925. top:158px;
  3926. width:111px;
  3927. height:38px;
  3928. display:flex;
  3929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. font-size:12px;
  3933. color:#AAAAAA;
  3934. }
  3935. #u20362 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 0px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u20362_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. visibility:hidden;
  3947. }
  3948. #u20363_img {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:148px;
  3954. height:35px;
  3955. }
  3956. #u20363 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:196px;
  3961. width:148px;
  3962. height:35px;
  3963. display:flex;
  3964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:12px;
  3968. color:#333333;
  3969. }
  3970. #u20363 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 0px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u20363_text {
  3978. border-width:0px;
  3979. word-wrap:break-word;
  3980. text-transform:none;
  3981. visibility:hidden;
  3982. }
  3983. #u20364_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:148px;
  3989. height:35px;
  3990. }
  3991. #u20364 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:148px;
  3995. top:196px;
  3996. width:148px;
  3997. height:35px;
  3998. display:flex;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:12px;
  4003. color:#333333;
  4004. }
  4005. #u20364 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 0px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u20364_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u20365_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:143px;
  4024. height:35px;
  4025. }
  4026. #u20365 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:296px;
  4030. top:196px;
  4031. width:143px;
  4032. height:35px;
  4033. display:flex;
  4034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4035. font-weight:400;
  4036. font-style:normal;
  4037. font-size:12px;
  4038. color:#333333;
  4039. }
  4040. #u20365 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 0px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u20365_text {
  4048. border-width:0px;
  4049. word-wrap:break-word;
  4050. text-transform:none;
  4051. visibility:hidden;
  4052. }
  4053. #u20366_img {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:130px;
  4059. height:35px;
  4060. }
  4061. #u20366 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:439px;
  4065. top:196px;
  4066. width:130px;
  4067. height:35px;
  4068. display:flex;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:12px;
  4073. color:#333333;
  4074. }
  4075. #u20366 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u20366_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u20367_img {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:141px;
  4094. height:35px;
  4095. }
  4096. #u20367 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:569px;
  4100. top:196px;
  4101. width:141px;
  4102. height:35px;
  4103. display:flex;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:12px;
  4108. color:#333333;
  4109. }
  4110. #u20367 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u20367_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u20368_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:130px;
  4129. height:35px;
  4130. }
  4131. #u20368 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:710px;
  4135. top:196px;
  4136. width:130px;
  4137. height:35px;
  4138. display:flex;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:12px;
  4143. color:#333333;
  4144. }
  4145. #u20368 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u20368_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u20369_img {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:130px;
  4164. height:35px;
  4165. }
  4166. #u20369 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:840px;
  4170. top:196px;
  4171. width:130px;
  4172. height:35px;
  4173. display:flex;
  4174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:12px;
  4178. color:#333333;
  4179. }
  4180. #u20369 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 0px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u20369_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u20370_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:130px;
  4199. height:35px;
  4200. }
  4201. #u20370 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:970px;
  4205. top:196px;
  4206. width:130px;
  4207. height:35px;
  4208. display:flex;
  4209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4210. font-weight:400;
  4211. font-style:normal;
  4212. font-size:12px;
  4213. color:#333333;
  4214. }
  4215. #u20370 .text {
  4216. position:absolute;
  4217. align-self:center;
  4218. padding:2px 2px 2px 0px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u20370_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. visibility:hidden;
  4227. }
  4228. #u20371_img {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:111px;
  4234. height:35px;
  4235. }
  4236. #u20371 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:1100px;
  4240. top:196px;
  4241. width:111px;
  4242. height:35px;
  4243. display:flex;
  4244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:12px;
  4248. color:#AAAAAA;
  4249. }
  4250. #u20371 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:2px 2px 2px 0px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u20371_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. visibility:hidden;
  4262. }
  4263. #u20372_img {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:148px;
  4269. height:35px;
  4270. }
  4271. #u20372 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:231px;
  4276. width:148px;
  4277. height:35px;
  4278. display:flex;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:12px;
  4283. color:#333333;
  4284. }
  4285. #u20372 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 0px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u20372_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u20373_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:148px;
  4304. height:35px;
  4305. }
  4306. #u20373 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:148px;
  4310. top:231px;
  4311. width:148px;
  4312. height:35px;
  4313. display:flex;
  4314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:12px;
  4318. color:#333333;
  4319. }
  4320. #u20373 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 0px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u20373_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u20374_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:143px;
  4339. height:35px;
  4340. }
  4341. #u20374 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:296px;
  4345. top:231px;
  4346. width:143px;
  4347. height:35px;
  4348. display:flex;
  4349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:12px;
  4353. color:#333333;
  4354. }
  4355. #u20374 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:2px 2px 2px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u20374_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u20375_img {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:130px;
  4374. height:35px;
  4375. }
  4376. #u20375 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:439px;
  4380. top:231px;
  4381. width:130px;
  4382. height:35px;
  4383. display:flex;
  4384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:12px;
  4388. color:#333333;
  4389. }
  4390. #u20375 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 0px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u20375_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. visibility:hidden;
  4402. }
  4403. #u20376_img {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:141px;
  4409. height:35px;
  4410. }
  4411. #u20376 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:569px;
  4415. top:231px;
  4416. width:141px;
  4417. height:35px;
  4418. display:flex;
  4419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:12px;
  4423. color:#333333;
  4424. }
  4425. #u20376 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 0px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u20376_text {
  4433. border-width:0px;
  4434. word-wrap:break-word;
  4435. text-transform:none;
  4436. visibility:hidden;
  4437. }
  4438. #u20377_img {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:130px;
  4444. height:35px;
  4445. }
  4446. #u20377 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:710px;
  4450. top:231px;
  4451. width:130px;
  4452. height:35px;
  4453. display:flex;
  4454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:12px;
  4458. color:#333333;
  4459. }
  4460. #u20377 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u20377_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u20378_img {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:130px;
  4479. height:35px;
  4480. }
  4481. #u20378 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:840px;
  4485. top:231px;
  4486. width:130px;
  4487. height:35px;
  4488. display:flex;
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. color:#333333;
  4494. }
  4495. #u20378 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u20378_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u20379_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:130px;
  4514. height:35px;
  4515. }
  4516. #u20379 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:970px;
  4520. top:231px;
  4521. width:130px;
  4522. height:35px;
  4523. display:flex;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:12px;
  4528. color:#333333;
  4529. }
  4530. #u20379 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 0px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u20379_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u20380_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:111px;
  4549. height:35px;
  4550. }
  4551. #u20380 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:1100px;
  4555. top:231px;
  4556. width:111px;
  4557. height:35px;
  4558. display:flex;
  4559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:12px;
  4563. color:#333333;
  4564. }
  4565. #u20380 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 2px 2px 0px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u20380_text {
  4573. border-width:0px;
  4574. word-wrap:break-word;
  4575. text-transform:none;
  4576. visibility:hidden;
  4577. }
  4578. #u20381_img {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:148px;
  4584. height:32px;
  4585. }
  4586. #u20381 {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:266px;
  4591. width:148px;
  4592. height:32px;
  4593. display:flex;
  4594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:12px;
  4598. color:#333333;
  4599. }
  4600. #u20381 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:2px 2px 2px 0px;
  4604. box-sizing:border-box;
  4605. width:100%;
  4606. }
  4607. #u20381_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. visibility:hidden;
  4612. }
  4613. #u20382_img {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:148px;
  4619. height:32px;
  4620. }
  4621. #u20382 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:148px;
  4625. top:266px;
  4626. width:148px;
  4627. height:32px;
  4628. display:flex;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. color:#333333;
  4634. }
  4635. #u20382 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 0px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u20382_text {
  4643. border-width:0px;
  4644. word-wrap:break-word;
  4645. text-transform:none;
  4646. visibility:hidden;
  4647. }
  4648. #u20383_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:143px;
  4654. height:32px;
  4655. }
  4656. #u20383 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:296px;
  4660. top:266px;
  4661. width:143px;
  4662. height:32px;
  4663. display:flex;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:12px;
  4668. color:#333333;
  4669. }
  4670. #u20383 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u20383_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u20384_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:130px;
  4689. height:32px;
  4690. }
  4691. #u20384 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:439px;
  4695. top:266px;
  4696. width:130px;
  4697. height:32px;
  4698. display:flex;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:12px;
  4703. color:#333333;
  4704. }
  4705. #u20384 .text {
  4706. position:absolute;
  4707. align-self:center;
  4708. padding:2px 2px 2px 0px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u20384_text {
  4713. border-width:0px;
  4714. word-wrap:break-word;
  4715. text-transform:none;
  4716. visibility:hidden;
  4717. }
  4718. #u20385_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:141px;
  4724. height:32px;
  4725. }
  4726. #u20385 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:569px;
  4730. top:266px;
  4731. width:141px;
  4732. height:32px;
  4733. display:flex;
  4734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. font-size:12px;
  4738. color:#333333;
  4739. }
  4740. #u20385 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:2px 2px 2px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u20385_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. visibility:hidden;
  4752. }
  4753. #u20386_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:130px;
  4759. height:32px;
  4760. }
  4761. #u20386 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:710px;
  4765. top:266px;
  4766. width:130px;
  4767. height:32px;
  4768. display:flex;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:12px;
  4773. color:#333333;
  4774. }
  4775. #u20386 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 0px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u20386_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u20387_img {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:130px;
  4794. height:32px;
  4795. }
  4796. #u20387 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:840px;
  4800. top:266px;
  4801. width:130px;
  4802. height:32px;
  4803. display:flex;
  4804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4805. font-weight:400;
  4806. font-style:normal;
  4807. font-size:12px;
  4808. color:#333333;
  4809. }
  4810. #u20387 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 2px 2px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u20387_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u20388_img {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:130px;
  4829. height:32px;
  4830. }
  4831. #u20388 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:970px;
  4835. top:266px;
  4836. width:130px;
  4837. height:32px;
  4838. display:flex;
  4839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:12px;
  4843. color:#333333;
  4844. }
  4845. #u20388 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 0px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u20388_text {
  4853. border-width:0px;
  4854. word-wrap:break-word;
  4855. text-transform:none;
  4856. visibility:hidden;
  4857. }
  4858. #u20389_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:111px;
  4864. height:32px;
  4865. }
  4866. #u20389 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:1100px;
  4870. top:266px;
  4871. width:111px;
  4872. height:32px;
  4873. display:flex;
  4874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4875. font-weight:400;
  4876. font-style:normal;
  4877. font-size:12px;
  4878. color:#333333;
  4879. }
  4880. #u20389 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 2px 2px 0px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u20389_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u20390_img {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:148px;
  4899. height:30px;
  4900. }
  4901. #u20390 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:298px;
  4906. width:148px;
  4907. height:30px;
  4908. display:flex;
  4909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:12px;
  4913. color:#333333;
  4914. }
  4915. #u20390 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 0px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u20390_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u20391_img {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:148px;
  4934. height:30px;
  4935. }
  4936. #u20391 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:148px;
  4940. top:298px;
  4941. width:148px;
  4942. height:30px;
  4943. display:flex;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:12px;
  4948. color:#333333;
  4949. }
  4950. #u20391 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 0px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u20391_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u20392_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:143px;
  4969. height:30px;
  4970. }
  4971. #u20392 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:296px;
  4975. top:298px;
  4976. width:143px;
  4977. height:30px;
  4978. display:flex;
  4979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:12px;
  4983. color:#333333;
  4984. }
  4985. #u20392 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 0px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u20392_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u20393_img {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:130px;
  5004. height:30px;
  5005. }
  5006. #u20393 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:439px;
  5010. top:298px;
  5011. width:130px;
  5012. height:30px;
  5013. display:flex;
  5014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. color:#333333;
  5019. }
  5020. #u20393 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u20393_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u20394_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:141px;
  5039. height:30px;
  5040. }
  5041. #u20394 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:569px;
  5045. top:298px;
  5046. width:141px;
  5047. height:30px;
  5048. display:flex;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:12px;
  5053. color:#333333;
  5054. }
  5055. #u20394 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 0px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u20394_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. visibility:hidden;
  5067. }
  5068. #u20395_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:130px;
  5074. height:30px;
  5075. }
  5076. #u20395 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:710px;
  5080. top:298px;
  5081. width:130px;
  5082. height:30px;
  5083. display:flex;
  5084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:12px;
  5088. color:#333333;
  5089. }
  5090. #u20395 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u20395_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. visibility:hidden;
  5102. }
  5103. #u20396_img {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:130px;
  5109. height:30px;
  5110. }
  5111. #u20396 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:840px;
  5115. top:298px;
  5116. width:130px;
  5117. height:30px;
  5118. display:flex;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. color:#333333;
  5124. }
  5125. #u20396 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u20396_text {
  5133. border-width:0px;
  5134. word-wrap:break-word;
  5135. text-transform:none;
  5136. visibility:hidden;
  5137. }
  5138. #u20397_img {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:130px;
  5144. height:30px;
  5145. }
  5146. #u20397 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:970px;
  5150. top:298px;
  5151. width:130px;
  5152. height:30px;
  5153. display:flex;
  5154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5155. font-weight:400;
  5156. font-style:normal;
  5157. font-size:12px;
  5158. color:#333333;
  5159. }
  5160. #u20397 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 0px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u20397_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. visibility:hidden;
  5172. }
  5173. #u20398_img {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:111px;
  5179. height:30px;
  5180. }
  5181. #u20398 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:1100px;
  5185. top:298px;
  5186. width:111px;
  5187. height:30px;
  5188. display:flex;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:12px;
  5193. color:#333333;
  5194. }
  5195. #u20398 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 2px 2px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u20398_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u20399 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:0px;
  5214. height:0px;
  5215. }
  5216. #u20400_div {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:59px;
  5222. height:30px;
  5223. background:inherit;
  5224. background-color:rgba(24, 144, 255, 1);
  5225. box-sizing:border-box;
  5226. border-width:1px;
  5227. border-style:solid;
  5228. border-color:rgba(0, 153, 255, 1);
  5229. border-radius:4px;
  5230. -moz-box-shadow:none;
  5231. -webkit-box-shadow:none;
  5232. box-shadow:none;
  5233. font-family:'Microsoft YaHei', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:14px;
  5237. color:#FFFFFF;
  5238. }
  5239. #u20400 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:969px;
  5243. top:1817px;
  5244. width:59px;
  5245. height:30px;
  5246. display:flex;
  5247. font-family:'Microsoft YaHei', sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:14px;
  5251. color:#FFFFFF;
  5252. }
  5253. #u20400 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:5px 15px 5px 15px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u20400_text {
  5261. border-width:0px;
  5262. white-space:nowrap;
  5263. text-transform:none;
  5264. }
  5265. #u20401_div {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:0px;
  5269. top:0px;
  5270. width:55px;
  5271. height:30px;
  5272. background:inherit;
  5273. background-color:rgba(255, 255, 255, 1);
  5274. box-sizing:border-box;
  5275. border-width:1px;
  5276. border-style:solid;
  5277. border-color:rgba(170, 170, 170, 1);
  5278. border-radius:4px;
  5279. -moz-box-shadow:none;
  5280. -webkit-box-shadow:none;
  5281. box-shadow:none;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:12px;
  5286. color:#555555;
  5287. }
  5288. #u20401 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:1038px;
  5292. top:1817px;
  5293. width:55px;
  5294. height:30px;
  5295. display:flex;
  5296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:12px;
  5300. color:#555555;
  5301. }
  5302. #u20401 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:5px 15px 5px 15px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u20401_text {
  5310. border-width:0px;
  5311. white-space:nowrap;
  5312. text-transform:none;
  5313. }
  5314. #u20402 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:0px;
  5320. height:0px;
  5321. }
  5322. #u20403_div {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:0px;
  5326. top:0px;
  5327. width:140px;
  5328. height:30px;
  5329. background:inherit;
  5330. background-color:rgba(255, 255, 255, 1);
  5331. box-sizing:border-box;
  5332. border-width:1px;
  5333. border-style:solid;
  5334. border-color:rgba(201, 201, 201, 1);
  5335. border-radius:4px;
  5336. -moz-box-shadow:none;
  5337. -webkit-box-shadow:none;
  5338. box-shadow:none;
  5339. font-family:'Microsoft YaHei', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:14px;
  5343. color:#CCCCCC;
  5344. text-align:left;
  5345. }
  5346. #u20403 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:669px;
  5350. top:1817px;
  5351. width:140px;
  5352. height:30px;
  5353. display:flex;
  5354. font-family:'Microsoft YaHei', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:14px;
  5358. color:#CCCCCC;
  5359. text-align:left;
  5360. }
  5361. #u20403 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 8px 2px 8px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u20403_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u20404_input {
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:127px;
  5379. height:25px;
  5380. padding:2px 2px 2px 2px;
  5381. font-family:'Microsoft YaHei', sans-serif;
  5382. font-weight:400;
  5383. font-style:normal;
  5384. font-size:10px;
  5385. letter-spacing:normal;
  5386. color:#000000;
  5387. vertical-align:none;
  5388. text-align:left;
  5389. text-transform:none;
  5390. background-color:transparent;
  5391. border-color:transparent;
  5392. }
  5393. #u20404_input.disabled {
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:127px;
  5398. height:25px;
  5399. padding:2px 2px 2px 2px;
  5400. font-family:'Microsoft YaHei', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:10px;
  5404. letter-spacing:normal;
  5405. color:#000000;
  5406. vertical-align:none;
  5407. text-align:left;
  5408. text-transform:none;
  5409. background-color:transparent;
  5410. border-color:transparent;
  5411. }
  5412. #u20404_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:127px;
  5418. height:25px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 1);
  5421. border:none;
  5422. border-radius:0px;
  5423. -moz-box-shadow:none;
  5424. -webkit-box-shadow:none;
  5425. box-shadow:none;
  5426. font-family:'Microsoft YaHei', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:10px;
  5430. }
  5431. #u20404 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:677px;
  5435. top:1818px;
  5436. width:127px;
  5437. height:25px;
  5438. display:flex;
  5439. font-family:'Microsoft YaHei', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:10px;
  5443. }
  5444. #u20404 .text {
  5445. position:absolute;
  5446. align-self:center;
  5447. padding:2px 2px 2px 2px;
  5448. box-sizing:border-box;
  5449. width:100%;
  5450. }
  5451. #u20404_div.disabled {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:127px;
  5457. height:25px;
  5458. background:inherit;
  5459. background-color:rgba(240, 240, 240, 1);
  5460. border:none;
  5461. border-radius:0px;
  5462. -moz-box-shadow:none;
  5463. -webkit-box-shadow:none;
  5464. box-shadow:none;
  5465. font-family:'Microsoft YaHei', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:10px;
  5469. }
  5470. #u20404.disabled {
  5471. }
  5472. #u20405 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:0px;
  5478. height:0px;
  5479. }
  5480. #u20406_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:140px;
  5486. height:30px;
  5487. background:inherit;
  5488. background-color:rgba(255, 255, 255, 1);
  5489. box-sizing:border-box;
  5490. border-width:1px;
  5491. border-style:solid;
  5492. border-color:rgba(201, 201, 201, 1);
  5493. border-radius:4px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. font-family:'Microsoft YaHei', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:14px;
  5501. color:#CCCCCC;
  5502. text-align:left;
  5503. }
  5504. #u20406 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:819px;
  5508. top:1817px;
  5509. width:140px;
  5510. height:30px;
  5511. display:flex;
  5512. font-family:'Microsoft YaHei', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. font-size:14px;
  5516. color:#CCCCCC;
  5517. text-align:left;
  5518. }
  5519. #u20406 .text {
  5520. position:absolute;
  5521. align-self:center;
  5522. padding:2px 8px 2px 8px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u20406_text {
  5527. border-width:0px;
  5528. word-wrap:break-word;
  5529. text-transform:none;
  5530. visibility:hidden;
  5531. }
  5532. #u20407_input {
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:127px;
  5537. height:25px;
  5538. padding:2px 2px 2px 2px;
  5539. font-family:'Microsoft YaHei', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:10px;
  5543. letter-spacing:normal;
  5544. color:#000000;
  5545. vertical-align:none;
  5546. text-align:left;
  5547. text-transform:none;
  5548. background-color:transparent;
  5549. border-color:transparent;
  5550. }
  5551. #u20407_input.disabled {
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:127px;
  5556. height:25px;
  5557. padding:2px 2px 2px 2px;
  5558. font-family:'Microsoft YaHei', sans-serif;
  5559. font-weight:400;
  5560. font-style:normal;
  5561. font-size:10px;
  5562. letter-spacing:normal;
  5563. color:#000000;
  5564. vertical-align:none;
  5565. text-align:left;
  5566. text-transform:none;
  5567. background-color:transparent;
  5568. border-color:transparent;
  5569. }
  5570. #u20407_div {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:127px;
  5576. height:25px;
  5577. background:inherit;
  5578. background-color:rgba(255, 255, 255, 1);
  5579. border:none;
  5580. border-radius:0px;
  5581. -moz-box-shadow:none;
  5582. -webkit-box-shadow:none;
  5583. box-shadow:none;
  5584. font-family:'Microsoft YaHei', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:10px;
  5588. }
  5589. #u20407 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:827px;
  5593. top:1818px;
  5594. width:127px;
  5595. height:25px;
  5596. display:flex;
  5597. font-family:'Microsoft YaHei', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:10px;
  5601. }
  5602. #u20407 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 2px 2px 2px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u20407_div.disabled {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:127px;
  5615. height:25px;
  5616. background:inherit;
  5617. background-color:rgba(240, 240, 240, 1);
  5618. border:none;
  5619. border-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-family:'Microsoft YaHei', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:10px;
  5627. }
  5628. #u20407.disabled {
  5629. }
  5630. #u20408 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:0px;
  5636. height:0px;
  5637. }
  5638. #u20409_div {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:140px;
  5644. height:30px;
  5645. background:inherit;
  5646. background-color:rgba(255, 255, 255, 1);
  5647. box-sizing:border-box;
  5648. border-width:1px;
  5649. border-style:solid;
  5650. border-color:rgba(215, 215, 215, 1);
  5651. border-radius:4px;
  5652. -moz-box-shadow:none;
  5653. -webkit-box-shadow:none;
  5654. box-shadow:none;
  5655. font-size:11px;
  5656. }
  5657. #u20409 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:369px;
  5661. top:1819px;
  5662. width:140px;
  5663. height:30px;
  5664. display:flex;
  5665. font-size:11px;
  5666. }
  5667. #u20409 .text {
  5668. position:absolute;
  5669. align-self:center;
  5670. padding:2px 2px 2px 2px;
  5671. box-sizing:border-box;
  5672. width:100%;
  5673. }
  5674. #u20409_text {
  5675. border-width:0px;
  5676. word-wrap:break-word;
  5677. text-transform:none;
  5678. visibility:hidden;
  5679. }
  5680. #u20410_input {
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:126px;
  5685. height:23px;
  5686. padding:2px 2px 2px 2px;
  5687. font-family:'ArialMT', 'Arial', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:11px;
  5691. letter-spacing:normal;
  5692. color:#AAAAAA;
  5693. vertical-align:none;
  5694. text-align:left;
  5695. text-transform:none;
  5696. background-color:transparent;
  5697. border-color:transparent;
  5698. }
  5699. #u20410_input.disabled {
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:126px;
  5704. height:23px;
  5705. padding:2px 2px 2px 2px;
  5706. font-family:'ArialMT', 'Arial', sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. font-size:11px;
  5710. letter-spacing:normal;
  5711. color:#AAAAAA;
  5712. vertical-align:none;
  5713. text-align:left;
  5714. text-transform:none;
  5715. background-color:transparent;
  5716. border-color:transparent;
  5717. }
  5718. #u20410_div {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:126px;
  5724. height:23px;
  5725. background:inherit;
  5726. background-color:rgba(255, 255, 255, 1);
  5727. border:none;
  5728. border-radius:0px;
  5729. -moz-box-shadow:none;
  5730. -webkit-box-shadow:none;
  5731. box-shadow:none;
  5732. font-size:11px;
  5733. color:#AAAAAA;
  5734. }
  5735. #u20410 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:376px;
  5739. top:1821px;
  5740. width:126px;
  5741. height:23px;
  5742. display:flex;
  5743. font-size:11px;
  5744. color:#AAAAAA;
  5745. }
  5746. #u20410 .text {
  5747. position:absolute;
  5748. align-self:flex-start;
  5749. padding:2px 2px 2px 2px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u20410_div.disabled {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:126px;
  5759. height:23px;
  5760. background:inherit;
  5761. background-color:rgba(240, 240, 240, 1);
  5762. border:none;
  5763. border-radius:0px;
  5764. -moz-box-shadow:none;
  5765. -webkit-box-shadow:none;
  5766. box-shadow:none;
  5767. font-size:11px;
  5768. color:#AAAAAA;
  5769. }
  5770. #u20410.disabled {
  5771. }
  5772. .u20410_input_option {
  5773. font-size:11px;
  5774. }
  5775. #u20411 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:0px;
  5781. height:0px;
  5782. }
  5783. #u20412_div {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:140px;
  5789. height:30px;
  5790. background:inherit;
  5791. background-color:rgba(255, 255, 255, 1);
  5792. box-sizing:border-box;
  5793. border-width:1px;
  5794. border-style:solid;
  5795. border-color:rgba(215, 215, 215, 1);
  5796. border-radius:4px;
  5797. -moz-box-shadow:none;
  5798. -webkit-box-shadow:none;
  5799. box-shadow:none;
  5800. font-size:11px;
  5801. }
  5802. #u20412 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:519px;
  5806. top:1819px;
  5807. width:140px;
  5808. height:30px;
  5809. display:flex;
  5810. font-size:11px;
  5811. }
  5812. #u20412 .text {
  5813. position:absolute;
  5814. align-self:center;
  5815. padding:2px 2px 2px 2px;
  5816. box-sizing:border-box;
  5817. width:100%;
  5818. }
  5819. #u20412_text {
  5820. border-width:0px;
  5821. word-wrap:break-word;
  5822. text-transform:none;
  5823. visibility:hidden;
  5824. }
  5825. #u20413_input {
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:126px;
  5830. height:23px;
  5831. padding:2px 2px 2px 2px;
  5832. font-family:'ArialMT', 'Arial', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. font-size:11px;
  5836. letter-spacing:normal;
  5837. color:#AAAAAA;
  5838. vertical-align:none;
  5839. text-align:left;
  5840. text-transform:none;
  5841. background-color:transparent;
  5842. border-color:transparent;
  5843. }
  5844. #u20413_input.disabled {
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:126px;
  5849. height:23px;
  5850. padding:2px 2px 2px 2px;
  5851. font-family:'ArialMT', 'Arial', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:11px;
  5855. letter-spacing:normal;
  5856. color:#AAAAAA;
  5857. vertical-align:none;
  5858. text-align:left;
  5859. text-transform:none;
  5860. background-color:transparent;
  5861. border-color:transparent;
  5862. }
  5863. #u20413_div {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:0px;
  5867. top:0px;
  5868. width:126px;
  5869. height:23px;
  5870. background:inherit;
  5871. background-color:rgba(255, 255, 255, 1);
  5872. border:none;
  5873. border-radius:0px;
  5874. -moz-box-shadow:none;
  5875. -webkit-box-shadow:none;
  5876. box-shadow:none;
  5877. font-size:11px;
  5878. color:#AAAAAA;
  5879. }
  5880. #u20413 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:526px;
  5884. top:1821px;
  5885. width:126px;
  5886. height:23px;
  5887. display:flex;
  5888. font-size:11px;
  5889. color:#AAAAAA;
  5890. }
  5891. #u20413 .text {
  5892. position:absolute;
  5893. align-self:flex-start;
  5894. padding:2px 2px 2px 2px;
  5895. box-sizing:border-box;
  5896. width:100%;
  5897. }
  5898. #u20413_div.disabled {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:126px;
  5904. height:23px;
  5905. background:inherit;
  5906. background-color:rgba(240, 240, 240, 1);
  5907. border:none;
  5908. border-radius:0px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. font-size:11px;
  5913. color:#AAAAAA;
  5914. }
  5915. #u20413.disabled {
  5916. }
  5917. .u20413_input_option {
  5918. font-size:11px;
  5919. }
  5920. #u20414_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:407px;
  5926. height:50px;
  5927. background:inherit;
  5928. background-color:rgba(255, 255, 255, 0);
  5929. border:none;
  5930. border-top:0px;
  5931. border-right:0px;
  5932. border-bottom:0px;
  5933. border-radius:0px;
  5934. border-top-left-radius:0px;
  5935. border-bottom-left-radius:0px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:14px;
  5943. color:#D9001B;
  5944. }
  5945. #u20414 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:1165px;
  5949. top:2249px;
  5950. width:407px;
  5951. height:50px;
  5952. display:flex;
  5953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:14px;
  5957. color:#D9001B;
  5958. }
  5959. #u20414 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:5px 0px 5px 0px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u20414_text {
  5967. border-width:0px;
  5968. white-space:nowrap;
  5969. text-transform:none;
  5970. }
  5971. #u20415_div {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:60px;
  5977. height:30px;
  5978. background:inherit;
  5979. background-color:rgba(24, 144, 255, 1);
  5980. border:none;
  5981. border-radius:4px;
  5982. -moz-box-shadow:none;
  5983. -webkit-box-shadow:none;
  5984. box-shadow:none;
  5985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:14px;
  5989. color:#FFFFFF;
  5990. }
  5991. #u20415 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:369px;
  5995. top:1869px;
  5996. width:60px;
  5997. height:30px;
  5998. display:flex;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:14px;
  6003. color:#FFFFFF;
  6004. }
  6005. #u20415 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:2px 2px 2px 2px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u20415_text {
  6013. border-width:0px;
  6014. word-wrap:break-word;
  6015. text-transform:none;
  6016. }
  6017. #u20416_div {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:55px;
  6023. height:30px;
  6024. background:inherit;
  6025. background-color:rgba(255, 255, 255, 1);
  6026. box-sizing:border-box;
  6027. border-width:1px;
  6028. border-style:solid;
  6029. border-color:rgba(170, 170, 170, 1);
  6030. border-radius:4px;
  6031. -moz-box-shadow:none;
  6032. -webkit-box-shadow:none;
  6033. box-shadow:none;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:12px;
  6038. color:#555555;
  6039. }
  6040. #u20416 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:508px;
  6044. top:1869px;
  6045. width:55px;
  6046. height:30px;
  6047. display:flex;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:12px;
  6052. color:#555555;
  6053. }
  6054. #u20416 .text {
  6055. position:absolute;
  6056. align-self:center;
  6057. padding:5px 15px 5px 15px;
  6058. box-sizing:border-box;
  6059. width:100%;
  6060. }
  6061. #u20416_text {
  6062. border-width:0px;
  6063. white-space:nowrap;
  6064. text-transform:none;
  6065. }
  6066. #u20417_div {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:59px;
  6072. height:30px;
  6073. background:inherit;
  6074. background-color:rgba(255, 255, 255, 1);
  6075. box-sizing:border-box;
  6076. border-width:1px;
  6077. border-style:solid;
  6078. border-color:rgba(170, 170, 170, 1);
  6079. border-radius:4px;
  6080. -moz-box-shadow:none;
  6081. -webkit-box-shadow:none;
  6082. box-shadow:none;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:14px;
  6087. color:#555555;
  6088. }
  6089. #u20417 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:439px;
  6093. top:1869px;
  6094. width:59px;
  6095. height:30px;
  6096. display:flex;
  6097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:14px;
  6101. color:#555555;
  6102. }
  6103. #u20417 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:5px 15px 5px 15px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u20417_text {
  6111. border-width:0px;
  6112. white-space:nowrap;
  6113. text-transform:none;
  6114. }
  6115. #u20418 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:0px;
  6121. height:0px;
  6122. }
  6123. #u20419 {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:0px;
  6129. height:0px;
  6130. }
  6131. #u20420_div {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:0px;
  6135. top:0px;
  6136. width:380px;
  6137. height:160px;
  6138. background:inherit;
  6139. background-color:rgba(255, 255, 255, 1);
  6140. box-sizing:border-box;
  6141. border-width:1px;
  6142. border-style:solid;
  6143. border-color:rgba(242, 242, 242, 1);
  6144. border-radius:4px;
  6145. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6146. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6147. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6148. font-family:'Microsoft YaHei', sans-serif;
  6149. font-weight:400;
  6150. font-style:normal;
  6151. }
  6152. #u20420 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:1638px;
  6156. top:1935px;
  6157. width:380px;
  6158. height:160px;
  6159. display:flex;
  6160. font-family:'Microsoft YaHei', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. }
  6164. #u20420 .text {
  6165. position:absolute;
  6166. align-self:center;
  6167. padding:2px 2px 2px 2px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u20420_text {
  6172. border-width:0px;
  6173. word-wrap:break-word;
  6174. text-transform:none;
  6175. visibility:hidden;
  6176. }
  6177. #u20421_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:163px;
  6183. height:21px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 0);
  6186. border:none;
  6187. border-radius:0px;
  6188. -moz-box-shadow:none;
  6189. -webkit-box-shadow:none;
  6190. box-shadow:none;
  6191. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6192. font-weight:650;
  6193. font-style:normal;
  6194. font-size:18px;
  6195. color:#000000;
  6196. line-height:22px;
  6197. }
  6198. #u20421 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:1698px;
  6202. top:1960px;
  6203. width:163px;
  6204. height:21px;
  6205. display:flex;
  6206. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6207. font-weight:650;
  6208. font-style:normal;
  6209. font-size:18px;
  6210. color:#000000;
  6211. line-height:22px;
  6212. }
  6213. #u20421 .text {
  6214. position:absolute;
  6215. align-self:flex-start;
  6216. padding:0px 0px 0px 0px;
  6217. box-sizing:border-box;
  6218. width:100%;
  6219. }
  6220. #u20421_text {
  6221. border-width:0px;
  6222. white-space:nowrap;
  6223. text-transform:none;
  6224. }
  6225. #u20422_div {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:61px;
  6231. height:32px;
  6232. background:inherit;
  6233. background-color:rgba(24, 144, 255, 1);
  6234. border:none;
  6235. border-radius:4px;
  6236. -moz-box-shadow:none;
  6237. -webkit-box-shadow:none;
  6238. box-shadow:none;
  6239. font-family:'Microsoft YaHei', sans-serif;
  6240. font-weight:400;
  6241. font-style:normal;
  6242. font-size:14px;
  6243. color:#FFFFFF;
  6244. }
  6245. #u20422 {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:1937px;
  6249. top:2047px;
  6250. width:61px;
  6251. height:32px;
  6252. display:flex;
  6253. font-family:'Microsoft YaHei', sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:14px;
  6257. color:#FFFFFF;
  6258. }
  6259. #u20422 .text {
  6260. position:absolute;
  6261. align-self:center;
  6262. padding:2px 16px 2px 16px;
  6263. box-sizing:border-box;
  6264. width:100%;
  6265. }
  6266. #u20422_text {
  6267. border-width:0px;
  6268. white-space:nowrap;
  6269. text-transform:none;
  6270. }
  6271. #u20423_div {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:66px;
  6277. height:32px;
  6278. background:inherit;
  6279. background-color:rgba(255, 255, 255, 1);
  6280. box-sizing:border-box;
  6281. border-width:1px;
  6282. border-style:solid;
  6283. border-color:rgba(217, 217, 217, 1);
  6284. border-radius:4px;
  6285. -moz-box-shadow:none;
  6286. -webkit-box-shadow:none;
  6287. box-shadow:none;
  6288. font-family:'Microsoft YaHei', sans-serif;
  6289. font-weight:400;
  6290. font-style:normal;
  6291. font-size:14px;
  6292. color:rgba(0, 0, 0, 0.647058823529412);
  6293. line-height:21px;
  6294. }
  6295. #u20423 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:1855px;
  6299. top:2047px;
  6300. width:66px;
  6301. height:32px;
  6302. display:flex;
  6303. font-family:'Microsoft YaHei', sans-serif;
  6304. font-weight:400;
  6305. font-style:normal;
  6306. font-size:14px;
  6307. color:rgba(0, 0, 0, 0.647058823529412);
  6308. line-height:21px;
  6309. }
  6310. #u20423 .text {
  6311. position:absolute;
  6312. align-self:center;
  6313. padding:2px 16px 2px 16px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u20423_text {
  6318. border-width:0px;
  6319. white-space:nowrap;
  6320. text-transform:none;
  6321. }
  6322. #u20424_img {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:20px;
  6328. height:20px;
  6329. }
  6330. #u20424 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:1667px;
  6334. top:1964px;
  6335. width:20px;
  6336. height:20px;
  6337. display:flex;
  6338. }
  6339. #u20424 .text {
  6340. position:absolute;
  6341. align-self:center;
  6342. padding:2px 2px 2px 2px;
  6343. box-sizing:border-box;
  6344. width:100%;
  6345. }
  6346. #u20424_text {
  6347. border-width:0px;
  6348. word-wrap:break-word;
  6349. text-transform:none;
  6350. visibility:hidden;
  6351. }
  6352. #u20425_div {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:239px;
  6358. height:22px;
  6359. background:inherit;
  6360. background-color:rgba(255, 255, 255, 0);
  6361. border:none;
  6362. border-radius:0px;
  6363. -moz-box-shadow:none;
  6364. -webkit-box-shadow:none;
  6365. box-shadow:none;
  6366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:14px;
  6370. color:#7F7F7F;
  6371. line-height:22px;
  6372. }
  6373. #u20425 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:1698px;
  6377. top:1994px;
  6378. width:239px;
  6379. height:22px;
  6380. display:flex;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:14px;
  6385. color:#7F7F7F;
  6386. line-height:22px;
  6387. }
  6388. #u20425 .text {
  6389. position:absolute;
  6390. align-self:flex-start;
  6391. padding:0px 0px 0px 0px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u20425_text {
  6396. border-width:0px;
  6397. white-space:nowrap;
  6398. text-transform:none;
  6399. }
  6400. #u20426_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:345px;
  6406. height:50px;
  6407. background:inherit;
  6408. background-color:rgba(255, 255, 255, 0);
  6409. border:none;
  6410. border-top:0px;
  6411. border-right:0px;
  6412. border-bottom:0px;
  6413. border-radius:0px;
  6414. border-top-left-radius:0px;
  6415. border-bottom-left-radius:0px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:14px;
  6423. color:#D9001B;
  6424. }
  6425. #u20426 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:1638px;
  6429. top:1868px;
  6430. width:345px;
  6431. height:50px;
  6432. display:flex;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:14px;
  6437. color:#D9001B;
  6438. }
  6439. #u20426 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:5px 0px 5px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u20426_text {
  6447. border-width:0px;
  6448. white-space:nowrap;
  6449. text-transform:none;
  6450. }
  6451. #u20428_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:1480px;
  6457. height:1200px;
  6458. background:inherit;
  6459. background-color:rgba(242, 242, 242, 1);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. }
  6466. #u20428 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:120px;
  6470. top:50px;
  6471. width:1480px;
  6472. height:1200px;
  6473. display:flex;
  6474. }
  6475. #u20428 .text {
  6476. position:absolute;
  6477. align-self:center;
  6478. padding:2px 2px 2px 2px;
  6479. box-sizing:border-box;
  6480. width:100%;
  6481. }
  6482. #u20428_text {
  6483. border-width:0px;
  6484. word-wrap:break-word;
  6485. text-transform:none;
  6486. visibility:hidden;
  6487. }
  6488. #u20429_div {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:129px;
  6494. height:22px;
  6495. background:inherit;
  6496. background-color:rgba(255, 255, 255, 0);
  6497. border:none;
  6498. border-radius:0px;
  6499. -moz-box-shadow:none;
  6500. -webkit-box-shadow:none;
  6501. box-shadow:none;
  6502. font-size:16px;
  6503. color:#FFFFFF;
  6504. }
  6505. #u20429 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:49px;
  6509. top:14px;
  6510. width:129px;
  6511. height:22px;
  6512. display:flex;
  6513. font-size:16px;
  6514. color:#FFFFFF;
  6515. }
  6516. #u20429 .text {
  6517. position:absolute;
  6518. align-self:flex-start;
  6519. padding:0px 0px 0px 0px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u20429_text {
  6524. border-width:0px;
  6525. white-space:nowrap;
  6526. text-transform:none;
  6527. }
  6528. #u20430_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:1600px;
  6534. height:50px;
  6535. background:inherit;
  6536. background-color:rgba(30, 42, 68, 1);
  6537. border:none;
  6538. border-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. color:#AFB3B6;
  6543. }
  6544. #u20430 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:1600px;
  6550. height:50px;
  6551. display:flex;
  6552. color:#AFB3B6;
  6553. }
  6554. #u20430 .text {
  6555. position:absolute;
  6556. align-self:center;
  6557. padding:2px 2px 2px 2px;
  6558. box-sizing:border-box;
  6559. width:100%;
  6560. }
  6561. #u20430_text {
  6562. border-width:0px;
  6563. word-wrap:break-word;
  6564. text-transform:none;
  6565. visibility:hidden;
  6566. }
  6567. #u20431 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:0px;
  6573. height:0px;
  6574. }
  6575. #u20432_img {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:31px;
  6581. height:31px;
  6582. }
  6583. #u20432 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:19px;
  6587. top:10px;
  6588. width:31px;
  6589. height:31px;
  6590. display:flex;
  6591. }
  6592. #u20432 .text {
  6593. position:absolute;
  6594. align-self:center;
  6595. padding:2px 2px 2px 2px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u20432_text {
  6600. border-width:0px;
  6601. word-wrap:break-word;
  6602. text-transform:none;
  6603. }
  6604. #u20433_div {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:161px;
  6610. height:22px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 0);
  6613. border:none;
  6614. border-radius:0px;
  6615. -moz-box-shadow:none;
  6616. -webkit-box-shadow:none;
  6617. box-shadow:none;
  6618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6619. font-weight:400;
  6620. font-style:normal;
  6621. font-size:16px;
  6622. color:#FFFFFF;
  6623. }
  6624. #u20433 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:62px;
  6628. top:14px;
  6629. width:161px;
  6630. height:22px;
  6631. display:flex;
  6632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:16px;
  6636. color:#FFFFFF;
  6637. }
  6638. #u20433 .text {
  6639. position:absolute;
  6640. align-self:flex-start;
  6641. padding:0px 0px 0px 0px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u20433_text {
  6646. border-width:0px;
  6647. white-space:nowrap;
  6648. text-transform:none;
  6649. }
  6650. #u20434_div {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:120px;
  6656. height:1200px;
  6657. background:inherit;
  6658. background-color:rgba(30, 42, 68, 1);
  6659. border:none;
  6660. border-radius:0px;
  6661. -moz-box-shadow:none;
  6662. -webkit-box-shadow:none;
  6663. box-shadow:none;
  6664. color:#AFB3B6;
  6665. }
  6666. #u20434 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:47px;
  6671. width:120px;
  6672. height:1200px;
  6673. display:flex;
  6674. color:#AFB3B6;
  6675. }
  6676. #u20434 .text {
  6677. position:absolute;
  6678. align-self:center;
  6679. padding:2px 2px 2px 2px;
  6680. box-sizing:border-box;
  6681. width:100%;
  6682. }
  6683. #u20434_text {
  6684. border-width:0px;
  6685. word-wrap:break-word;
  6686. text-transform:none;
  6687. visibility:hidden;
  6688. }
  6689. #u20435 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:0px;
  6693. top:0px;
  6694. width:0px;
  6695. height:0px;
  6696. }
  6697. #u20436_div {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:33px;
  6703. height:22px;
  6704. background:inherit;
  6705. background-color:rgba(255, 255, 255, 0);
  6706. border:none;
  6707. border-radius:0px;
  6708. -moz-box-shadow:none;
  6709. -webkit-box-shadow:none;
  6710. box-shadow:none;
  6711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6712. font-weight:400;
  6713. font-style:normal;
  6714. font-size:16px;
  6715. color:#FFFFFF;
  6716. }
  6717. #u20436 {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:39px;
  6721. top:171px;
  6722. width:33px;
  6723. height:22px;
  6724. display:flex;
  6725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6726. font-weight:400;
  6727. font-style:normal;
  6728. font-size:16px;
  6729. color:#FFFFFF;
  6730. }
  6731. #u20436 .text {
  6732. position:absolute;
  6733. align-self:flex-start;
  6734. padding:0px 0px 0px 0px;
  6735. box-sizing:border-box;
  6736. width:100%;
  6737. }
  6738. #u20436_text {
  6739. border-width:0px;
  6740. white-space:nowrap;
  6741. text-transform:none;
  6742. }
  6743. #u20437_img {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:0px;
  6747. top:0px;
  6748. width:14px;
  6749. height:14px;
  6750. }
  6751. #u20437 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:20px;
  6755. top:175px;
  6756. width:14px;
  6757. height:14px;
  6758. display:flex;
  6759. }
  6760. #u20437 .text {
  6761. position:absolute;
  6762. align-self:center;
  6763. padding:2px 2px 2px 2px;
  6764. box-sizing:border-box;
  6765. width:100%;
  6766. }
  6767. #u20437_text {
  6768. border-width:0px;
  6769. word-wrap:break-word;
  6770. text-transform:none;
  6771. visibility:hidden;
  6772. }
  6773. #u20438 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:0px;
  6779. height:0px;
  6780. }
  6781. #u20439_div {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:0px;
  6785. top:0px;
  6786. width:33px;
  6787. height:22px;
  6788. background:inherit;
  6789. background-color:rgba(255, 255, 255, 0);
  6790. border:none;
  6791. border-radius:0px;
  6792. -moz-box-shadow:none;
  6793. -webkit-box-shadow:none;
  6794. box-shadow:none;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:16px;
  6799. color:#FFFFFF;
  6800. }
  6801. #u20439 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:39px;
  6805. top:381px;
  6806. width:33px;
  6807. height:22px;
  6808. display:flex;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:16px;
  6813. color:#FFFFFF;
  6814. }
  6815. #u20439 .text {
  6816. position:absolute;
  6817. align-self:flex-start;
  6818. padding:0px 0px 0px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u20439_text {
  6823. border-width:0px;
  6824. white-space:nowrap;
  6825. text-transform:none;
  6826. }
  6827. #u20440_img {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:14px;
  6833. height:14px;
  6834. }
  6835. #u20440 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:20px;
  6839. top:385px;
  6840. width:14px;
  6841. height:14px;
  6842. display:flex;
  6843. }
  6844. #u20440 .text {
  6845. position:absolute;
  6846. align-self:center;
  6847. padding:2px 2px 2px 2px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u20440_text {
  6852. border-width:0px;
  6853. word-wrap:break-word;
  6854. text-transform:none;
  6855. visibility:hidden;
  6856. }
  6857. #u20441 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:0px;
  6863. height:0px;
  6864. }
  6865. #u20442_div {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:49px;
  6871. height:22px;
  6872. background:inherit;
  6873. background-color:rgba(255, 255, 255, 0);
  6874. border:none;
  6875. border-radius:0px;
  6876. -moz-box-shadow:none;
  6877. -webkit-box-shadow:none;
  6878. box-shadow:none;
  6879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:16px;
  6883. color:#FFFFFF;
  6884. }
  6885. #u20442 {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:39px;
  6889. top:133px;
  6890. width:49px;
  6891. height:22px;
  6892. display:flex;
  6893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:16px;
  6897. color:#FFFFFF;
  6898. }
  6899. #u20442 .text {
  6900. position:absolute;
  6901. align-self:flex-start;
  6902. padding:0px 0px 0px 0px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u20442_text {
  6907. border-width:0px;
  6908. white-space:nowrap;
  6909. text-transform:none;
  6910. }
  6911. #u20443_img {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:14px;
  6917. height:14px;
  6918. }
  6919. #u20443 {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:20px;
  6923. top:137px;
  6924. width:14px;
  6925. height:14px;
  6926. display:flex;
  6927. }
  6928. #u20443 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:2px 2px 2px 2px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u20443_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. visibility:hidden;
  6940. }
  6941. #u20444 {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:0px;
  6947. height:0px;
  6948. }
  6949. #u20445_div {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:33px;
  6955. height:22px;
  6956. background:inherit;
  6957. background-color:rgba(255, 255, 255, 0);
  6958. border:none;
  6959. border-radius:0px;
  6960. -moz-box-shadow:none;
  6961. -webkit-box-shadow:none;
  6962. box-shadow:none;
  6963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:16px;
  6967. color:#FFFFFF;
  6968. }
  6969. #u20445 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:39px;
  6973. top:423px;
  6974. width:33px;
  6975. height:22px;
  6976. display:flex;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:16px;
  6981. color:#FFFFFF;
  6982. }
  6983. #u20445 .text {
  6984. position:absolute;
  6985. align-self:flex-start;
  6986. padding:0px 0px 0px 0px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u20445_text {
  6991. border-width:0px;
  6992. white-space:nowrap;
  6993. text-transform:none;
  6994. }
  6995. #u20446_img {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:14px;
  7001. height:14px;
  7002. }
  7003. #u20446 {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:20px;
  7007. top:427px;
  7008. width:14px;
  7009. height:14px;
  7010. display:flex;
  7011. }
  7012. #u20446 .text {
  7013. position:absolute;
  7014. align-self:center;
  7015. padding:2px 2px 2px 2px;
  7016. box-sizing:border-box;
  7017. width:100%;
  7018. }
  7019. #u20446_text {
  7020. border-width:0px;
  7021. word-wrap:break-word;
  7022. text-transform:none;
  7023. visibility:hidden;
  7024. }
  7025. #u20447 {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:0px;
  7031. height:0px;
  7032. }
  7033. #u20448_div {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:0px;
  7037. top:0px;
  7038. width:33px;
  7039. height:22px;
  7040. background:inherit;
  7041. background-color:rgba(255, 255, 255, 0);
  7042. border:none;
  7043. border-radius:0px;
  7044. -moz-box-shadow:none;
  7045. -webkit-box-shadow:none;
  7046. box-shadow:none;
  7047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:16px;
  7051. color:#FFFFFF;
  7052. }
  7053. #u20448 {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:39px;
  7057. top:297px;
  7058. width:33px;
  7059. height:22px;
  7060. display:flex;
  7061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7062. font-weight:400;
  7063. font-style:normal;
  7064. font-size:16px;
  7065. color:#FFFFFF;
  7066. }
  7067. #u20448 .text {
  7068. position:absolute;
  7069. align-self:flex-start;
  7070. padding:0px 0px 0px 0px;
  7071. box-sizing:border-box;
  7072. width:100%;
  7073. }
  7074. #u20448_text {
  7075. border-width:0px;
  7076. white-space:nowrap;
  7077. text-transform:none;
  7078. }
  7079. #u20449_img {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:14px;
  7085. height:14px;
  7086. }
  7087. #u20449 {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:20px;
  7091. top:301px;
  7092. width:14px;
  7093. height:14px;
  7094. display:flex;
  7095. }
  7096. #u20449 .text {
  7097. position:absolute;
  7098. align-self:center;
  7099. padding:2px 2px 2px 2px;
  7100. box-sizing:border-box;
  7101. width:100%;
  7102. }
  7103. #u20449_text {
  7104. border-width:0px;
  7105. word-wrap:break-word;
  7106. text-transform:none;
  7107. visibility:hidden;
  7108. }
  7109. #u20450 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:0px;
  7115. height:0px;
  7116. }
  7117. #u20451_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:33px;
  7123. height:22px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 0);
  7126. border:none;
  7127. border-radius:0px;
  7128. -moz-box-shadow:none;
  7129. -webkit-box-shadow:none;
  7130. box-shadow:none;
  7131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. font-size:16px;
  7135. color:#FFFFFF;
  7136. }
  7137. #u20451 {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:39px;
  7141. top:213px;
  7142. width:33px;
  7143. height:22px;
  7144. display:flex;
  7145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7146. font-weight:400;
  7147. font-style:normal;
  7148. font-size:16px;
  7149. color:#FFFFFF;
  7150. }
  7151. #u20451 .text {
  7152. position:absolute;
  7153. align-self:flex-start;
  7154. padding:0px 0px 0px 0px;
  7155. box-sizing:border-box;
  7156. width:100%;
  7157. }
  7158. #u20451_text {
  7159. border-width:0px;
  7160. white-space:nowrap;
  7161. text-transform:none;
  7162. }
  7163. #u20452_img {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:0px;
  7167. top:0px;
  7168. width:14px;
  7169. height:14px;
  7170. }
  7171. #u20452 {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:20px;
  7175. top:217px;
  7176. width:14px;
  7177. height:14px;
  7178. display:flex;
  7179. }
  7180. #u20452 .text {
  7181. position:absolute;
  7182. align-self:center;
  7183. padding:2px 2px 2px 2px;
  7184. box-sizing:border-box;
  7185. width:100%;
  7186. }
  7187. #u20452_text {
  7188. border-width:0px;
  7189. word-wrap:break-word;
  7190. text-transform:none;
  7191. visibility:hidden;
  7192. }
  7193. #u20453 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:0px;
  7199. height:0px;
  7200. }
  7201. #u20454_div {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:33px;
  7207. height:22px;
  7208. background:inherit;
  7209. background-color:rgba(255, 255, 255, 0);
  7210. border:none;
  7211. border-radius:0px;
  7212. -moz-box-shadow:none;
  7213. -webkit-box-shadow:none;
  7214. box-shadow:none;
  7215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7216. font-weight:400;
  7217. font-style:normal;
  7218. font-size:16px;
  7219. color:#FFFFFF;
  7220. }
  7221. #u20454 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:39px;
  7225. top:339px;
  7226. width:33px;
  7227. height:22px;
  7228. display:flex;
  7229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:16px;
  7233. color:#FFFFFF;
  7234. }
  7235. #u20454 .text {
  7236. position:absolute;
  7237. align-self:flex-start;
  7238. padding:0px 0px 0px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u20454_text {
  7243. border-width:0px;
  7244. white-space:nowrap;
  7245. text-transform:none;
  7246. }
  7247. #u20455_img {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:14px;
  7253. height:14px;
  7254. }
  7255. #u20455 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:20px;
  7259. top:343px;
  7260. width:14px;
  7261. height:14px;
  7262. display:flex;
  7263. }
  7264. #u20455 .text {
  7265. position:absolute;
  7266. align-self:center;
  7267. padding:2px 2px 2px 2px;
  7268. box-sizing:border-box;
  7269. width:100%;
  7270. }
  7271. #u20455_text {
  7272. border-width:0px;
  7273. word-wrap:break-word;
  7274. text-transform:none;
  7275. visibility:hidden;
  7276. }
  7277. #u20456 {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:0px;
  7283. height:0px;
  7284. }
  7285. #u20457_div {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:33px;
  7291. height:22px;
  7292. background:inherit;
  7293. background-color:rgba(255, 255, 255, 0);
  7294. border:none;
  7295. border-radius:0px;
  7296. -moz-box-shadow:none;
  7297. -webkit-box-shadow:none;
  7298. box-shadow:none;
  7299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:16px;
  7303. color:#FFFFFF;
  7304. }
  7305. #u20457 {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:39px;
  7309. top:465px;
  7310. width:33px;
  7311. height:22px;
  7312. display:flex;
  7313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7314. font-weight:400;
  7315. font-style:normal;
  7316. font-size:16px;
  7317. color:#FFFFFF;
  7318. }
  7319. #u20457 .text {
  7320. position:absolute;
  7321. align-self:flex-start;
  7322. padding:0px 0px 0px 0px;
  7323. box-sizing:border-box;
  7324. width:100%;
  7325. }
  7326. #u20457_text {
  7327. border-width:0px;
  7328. white-space:nowrap;
  7329. text-transform:none;
  7330. }
  7331. #u20458_img {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:14px;
  7337. height:14px;
  7338. }
  7339. #u20458 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:20px;
  7343. top:469px;
  7344. width:14px;
  7345. height:14px;
  7346. display:flex;
  7347. }
  7348. #u20458 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 2px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u20458_text {
  7356. border-width:0px;
  7357. word-wrap:break-word;
  7358. text-transform:none;
  7359. visibility:hidden;
  7360. }
  7361. #u20459 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:0px;
  7365. top:0px;
  7366. width:0px;
  7367. height:0px;
  7368. }
  7369. #u20460_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:29px;
  7375. height:20px;
  7376. background:inherit;
  7377. background-color:rgba(255, 255, 255, 0);
  7378. border:none;
  7379. border-radius:25px;
  7380. -moz-box-shadow:none;
  7381. -webkit-box-shadow:none;
  7382. box-shadow:none;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. color:#FFFFFF;
  7387. }
  7388. #u20460 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:52px;
  7392. top:1145px;
  7393. width:29px;
  7394. height:20px;
  7395. display:flex;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. color:#FFFFFF;
  7400. }
  7401. #u20460 .text {
  7402. position:absolute;
  7403. align-self:center;
  7404. padding:0px 0px 0px 0px;
  7405. box-sizing:border-box;
  7406. width:100%;
  7407. }
  7408. #u20460_text {
  7409. border-width:0px;
  7410. white-space:nowrap;
  7411. text-transform:none;
  7412. }
  7413. #u20461_img {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:0px;
  7417. top:0px;
  7418. width:22px;
  7419. height:22px;
  7420. }
  7421. #u20461 {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:20px;
  7425. top:1144px;
  7426. width:22px;
  7427. height:22px;
  7428. display:flex;
  7429. }
  7430. #u20461 .text {
  7431. position:absolute;
  7432. align-self:center;
  7433. padding:2px 2px 2px 2px;
  7434. box-sizing:border-box;
  7435. width:100%;
  7436. }
  7437. #u20461_text {
  7438. border-width:0px;
  7439. word-wrap:break-word;
  7440. text-transform:none;
  7441. visibility:hidden;
  7442. }
  7443. #u20462 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:0px;
  7449. height:0px;
  7450. }
  7451. #u20463_div {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:29px;
  7457. height:20px;
  7458. background:inherit;
  7459. background-color:rgba(255, 255, 255, 0);
  7460. border:none;
  7461. border-radius:25px;
  7462. -moz-box-shadow:none;
  7463. -webkit-box-shadow:none;
  7464. box-shadow:none;
  7465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7466. font-weight:400;
  7467. font-style:normal;
  7468. color:#FFFFFF;
  7469. }
  7470. #u20463 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:52px;
  7474. top:1187px;
  7475. width:29px;
  7476. height:20px;
  7477. display:flex;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. color:#FFFFFF;
  7482. }
  7483. #u20463 .text {
  7484. position:absolute;
  7485. align-self:center;
  7486. padding:0px 0px 0px 0px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u20463_text {
  7491. border-width:0px;
  7492. white-space:nowrap;
  7493. text-transform:none;
  7494. }
  7495. #u20464_img {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:0px;
  7499. top:0px;
  7500. width:22px;
  7501. height:22px;
  7502. }
  7503. #u20464 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:20px;
  7507. top:1186px;
  7508. width:22px;
  7509. height:22px;
  7510. display:flex;
  7511. }
  7512. #u20464 .text {
  7513. position:absolute;
  7514. align-self:center;
  7515. padding:2px 2px 2px 2px;
  7516. box-sizing:border-box;
  7517. width:100%;
  7518. }
  7519. #u20464_text {
  7520. border-width:0px;
  7521. word-wrap:break-word;
  7522. text-transform:none;
  7523. visibility:hidden;
  7524. }
  7525. #u20465 {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:0px;
  7531. height:0px;
  7532. }
  7533. #u20466_div {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:33px;
  7539. height:22px;
  7540. background:inherit;
  7541. background-color:rgba(255, 255, 255, 0);
  7542. border:none;
  7543. border-radius:0px;
  7544. -moz-box-shadow:none;
  7545. -webkit-box-shadow:none;
  7546. box-shadow:none;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:16px;
  7551. color:#FFFFFF;
  7552. }
  7553. #u20466 {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:39px;
  7557. top:255px;
  7558. width:33px;
  7559. height:22px;
  7560. display:flex;
  7561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7562. font-weight:400;
  7563. font-style:normal;
  7564. font-size:16px;
  7565. color:#FFFFFF;
  7566. }
  7567. #u20466 .text {
  7568. position:absolute;
  7569. align-self:flex-start;
  7570. padding:0px 0px 0px 0px;
  7571. box-sizing:border-box;
  7572. width:100%;
  7573. }
  7574. #u20466_text {
  7575. border-width:0px;
  7576. white-space:nowrap;
  7577. text-transform:none;
  7578. }
  7579. #u20467_img {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:14px;
  7585. height:14px;
  7586. }
  7587. #u20467 {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:20px;
  7591. top:259px;
  7592. width:14px;
  7593. height:14px;
  7594. display:flex;
  7595. }
  7596. #u20467 .text {
  7597. position:absolute;
  7598. align-self:center;
  7599. padding:2px 2px 2px 2px;
  7600. box-sizing:border-box;
  7601. width:100%;
  7602. }
  7603. #u20467_text {
  7604. border-width:0px;
  7605. word-wrap:break-word;
  7606. text-transform:none;
  7607. visibility:hidden;
  7608. }
  7609. #u20468 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:0px;
  7615. height:0px;
  7616. }
  7617. #u20469_input {
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:214px;
  7622. height:27px;
  7623. padding:2px 2px 2px 2px;
  7624. font-family:'ArialMT', 'Arial', sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. font-size:14px;
  7628. letter-spacing:normal;
  7629. color:#FFFFFF;
  7630. vertical-align:none;
  7631. text-align:left;
  7632. text-transform:none;
  7633. background-color:transparent;
  7634. border-color:transparent;
  7635. }
  7636. #u20469_input.disabled {
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:214px;
  7641. height:27px;
  7642. padding:2px 2px 2px 2px;
  7643. font-family:'ArialMT', 'Arial', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:14px;
  7647. letter-spacing:normal;
  7648. color:#FFFFFF;
  7649. vertical-align:none;
  7650. text-align:left;
  7651. text-transform:none;
  7652. background-color:transparent;
  7653. border-color:transparent;
  7654. }
  7655. #u20469_div {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:0px;
  7659. top:0px;
  7660. width:214px;
  7661. height:27px;
  7662. background:inherit;
  7663. background-color:rgba(255, 255, 255, 0);
  7664. border:none;
  7665. border-radius:0px;
  7666. -moz-box-shadow:none;
  7667. -webkit-box-shadow:none;
  7668. box-shadow:none;
  7669. font-size:14px;
  7670. color:#FFFFFF;
  7671. }
  7672. #u20469 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:1221px;
  7676. top:11px;
  7677. width:214px;
  7678. height:27px;
  7679. display:flex;
  7680. font-size:14px;
  7681. color:#FFFFFF;
  7682. }
  7683. #u20469 .text {
  7684. position:absolute;
  7685. align-self:flex-start;
  7686. padding:2px 2px 2px 2px;
  7687. box-sizing:border-box;
  7688. width:100%;
  7689. }
  7690. #u20469_div.disabled {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:0px;
  7694. top:0px;
  7695. width:214px;
  7696. height:27px;
  7697. background:inherit;
  7698. background-color:rgba(240, 240, 240, 1);
  7699. border:none;
  7700. border-radius:0px;
  7701. -moz-box-shadow:none;
  7702. -webkit-box-shadow:none;
  7703. box-shadow:none;
  7704. font-size:14px;
  7705. color:#FFFFFF;
  7706. }
  7707. #u20469.disabled {
  7708. }
  7709. .u20469_input_option {
  7710. font-size:14px;
  7711. }
  7712. #u20470_img {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:22px;
  7718. height:22px;
  7719. }
  7720. #u20470 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:1194px;
  7724. top:14px;
  7725. width:22px;
  7726. height:22px;
  7727. display:flex;
  7728. }
  7729. #u20470 .text {
  7730. position:absolute;
  7731. align-self:center;
  7732. padding:2px 2px 2px 2px;
  7733. box-sizing:border-box;
  7734. width:100%;
  7735. }
  7736. #u20470_text {
  7737. border-width:0px;
  7738. word-wrap:break-word;
  7739. text-transform:none;
  7740. visibility:hidden;
  7741. }
  7742. #u20471_div {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:0px;
  7746. top:0px;
  7747. width:100px;
  7748. height:24px;
  7749. background:inherit;
  7750. background-color:rgba(242, 242, 242, 0.2);
  7751. border:none;
  7752. border-radius:25px;
  7753. -moz-box-shadow:none;
  7754. -webkit-box-shadow:none;
  7755. box-shadow:none;
  7756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. color:#FFFFFF;
  7760. text-align:center;
  7761. }
  7762. #u20471 {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:1480px;
  7766. top:13px;
  7767. width:100px;
  7768. height:24px;
  7769. display:flex;
  7770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7771. font-weight:400;
  7772. font-style:normal;
  7773. color:#FFFFFF;
  7774. text-align:center;
  7775. }
  7776. #u20471 .text {
  7777. position:absolute;
  7778. align-self:center;
  7779. padding:0px 0px 0px 0px;
  7780. box-sizing:border-box;
  7781. width:100%;
  7782. }
  7783. #u20471_text {
  7784. border-width:0px;
  7785. word-wrap:break-word;
  7786. text-transform:none;
  7787. }
  7788. #u20472_img {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:0px;
  7792. top:0px;
  7793. width:2px;
  7794. height:12px;
  7795. }
  7796. #u20472 {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:1452px;
  7800. top:19px;
  7801. width:1px;
  7802. height:11px;
  7803. display:flex;
  7804. }
  7805. #u20472 .text {
  7806. position:absolute;
  7807. align-self:center;
  7808. padding:2px 2px 2px 2px;
  7809. box-sizing:border-box;
  7810. width:100%;
  7811. }
  7812. #u20472_text {
  7813. border-width:0px;
  7814. word-wrap:break-word;
  7815. text-transform:none;
  7816. visibility:hidden;
  7817. }
  7818. #u20473 {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:0px;
  7822. top:0px;
  7823. width:0px;
  7824. height:0px;
  7825. }
  7826. #u20474_div {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:0px;
  7830. top:0px;
  7831. width:29px;
  7832. height:20px;
  7833. background:inherit;
  7834. background-color:rgba(255, 255, 255, 0);
  7835. border:none;
  7836. border-radius:25px;
  7837. -moz-box-shadow:none;
  7838. -webkit-box-shadow:none;
  7839. box-shadow:none;
  7840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. color:#FFFFFF;
  7844. }
  7845. #u20474 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:52px;
  7849. top:1082px;
  7850. width:29px;
  7851. height:20px;
  7852. display:flex;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. color:#FFFFFF;
  7857. }
  7858. #u20474 .text {
  7859. position:absolute;
  7860. align-self:center;
  7861. padding:0px 0px 0px 0px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u20474_text {
  7866. border-width:0px;
  7867. white-space:nowrap;
  7868. text-transform:none;
  7869. }
  7870. #u20475_img {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:22px;
  7876. height:22px;
  7877. }
  7878. #u20475 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:20px;
  7882. top:1081px;
  7883. width:22px;
  7884. height:22px;
  7885. display:flex;
  7886. }
  7887. #u20475 .text {
  7888. position:absolute;
  7889. align-self:center;
  7890. padding:2px 2px 2px 2px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u20475_text {
  7895. border-width:0px;
  7896. word-wrap:break-word;
  7897. text-transform:none;
  7898. visibility:hidden;
  7899. }
  7900. #u20476_img {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:0px;
  7904. top:0px;
  7905. width:69px;
  7906. height:2px;
  7907. }
  7908. #u20476 {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:20px;
  7912. top:1123px;
  7913. width:68px;
  7914. height:1px;
  7915. display:flex;
  7916. }
  7917. #u20476 .text {
  7918. position:absolute;
  7919. align-self:center;
  7920. padding:2px 2px 2px 2px;
  7921. box-sizing:border-box;
  7922. width:100%;
  7923. }
  7924. #u20476_text {
  7925. border-width:0px;
  7926. word-wrap:break-word;
  7927. text-transform:none;
  7928. visibility:hidden;
  7929. }
  7930. #u20477_img {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:0px;
  7934. top:0px;
  7935. width:69px;
  7936. height:2px;
  7937. }
  7938. #u20477 {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:20px;
  7942. top:1061px;
  7943. width:68px;
  7944. height:1px;
  7945. display:flex;
  7946. }
  7947. #u20477 .text {
  7948. position:absolute;
  7949. align-self:center;
  7950. padding:2px 2px 2px 2px;
  7951. box-sizing:border-box;
  7952. width:100%;
  7953. }
  7954. #u20477_text {
  7955. border-width:0px;
  7956. word-wrap:break-word;
  7957. text-transform:none;
  7958. visibility:hidden;
  7959. }
  7960. #u20478_img {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:57px;
  7966. height:2px;
  7967. }
  7968. #u20478 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:20px;
  7972. top:112px;
  7973. width:56px;
  7974. height:1px;
  7975. display:flex;
  7976. }
  7977. #u20478 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:2px 2px 2px 2px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u20478_text {
  7985. border-width:0px;
  7986. word-wrap:break-word;
  7987. text-transform:none;
  7988. visibility:hidden;
  7989. }
  7990. #u20479 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:0px;
  7996. height:0px;
  7997. }
  7998. #u20480_div {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:33px;
  8004. height:22px;
  8005. background:inherit;
  8006. background-color:rgba(255, 255, 255, 0);
  8007. border:none;
  8008. border-radius:0px;
  8009. -moz-box-shadow:none;
  8010. -webkit-box-shadow:none;
  8011. box-shadow:none;
  8012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8013. font-weight:400;
  8014. font-style:normal;
  8015. font-size:16px;
  8016. color:#FFFFFF;
  8017. }
  8018. #u20480 {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:43px;
  8022. top:71px;
  8023. width:33px;
  8024. height:22px;
  8025. display:flex;
  8026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8027. font-weight:400;
  8028. font-style:normal;
  8029. font-size:16px;
  8030. color:#FFFFFF;
  8031. }
  8032. #u20480 .text {
  8033. position:absolute;
  8034. align-self:flex-start;
  8035. padding:0px 0px 0px 0px;
  8036. box-sizing:border-box;
  8037. width:100%;
  8038. }
  8039. #u20480_text {
  8040. border-width:0px;
  8041. white-space:nowrap;
  8042. text-transform:none;
  8043. }
  8044. #u20481_img {
  8045. border-width:0px;
  8046. position:absolute;
  8047. left:0px;
  8048. top:0px;
  8049. width:18px;
  8050. height:14px;
  8051. }
  8052. #u20481 {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:20px;
  8056. top:75px;
  8057. width:18px;
  8058. height:14px;
  8059. display:flex;
  8060. }
  8061. #u20481 .text {
  8062. position:absolute;
  8063. align-self:center;
  8064. padding:2px 2px 2px 2px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u20481_text {
  8069. border-width:0px;
  8070. word-wrap:break-word;
  8071. text-transform:none;
  8072. visibility:hidden;
  8073. }
  8074. #u20482_div {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:0px;
  8078. top:0px;
  8079. width:1265px;
  8080. height:1180px;
  8081. background:inherit;
  8082. background-color:rgba(255, 255, 255, 1);
  8083. border:none;
  8084. border-radius:0px;
  8085. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8086. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8087. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8088. color:#1890FF;
  8089. }
  8090. #u20482 {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:329px;
  8094. top:50px;
  8095. width:1265px;
  8096. height:1180px;
  8097. display:flex;
  8098. color:#1890FF;
  8099. }
  8100. #u20482 .text {
  8101. position:absolute;
  8102. align-self:center;
  8103. padding:2px 2px 2px 2px;
  8104. box-sizing:border-box;
  8105. width:100%;
  8106. }
  8107. #u20482_text {
  8108. border-width:0px;
  8109. word-wrap:break-word;
  8110. text-transform:none;
  8111. visibility:hidden;
  8112. }
  8113. #u20483_div {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:91px;
  8119. height:40px;
  8120. background:inherit;
  8121. background-color:rgba(255, 255, 255, 0);
  8122. border:none;
  8123. border-left:0px;
  8124. border-top:0px;
  8125. border-right:0px;
  8126. border-radius:0px;
  8127. border-bottom-right-radius:0px;
  8128. border-bottom-left-radius:0px;
  8129. -moz-box-shadow:none;
  8130. -webkit-box-shadow:none;
  8131. box-shadow:none;
  8132. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8133. font-weight:500;
  8134. font-style:normal;
  8135. font-size:18px;
  8136. }
  8137. #u20483 {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:672px;
  8141. top:122px;
  8142. width:91px;
  8143. height:40px;
  8144. display:flex;
  8145. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8146. font-weight:500;
  8147. font-style:normal;
  8148. font-size:18px;
  8149. }
  8150. #u20483 .text {
  8151. position:absolute;
  8152. align-self:center;
  8153. padding:0px 0px 0px 0px;
  8154. box-sizing:border-box;
  8155. width:100%;
  8156. }
  8157. #u20483_text {
  8158. border-width:0px;
  8159. white-space:nowrap;
  8160. text-transform:none;
  8161. }
  8162. #u20484_div {
  8163. border-width:0px;
  8164. position:absolute;
  8165. left:0px;
  8166. top:0px;
  8167. width:491px;
  8168. height:40px;
  8169. background:inherit;
  8170. background-color:rgba(255, 255, 255, 0);
  8171. border:none;
  8172. border-left:0px;
  8173. border-top:0px;
  8174. border-right:0px;
  8175. border-radius:0px;
  8176. border-bottom-right-radius:0px;
  8177. border-bottom-left-radius:0px;
  8178. -moz-box-shadow:none;
  8179. -webkit-box-shadow:none;
  8180. box-shadow:none;
  8181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8182. font-weight:400;
  8183. font-style:normal;
  8184. font-size:14px;
  8185. color:#AAAAAA;
  8186. }
  8187. #u20484 {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:774px;
  8191. top:122px;
  8192. width:491px;
  8193. height:40px;
  8194. display:flex;
  8195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8196. font-weight:400;
  8197. font-style:normal;
  8198. font-size:14px;
  8199. color:#AAAAAA;
  8200. }
  8201. #u20484 .text {
  8202. position:absolute;
  8203. align-self:center;
  8204. padding:0px 0px 0px 0px;
  8205. box-sizing:border-box;
  8206. width:100%;
  8207. }
  8208. #u20484_text {
  8209. border-width:0px;
  8210. white-space:nowrap;
  8211. text-transform:none;
  8212. }
  8213. #u20485_div {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:0px;
  8217. top:0px;
  8218. width:80px;
  8219. height:40px;
  8220. background:inherit;
  8221. background-color:rgba(24, 144, 255, 1);
  8222. border:none;
  8223. border-radius:4px;
  8224. -moz-box-shadow:none;
  8225. -webkit-box-shadow:none;
  8226. box-shadow:none;
  8227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8228. font-weight:400;
  8229. font-style:normal;
  8230. font-size:14px;
  8231. color:#FFFFFF;
  8232. }
  8233. #u20485 {
  8234. border-width:0px;
  8235. position:absolute;
  8236. left:672px;
  8237. top:322px;
  8238. width:80px;
  8239. height:40px;
  8240. display:flex;
  8241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8242. font-weight:400;
  8243. font-style:normal;
  8244. font-size:14px;
  8245. color:#FFFFFF;
  8246. }
  8247. #u20485 .text {
  8248. position:absolute;
  8249. align-self:center;
  8250. padding:2px 2px 2px 2px;
  8251. box-sizing:border-box;
  8252. width:100%;
  8253. }
  8254. #u20485_text {
  8255. border-width:0px;
  8256. word-wrap:break-word;
  8257. text-transform:none;
  8258. }
  8259. #u20486 {
  8260. border-width:0px;
  8261. position:absolute;
  8262. left:0px;
  8263. top:0px;
  8264. width:0px;
  8265. height:0px;
  8266. }
  8267. #u20487_div {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:0px;
  8271. top:0px;
  8272. width:300px;
  8273. height:1180px;
  8274. background:inherit;
  8275. background-color:rgba(240, 242, 245, 1);
  8276. border:none;
  8277. border-radius:0px;
  8278. -moz-box-shadow:none;
  8279. -webkit-box-shadow:none;
  8280. box-shadow:none;
  8281. }
  8282. #u20487 {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:330px;
  8286. top:50px;
  8287. width:300px;
  8288. height:1180px;
  8289. display:flex;
  8290. }
  8291. #u20487 .text {
  8292. position:absolute;
  8293. align-self:center;
  8294. padding:2px 2px 2px 2px;
  8295. box-sizing:border-box;
  8296. width:100%;
  8297. }
  8298. #u20487_text {
  8299. border-width:0px;
  8300. word-wrap:break-word;
  8301. text-transform:none;
  8302. visibility:hidden;
  8303. }
  8304. #u20488 {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:0px;
  8310. height:0px;
  8311. }
  8312. #u20489_div {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:0px;
  8317. width:260px;
  8318. height:40px;
  8319. background:inherit;
  8320. background-color:rgba(255, 255, 255, 1);
  8321. box-sizing:border-box;
  8322. border-width:1px;
  8323. border-style:solid;
  8324. border-color:rgba(242, 242, 242, 1);
  8325. border-radius:4px;
  8326. -moz-box-shadow:none;
  8327. -webkit-box-shadow:none;
  8328. box-shadow:none;
  8329. font-family:'Microsoft YaHei', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:14px;
  8333. color:#CCCCCC;
  8334. text-align:left;
  8335. }
  8336. #u20489 {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:350px;
  8340. top:130px;
  8341. width:260px;
  8342. height:40px;
  8343. display:flex;
  8344. font-family:'Microsoft YaHei', sans-serif;
  8345. font-weight:400;
  8346. font-style:normal;
  8347. font-size:14px;
  8348. color:#CCCCCC;
  8349. text-align:left;
  8350. }
  8351. #u20489 .text {
  8352. position:absolute;
  8353. align-self:center;
  8354. padding:2px 8px 2px 8px;
  8355. box-sizing:border-box;
  8356. width:100%;
  8357. }
  8358. #u20489_text {
  8359. border-width:0px;
  8360. word-wrap:break-word;
  8361. text-transform:none;
  8362. visibility:hidden;
  8363. }
  8364. #u20490_input {
  8365. position:absolute;
  8366. left:0px;
  8367. top:0px;
  8368. width:217px;
  8369. height:33px;
  8370. padding:2px 2px 2px 2px;
  8371. font-family:'Microsoft YaHei', sans-serif;
  8372. font-weight:400;
  8373. font-style:normal;
  8374. font-size:14px;
  8375. letter-spacing:normal;
  8376. color:#000000;
  8377. vertical-align:none;
  8378. text-align:left;
  8379. text-transform:none;
  8380. background-color:transparent;
  8381. border-color:transparent;
  8382. }
  8383. #u20490_input.disabled {
  8384. position:absolute;
  8385. left:0px;
  8386. top:0px;
  8387. width:217px;
  8388. height:33px;
  8389. padding:2px 2px 2px 2px;
  8390. font-family:'Microsoft YaHei', sans-serif;
  8391. font-weight:400;
  8392. font-style:normal;
  8393. font-size:14px;
  8394. letter-spacing:normal;
  8395. color:#000000;
  8396. vertical-align:none;
  8397. text-align:left;
  8398. text-transform:none;
  8399. background-color:transparent;
  8400. border-color:transparent;
  8401. }
  8402. #u20490_div {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:217px;
  8408. height:33px;
  8409. background:inherit;
  8410. background-color:rgba(255, 255, 255, 1);
  8411. border:none;
  8412. border-radius:0px;
  8413. -moz-box-shadow:none;
  8414. -webkit-box-shadow:none;
  8415. box-shadow:none;
  8416. font-family:'Microsoft YaHei', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:14px;
  8420. }
  8421. #u20490 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:358px;
  8425. top:131px;
  8426. width:217px;
  8427. height:33px;
  8428. display:flex;
  8429. font-family:'Microsoft YaHei', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:14px;
  8433. }
  8434. #u20490 .text {
  8435. position:absolute;
  8436. align-self:center;
  8437. padding:2px 2px 2px 2px;
  8438. box-sizing:border-box;
  8439. width:100%;
  8440. }
  8441. #u20490_div.disabled {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:217px;
  8447. height:33px;
  8448. background:inherit;
  8449. background-color:rgba(240, 240, 240, 1);
  8450. border:none;
  8451. border-radius:0px;
  8452. -moz-box-shadow:none;
  8453. -webkit-box-shadow:none;
  8454. box-shadow:none;
  8455. font-family:'Microsoft YaHei', sans-serif;
  8456. font-weight:400;
  8457. font-style:normal;
  8458. font-size:14px;
  8459. }
  8460. #u20490.disabled {
  8461. }
  8462. #u20491_img {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:0px;
  8466. top:0px;
  8467. width:14px;
  8468. height:14px;
  8469. }
  8470. #u20491 {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:582px;
  8474. top:142px;
  8475. width:14px;
  8476. height:14px;
  8477. display:flex;
  8478. }
  8479. #u20491 .text {
  8480. position:absolute;
  8481. align-self:center;
  8482. padding:2px 2px 2px 2px;
  8483. box-sizing:border-box;
  8484. width:100%;
  8485. }
  8486. #u20491_text {
  8487. border-width:0px;
  8488. word-wrap:break-word;
  8489. text-transform:none;
  8490. visibility:hidden;
  8491. }
  8492. #u20492 {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:0px;
  8496. top:0px;
  8497. width:0px;
  8498. height:0px;
  8499. }
  8500. #u20493_div {
  8501. border-width:0px;
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:260px;
  8506. height:60px;
  8507. background:inherit;
  8508. background-color:rgba(0, 153, 255, 0.0980392156862745);
  8509. border:none;
  8510. border-radius:4px;
  8511. -moz-box-shadow:none;
  8512. -webkit-box-shadow:none;
  8513. box-shadow:none;
  8514. font-family:'Microsoft YaHei', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:14px;
  8518. color:#CCCCCC;
  8519. text-align:left;
  8520. }
  8521. #u20493 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:350px;
  8525. top:190px;
  8526. width:260px;
  8527. height:60px;
  8528. display:flex;
  8529. font-family:'Microsoft YaHei', sans-serif;
  8530. font-weight:400;
  8531. font-style:normal;
  8532. font-size:14px;
  8533. color:#CCCCCC;
  8534. text-align:left;
  8535. }
  8536. #u20493 .text {
  8537. position:absolute;
  8538. align-self:center;
  8539. padding:2px 8px 2px 8px;
  8540. box-sizing:border-box;
  8541. width:100%;
  8542. }
  8543. #u20493_text {
  8544. border-width:0px;
  8545. word-wrap:break-word;
  8546. text-transform:none;
  8547. visibility:hidden;
  8548. }
  8549. #u20494_div {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:0px;
  8553. top:0px;
  8554. width:63px;
  8555. height:20px;
  8556. background:inherit;
  8557. background-color:rgba(51, 51, 51, 0);
  8558. border:none;
  8559. border-radius:4px;
  8560. -moz-box-shadow:none;
  8561. -webkit-box-shadow:none;
  8562. box-shadow:none;
  8563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8564. font-weight:400;
  8565. font-style:normal;
  8566. font-size:14px;
  8567. text-align:left;
  8568. }
  8569. #u20494 {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:367px;
  8573. top:213px;
  8574. width:63px;
  8575. height:20px;
  8576. display:flex;
  8577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8578. font-weight:400;
  8579. font-style:normal;
  8580. font-size:14px;
  8581. text-align:left;
  8582. }
  8583. #u20494 .text {
  8584. position:absolute;
  8585. align-self:center;
  8586. padding:0px 0px 0px 0px;
  8587. box-sizing:border-box;
  8588. width:100%;
  8589. }
  8590. #u20494_text {
  8591. border-width:0px;
  8592. white-space:nowrap;
  8593. text-transform:none;
  8594. }
  8595. #u20495 {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:0px;
  8601. height:0px;
  8602. }
  8603. #u20496_div {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:260px;
  8609. height:60px;
  8610. background:inherit;
  8611. background-color:rgba(255, 255, 255, 0.0980392156862745);
  8612. border:none;
  8613. border-radius:4px;
  8614. -moz-box-shadow:none;
  8615. -webkit-box-shadow:none;
  8616. box-shadow:none;
  8617. font-family:'Microsoft YaHei', sans-serif;
  8618. font-weight:400;
  8619. font-style:normal;
  8620. font-size:14px;
  8621. color:#CCCCCC;
  8622. text-align:left;
  8623. }
  8624. #u20496 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:350px;
  8628. top:370px;
  8629. width:260px;
  8630. height:60px;
  8631. display:flex;
  8632. font-family:'Microsoft YaHei', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:14px;
  8636. color:#CCCCCC;
  8637. text-align:left;
  8638. }
  8639. #u20496 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:2px 8px 2px 8px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u20496_text {
  8647. border-width:0px;
  8648. word-wrap:break-word;
  8649. text-transform:none;
  8650. visibility:hidden;
  8651. }
  8652. #u20497_div {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:65px;
  8658. height:20px;
  8659. background:inherit;
  8660. background-color:rgba(51, 51, 51, 0);
  8661. border:none;
  8662. border-radius:4px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:14px;
  8670. text-align:left;
  8671. }
  8672. #u20497 {
  8673. border-width:0px;
  8674. position:absolute;
  8675. left:365px;
  8676. top:393px;
  8677. width:65px;
  8678. height:20px;
  8679. display:flex;
  8680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8681. font-weight:400;
  8682. font-style:normal;
  8683. font-size:14px;
  8684. text-align:left;
  8685. }
  8686. #u20497 .text {
  8687. position:absolute;
  8688. align-self:center;
  8689. padding:0px 0px 0px 0px;
  8690. box-sizing:border-box;
  8691. width:100%;
  8692. }
  8693. #u20497_text {
  8694. border-width:0px;
  8695. white-space:nowrap;
  8696. text-transform:none;
  8697. }
  8698. #u20498 {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:0px;
  8702. top:0px;
  8703. width:0px;
  8704. height:0px;
  8705. }
  8706. #u20499_div {
  8707. border-width:0px;
  8708. position:absolute;
  8709. left:0px;
  8710. top:0px;
  8711. width:260px;
  8712. height:60px;
  8713. background:inherit;
  8714. background-color:rgba(0, 153, 255, 0);
  8715. border:none;
  8716. border-radius:4px;
  8717. -moz-box-shadow:none;
  8718. -webkit-box-shadow:none;
  8719. box-shadow:none;
  8720. font-family:'Microsoft YaHei', sans-serif;
  8721. font-weight:400;
  8722. font-style:normal;
  8723. font-size:14px;
  8724. color:#CCCCCC;
  8725. text-align:left;
  8726. }
  8727. #u20499 {
  8728. border-width:0px;
  8729. position:absolute;
  8730. left:350px;
  8731. top:250px;
  8732. width:260px;
  8733. height:60px;
  8734. display:flex;
  8735. font-family:'Microsoft YaHei', sans-serif;
  8736. font-weight:400;
  8737. font-style:normal;
  8738. font-size:14px;
  8739. color:#CCCCCC;
  8740. text-align:left;
  8741. }
  8742. #u20499 .text {
  8743. position:absolute;
  8744. align-self:center;
  8745. padding:2px 8px 2px 8px;
  8746. box-sizing:border-box;
  8747. width:100%;
  8748. }
  8749. #u20499_text {
  8750. border-width:0px;
  8751. word-wrap:break-word;
  8752. text-transform:none;
  8753. visibility:hidden;
  8754. }
  8755. #u20500_div {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:0px;
  8759. top:0px;
  8760. width:65px;
  8761. height:20px;
  8762. background:inherit;
  8763. background-color:rgba(51, 51, 51, 0);
  8764. border:none;
  8765. border-radius:4px;
  8766. -moz-box-shadow:none;
  8767. -webkit-box-shadow:none;
  8768. box-shadow:none;
  8769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8770. font-weight:400;
  8771. font-style:normal;
  8772. font-size:14px;
  8773. text-align:left;
  8774. }
  8775. #u20500 {
  8776. border-width:0px;
  8777. position:absolute;
  8778. left:365px;
  8779. top:273px;
  8780. width:65px;
  8781. height:20px;
  8782. display:flex;
  8783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8784. font-weight:400;
  8785. font-style:normal;
  8786. font-size:14px;
  8787. text-align:left;
  8788. }
  8789. #u20500 .text {
  8790. position:absolute;
  8791. align-self:center;
  8792. padding:0px 0px 0px 0px;
  8793. box-sizing:border-box;
  8794. width:100%;
  8795. }
  8796. #u20500_text {
  8797. border-width:0px;
  8798. white-space:nowrap;
  8799. text-transform:none;
  8800. }
  8801. #u20501 {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:0px;
  8805. top:0px;
  8806. width:0px;
  8807. height:0px;
  8808. }
  8809. #u20502_div {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:260px;
  8815. height:60px;
  8816. background:inherit;
  8817. background-color:rgba(255, 255, 255, 0.0980392156862745);
  8818. border:none;
  8819. border-radius:4px;
  8820. -moz-box-shadow:none;
  8821. -webkit-box-shadow:none;
  8822. box-shadow:none;
  8823. font-family:'Microsoft YaHei', sans-serif;
  8824. font-weight:400;
  8825. font-style:normal;
  8826. font-size:14px;
  8827. color:#CCCCCC;
  8828. text-align:left;
  8829. }
  8830. #u20502 {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:350px;
  8834. top:310px;
  8835. width:260px;
  8836. height:60px;
  8837. display:flex;
  8838. font-family:'Microsoft YaHei', sans-serif;
  8839. font-weight:400;
  8840. font-style:normal;
  8841. font-size:14px;
  8842. color:#CCCCCC;
  8843. text-align:left;
  8844. }
  8845. #u20502 .text {
  8846. position:absolute;
  8847. align-self:center;
  8848. padding:2px 8px 2px 8px;
  8849. box-sizing:border-box;
  8850. width:100%;
  8851. }
  8852. #u20502_text {
  8853. border-width:0px;
  8854. word-wrap:break-word;
  8855. text-transform:none;
  8856. visibility:hidden;
  8857. }
  8858. #u20503_div {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:65px;
  8864. height:20px;
  8865. background:inherit;
  8866. background-color:rgba(51, 51, 51, 0);
  8867. border:none;
  8868. border-radius:4px;
  8869. -moz-box-shadow:none;
  8870. -webkit-box-shadow:none;
  8871. box-shadow:none;
  8872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8873. font-weight:400;
  8874. font-style:normal;
  8875. font-size:14px;
  8876. text-align:left;
  8877. }
  8878. #u20503 {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:365px;
  8882. top:333px;
  8883. width:65px;
  8884. height:20px;
  8885. display:flex;
  8886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8887. font-weight:400;
  8888. font-style:normal;
  8889. font-size:14px;
  8890. text-align:left;
  8891. }
  8892. #u20503 .text {
  8893. position:absolute;
  8894. align-self:center;
  8895. padding:0px 0px 0px 0px;
  8896. box-sizing:border-box;
  8897. width:100%;
  8898. }
  8899. #u20503_text {
  8900. border-width:0px;
  8901. white-space:nowrap;
  8902. text-transform:none;
  8903. }
  8904. #u20504_div {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:73px;
  8910. height:25px;
  8911. background:inherit;
  8912. background-color:rgba(255, 255, 255, 0);
  8913. border:none;
  8914. border-radius:0px;
  8915. -moz-box-shadow:none;
  8916. -webkit-box-shadow:none;
  8917. box-shadow:none;
  8918. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8919. font-weight:500;
  8920. font-style:normal;
  8921. font-size:18px;
  8922. }
  8923. #u20504 {
  8924. border-width:0px;
  8925. position:absolute;
  8926. left:350px;
  8927. top:77px;
  8928. width:73px;
  8929. height:25px;
  8930. display:flex;
  8931. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8932. font-weight:500;
  8933. font-style:normal;
  8934. font-size:18px;
  8935. }
  8936. #u20504 .text {
  8937. position:absolute;
  8938. align-self:flex-start;
  8939. padding:0px 0px 0px 0px;
  8940. box-sizing:border-box;
  8941. width:100%;
  8942. }
  8943. #u20504_text {
  8944. border-width:0px;
  8945. white-space:nowrap;
  8946. text-transform:none;
  8947. }
  8948. #u20505_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:80px;
  8954. height:25px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 0);
  8957. border:none;
  8958. border-radius:0px;
  8959. -moz-box-shadow:none;
  8960. -webkit-box-shadow:none;
  8961. box-shadow:none;
  8962. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8963. font-weight:500;
  8964. font-style:normal;
  8965. font-size:18px;
  8966. }
  8967. #u20505 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:672px;
  8971. top:77px;
  8972. width:80px;
  8973. height:25px;
  8974. display:flex;
  8975. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8976. font-weight:500;
  8977. font-style:normal;
  8978. font-size:18px;
  8979. }
  8980. #u20505 .text {
  8981. position:absolute;
  8982. align-self:flex-start;
  8983. padding:0px 0px 0px 0px;
  8984. box-sizing:border-box;
  8985. width:100%;
  8986. }
  8987. #u20505_text {
  8988. border-width:0px;
  8989. white-space:nowrap;
  8990. text-transform:none;
  8991. }
  8992. #u20506 {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:0px;
  8996. top:0px;
  8997. width:0px;
  8998. height:0px;
  8999. }
  9000. #u20507_div {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:0px;
  9004. top:0px;
  9005. width:200px;
  9006. height:40px;
  9007. background:inherit;
  9008. background-color:rgba(255, 255, 255, 1);
  9009. box-sizing:border-box;
  9010. border-width:1px;
  9011. border-style:solid;
  9012. border-color:rgba(215, 215, 215, 1);
  9013. border-radius:4px;
  9014. -moz-box-shadow:none;
  9015. -webkit-box-shadow:none;
  9016. box-shadow:none;
  9017. font-size:14px;
  9018. }
  9019. #u20507 {
  9020. border-width:0px;
  9021. position:absolute;
  9022. left:672px;
  9023. top:172px;
  9024. width:200px;
  9025. height:40px;
  9026. display:flex;
  9027. font-size:14px;
  9028. }
  9029. #u20507 .text {
  9030. position:absolute;
  9031. align-self:center;
  9032. padding:2px 2px 2px 2px;
  9033. box-sizing:border-box;
  9034. width:100%;
  9035. }
  9036. #u20507_text {
  9037. border-width:0px;
  9038. word-wrap:break-word;
  9039. text-transform:none;
  9040. visibility:hidden;
  9041. }
  9042. #u20508_input {
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:191px;
  9047. height:31px;
  9048. padding:2px 2px 2px 2px;
  9049. font-family:'ArialMT', 'Arial', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:14px;
  9053. letter-spacing:normal;
  9054. color:#AAAAAA;
  9055. vertical-align:none;
  9056. text-align:left;
  9057. text-transform:none;
  9058. background-color:transparent;
  9059. border-color:transparent;
  9060. }
  9061. #u20508_input.disabled {
  9062. position:absolute;
  9063. left:0px;
  9064. top:0px;
  9065. width:191px;
  9066. height:31px;
  9067. padding:2px 2px 2px 2px;
  9068. font-family:'ArialMT', 'Arial', sans-serif;
  9069. font-weight:400;
  9070. font-style:normal;
  9071. font-size:14px;
  9072. letter-spacing:normal;
  9073. color:#AAAAAA;
  9074. vertical-align:none;
  9075. text-align:left;
  9076. text-transform:none;
  9077. background-color:transparent;
  9078. border-color:transparent;
  9079. }
  9080. #u20508_div {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:0px;
  9084. top:0px;
  9085. width:191px;
  9086. height:31px;
  9087. background:inherit;
  9088. background-color:rgba(255, 255, 255, 1);
  9089. border:none;
  9090. border-radius:0px;
  9091. -moz-box-shadow:none;
  9092. -webkit-box-shadow:none;
  9093. box-shadow:none;
  9094. font-size:14px;
  9095. color:#AAAAAA;
  9096. }
  9097. #u20508 {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:678px;
  9101. top:175px;
  9102. width:191px;
  9103. height:31px;
  9104. display:flex;
  9105. font-size:14px;
  9106. color:#AAAAAA;
  9107. }
  9108. #u20508 .text {
  9109. position:absolute;
  9110. align-self:flex-start;
  9111. padding:2px 2px 2px 2px;
  9112. box-sizing:border-box;
  9113. width:100%;
  9114. }
  9115. #u20508_div.disabled {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:0px;
  9119. top:0px;
  9120. width:191px;
  9121. height:31px;
  9122. background:inherit;
  9123. background-color:rgba(240, 240, 240, 1);
  9124. border:none;
  9125. border-radius:0px;
  9126. -moz-box-shadow:none;
  9127. -webkit-box-shadow:none;
  9128. box-shadow:none;
  9129. font-size:14px;
  9130. color:#AAAAAA;
  9131. }
  9132. #u20508.disabled {
  9133. }
  9134. .u20508_input_option {
  9135. font-size:14px;
  9136. }
  9137. #u20509 {
  9138. border-width:0px;
  9139. position:absolute;
  9140. left:0px;
  9141. top:0px;
  9142. width:0px;
  9143. height:0px;
  9144. }
  9145. #u20510_div {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:0px;
  9149. top:0px;
  9150. width:200px;
  9151. height:40px;
  9152. background:inherit;
  9153. background-color:rgba(255, 255, 255, 1);
  9154. box-sizing:border-box;
  9155. border-width:1px;
  9156. border-style:solid;
  9157. border-color:rgba(201, 201, 201, 1);
  9158. border-radius:4px;
  9159. -moz-box-shadow:none;
  9160. -webkit-box-shadow:none;
  9161. box-shadow:none;
  9162. font-family:'Microsoft YaHei', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. font-size:14px;
  9166. color:#CCCCCC;
  9167. text-align:left;
  9168. }
  9169. #u20510 {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:882px;
  9173. top:172px;
  9174. width:200px;
  9175. height:40px;
  9176. display:flex;
  9177. font-family:'Microsoft YaHei', sans-serif;
  9178. font-weight:400;
  9179. font-style:normal;
  9180. font-size:14px;
  9181. color:#CCCCCC;
  9182. text-align:left;
  9183. }
  9184. #u20510 .text {
  9185. position:absolute;
  9186. align-self:center;
  9187. padding:2px 8px 2px 8px;
  9188. box-sizing:border-box;
  9189. width:100%;
  9190. }
  9191. #u20510_text {
  9192. border-width:0px;
  9193. word-wrap:break-word;
  9194. text-transform:none;
  9195. visibility:hidden;
  9196. }
  9197. #u20511_input {
  9198. position:absolute;
  9199. left:0px;
  9200. top:0px;
  9201. width:181px;
  9202. height:33px;
  9203. padding:2px 2px 2px 2px;
  9204. font-family:'Microsoft YaHei', sans-serif;
  9205. font-weight:400;
  9206. font-style:normal;
  9207. font-size:14px;
  9208. letter-spacing:normal;
  9209. color:#000000;
  9210. vertical-align:none;
  9211. text-align:left;
  9212. text-transform:none;
  9213. background-color:transparent;
  9214. border-color:transparent;
  9215. }
  9216. #u20511_input.disabled {
  9217. position:absolute;
  9218. left:0px;
  9219. top:0px;
  9220. width:181px;
  9221. height:33px;
  9222. padding:2px 2px 2px 2px;
  9223. font-family:'Microsoft YaHei', sans-serif;
  9224. font-weight:400;
  9225. font-style:normal;
  9226. font-size:14px;
  9227. letter-spacing:normal;
  9228. color:#000000;
  9229. vertical-align:none;
  9230. text-align:left;
  9231. text-transform:none;
  9232. background-color:transparent;
  9233. border-color:transparent;
  9234. }
  9235. #u20511_div {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:181px;
  9241. height:33px;
  9242. background:inherit;
  9243. background-color:rgba(255, 255, 255, 1);
  9244. border:none;
  9245. border-radius:0px;
  9246. -moz-box-shadow:none;
  9247. -webkit-box-shadow:none;
  9248. box-shadow:none;
  9249. font-family:'Microsoft YaHei', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:14px;
  9253. }
  9254. #u20511 {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:893px;
  9258. top:173px;
  9259. width:181px;
  9260. height:33px;
  9261. display:flex;
  9262. font-family:'Microsoft YaHei', sans-serif;
  9263. font-weight:400;
  9264. font-style:normal;
  9265. font-size:14px;
  9266. }
  9267. #u20511 .text {
  9268. position:absolute;
  9269. align-self:center;
  9270. padding:2px 2px 2px 2px;
  9271. box-sizing:border-box;
  9272. width:100%;
  9273. }
  9274. #u20511_div.disabled {
  9275. border-width:0px;
  9276. position:absolute;
  9277. left:0px;
  9278. top:0px;
  9279. width:181px;
  9280. height:33px;
  9281. background:inherit;
  9282. background-color:rgba(240, 240, 240, 1);
  9283. border:none;
  9284. border-radius:0px;
  9285. -moz-box-shadow:none;
  9286. -webkit-box-shadow:none;
  9287. box-shadow:none;
  9288. font-family:'Microsoft YaHei', sans-serif;
  9289. font-weight:400;
  9290. font-style:normal;
  9291. font-size:14px;
  9292. }
  9293. #u20511.disabled {
  9294. }
  9295. #u20512 {
  9296. border-width:0px;
  9297. position:absolute;
  9298. left:0px;
  9299. top:0px;
  9300. width:0px;
  9301. height:0px;
  9302. }
  9303. #u20513_div {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:0px;
  9307. top:0px;
  9308. width:200px;
  9309. height:40px;
  9310. background:inherit;
  9311. background-color:rgba(255, 255, 255, 1);
  9312. box-sizing:border-box;
  9313. border-width:1px;
  9314. border-style:solid;
  9315. border-color:rgba(201, 201, 201, 1);
  9316. border-radius:4px;
  9317. -moz-box-shadow:none;
  9318. -webkit-box-shadow:none;
  9319. box-shadow:none;
  9320. font-family:'Microsoft YaHei', sans-serif;
  9321. font-weight:400;
  9322. font-style:normal;
  9323. font-size:14px;
  9324. color:#CCCCCC;
  9325. text-align:left;
  9326. }
  9327. #u20513 {
  9328. border-width:0px;
  9329. position:absolute;
  9330. left:1092px;
  9331. top:172px;
  9332. width:200px;
  9333. height:40px;
  9334. display:flex;
  9335. font-family:'Microsoft YaHei', sans-serif;
  9336. font-weight:400;
  9337. font-style:normal;
  9338. font-size:14px;
  9339. color:#CCCCCC;
  9340. text-align:left;
  9341. }
  9342. #u20513 .text {
  9343. position:absolute;
  9344. align-self:center;
  9345. padding:2px 8px 2px 8px;
  9346. box-sizing:border-box;
  9347. width:100%;
  9348. }
  9349. #u20513_text {
  9350. border-width:0px;
  9351. word-wrap:break-word;
  9352. text-transform:none;
  9353. visibility:hidden;
  9354. }
  9355. #u20514_input {
  9356. position:absolute;
  9357. left:0px;
  9358. top:0px;
  9359. width:181px;
  9360. height:33px;
  9361. padding:2px 2px 2px 2px;
  9362. font-family:'Microsoft YaHei', sans-serif;
  9363. font-weight:400;
  9364. font-style:normal;
  9365. font-size:14px;
  9366. letter-spacing:normal;
  9367. color:#000000;
  9368. vertical-align:none;
  9369. text-align:left;
  9370. text-transform:none;
  9371. background-color:transparent;
  9372. border-color:transparent;
  9373. }
  9374. #u20514_input.disabled {
  9375. position:absolute;
  9376. left:0px;
  9377. top:0px;
  9378. width:181px;
  9379. height:33px;
  9380. padding:2px 2px 2px 2px;
  9381. font-family:'Microsoft YaHei', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:14px;
  9385. letter-spacing:normal;
  9386. color:#000000;
  9387. vertical-align:none;
  9388. text-align:left;
  9389. text-transform:none;
  9390. background-color:transparent;
  9391. border-color:transparent;
  9392. }
  9393. #u20514_div {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:181px;
  9399. height:33px;
  9400. background:inherit;
  9401. background-color:rgba(255, 255, 255, 1);
  9402. border:none;
  9403. border-radius:0px;
  9404. -moz-box-shadow:none;
  9405. -webkit-box-shadow:none;
  9406. box-shadow:none;
  9407. font-family:'Microsoft YaHei', sans-serif;
  9408. font-weight:400;
  9409. font-style:normal;
  9410. font-size:14px;
  9411. }
  9412. #u20514 {
  9413. border-width:0px;
  9414. position:absolute;
  9415. left:1103px;
  9416. top:173px;
  9417. width:181px;
  9418. height:33px;
  9419. display:flex;
  9420. font-family:'Microsoft YaHei', sans-serif;
  9421. font-weight:400;
  9422. font-style:normal;
  9423. font-size:14px;
  9424. }
  9425. #u20514 .text {
  9426. position:absolute;
  9427. align-self:center;
  9428. padding:2px 2px 2px 2px;
  9429. box-sizing:border-box;
  9430. width:100%;
  9431. }
  9432. #u20514_div.disabled {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:0px;
  9436. top:0px;
  9437. width:181px;
  9438. height:33px;
  9439. background:inherit;
  9440. background-color:rgba(240, 240, 240, 1);
  9441. border:none;
  9442. border-radius:0px;
  9443. -moz-box-shadow:none;
  9444. -webkit-box-shadow:none;
  9445. box-shadow:none;
  9446. font-family:'Microsoft YaHei', sans-serif;
  9447. font-weight:400;
  9448. font-style:normal;
  9449. font-size:14px;
  9450. }
  9451. #u20514.disabled {
  9452. }
  9453. #u20515_div {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:692px;
  9459. height:40px;
  9460. background:inherit;
  9461. background-color:rgba(255, 255, 255, 0);
  9462. border:none;
  9463. border-left:0px;
  9464. border-top:0px;
  9465. border-right:0px;
  9466. border-radius:0px;
  9467. border-bottom-right-radius:0px;
  9468. border-bottom-left-radius:0px;
  9469. -moz-box-shadow:none;
  9470. -webkit-box-shadow:none;
  9471. box-shadow:none;
  9472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9473. font-weight:400;
  9474. font-style:normal;
  9475. font-size:12px;
  9476. color:#D9001B;
  9477. }
  9478. #u20515 {
  9479. border-width:0px;
  9480. position:absolute;
  9481. left:787px;
  9482. top:273px;
  9483. width:692px;
  9484. height:40px;
  9485. display:flex;
  9486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9487. font-weight:400;
  9488. font-style:normal;
  9489. font-size:12px;
  9490. color:#D9001B;
  9491. }
  9492. #u20515 .text {
  9493. position:absolute;
  9494. align-self:center;
  9495. padding:0px 0px 0px 0px;
  9496. box-sizing:border-box;
  9497. width:100%;
  9498. }
  9499. #u20515_text {
  9500. border-width:0px;
  9501. white-space:nowrap;
  9502. text-transform:none;
  9503. }
  9504. #u20516_div {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:0px;
  9508. top:0px;
  9509. width:469px;
  9510. height:40px;
  9511. background:inherit;
  9512. background-color:rgba(255, 255, 255, 0);
  9513. border:none;
  9514. border-left:0px;
  9515. border-top:0px;
  9516. border-right:0px;
  9517. border-radius:0px;
  9518. border-bottom-right-radius:0px;
  9519. border-bottom-left-radius:0px;
  9520. -moz-box-shadow:none;
  9521. -webkit-box-shadow:none;
  9522. box-shadow:none;
  9523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9524. font-weight:400;
  9525. font-style:normal;
  9526. font-size:12px;
  9527. color:#D9001B;
  9528. }
  9529. #u20516 {
  9530. border-width:0px;
  9531. position:absolute;
  9532. left:775px;
  9533. top:473px;
  9534. width:469px;
  9535. height:40px;
  9536. display:flex;
  9537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9538. font-weight:400;
  9539. font-style:normal;
  9540. font-size:12px;
  9541. color:#D9001B;
  9542. }
  9543. #u20516 .text {
  9544. position:absolute;
  9545. align-self:center;
  9546. padding:0px 0px 0px 0px;
  9547. box-sizing:border-box;
  9548. width:100%;
  9549. }
  9550. #u20516_text {
  9551. border-width:0px;
  9552. white-space:nowrap;
  9553. text-transform:none;
  9554. }
  9555. #u20518 {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:0px;
  9559. top:0px;
  9560. width:0px;
  9561. height:0px;
  9562. }
  9563. #u20519_div {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:0px;
  9567. top:0px;
  9568. width:200px;
  9569. height:1193px;
  9570. background:inherit;
  9571. background-color:rgba(255, 255, 255, 1);
  9572. border:none;
  9573. border-radius:0px;
  9574. -moz-box-shadow:none;
  9575. -webkit-box-shadow:none;
  9576. box-shadow:none;
  9577. }
  9578. #u20519 {
  9579. border-width:0px;
  9580. position:absolute;
  9581. left:120px;
  9582. top:50px;
  9583. width:200px;
  9584. height:1193px;
  9585. display:flex;
  9586. }
  9587. #u20519 .text {
  9588. position:absolute;
  9589. align-self:center;
  9590. padding:2px 2px 2px 2px;
  9591. box-sizing:border-box;
  9592. width:100%;
  9593. }
  9594. #u20519_text {
  9595. border-width:0px;
  9596. word-wrap:break-word;
  9597. text-transform:none;
  9598. visibility:hidden;
  9599. }
  9600. #u20520_div {
  9601. border-width:0px;
  9602. position:absolute;
  9603. left:0px;
  9604. top:0px;
  9605. width:200px;
  9606. height:60px;
  9607. background:inherit;
  9608. background-color:rgba(224, 231, 247, 1);
  9609. border:none;
  9610. border-radius:0px;
  9611. -moz-box-shadow:none;
  9612. -webkit-box-shadow:none;
  9613. box-shadow:none;
  9614. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9615. font-weight:500;
  9616. font-style:normal;
  9617. font-size:18px;
  9618. }
  9619. #u20520 {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:120px;
  9623. top:50px;
  9624. width:200px;
  9625. height:60px;
  9626. display:flex;
  9627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9628. font-weight:500;
  9629. font-style:normal;
  9630. font-size:18px;
  9631. }
  9632. #u20520 .text {
  9633. position:absolute;
  9634. align-self:center;
  9635. padding:0px 0px 0px 20px;
  9636. box-sizing:border-box;
  9637. width:100%;
  9638. }
  9639. #u20520_text {
  9640. border-width:0px;
  9641. word-wrap:break-word;
  9642. text-transform:none;
  9643. }
  9644. #u20521_div {
  9645. border-width:0px;
  9646. position:absolute;
  9647. left:0px;
  9648. top:0px;
  9649. width:65px;
  9650. height:22px;
  9651. background:inherit;
  9652. background-color:rgba(255, 255, 255, 0);
  9653. border:none;
  9654. border-radius:0px;
  9655. -moz-box-shadow:none;
  9656. -webkit-box-shadow:none;
  9657. box-shadow:none;
  9658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9659. font-weight:400;
  9660. font-style:normal;
  9661. font-size:16px;
  9662. }
  9663. #u20521 {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:150px;
  9667. top:164px;
  9668. width:65px;
  9669. height:22px;
  9670. display:flex;
  9671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9672. font-weight:400;
  9673. font-style:normal;
  9674. font-size:16px;
  9675. }
  9676. #u20521 .text {
  9677. position:absolute;
  9678. align-self:flex-start;
  9679. padding:0px 0px 0px 0px;
  9680. box-sizing:border-box;
  9681. width:100%;
  9682. }
  9683. #u20521_text {
  9684. border-width:0px;
  9685. white-space:nowrap;
  9686. text-transform:none;
  9687. }
  9688. #u20522_div {
  9689. border-width:0px;
  9690. position:absolute;
  9691. left:0px;
  9692. top:0px;
  9693. width:61px;
  9694. height:17px;
  9695. background:inherit;
  9696. background-color:rgba(255, 255, 255, 0);
  9697. border:none;
  9698. border-radius:0px;
  9699. -moz-box-shadow:none;
  9700. -webkit-box-shadow:none;
  9701. box-shadow:none;
  9702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9703. font-weight:400;
  9704. font-style:normal;
  9705. font-size:12px;
  9706. color:#AAAAAA;
  9707. }
  9708. #u20522 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:150px;
  9712. top:128px;
  9713. width:61px;
  9714. height:17px;
  9715. display:flex;
  9716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9717. font-weight:400;
  9718. font-style:normal;
  9719. font-size:12px;
  9720. color:#AAAAAA;
  9721. }
  9722. #u20522 .text {
  9723. position:absolute;
  9724. align-self:flex-start;
  9725. padding:0px 0px 0px 0px;
  9726. box-sizing:border-box;
  9727. width:100%;
  9728. }
  9729. #u20522_text {
  9730. border-width:0px;
  9731. white-space:nowrap;
  9732. text-transform:none;
  9733. }
  9734. #u20523_img {
  9735. border-width:0px;
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:201px;
  9740. height:2px;
  9741. }
  9742. #u20523 {
  9743. border-width:0px;
  9744. position:absolute;
  9745. left:120px;
  9746. top:292px;
  9747. width:200px;
  9748. height:1px;
  9749. display:flex;
  9750. }
  9751. #u20523 .text {
  9752. position:absolute;
  9753. align-self:center;
  9754. padding:2px 2px 2px 2px;
  9755. box-sizing:border-box;
  9756. width:100%;
  9757. }
  9758. #u20523_text {
  9759. border-width:0px;
  9760. word-wrap:break-word;
  9761. text-transform:none;
  9762. visibility:hidden;
  9763. }
  9764. #u20524_div {
  9765. border-width:0px;
  9766. position:absolute;
  9767. left:0px;
  9768. top:0px;
  9769. width:65px;
  9770. height:22px;
  9771. background:inherit;
  9772. background-color:rgba(255, 255, 255, 0);
  9773. border:none;
  9774. border-radius:0px;
  9775. -moz-box-shadow:none;
  9776. -webkit-box-shadow:none;
  9777. box-shadow:none;
  9778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9779. font-weight:400;
  9780. font-style:normal;
  9781. font-size:16px;
  9782. }
  9783. #u20524 {
  9784. border-width:0px;
  9785. position:absolute;
  9786. left:150px;
  9787. top:248px;
  9788. width:65px;
  9789. height:22px;
  9790. display:flex;
  9791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9792. font-weight:400;
  9793. font-style:normal;
  9794. font-size:16px;
  9795. }
  9796. #u20524 .text {
  9797. position:absolute;
  9798. align-self:flex-start;
  9799. padding:0px 0px 0px 0px;
  9800. box-sizing:border-box;
  9801. width:100%;
  9802. }
  9803. #u20524_text {
  9804. border-width:0px;
  9805. white-space:nowrap;
  9806. text-transform:none;
  9807. }
  9808. #u20525_div {
  9809. border-width:0px;
  9810. position:absolute;
  9811. left:0px;
  9812. top:0px;
  9813. width:65px;
  9814. height:22px;
  9815. background:inherit;
  9816. background-color:rgba(255, 255, 255, 0);
  9817. border:none;
  9818. border-radius:0px;
  9819. -moz-box-shadow:none;
  9820. -webkit-box-shadow:none;
  9821. box-shadow:none;
  9822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9823. font-weight:400;
  9824. font-style:normal;
  9825. font-size:16px;
  9826. }
  9827. #u20525 {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:150px;
  9831. top:349px;
  9832. width:65px;
  9833. height:22px;
  9834. display:flex;
  9835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9836. font-weight:400;
  9837. font-style:normal;
  9838. font-size:16px;
  9839. }
  9840. #u20525 .text {
  9841. position:absolute;
  9842. align-self:flex-start;
  9843. padding:0px 0px 0px 0px;
  9844. box-sizing:border-box;
  9845. width:100%;
  9846. }
  9847. #u20525_text {
  9848. border-width:0px;
  9849. white-space:nowrap;
  9850. text-transform:none;
  9851. }
  9852. #u20526_div {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:0px;
  9856. top:0px;
  9857. width:49px;
  9858. height:17px;
  9859. background:inherit;
  9860. background-color:rgba(255, 255, 255, 0);
  9861. border:none;
  9862. border-radius:0px;
  9863. -moz-box-shadow:none;
  9864. -webkit-box-shadow:none;
  9865. box-shadow:none;
  9866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9867. font-weight:400;
  9868. font-style:normal;
  9869. font-size:12px;
  9870. color:#AAAAAA;
  9871. }
  9872. #u20526 {
  9873. border-width:0px;
  9874. position:absolute;
  9875. left:150px;
  9876. top:313px;
  9877. width:49px;
  9878. height:17px;
  9879. display:flex;
  9880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9881. font-weight:400;
  9882. font-style:normal;
  9883. font-size:12px;
  9884. color:#AAAAAA;
  9885. }
  9886. #u20526 .text {
  9887. position:absolute;
  9888. align-self:flex-start;
  9889. padding:0px 0px 0px 0px;
  9890. box-sizing:border-box;
  9891. width:100%;
  9892. }
  9893. #u20526_text {
  9894. border-width:0px;
  9895. white-space:nowrap;
  9896. text-transform:none;
  9897. }
  9898. #u20527_div {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:0px;
  9902. top:0px;
  9903. width:65px;
  9904. height:22px;
  9905. background:inherit;
  9906. background-color:rgba(255, 255, 255, 0);
  9907. border:none;
  9908. border-radius:0px;
  9909. -moz-box-shadow:none;
  9910. -webkit-box-shadow:none;
  9911. box-shadow:none;
  9912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9913. font-weight:400;
  9914. font-style:normal;
  9915. font-size:16px;
  9916. }
  9917. #u20527 {
  9918. border-width:0px;
  9919. position:absolute;
  9920. left:150px;
  9921. top:391px;
  9922. width:65px;
  9923. height:22px;
  9924. display:flex;
  9925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9926. font-weight:400;
  9927. font-style:normal;
  9928. font-size:16px;
  9929. }
  9930. #u20527 .text {
  9931. position:absolute;
  9932. align-self:flex-start;
  9933. padding:0px 0px 0px 0px;
  9934. box-sizing:border-box;
  9935. width:100%;
  9936. }
  9937. #u20527_text {
  9938. border-width:0px;
  9939. white-space:nowrap;
  9940. text-transform:none;
  9941. }
  9942. #u20528_img {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:0px;
  9946. top:0px;
  9947. width:201px;
  9948. height:2px;
  9949. }
  9950. #u20528 {
  9951. border-width:0px;
  9952. position:absolute;
  9953. left:120px;
  9954. top:473px;
  9955. width:200px;
  9956. height:1px;
  9957. display:flex;
  9958. }
  9959. #u20528 .text {
  9960. position:absolute;
  9961. align-self:center;
  9962. padding:2px 2px 2px 2px;
  9963. box-sizing:border-box;
  9964. width:100%;
  9965. }
  9966. #u20528_text {
  9967. border-width:0px;
  9968. word-wrap:break-word;
  9969. text-transform:none;
  9970. visibility:hidden;
  9971. }
  9972. #u20529_div {
  9973. border-width:0px;
  9974. position:absolute;
  9975. left:0px;
  9976. top:0px;
  9977. width:49px;
  9978. height:22px;
  9979. background:inherit;
  9980. background-color:rgba(255, 255, 255, 0);
  9981. border:none;
  9982. border-radius:0px;
  9983. -moz-box-shadow:none;
  9984. -webkit-box-shadow:none;
  9985. box-shadow:none;
  9986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9987. font-weight:400;
  9988. font-style:normal;
  9989. font-size:16px;
  9990. }
  9991. #u20529 {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:150px;
  9995. top:530px;
  9996. width:49px;
  9997. height:22px;
  9998. display:flex;
  9999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10000. font-weight:400;
  10001. font-style:normal;
  10002. font-size:16px;
  10003. }
  10004. #u20529 .text {
  10005. position:absolute;
  10006. align-self:flex-start;
  10007. padding:0px 0px 0px 0px;
  10008. box-sizing:border-box;
  10009. width:100%;
  10010. }
  10011. #u20529_text {
  10012. border-width:0px;
  10013. white-space:nowrap;
  10014. text-transform:none;
  10015. }
  10016. #u20530_div {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:0px;
  10020. top:0px;
  10021. width:49px;
  10022. height:17px;
  10023. background:inherit;
  10024. background-color:rgba(255, 255, 255, 0);
  10025. border:none;
  10026. border-radius:0px;
  10027. -moz-box-shadow:none;
  10028. -webkit-box-shadow:none;
  10029. box-shadow:none;
  10030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10031. font-weight:400;
  10032. font-style:normal;
  10033. font-size:12px;
  10034. color:#AAAAAA;
  10035. }
  10036. #u20530 {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:150px;
  10040. top:494px;
  10041. width:49px;
  10042. height:17px;
  10043. display:flex;
  10044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10045. font-weight:400;
  10046. font-style:normal;
  10047. font-size:12px;
  10048. color:#AAAAAA;
  10049. }
  10050. #u20530 .text {
  10051. position:absolute;
  10052. align-self:flex-start;
  10053. padding:0px 0px 0px 0px;
  10054. box-sizing:border-box;
  10055. width:100%;
  10056. }
  10057. #u20530_text {
  10058. border-width:0px;
  10059. white-space:nowrap;
  10060. text-transform:none;
  10061. }
  10062. #u20531_div {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:0px;
  10066. top:0px;
  10067. width:65px;
  10068. height:22px;
  10069. background:inherit;
  10070. background-color:rgba(255, 255, 255, 0);
  10071. border:none;
  10072. border-radius:0px;
  10073. -moz-box-shadow:none;
  10074. -webkit-box-shadow:none;
  10075. box-shadow:none;
  10076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10077. font-weight:400;
  10078. font-style:normal;
  10079. font-size:16px;
  10080. }
  10081. #u20531 {
  10082. border-width:0px;
  10083. position:absolute;
  10084. left:150px;
  10085. top:206px;
  10086. width:65px;
  10087. height:22px;
  10088. display:flex;
  10089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10090. font-weight:400;
  10091. font-style:normal;
  10092. font-size:16px;
  10093. }
  10094. #u20531 .text {
  10095. position:absolute;
  10096. align-self:flex-start;
  10097. padding:0px 0px 0px 0px;
  10098. box-sizing:border-box;
  10099. width:100%;
  10100. }
  10101. #u20531_text {
  10102. border-width:0px;
  10103. white-space:nowrap;
  10104. text-transform:none;
  10105. }
  10106. #u20532_div {
  10107. border-width:0px;
  10108. position:absolute;
  10109. left:0px;
  10110. top:0px;
  10111. width:65px;
  10112. height:22px;
  10113. background:inherit;
  10114. background-color:rgba(255, 255, 255, 0);
  10115. border:none;
  10116. border-radius:0px;
  10117. -moz-box-shadow:none;
  10118. -webkit-box-shadow:none;
  10119. box-shadow:none;
  10120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10121. font-weight:400;
  10122. font-style:normal;
  10123. font-size:16px;
  10124. }
  10125. #u20532 {
  10126. border-width:0px;
  10127. position:absolute;
  10128. left:150px;
  10129. top:433px;
  10130. width:65px;
  10131. height:22px;
  10132. display:flex;
  10133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10134. font-weight:400;
  10135. font-style:normal;
  10136. font-size:16px;
  10137. }
  10138. #u20532 .text {
  10139. position:absolute;
  10140. align-self:flex-start;
  10141. padding:0px 0px 0px 0px;
  10142. box-sizing:border-box;
  10143. width:100%;
  10144. }
  10145. #u20532_text {
  10146. border-width:0px;
  10147. white-space:nowrap;
  10148. text-transform:none;
  10149. }
  10150. #u20533 {
  10151. border-width:0px;
  10152. position:absolute;
  10153. left:0px;
  10154. top:0px;
  10155. width:0px;
  10156. height:0px;
  10157. }
  10158. #u20534_div {
  10159. border-width:0px;
  10160. position:absolute;
  10161. left:0px;
  10162. top:0px;
  10163. width:200px;
  10164. height:40px;
  10165. background:inherit;
  10166. background-color:rgba(255, 255, 255, 1);
  10167. box-sizing:border-box;
  10168. border-width:1px;
  10169. border-style:solid;
  10170. border-color:rgba(215, 215, 215, 1);
  10171. border-radius:4px;
  10172. -moz-box-shadow:none;
  10173. -webkit-box-shadow:none;
  10174. box-shadow:none;
  10175. font-size:14px;
  10176. }
  10177. #u20534 {
  10178. border-width:0px;
  10179. position:absolute;
  10180. left:672px;
  10181. top:222px;
  10182. width:200px;
  10183. height:40px;
  10184. display:flex;
  10185. font-size:14px;
  10186. }
  10187. #u20534 .text {
  10188. position:absolute;
  10189. align-self:center;
  10190. padding:2px 2px 2px 2px;
  10191. box-sizing:border-box;
  10192. width:100%;
  10193. }
  10194. #u20534_text {
  10195. border-width:0px;
  10196. word-wrap:break-word;
  10197. text-transform:none;
  10198. visibility:hidden;
  10199. }
  10200. #u20535_input {
  10201. position:absolute;
  10202. left:0px;
  10203. top:0px;
  10204. width:191px;
  10205. height:31px;
  10206. padding:2px 2px 2px 2px;
  10207. font-family:'ArialMT', 'Arial', sans-serif;
  10208. font-weight:400;
  10209. font-style:normal;
  10210. font-size:14px;
  10211. letter-spacing:normal;
  10212. color:#AAAAAA;
  10213. vertical-align:none;
  10214. text-align:left;
  10215. text-transform:none;
  10216. background-color:transparent;
  10217. border-color:transparent;
  10218. }
  10219. #u20535_input.disabled {
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:191px;
  10224. height:31px;
  10225. padding:2px 2px 2px 2px;
  10226. font-family:'ArialMT', 'Arial', sans-serif;
  10227. font-weight:400;
  10228. font-style:normal;
  10229. font-size:14px;
  10230. letter-spacing:normal;
  10231. color:#AAAAAA;
  10232. vertical-align:none;
  10233. text-align:left;
  10234. text-transform:none;
  10235. background-color:transparent;
  10236. border-color:transparent;
  10237. }
  10238. #u20535_div {
  10239. border-width:0px;
  10240. position:absolute;
  10241. left:0px;
  10242. top:0px;
  10243. width:191px;
  10244. height:31px;
  10245. background:inherit;
  10246. background-color:rgba(255, 255, 255, 1);
  10247. border:none;
  10248. border-radius:0px;
  10249. -moz-box-shadow:none;
  10250. -webkit-box-shadow:none;
  10251. box-shadow:none;
  10252. font-size:14px;
  10253. color:#AAAAAA;
  10254. }
  10255. #u20535 {
  10256. border-width:0px;
  10257. position:absolute;
  10258. left:678px;
  10259. top:225px;
  10260. width:191px;
  10261. height:31px;
  10262. display:flex;
  10263. font-size:14px;
  10264. color:#AAAAAA;
  10265. }
  10266. #u20535 .text {
  10267. position:absolute;
  10268. align-self:flex-start;
  10269. padding:2px 2px 2px 2px;
  10270. box-sizing:border-box;
  10271. width:100%;
  10272. }
  10273. #u20535_div.disabled {
  10274. border-width:0px;
  10275. position:absolute;
  10276. left:0px;
  10277. top:0px;
  10278. width:191px;
  10279. height:31px;
  10280. background:inherit;
  10281. background-color:rgba(240, 240, 240, 1);
  10282. border:none;
  10283. border-radius:0px;
  10284. -moz-box-shadow:none;
  10285. -webkit-box-shadow:none;
  10286. box-shadow:none;
  10287. font-size:14px;
  10288. color:#AAAAAA;
  10289. }
  10290. #u20535.disabled {
  10291. }
  10292. .u20535_input_option {
  10293. font-size:14px;
  10294. }
  10295. #u20536 {
  10296. border-width:0px;
  10297. position:absolute;
  10298. left:0px;
  10299. top:0px;
  10300. width:0px;
  10301. height:0px;
  10302. }
  10303. #u20537_div {
  10304. border-width:0px;
  10305. position:absolute;
  10306. left:0px;
  10307. top:0px;
  10308. width:200px;
  10309. height:40px;
  10310. background:inherit;
  10311. background-color:rgba(255, 255, 255, 1);
  10312. box-sizing:border-box;
  10313. border-width:1px;
  10314. border-style:solid;
  10315. border-color:rgba(201, 201, 201, 1);
  10316. border-radius:4px;
  10317. -moz-box-shadow:none;
  10318. -webkit-box-shadow:none;
  10319. box-shadow:none;
  10320. font-family:'Microsoft YaHei', sans-serif;
  10321. font-weight:400;
  10322. font-style:normal;
  10323. font-size:14px;
  10324. color:#CCCCCC;
  10325. text-align:left;
  10326. }
  10327. #u20537 {
  10328. border-width:0px;
  10329. position:absolute;
  10330. left:882px;
  10331. top:222px;
  10332. width:200px;
  10333. height:40px;
  10334. display:flex;
  10335. font-family:'Microsoft YaHei', sans-serif;
  10336. font-weight:400;
  10337. font-style:normal;
  10338. font-size:14px;
  10339. color:#CCCCCC;
  10340. text-align:left;
  10341. }
  10342. #u20537 .text {
  10343. position:absolute;
  10344. align-self:center;
  10345. padding:2px 8px 2px 8px;
  10346. box-sizing:border-box;
  10347. width:100%;
  10348. }
  10349. #u20537_text {
  10350. border-width:0px;
  10351. word-wrap:break-word;
  10352. text-transform:none;
  10353. visibility:hidden;
  10354. }
  10355. #u20538_input {
  10356. position:absolute;
  10357. left:0px;
  10358. top:0px;
  10359. width:181px;
  10360. height:33px;
  10361. padding:2px 2px 2px 2px;
  10362. font-family:'Microsoft YaHei', sans-serif;
  10363. font-weight:400;
  10364. font-style:normal;
  10365. font-size:14px;
  10366. letter-spacing:normal;
  10367. color:#000000;
  10368. vertical-align:none;
  10369. text-align:left;
  10370. text-transform:none;
  10371. background-color:transparent;
  10372. border-color:transparent;
  10373. }
  10374. #u20538_input.disabled {
  10375. position:absolute;
  10376. left:0px;
  10377. top:0px;
  10378. width:181px;
  10379. height:33px;
  10380. padding:2px 2px 2px 2px;
  10381. font-family:'Microsoft YaHei', sans-serif;
  10382. font-weight:400;
  10383. font-style:normal;
  10384. font-size:14px;
  10385. letter-spacing:normal;
  10386. color:#000000;
  10387. vertical-align:none;
  10388. text-align:left;
  10389. text-transform:none;
  10390. background-color:transparent;
  10391. border-color:transparent;
  10392. }
  10393. #u20538_div {
  10394. border-width:0px;
  10395. position:absolute;
  10396. left:0px;
  10397. top:0px;
  10398. width:181px;
  10399. height:33px;
  10400. background:inherit;
  10401. background-color:rgba(255, 255, 255, 1);
  10402. border:none;
  10403. border-radius:0px;
  10404. -moz-box-shadow:none;
  10405. -webkit-box-shadow:none;
  10406. box-shadow:none;
  10407. font-family:'Microsoft YaHei', sans-serif;
  10408. font-weight:400;
  10409. font-style:normal;
  10410. font-size:14px;
  10411. }
  10412. #u20538 {
  10413. border-width:0px;
  10414. position:absolute;
  10415. left:893px;
  10416. top:223px;
  10417. width:181px;
  10418. height:33px;
  10419. display:flex;
  10420. font-family:'Microsoft YaHei', sans-serif;
  10421. font-weight:400;
  10422. font-style:normal;
  10423. font-size:14px;
  10424. }
  10425. #u20538 .text {
  10426. position:absolute;
  10427. align-self:center;
  10428. padding:2px 2px 2px 2px;
  10429. box-sizing:border-box;
  10430. width:100%;
  10431. }
  10432. #u20538_div.disabled {
  10433. border-width:0px;
  10434. position:absolute;
  10435. left:0px;
  10436. top:0px;
  10437. width:181px;
  10438. height:33px;
  10439. background:inherit;
  10440. background-color:rgba(240, 240, 240, 1);
  10441. border:none;
  10442. border-radius:0px;
  10443. -moz-box-shadow:none;
  10444. -webkit-box-shadow:none;
  10445. box-shadow:none;
  10446. font-family:'Microsoft YaHei', sans-serif;
  10447. font-weight:400;
  10448. font-style:normal;
  10449. font-size:14px;
  10450. }
  10451. #u20538.disabled {
  10452. }
  10453. #u20539 {
  10454. border-width:0px;
  10455. position:absolute;
  10456. left:0px;
  10457. top:0px;
  10458. width:0px;
  10459. height:0px;
  10460. }
  10461. #u20540_div {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:0px;
  10465. top:0px;
  10466. width:200px;
  10467. height:40px;
  10468. background:inherit;
  10469. background-color:rgba(255, 255, 255, 1);
  10470. box-sizing:border-box;
  10471. border-width:1px;
  10472. border-style:solid;
  10473. border-color:rgba(201, 201, 201, 1);
  10474. border-radius:4px;
  10475. -moz-box-shadow:none;
  10476. -webkit-box-shadow:none;
  10477. box-shadow:none;
  10478. font-family:'Microsoft YaHei', sans-serif;
  10479. font-weight:400;
  10480. font-style:normal;
  10481. font-size:14px;
  10482. color:#CCCCCC;
  10483. text-align:left;
  10484. }
  10485. #u20540 {
  10486. border-width:0px;
  10487. position:absolute;
  10488. left:1092px;
  10489. top:222px;
  10490. width:200px;
  10491. height:40px;
  10492. display:flex;
  10493. font-family:'Microsoft YaHei', sans-serif;
  10494. font-weight:400;
  10495. font-style:normal;
  10496. font-size:14px;
  10497. color:#CCCCCC;
  10498. text-align:left;
  10499. }
  10500. #u20540 .text {
  10501. position:absolute;
  10502. align-self:center;
  10503. padding:2px 8px 2px 8px;
  10504. box-sizing:border-box;
  10505. width:100%;
  10506. }
  10507. #u20540_text {
  10508. border-width:0px;
  10509. word-wrap:break-word;
  10510. text-transform:none;
  10511. visibility:hidden;
  10512. }
  10513. #u20541_input {
  10514. position:absolute;
  10515. left:0px;
  10516. top:0px;
  10517. width:181px;
  10518. height:33px;
  10519. padding:2px 2px 2px 2px;
  10520. font-family:'Microsoft YaHei', sans-serif;
  10521. font-weight:400;
  10522. font-style:normal;
  10523. font-size:14px;
  10524. letter-spacing:normal;
  10525. color:#000000;
  10526. vertical-align:none;
  10527. text-align:left;
  10528. text-transform:none;
  10529. background-color:transparent;
  10530. border-color:transparent;
  10531. }
  10532. #u20541_input.disabled {
  10533. position:absolute;
  10534. left:0px;
  10535. top:0px;
  10536. width:181px;
  10537. height:33px;
  10538. padding:2px 2px 2px 2px;
  10539. font-family:'Microsoft YaHei', sans-serif;
  10540. font-weight:400;
  10541. font-style:normal;
  10542. font-size:14px;
  10543. letter-spacing:normal;
  10544. color:#000000;
  10545. vertical-align:none;
  10546. text-align:left;
  10547. text-transform:none;
  10548. background-color:transparent;
  10549. border-color:transparent;
  10550. }
  10551. #u20541_div {
  10552. border-width:0px;
  10553. position:absolute;
  10554. left:0px;
  10555. top:0px;
  10556. width:181px;
  10557. height:33px;
  10558. background:inherit;
  10559. background-color:rgba(255, 255, 255, 1);
  10560. border:none;
  10561. border-radius:0px;
  10562. -moz-box-shadow:none;
  10563. -webkit-box-shadow:none;
  10564. box-shadow:none;
  10565. font-family:'Microsoft YaHei', sans-serif;
  10566. font-weight:400;
  10567. font-style:normal;
  10568. font-size:14px;
  10569. }
  10570. #u20541 {
  10571. border-width:0px;
  10572. position:absolute;
  10573. left:1103px;
  10574. top:223px;
  10575. width:181px;
  10576. height:33px;
  10577. display:flex;
  10578. font-family:'Microsoft YaHei', sans-serif;
  10579. font-weight:400;
  10580. font-style:normal;
  10581. font-size:14px;
  10582. }
  10583. #u20541 .text {
  10584. position:absolute;
  10585. align-self:center;
  10586. padding:2px 2px 2px 2px;
  10587. box-sizing:border-box;
  10588. width:100%;
  10589. }
  10590. #u20541_div.disabled {
  10591. border-width:0px;
  10592. position:absolute;
  10593. left:0px;
  10594. top:0px;
  10595. width:181px;
  10596. height:33px;
  10597. background:inherit;
  10598. background-color:rgba(240, 240, 240, 1);
  10599. border:none;
  10600. border-radius:0px;
  10601. -moz-box-shadow:none;
  10602. -webkit-box-shadow:none;
  10603. box-shadow:none;
  10604. font-family:'Microsoft YaHei', sans-serif;
  10605. font-weight:400;
  10606. font-style:normal;
  10607. font-size:14px;
  10608. }
  10609. #u20541.disabled {
  10610. }
  10611. #u20542_div {
  10612. border-width:0px;
  10613. position:absolute;
  10614. left:0px;
  10615. top:0px;
  10616. width:37px;
  10617. height:40px;
  10618. background:inherit;
  10619. background-color:rgba(255, 255, 255, 0);
  10620. border:none;
  10621. border-left:0px;
  10622. border-top:0px;
  10623. border-right:0px;
  10624. border-radius:0px;
  10625. border-bottom-right-radius:0px;
  10626. border-bottom-left-radius:0px;
  10627. -moz-box-shadow:none;
  10628. -webkit-box-shadow:none;
  10629. box-shadow:none;
  10630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10631. font-weight:400;
  10632. font-style:normal;
  10633. font-size:14px;
  10634. color:#1890FF;
  10635. }
  10636. #u20542 {
  10637. border-width:0px;
  10638. position:absolute;
  10639. left:672px;
  10640. top:262px;
  10641. width:37px;
  10642. height:40px;
  10643. display:flex;
  10644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10645. font-weight:400;
  10646. font-style:normal;
  10647. font-size:14px;
  10648. color:#1890FF;
  10649. }
  10650. #u20542 .text {
  10651. position:absolute;
  10652. align-self:center;
  10653. padding:0px 0px 0px 0px;
  10654. box-sizing:border-box;
  10655. width:100%;
  10656. }
  10657. #u20542_text {
  10658. border-width:0px;
  10659. white-space:nowrap;
  10660. text-transform:none;
  10661. }
  10662. #u20543_div {
  10663. border-width:0px;
  10664. position:absolute;
  10665. left:0px;
  10666. top:0px;
  10667. width:29px;
  10668. height:40px;
  10669. background:inherit;
  10670. background-color:rgba(255, 255, 255, 0);
  10671. border:none;
  10672. border-left:0px;
  10673. border-top:0px;
  10674. border-right:0px;
  10675. border-radius:0px;
  10676. border-bottom-right-radius:0px;
  10677. border-bottom-left-radius:0px;
  10678. -moz-box-shadow:none;
  10679. -webkit-box-shadow:none;
  10680. box-shadow:none;
  10681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10682. font-weight:400;
  10683. font-style:normal;
  10684. font-size:14px;
  10685. color:#1890FF;
  10686. }
  10687. #u20543 {
  10688. border-width:0px;
  10689. position:absolute;
  10690. left:1301px;
  10691. top:222px;
  10692. width:29px;
  10693. height:40px;
  10694. display:flex;
  10695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10696. font-weight:400;
  10697. font-style:normal;
  10698. font-size:14px;
  10699. color:#1890FF;
  10700. }
  10701. #u20543 .text {
  10702. position:absolute;
  10703. align-self:center;
  10704. padding:0px 0px 0px 0px;
  10705. box-sizing:border-box;
  10706. width:100%;
  10707. }
  10708. #u20543_text {
  10709. border-width:0px;
  10710. white-space:nowrap;
  10711. text-transform:none;
  10712. }