styles.css 108 KB

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