styles.css 122 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015
  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. #u39688_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. #u39688 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u39688 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u39688_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u39689_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. #u39689 {
  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. #u39689 .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. #u39689_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u39690_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. #u39690 {
  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. #u39690 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u39690_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u39691 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u39692_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u39692 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u39692 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u39692_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u39693_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. #u39693 {
  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. #u39693 .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. #u39693_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u39694_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. #u39694 {
  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. #u39694 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u39694_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u39695 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u39696_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. #u39696_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. #u39696_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. #u39696 {
  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. #u39696 .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. #u39696_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. #u39696.disabled {
  356. }
  357. .u39696_input_option {
  358. font-size:14px;
  359. }
  360. #u39697_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u39697 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u39697 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u39697_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u39698_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. #u39698 {
  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. #u39698 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u39698_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u39699_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. #u39699 {
  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. #u39699 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u39699_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u39700 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u39701_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. #u39701 {
  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. #u39701 .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. #u39701_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u39702_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u39702 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u39702 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u39702_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u39703 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u39704_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. #u39704 {
  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. #u39704 .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. #u39704_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u39705_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u39705 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u39705 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u39705_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u39706 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u39707_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. #u39707 {
  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. #u39707 .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. #u39707_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u39708_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u39708 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u39708 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u39708_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u39709 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u39710_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. #u39710 {
  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. #u39710 .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. #u39710_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u39711_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u39711 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u39711 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u39711_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u39712 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u39713_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. #u39713 {
  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. #u39713 .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. #u39713_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u39714_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u39714 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u39714 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u39714_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u39715 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u39716_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. #u39716 {
  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. #u39716 .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. #u39716_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u39717_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u39717 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u39717 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u39717_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u39718 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u39719_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. #u39719 {
  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. #u39719 .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. #u39719_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u39720_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u39720 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u39720 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u39720_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u39721 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u39722_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. #u39722 {
  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. #u39722 .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. #u39722_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u39723_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u39723 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u39723 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u39723_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u39724 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u39725_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. #u39725 {
  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. #u39725 .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. #u39725_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u39726_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u39726 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u39726 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u39726_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u39727 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u39728_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. #u39728 {
  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. #u39728 .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. #u39728_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u39729_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u39729 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u39729 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u39729_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u39730_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. #u39730 {
  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. #u39730 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u39730_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u39731_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u39731 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u39731 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u39731_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u39732_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. #u39732 {
  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. #u39732 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u39732_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u39733_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u39733 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u39733 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u39733_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u39734 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u39735_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. #u39735 {
  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. #u39735 .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. #u39735_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u39736_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u39736 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u39736 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u39736_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u39737 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u39738_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. #u39738 {
  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. #u39738 .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. #u39738_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u39739_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u39739 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u39739 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u39739_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u39740_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1255px;
  1644. height:1158px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u39740 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:334px;
  1657. top:51px;
  1658. width:1255px;
  1659. height:1158px;
  1660. display:flex;
  1661. }
  1662. #u39740 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u39740_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u39741_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-left:0px;
  1686. border-top:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-bottom-right-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1695. font-weight:400;
  1696. font-style:normal;
  1697. font-size:18px;
  1698. }
  1699. #u39741 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:354px;
  1703. top:51px;
  1704. width:73px;
  1705. height:50px;
  1706. display:flex;
  1707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:18px;
  1711. }
  1712. #u39741 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:0px 0px 0px 0px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u39741_text {
  1720. border-width:0px;
  1721. white-space:nowrap;
  1722. text-transform:none;
  1723. }
  1724. #u39742 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:354px;
  1728. top:191px;
  1729. width:1215px;
  1730. height:433px;
  1731. }
  1732. #u39743_img {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:131px;
  1738. height:38px;
  1739. }
  1740. #u39743 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:131px;
  1746. height:38px;
  1747. display:flex;
  1748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. font-size:12px;
  1752. color:#FFFFFF;
  1753. }
  1754. #u39743 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 0px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u39743_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. }
  1766. #u39744_img {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:105px;
  1772. height:38px;
  1773. }
  1774. #u39744 {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:131px;
  1778. top:0px;
  1779. width:105px;
  1780. height:38px;
  1781. display:flex;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:12px;
  1786. color:#FFFFFF;
  1787. }
  1788. #u39744 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:2px 2px 2px 0px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u39744_text {
  1796. border-width:0px;
  1797. word-wrap:break-word;
  1798. text-transform:none;
  1799. }
  1800. #u39745_img {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:120px;
  1806. height:38px;
  1807. }
  1808. #u39745 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:236px;
  1812. top:0px;
  1813. width:120px;
  1814. height:38px;
  1815. display:flex;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:12px;
  1820. color:#FFFFFF;
  1821. }
  1822. #u39745 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 2px 2px 0px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u39745_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. }
  1834. #u39746_img {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:105px;
  1840. height:38px;
  1841. }
  1842. #u39746 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:356px;
  1846. top:0px;
  1847. width:105px;
  1848. height:38px;
  1849. display:flex;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:12px;
  1854. color:#FFFFFF;
  1855. }
  1856. #u39746 .text {
  1857. position:absolute;
  1858. align-self:center;
  1859. padding:2px 2px 2px 0px;
  1860. box-sizing:border-box;
  1861. width:100%;
  1862. }
  1863. #u39746_text {
  1864. border-width:0px;
  1865. word-wrap:break-word;
  1866. text-transform:none;
  1867. }
  1868. #u39747_img {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:147px;
  1874. height:38px;
  1875. }
  1876. #u39747 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:461px;
  1880. top:0px;
  1881. width:147px;
  1882. height:38px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:12px;
  1888. color:#FFFFFF;
  1889. }
  1890. #u39747 .text {
  1891. position:absolute;
  1892. align-self:center;
  1893. padding:2px 2px 2px 0px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u39747_text {
  1898. border-width:0px;
  1899. word-wrap:break-word;
  1900. text-transform:none;
  1901. }
  1902. #u39748_img {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:123px;
  1908. height:38px;
  1909. }
  1910. #u39748 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:608px;
  1914. top:0px;
  1915. width:123px;
  1916. height:38px;
  1917. display:flex;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:12px;
  1922. color:#FFFFFF;
  1923. }
  1924. #u39748 .text {
  1925. position:absolute;
  1926. align-self:center;
  1927. padding:2px 2px 2px 0px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u39748_text {
  1932. border-width:0px;
  1933. word-wrap:break-word;
  1934. text-transform:none;
  1935. }
  1936. #u39749_img {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:123px;
  1942. height:38px;
  1943. }
  1944. #u39749 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:731px;
  1948. top:0px;
  1949. width:123px;
  1950. height:38px;
  1951. display:flex;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:12px;
  1956. color:#FFFFFF;
  1957. }
  1958. #u39749 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:2px 2px 2px 0px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u39749_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. }
  1970. #u39750_img {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:123px;
  1976. height:38px;
  1977. }
  1978. #u39750 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:854px;
  1982. top:0px;
  1983. width:123px;
  1984. height:38px;
  1985. display:flex;
  1986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1987. font-weight:400;
  1988. font-style:normal;
  1989. font-size:12px;
  1990. color:#FFFFFF;
  1991. }
  1992. #u39750 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 0px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u39750_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. }
  2004. #u39751_img {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:117px;
  2010. height:38px;
  2011. }
  2012. #u39751 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:977px;
  2016. top:0px;
  2017. width:117px;
  2018. height:38px;
  2019. display:flex;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. color:#FFFFFF;
  2025. }
  2026. #u39751 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 2px 2px 0px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u39751_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. }
  2038. #u39752_img {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:121px;
  2044. height:38px;
  2045. }
  2046. #u39752 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:1094px;
  2050. top:0px;
  2051. width:121px;
  2052. height:38px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:12px;
  2058. color:#FFFFFF;
  2059. }
  2060. #u39752 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:2px 2px 2px 0px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u39752_text {
  2068. border-width:0px;
  2069. word-wrap:break-word;
  2070. text-transform:none;
  2071. }
  2072. #u39753_img {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:131px;
  2078. height:44px;
  2079. }
  2080. #u39753 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:0px;
  2084. top:38px;
  2085. width:131px;
  2086. height:44px;
  2087. display:flex;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:12px;
  2092. }
  2093. #u39753 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u39753_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u39754_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:105px;
  2111. height:44px;
  2112. }
  2113. #u39754 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:131px;
  2117. top:38px;
  2118. width:105px;
  2119. height:44px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. }
  2126. #u39754 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 2px 2px 0px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u39754_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. visibility:hidden;
  2138. }
  2139. #u39755_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:120px;
  2145. height:44px;
  2146. }
  2147. #u39755 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:236px;
  2151. top:38px;
  2152. width:120px;
  2153. height:44px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. }
  2160. #u39755 .text {
  2161. position:absolute;
  2162. align-self:center;
  2163. padding:2px 2px 2px 0px;
  2164. box-sizing:border-box;
  2165. width:100%;
  2166. }
  2167. #u39755_text {
  2168. border-width:0px;
  2169. word-wrap:break-word;
  2170. text-transform:none;
  2171. visibility:hidden;
  2172. }
  2173. #u39756_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:105px;
  2179. height:44px;
  2180. }
  2181. #u39756 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:356px;
  2185. top:38px;
  2186. width:105px;
  2187. height:44px;
  2188. display:flex;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. }
  2194. #u39756 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 2px 2px 0px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u39756_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. }
  2206. #u39757_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:147px;
  2212. height:44px;
  2213. }
  2214. #u39757 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:461px;
  2218. top:38px;
  2219. width:147px;
  2220. height:44px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:12px;
  2226. }
  2227. #u39757 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u39757_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u39758_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:123px;
  2246. height:44px;
  2247. }
  2248. #u39758 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:608px;
  2252. top:38px;
  2253. width:123px;
  2254. height:44px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:12px;
  2260. }
  2261. #u39758 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u39758_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u39759_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:123px;
  2280. height:44px;
  2281. }
  2282. #u39759 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:731px;
  2286. top:38px;
  2287. width:123px;
  2288. height:44px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. }
  2295. #u39759 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u39759_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u39760_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:123px;
  2314. height:44px;
  2315. }
  2316. #u39760 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:854px;
  2320. top:38px;
  2321. width:123px;
  2322. height:44px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. }
  2329. #u39760 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u39760_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u39761_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:117px;
  2348. height:44px;
  2349. }
  2350. #u39761 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:977px;
  2354. top:38px;
  2355. width:117px;
  2356. height:44px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. }
  2363. #u39761 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u39761_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u39762_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:121px;
  2382. height:44px;
  2383. }
  2384. #u39762 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:1094px;
  2388. top:38px;
  2389. width:121px;
  2390. height:44px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. }
  2397. #u39762 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u39762_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. }
  2409. #u39763_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:131px;
  2415. height:38px;
  2416. }
  2417. #u39763 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:82px;
  2422. width:131px;
  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. #u39763 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u39763_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. visibility:hidden;
  2442. }
  2443. #u39764_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:105px;
  2449. height:38px;
  2450. }
  2451. #u39764 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:131px;
  2455. top:82px;
  2456. width:105px;
  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. #u39764 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 0px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u39764_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. visibility:hidden;
  2476. }
  2477. #u39765_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:120px;
  2483. height:38px;
  2484. }
  2485. #u39765 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:236px;
  2489. top:82px;
  2490. width:120px;
  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. #u39765 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u39765_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u39766_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:105px;
  2517. height:38px;
  2518. }
  2519. #u39766 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:356px;
  2523. top:82px;
  2524. width:105px;
  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. #u39766 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 0px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u39766_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. }
  2544. #u39767_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:147px;
  2550. height:38px;
  2551. }
  2552. #u39767 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:461px;
  2556. top:82px;
  2557. width:147px;
  2558. height:38px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. }
  2565. #u39767 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 0px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u39767_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. visibility:hidden;
  2577. }
  2578. #u39768_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:123px;
  2584. height:38px;
  2585. }
  2586. #u39768 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:608px;
  2590. top:82px;
  2591. width:123px;
  2592. height:38px;
  2593. display:flex;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. font-size:12px;
  2598. }
  2599. #u39768 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 0px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u39768_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. visibility:hidden;
  2611. }
  2612. #u39769_img {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:123px;
  2618. height:38px;
  2619. }
  2620. #u39769 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:731px;
  2624. top:82px;
  2625. width:123px;
  2626. height:38px;
  2627. display:flex;
  2628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:12px;
  2632. }
  2633. #u39769 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 2px 2px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u39769_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. visibility:hidden;
  2645. }
  2646. #u39770_img {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:123px;
  2652. height:38px;
  2653. }
  2654. #u39770 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:854px;
  2658. top:82px;
  2659. width:123px;
  2660. height:38px;
  2661. display:flex;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:12px;
  2666. }
  2667. #u39770 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 0px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u39770_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u39771_img {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:117px;
  2686. height:38px;
  2687. }
  2688. #u39771 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:977px;
  2692. top:82px;
  2693. width:117px;
  2694. height:38px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. }
  2701. #u39771 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 0px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u39771_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u39772_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:121px;
  2720. height:38px;
  2721. }
  2722. #u39772 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:1094px;
  2726. top:82px;
  2727. width:121px;
  2728. height:38px;
  2729. display:flex;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:12px;
  2734. }
  2735. #u39772 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 0px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u39772_text {
  2743. border-width:0px;
  2744. word-wrap:break-word;
  2745. text-transform:none;
  2746. visibility:hidden;
  2747. }
  2748. #u39773_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:131px;
  2754. height:35px;
  2755. }
  2756. #u39773 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:120px;
  2761. width:131px;
  2762. height:35px;
  2763. display:flex;
  2764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:12px;
  2768. color:#606266;
  2769. }
  2770. #u39773 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 2px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u39773_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u39774_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:105px;
  2789. height:35px;
  2790. }
  2791. #u39774 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:131px;
  2795. top:120px;
  2796. width:105px;
  2797. height:35px;
  2798. display:flex;
  2799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:12px;
  2803. color:#606266;
  2804. }
  2805. #u39774 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u39774_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u39775_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:120px;
  2824. height:35px;
  2825. }
  2826. #u39775 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:236px;
  2830. top:120px;
  2831. width:120px;
  2832. height:35px;
  2833. display:flex;
  2834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:12px;
  2838. color:#606266;
  2839. }
  2840. #u39775 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 0px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u39775_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u39776_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:105px;
  2859. height:35px;
  2860. }
  2861. #u39776 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:356px;
  2865. top:120px;
  2866. width:105px;
  2867. height:35px;
  2868. display:flex;
  2869. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:12px;
  2873. color:#606266;
  2874. }
  2875. #u39776 .text {
  2876. position:absolute;
  2877. align-self:center;
  2878. padding:2px 2px 2px 0px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u39776_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. visibility:hidden;
  2887. }
  2888. #u39777_img {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:147px;
  2894. height:35px;
  2895. }
  2896. #u39777 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:461px;
  2900. top:120px;
  2901. width:147px;
  2902. height:35px;
  2903. display:flex;
  2904. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2905. font-weight:400;
  2906. font-style:normal;
  2907. font-size:12px;
  2908. color:#606266;
  2909. }
  2910. #u39777 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 0px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u39777_text {
  2918. border-width:0px;
  2919. word-wrap:break-word;
  2920. text-transform:none;
  2921. visibility:hidden;
  2922. }
  2923. #u39778_img {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:123px;
  2929. height:35px;
  2930. }
  2931. #u39778 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:608px;
  2935. top:120px;
  2936. width:123px;
  2937. height:35px;
  2938. display:flex;
  2939. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:12px;
  2943. color:#606266;
  2944. }
  2945. #u39778 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:2px 2px 2px 0px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u39778_text {
  2953. border-width:0px;
  2954. word-wrap:break-word;
  2955. text-transform:none;
  2956. visibility:hidden;
  2957. }
  2958. #u39779_img {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:123px;
  2964. height:35px;
  2965. }
  2966. #u39779 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:731px;
  2970. top:120px;
  2971. width:123px;
  2972. height:35px;
  2973. display:flex;
  2974. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#606266;
  2979. }
  2980. #u39779 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u39779_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. visibility:hidden;
  2992. }
  2993. #u39780_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:123px;
  2999. height:35px;
  3000. }
  3001. #u39780 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:854px;
  3005. top:120px;
  3006. width:123px;
  3007. height:35px;
  3008. display:flex;
  3009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:12px;
  3013. color:#606266;
  3014. }
  3015. #u39780 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 0px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u39780_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. visibility:hidden;
  3027. }
  3028. #u39781_img {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:117px;
  3034. height:35px;
  3035. }
  3036. #u39781 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:977px;
  3040. top:120px;
  3041. width:117px;
  3042. height:35px;
  3043. display:flex;
  3044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3045. font-weight:400;
  3046. font-style:normal;
  3047. font-size:12px;
  3048. color:#606266;
  3049. }
  3050. #u39781 .text {
  3051. position:absolute;
  3052. align-self:center;
  3053. padding:2px 2px 2px 0px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u39781_text {
  3058. border-width:0px;
  3059. word-wrap:break-word;
  3060. text-transform:none;
  3061. visibility:hidden;
  3062. }
  3063. #u39782_img {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:121px;
  3069. height:35px;
  3070. }
  3071. #u39782 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:1094px;
  3075. top:120px;
  3076. width:121px;
  3077. height:35px;
  3078. display:flex;
  3079. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. color:#606266;
  3084. }
  3085. #u39782 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:2px 2px 2px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u39782_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u39783_img {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:131px;
  3104. height:36px;
  3105. }
  3106. #u39783 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:155px;
  3111. width:131px;
  3112. height:36px;
  3113. display:flex;
  3114. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:12px;
  3118. color:#606266;
  3119. }
  3120. #u39783 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:2px 2px 2px 0px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u39783_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. visibility:hidden;
  3132. }
  3133. #u39784_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:105px;
  3139. height:36px;
  3140. }
  3141. #u39784 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:131px;
  3145. top:155px;
  3146. width:105px;
  3147. height:36px;
  3148. display:flex;
  3149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:12px;
  3153. color:#606266;
  3154. }
  3155. #u39784 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u39784_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u39785_img {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:120px;
  3174. height:36px;
  3175. }
  3176. #u39785 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:236px;
  3180. top:155px;
  3181. width:120px;
  3182. height:36px;
  3183. display:flex;
  3184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:12px;
  3188. color:#606266;
  3189. }
  3190. #u39785 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 0px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u39785_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u39786_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:105px;
  3209. height:36px;
  3210. }
  3211. #u39786 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:356px;
  3215. top:155px;
  3216. width:105px;
  3217. height:36px;
  3218. display:flex;
  3219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:12px;
  3223. color:#606266;
  3224. }
  3225. #u39786 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 0px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u39786_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u39787_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:147px;
  3244. height:36px;
  3245. }
  3246. #u39787 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:461px;
  3250. top:155px;
  3251. width:147px;
  3252. height:36px;
  3253. display:flex;
  3254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3255. font-weight:400;
  3256. font-style:normal;
  3257. font-size:12px;
  3258. color:#606266;
  3259. }
  3260. #u39787 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 0px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u39787_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u39788_img {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:123px;
  3279. height:36px;
  3280. }
  3281. #u39788 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:608px;
  3285. top:155px;
  3286. width:123px;
  3287. height:36px;
  3288. display:flex;
  3289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:12px;
  3293. color:#606266;
  3294. }
  3295. #u39788 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u39788_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u39789_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:123px;
  3314. height:36px;
  3315. }
  3316. #u39789 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:731px;
  3320. top:155px;
  3321. width:123px;
  3322. height:36px;
  3323. display:flex;
  3324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. color:#606266;
  3329. }
  3330. #u39789 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 0px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u39789_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. visibility:hidden;
  3342. }
  3343. #u39790_img {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:123px;
  3349. height:36px;
  3350. }
  3351. #u39790 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:854px;
  3355. top:155px;
  3356. width:123px;
  3357. height:36px;
  3358. display:flex;
  3359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:12px;
  3363. color:#606266;
  3364. }
  3365. #u39790 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 2px 2px 0px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u39790_text {
  3373. border-width:0px;
  3374. word-wrap:break-word;
  3375. text-transform:none;
  3376. visibility:hidden;
  3377. }
  3378. #u39791_img {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:117px;
  3384. height:36px;
  3385. }
  3386. #u39791 {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:977px;
  3390. top:155px;
  3391. width:117px;
  3392. height:36px;
  3393. display:flex;
  3394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:12px;
  3398. color:#606266;
  3399. }
  3400. #u39791 .text {
  3401. position:absolute;
  3402. align-self:center;
  3403. padding:2px 2px 2px 0px;
  3404. box-sizing:border-box;
  3405. width:100%;
  3406. }
  3407. #u39791_text {
  3408. border-width:0px;
  3409. word-wrap:break-word;
  3410. text-transform:none;
  3411. visibility:hidden;
  3412. }
  3413. #u39792_img {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:121px;
  3419. height:36px;
  3420. }
  3421. #u39792 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:1094px;
  3425. top:155px;
  3426. width:121px;
  3427. height:36px;
  3428. display:flex;
  3429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:12px;
  3433. color:#606266;
  3434. }
  3435. #u39792 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 0px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u39792_text {
  3443. border-width:0px;
  3444. word-wrap:break-word;
  3445. text-transform:none;
  3446. visibility:hidden;
  3447. }
  3448. #u39793_img {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:131px;
  3454. height:35px;
  3455. }
  3456. #u39793 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:0px;
  3460. top:191px;
  3461. width:131px;
  3462. height:35px;
  3463. display:flex;
  3464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:12px;
  3468. color:#606266;
  3469. }
  3470. #u39793 .text {
  3471. position:absolute;
  3472. align-self:center;
  3473. padding:2px 2px 2px 0px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u39793_text {
  3478. border-width:0px;
  3479. word-wrap:break-word;
  3480. text-transform:none;
  3481. visibility:hidden;
  3482. }
  3483. #u39794_img {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:105px;
  3489. height:35px;
  3490. }
  3491. #u39794 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:131px;
  3495. top:191px;
  3496. width:105px;
  3497. height:35px;
  3498. display:flex;
  3499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:12px;
  3503. color:#606266;
  3504. }
  3505. #u39794 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u39794_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u39795_img {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:120px;
  3524. height:35px;
  3525. }
  3526. #u39795 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:236px;
  3530. top:191px;
  3531. width:120px;
  3532. height:35px;
  3533. display:flex;
  3534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. color:#606266;
  3539. }
  3540. #u39795 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 0px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u39795_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. visibility:hidden;
  3552. }
  3553. #u39796_img {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:105px;
  3559. height:35px;
  3560. }
  3561. #u39796 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:356px;
  3565. top:191px;
  3566. width:105px;
  3567. height:35px;
  3568. display:flex;
  3569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:12px;
  3573. color:#606266;
  3574. }
  3575. #u39796 .text {
  3576. position:absolute;
  3577. align-self:center;
  3578. padding:2px 2px 2px 0px;
  3579. box-sizing:border-box;
  3580. width:100%;
  3581. }
  3582. #u39796_text {
  3583. border-width:0px;
  3584. word-wrap:break-word;
  3585. text-transform:none;
  3586. visibility:hidden;
  3587. }
  3588. #u39797_img {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:147px;
  3594. height:35px;
  3595. }
  3596. #u39797 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:461px;
  3600. top:191px;
  3601. width:147px;
  3602. height:35px;
  3603. display:flex;
  3604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:12px;
  3608. color:#606266;
  3609. }
  3610. #u39797 .text {
  3611. position:absolute;
  3612. align-self:center;
  3613. padding:2px 2px 2px 0px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u39797_text {
  3618. border-width:0px;
  3619. word-wrap:break-word;
  3620. text-transform:none;
  3621. visibility:hidden;
  3622. }
  3623. #u39798_img {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:123px;
  3629. height:35px;
  3630. }
  3631. #u39798 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:608px;
  3635. top:191px;
  3636. width:123px;
  3637. height:35px;
  3638. display:flex;
  3639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. color:#606266;
  3644. }
  3645. #u39798 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:2px 2px 2px 0px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u39798_text {
  3653. border-width:0px;
  3654. word-wrap:break-word;
  3655. text-transform:none;
  3656. visibility:hidden;
  3657. }
  3658. #u39799_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:123px;
  3664. height:35px;
  3665. }
  3666. #u39799 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:731px;
  3670. top:191px;
  3671. width:123px;
  3672. height:35px;
  3673. display:flex;
  3674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:12px;
  3678. color:#606266;
  3679. }
  3680. #u39799 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:2px 2px 2px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u39799_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. visibility:hidden;
  3692. }
  3693. #u39800_img {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:123px;
  3699. height:35px;
  3700. }
  3701. #u39800 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:854px;
  3705. top:191px;
  3706. width:123px;
  3707. height:35px;
  3708. display:flex;
  3709. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:12px;
  3713. color:#606266;
  3714. }
  3715. #u39800 .text {
  3716. position:absolute;
  3717. align-self:center;
  3718. padding:2px 2px 2px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u39800_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. visibility:hidden;
  3727. }
  3728. #u39801_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:117px;
  3734. height:35px;
  3735. }
  3736. #u39801 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:977px;
  3740. top:191px;
  3741. width:117px;
  3742. height:35px;
  3743. display:flex;
  3744. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:12px;
  3748. color:#606266;
  3749. }
  3750. #u39801 .text {
  3751. position:absolute;
  3752. align-self:center;
  3753. padding:2px 2px 2px 0px;
  3754. box-sizing:border-box;
  3755. width:100%;
  3756. }
  3757. #u39801_text {
  3758. border-width:0px;
  3759. word-wrap:break-word;
  3760. text-transform:none;
  3761. visibility:hidden;
  3762. }
  3763. #u39802_img {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:121px;
  3769. height:35px;
  3770. }
  3771. #u39802 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:1094px;
  3775. top:191px;
  3776. width:121px;
  3777. height:35px;
  3778. display:flex;
  3779. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3780. font-weight:400;
  3781. font-style:normal;
  3782. font-size:12px;
  3783. color:#606266;
  3784. }
  3785. #u39802 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 0px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u39802_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u39803_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:131px;
  3804. height:35px;
  3805. }
  3806. #u39803 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:226px;
  3811. width:131px;
  3812. height:35px;
  3813. display:flex;
  3814. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:12px;
  3818. color:#606266;
  3819. }
  3820. #u39803 .text {
  3821. position:absolute;
  3822. align-self:center;
  3823. padding:2px 2px 2px 0px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u39803_text {
  3828. border-width:0px;
  3829. word-wrap:break-word;
  3830. text-transform:none;
  3831. visibility:hidden;
  3832. }
  3833. #u39804_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:105px;
  3839. height:35px;
  3840. }
  3841. #u39804 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:131px;
  3845. top:226px;
  3846. width:105px;
  3847. height:35px;
  3848. display:flex;
  3849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3850. font-weight:400;
  3851. font-style:normal;
  3852. font-size:12px;
  3853. color:#606266;
  3854. }
  3855. #u39804 .text {
  3856. position:absolute;
  3857. align-self:center;
  3858. padding:2px 2px 2px 0px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u39804_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. visibility:hidden;
  3867. }
  3868. #u39805_img {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:120px;
  3874. height:35px;
  3875. }
  3876. #u39805 {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:236px;
  3880. top:226px;
  3881. width:120px;
  3882. height:35px;
  3883. display:flex;
  3884. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3885. font-weight:400;
  3886. font-style:normal;
  3887. font-size:12px;
  3888. color:#606266;
  3889. }
  3890. #u39805 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 0px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u39805_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u39806_img {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:105px;
  3909. height:35px;
  3910. }
  3911. #u39806 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:356px;
  3915. top:226px;
  3916. width:105px;
  3917. height:35px;
  3918. display:flex;
  3919. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:12px;
  3923. color:#606266;
  3924. }
  3925. #u39806 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 0px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u39806_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u39807_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:147px;
  3944. height:35px;
  3945. }
  3946. #u39807 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:461px;
  3950. top:226px;
  3951. width:147px;
  3952. height:35px;
  3953. display:flex;
  3954. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:12px;
  3958. color:#606266;
  3959. }
  3960. #u39807 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 0px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u39807_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u39808_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:123px;
  3979. height:35px;
  3980. }
  3981. #u39808 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:608px;
  3985. top:226px;
  3986. width:123px;
  3987. height:35px;
  3988. display:flex;
  3989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. color:#606266;
  3994. }
  3995. #u39808 .text {
  3996. position:absolute;
  3997. align-self:center;
  3998. padding:2px 2px 2px 0px;
  3999. box-sizing:border-box;
  4000. width:100%;
  4001. }
  4002. #u39808_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. visibility:hidden;
  4007. }
  4008. #u39809_img {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:123px;
  4014. height:35px;
  4015. }
  4016. #u39809 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:731px;
  4020. top:226px;
  4021. width:123px;
  4022. height:35px;
  4023. display:flex;
  4024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:12px;
  4028. color:#606266;
  4029. }
  4030. #u39809 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 0px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u39809_text {
  4038. border-width:0px;
  4039. word-wrap:break-word;
  4040. text-transform:none;
  4041. visibility:hidden;
  4042. }
  4043. #u39810_img {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:123px;
  4049. height:35px;
  4050. }
  4051. #u39810 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:854px;
  4055. top:226px;
  4056. width:123px;
  4057. height:35px;
  4058. display:flex;
  4059. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. color:#606266;
  4064. }
  4065. #u39810 .text {
  4066. position:absolute;
  4067. align-self:center;
  4068. padding:2px 2px 2px 0px;
  4069. box-sizing:border-box;
  4070. width:100%;
  4071. }
  4072. #u39810_text {
  4073. border-width:0px;
  4074. word-wrap:break-word;
  4075. text-transform:none;
  4076. visibility:hidden;
  4077. }
  4078. #u39811_img {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:117px;
  4084. height:35px;
  4085. }
  4086. #u39811 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:977px;
  4090. top:226px;
  4091. width:117px;
  4092. height:35px;
  4093. display:flex;
  4094. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:12px;
  4098. color:#606266;
  4099. }
  4100. #u39811 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 0px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u39811_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u39812_img {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:121px;
  4119. height:35px;
  4120. }
  4121. #u39812 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:1094px;
  4125. top:226px;
  4126. width:121px;
  4127. height:35px;
  4128. display:flex;
  4129. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4130. font-weight:400;
  4131. font-style:normal;
  4132. font-size:12px;
  4133. color:#606266;
  4134. }
  4135. #u39812 .text {
  4136. position:absolute;
  4137. align-self:center;
  4138. padding:2px 2px 2px 0px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u39812_text {
  4143. border-width:0px;
  4144. word-wrap:break-word;
  4145. text-transform:none;
  4146. visibility:hidden;
  4147. }
  4148. #u39813_img {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:131px;
  4154. height:35px;
  4155. }
  4156. #u39813 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:261px;
  4161. width:131px;
  4162. height:35px;
  4163. display:flex;
  4164. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:12px;
  4168. color:#606266;
  4169. }
  4170. #u39813 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u39813_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u39814_img {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:105px;
  4189. height:35px;
  4190. }
  4191. #u39814 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:131px;
  4195. top:261px;
  4196. width:105px;
  4197. height:35px;
  4198. display:flex;
  4199. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:12px;
  4203. color:#606266;
  4204. }
  4205. #u39814 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 2px 2px 0px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u39814_text {
  4213. border-width:0px;
  4214. word-wrap:break-word;
  4215. text-transform:none;
  4216. visibility:hidden;
  4217. }
  4218. #u39815_img {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:120px;
  4224. height:35px;
  4225. }
  4226. #u39815 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:236px;
  4230. top:261px;
  4231. width:120px;
  4232. height:35px;
  4233. display:flex;
  4234. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:12px;
  4238. color:#606266;
  4239. }
  4240. #u39815 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 2px 2px 0px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u39815_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. visibility:hidden;
  4252. }
  4253. #u39816_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:105px;
  4259. height:35px;
  4260. }
  4261. #u39816 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:356px;
  4265. top:261px;
  4266. width:105px;
  4267. height:35px;
  4268. display:flex;
  4269. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. color:#606266;
  4274. }
  4275. #u39816 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u39816_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u39817_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:147px;
  4294. height:35px;
  4295. }
  4296. #u39817 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:461px;
  4300. top:261px;
  4301. width:147px;
  4302. height:35px;
  4303. display:flex;
  4304. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:12px;
  4308. color:#606266;
  4309. }
  4310. #u39817 .text {
  4311. position:absolute;
  4312. align-self:center;
  4313. padding:2px 2px 2px 0px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u39817_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. visibility:hidden;
  4322. }
  4323. #u39818_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:123px;
  4329. height:35px;
  4330. }
  4331. #u39818 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:608px;
  4335. top:261px;
  4336. width:123px;
  4337. height:35px;
  4338. display:flex;
  4339. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:12px;
  4343. color:#606266;
  4344. }
  4345. #u39818 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 0px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u39818_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. visibility:hidden;
  4357. }
  4358. #u39819_img {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:123px;
  4364. height:35px;
  4365. }
  4366. #u39819 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:731px;
  4370. top:261px;
  4371. width:123px;
  4372. height:35px;
  4373. display:flex;
  4374. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:12px;
  4378. color:#606266;
  4379. }
  4380. #u39819 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:2px 2px 2px 0px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u39819_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u39820_img {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:123px;
  4399. height:35px;
  4400. }
  4401. #u39820 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:854px;
  4405. top:261px;
  4406. width:123px;
  4407. height:35px;
  4408. display:flex;
  4409. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:12px;
  4413. color:#606266;
  4414. }
  4415. #u39820 .text {
  4416. position:absolute;
  4417. align-self:center;
  4418. padding:2px 2px 2px 0px;
  4419. box-sizing:border-box;
  4420. width:100%;
  4421. }
  4422. #u39820_text {
  4423. border-width:0px;
  4424. word-wrap:break-word;
  4425. text-transform:none;
  4426. visibility:hidden;
  4427. }
  4428. #u39821_img {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:117px;
  4434. height:35px;
  4435. }
  4436. #u39821 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:977px;
  4440. top:261px;
  4441. width:117px;
  4442. height:35px;
  4443. display:flex;
  4444. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:12px;
  4448. color:#606266;
  4449. }
  4450. #u39821 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 0px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u39821_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u39822_img {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:121px;
  4469. height:35px;
  4470. }
  4471. #u39822 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:1094px;
  4475. top:261px;
  4476. width:121px;
  4477. height:35px;
  4478. display:flex;
  4479. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:12px;
  4483. color:#606266;
  4484. }
  4485. #u39822 .text {
  4486. position:absolute;
  4487. align-self:center;
  4488. padding:2px 2px 2px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u39822_text {
  4493. border-width:0px;
  4494. word-wrap:break-word;
  4495. text-transform:none;
  4496. visibility:hidden;
  4497. }
  4498. #u39823_img {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:131px;
  4504. height:35px;
  4505. }
  4506. #u39823 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:296px;
  4511. width:131px;
  4512. height:35px;
  4513. display:flex;
  4514. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:12px;
  4518. color:#606266;
  4519. }
  4520. #u39823 .text {
  4521. position:absolute;
  4522. align-self:center;
  4523. padding:2px 2px 2px 0px;
  4524. box-sizing:border-box;
  4525. width:100%;
  4526. }
  4527. #u39823_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u39824_img {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:105px;
  4539. height:35px;
  4540. }
  4541. #u39824 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:131px;
  4545. top:296px;
  4546. width:105px;
  4547. height:35px;
  4548. display:flex;
  4549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:12px;
  4553. color:#606266;
  4554. }
  4555. #u39824 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u39824_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u39825_img {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:120px;
  4574. height:35px;
  4575. }
  4576. #u39825 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:236px;
  4580. top:296px;
  4581. width:120px;
  4582. height:35px;
  4583. display:flex;
  4584. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:12px;
  4588. color:#606266;
  4589. }
  4590. #u39825 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 2px 2px 0px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u39825_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. visibility:hidden;
  4602. }
  4603. #u39826_img {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:105px;
  4609. height:35px;
  4610. }
  4611. #u39826 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:356px;
  4615. top:296px;
  4616. width:105px;
  4617. height:35px;
  4618. display:flex;
  4619. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4620. font-weight:400;
  4621. font-style:normal;
  4622. font-size:12px;
  4623. color:#606266;
  4624. }
  4625. #u39826 .text {
  4626. position:absolute;
  4627. align-self:center;
  4628. padding:2px 2px 2px 0px;
  4629. box-sizing:border-box;
  4630. width:100%;
  4631. }
  4632. #u39826_text {
  4633. border-width:0px;
  4634. word-wrap:break-word;
  4635. text-transform:none;
  4636. visibility:hidden;
  4637. }
  4638. #u39827_img {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:147px;
  4644. height:35px;
  4645. }
  4646. #u39827 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:461px;
  4650. top:296px;
  4651. width:147px;
  4652. height:35px;
  4653. display:flex;
  4654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:12px;
  4658. color:#606266;
  4659. }
  4660. #u39827 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u39827_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. visibility:hidden;
  4672. }
  4673. #u39828_img {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:123px;
  4679. height:35px;
  4680. }
  4681. #u39828 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:608px;
  4685. top:296px;
  4686. width:123px;
  4687. height:35px;
  4688. display:flex;
  4689. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4690. font-weight:400;
  4691. font-style:normal;
  4692. font-size:12px;
  4693. color:#606266;
  4694. }
  4695. #u39828 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 0px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u39828_text {
  4703. border-width:0px;
  4704. word-wrap:break-word;
  4705. text-transform:none;
  4706. visibility:hidden;
  4707. }
  4708. #u39829_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:123px;
  4714. height:35px;
  4715. }
  4716. #u39829 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:731px;
  4720. top:296px;
  4721. width:123px;
  4722. height:35px;
  4723. display:flex;
  4724. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:12px;
  4728. color:#606266;
  4729. }
  4730. #u39829 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 0px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u39829_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u39830_img {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:123px;
  4749. height:35px;
  4750. }
  4751. #u39830 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:854px;
  4755. top:296px;
  4756. width:123px;
  4757. height:35px;
  4758. display:flex;
  4759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:12px;
  4763. color:#606266;
  4764. }
  4765. #u39830 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:2px 2px 2px 0px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u39830_text {
  4773. border-width:0px;
  4774. word-wrap:break-word;
  4775. text-transform:none;
  4776. visibility:hidden;
  4777. }
  4778. #u39831_img {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:117px;
  4784. height:35px;
  4785. }
  4786. #u39831 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:977px;
  4790. top:296px;
  4791. width:117px;
  4792. height:35px;
  4793. display:flex;
  4794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:12px;
  4798. color:#606266;
  4799. }
  4800. #u39831 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 0px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u39831_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. visibility:hidden;
  4812. }
  4813. #u39832_img {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:121px;
  4819. height:35px;
  4820. }
  4821. #u39832 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:1094px;
  4825. top:296px;
  4826. width:121px;
  4827. height:35px;
  4828. display:flex;
  4829. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4830. font-weight:400;
  4831. font-style:normal;
  4832. font-size:12px;
  4833. color:#606266;
  4834. }
  4835. #u39832 .text {
  4836. position:absolute;
  4837. align-self:center;
  4838. padding:2px 2px 2px 0px;
  4839. box-sizing:border-box;
  4840. width:100%;
  4841. }
  4842. #u39832_text {
  4843. border-width:0px;
  4844. word-wrap:break-word;
  4845. text-transform:none;
  4846. visibility:hidden;
  4847. }
  4848. #u39833_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:131px;
  4854. height:35px;
  4855. }
  4856. #u39833 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:331px;
  4861. width:131px;
  4862. height:35px;
  4863. display:flex;
  4864. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:12px;
  4868. color:#606266;
  4869. }
  4870. #u39833 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:2px 2px 2px 0px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u39833_text {
  4878. border-width:0px;
  4879. word-wrap:break-word;
  4880. text-transform:none;
  4881. visibility:hidden;
  4882. }
  4883. #u39834_img {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:105px;
  4889. height:35px;
  4890. }
  4891. #u39834 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:131px;
  4895. top:331px;
  4896. width:105px;
  4897. height:35px;
  4898. display:flex;
  4899. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:12px;
  4903. color:#606266;
  4904. }
  4905. #u39834 .text {
  4906. position:absolute;
  4907. align-self:center;
  4908. padding:2px 2px 2px 0px;
  4909. box-sizing:border-box;
  4910. width:100%;
  4911. }
  4912. #u39834_text {
  4913. border-width:0px;
  4914. word-wrap:break-word;
  4915. text-transform:none;
  4916. visibility:hidden;
  4917. }
  4918. #u39835_img {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:120px;
  4924. height:35px;
  4925. }
  4926. #u39835 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:236px;
  4930. top:331px;
  4931. width:120px;
  4932. height:35px;
  4933. display:flex;
  4934. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4935. font-weight:400;
  4936. font-style:normal;
  4937. font-size:12px;
  4938. color:#606266;
  4939. }
  4940. #u39835 .text {
  4941. position:absolute;
  4942. align-self:center;
  4943. padding:2px 2px 2px 0px;
  4944. box-sizing:border-box;
  4945. width:100%;
  4946. }
  4947. #u39835_text {
  4948. border-width:0px;
  4949. word-wrap:break-word;
  4950. text-transform:none;
  4951. visibility:hidden;
  4952. }
  4953. #u39836_img {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:105px;
  4959. height:35px;
  4960. }
  4961. #u39836 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:356px;
  4965. top:331px;
  4966. width:105px;
  4967. height:35px;
  4968. display:flex;
  4969. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4970. font-weight:400;
  4971. font-style:normal;
  4972. font-size:12px;
  4973. color:#606266;
  4974. }
  4975. #u39836 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:2px 2px 2px 0px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u39836_text {
  4983. border-width:0px;
  4984. word-wrap:break-word;
  4985. text-transform:none;
  4986. visibility:hidden;
  4987. }
  4988. #u39837_img {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:147px;
  4994. height:35px;
  4995. }
  4996. #u39837 {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:461px;
  5000. top:331px;
  5001. width:147px;
  5002. height:35px;
  5003. display:flex;
  5004. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5005. font-weight:400;
  5006. font-style:normal;
  5007. font-size:12px;
  5008. color:#606266;
  5009. }
  5010. #u39837 .text {
  5011. position:absolute;
  5012. align-self:center;
  5013. padding:2px 2px 2px 0px;
  5014. box-sizing:border-box;
  5015. width:100%;
  5016. }
  5017. #u39837_text {
  5018. border-width:0px;
  5019. word-wrap:break-word;
  5020. text-transform:none;
  5021. visibility:hidden;
  5022. }
  5023. #u39838_img {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:123px;
  5029. height:35px;
  5030. }
  5031. #u39838 {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:608px;
  5035. top:331px;
  5036. width:123px;
  5037. height:35px;
  5038. display:flex;
  5039. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5040. font-weight:400;
  5041. font-style:normal;
  5042. font-size:12px;
  5043. color:#606266;
  5044. }
  5045. #u39838 .text {
  5046. position:absolute;
  5047. align-self:center;
  5048. padding:2px 2px 2px 0px;
  5049. box-sizing:border-box;
  5050. width:100%;
  5051. }
  5052. #u39838_text {
  5053. border-width:0px;
  5054. word-wrap:break-word;
  5055. text-transform:none;
  5056. visibility:hidden;
  5057. }
  5058. #u39839_img {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:123px;
  5064. height:35px;
  5065. }
  5066. #u39839 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:731px;
  5070. top:331px;
  5071. width:123px;
  5072. height:35px;
  5073. display:flex;
  5074. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. font-size:12px;
  5078. color:#606266;
  5079. }
  5080. #u39839 .text {
  5081. position:absolute;
  5082. align-self:center;
  5083. padding:2px 2px 2px 0px;
  5084. box-sizing:border-box;
  5085. width:100%;
  5086. }
  5087. #u39839_text {
  5088. border-width:0px;
  5089. word-wrap:break-word;
  5090. text-transform:none;
  5091. visibility:hidden;
  5092. }
  5093. #u39840_img {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:123px;
  5099. height:35px;
  5100. }
  5101. #u39840 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:854px;
  5105. top:331px;
  5106. width:123px;
  5107. height:35px;
  5108. display:flex;
  5109. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5110. font-weight:400;
  5111. font-style:normal;
  5112. font-size:12px;
  5113. color:#606266;
  5114. }
  5115. #u39840 .text {
  5116. position:absolute;
  5117. align-self:center;
  5118. padding:2px 2px 2px 0px;
  5119. box-sizing:border-box;
  5120. width:100%;
  5121. }
  5122. #u39840_text {
  5123. border-width:0px;
  5124. word-wrap:break-word;
  5125. text-transform:none;
  5126. visibility:hidden;
  5127. }
  5128. #u39841_img {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:117px;
  5134. height:35px;
  5135. }
  5136. #u39841 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:977px;
  5140. top:331px;
  5141. width:117px;
  5142. height:35px;
  5143. display:flex;
  5144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5145. font-weight:400;
  5146. font-style:normal;
  5147. font-size:12px;
  5148. color:#606266;
  5149. }
  5150. #u39841 .text {
  5151. position:absolute;
  5152. align-self:center;
  5153. padding:2px 2px 2px 0px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u39841_text {
  5158. border-width:0px;
  5159. word-wrap:break-word;
  5160. text-transform:none;
  5161. visibility:hidden;
  5162. }
  5163. #u39842_img {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:121px;
  5169. height:35px;
  5170. }
  5171. #u39842 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:1094px;
  5175. top:331px;
  5176. width:121px;
  5177. height:35px;
  5178. display:flex;
  5179. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:12px;
  5183. color:#606266;
  5184. }
  5185. #u39842 .text {
  5186. position:absolute;
  5187. align-self:center;
  5188. padding:2px 2px 2px 0px;
  5189. box-sizing:border-box;
  5190. width:100%;
  5191. }
  5192. #u39842_text {
  5193. border-width:0px;
  5194. word-wrap:break-word;
  5195. text-transform:none;
  5196. visibility:hidden;
  5197. }
  5198. #u39843_img {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:131px;
  5204. height:35px;
  5205. }
  5206. #u39843 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:366px;
  5211. width:131px;
  5212. height:35px;
  5213. display:flex;
  5214. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:12px;
  5218. color:#606266;
  5219. }
  5220. #u39843 .text {
  5221. position:absolute;
  5222. align-self:center;
  5223. padding:2px 2px 2px 0px;
  5224. box-sizing:border-box;
  5225. width:100%;
  5226. }
  5227. #u39843_text {
  5228. border-width:0px;
  5229. word-wrap:break-word;
  5230. text-transform:none;
  5231. visibility:hidden;
  5232. }
  5233. #u39844_img {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:105px;
  5239. height:35px;
  5240. }
  5241. #u39844 {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:131px;
  5245. top:366px;
  5246. width:105px;
  5247. height:35px;
  5248. display:flex;
  5249. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:12px;
  5253. color:#606266;
  5254. }
  5255. #u39844 .text {
  5256. position:absolute;
  5257. align-self:center;
  5258. padding:2px 2px 2px 0px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u39844_text {
  5263. border-width:0px;
  5264. word-wrap:break-word;
  5265. text-transform:none;
  5266. visibility:hidden;
  5267. }
  5268. #u39845_img {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:120px;
  5274. height:35px;
  5275. }
  5276. #u39845 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:236px;
  5280. top:366px;
  5281. width:120px;
  5282. height:35px;
  5283. display:flex;
  5284. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:12px;
  5288. color:#606266;
  5289. }
  5290. #u39845 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:2px 2px 2px 0px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u39845_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. visibility:hidden;
  5302. }
  5303. #u39846_img {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:105px;
  5309. height:35px;
  5310. }
  5311. #u39846 {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:356px;
  5315. top:366px;
  5316. width:105px;
  5317. height:35px;
  5318. display:flex;
  5319. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:12px;
  5323. color:#606266;
  5324. }
  5325. #u39846 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:2px 2px 2px 0px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u39846_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. visibility:hidden;
  5337. }
  5338. #u39847_img {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:147px;
  5344. height:35px;
  5345. }
  5346. #u39847 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:461px;
  5350. top:366px;
  5351. width:147px;
  5352. height:35px;
  5353. display:flex;
  5354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:12px;
  5358. color:#606266;
  5359. }
  5360. #u39847 .text {
  5361. position:absolute;
  5362. align-self:center;
  5363. padding:2px 2px 2px 0px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u39847_text {
  5368. border-width:0px;
  5369. word-wrap:break-word;
  5370. text-transform:none;
  5371. visibility:hidden;
  5372. }
  5373. #u39848_img {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:123px;
  5379. height:35px;
  5380. }
  5381. #u39848 {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:608px;
  5385. top:366px;
  5386. width:123px;
  5387. height:35px;
  5388. display:flex;
  5389. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:12px;
  5393. color:#606266;
  5394. }
  5395. #u39848 .text {
  5396. position:absolute;
  5397. align-self:center;
  5398. padding:2px 2px 2px 0px;
  5399. box-sizing:border-box;
  5400. width:100%;
  5401. }
  5402. #u39848_text {
  5403. border-width:0px;
  5404. word-wrap:break-word;
  5405. text-transform:none;
  5406. visibility:hidden;
  5407. }
  5408. #u39849_img {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:123px;
  5414. height:35px;
  5415. }
  5416. #u39849 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:731px;
  5420. top:366px;
  5421. width:123px;
  5422. height:35px;
  5423. display:flex;
  5424. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:12px;
  5428. color:#606266;
  5429. }
  5430. #u39849 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 0px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u39849_text {
  5438. border-width:0px;
  5439. word-wrap:break-word;
  5440. text-transform:none;
  5441. visibility:hidden;
  5442. }
  5443. #u39850_img {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:123px;
  5449. height:35px;
  5450. }
  5451. #u39850 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:854px;
  5455. top:366px;
  5456. width:123px;
  5457. height:35px;
  5458. display:flex;
  5459. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:12px;
  5463. color:#606266;
  5464. }
  5465. #u39850 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 0px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u39850_text {
  5473. border-width:0px;
  5474. word-wrap:break-word;
  5475. text-transform:none;
  5476. visibility:hidden;
  5477. }
  5478. #u39851_img {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:117px;
  5484. height:35px;
  5485. }
  5486. #u39851 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:977px;
  5490. top:366px;
  5491. width:117px;
  5492. height:35px;
  5493. display:flex;
  5494. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:12px;
  5498. color:#606266;
  5499. }
  5500. #u39851 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 0px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u39851_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. visibility:hidden;
  5512. }
  5513. #u39852_img {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:121px;
  5519. height:35px;
  5520. }
  5521. #u39852 {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:1094px;
  5525. top:366px;
  5526. width:121px;
  5527. height:35px;
  5528. display:flex;
  5529. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5530. font-weight:400;
  5531. font-style:normal;
  5532. font-size:12px;
  5533. color:#606266;
  5534. }
  5535. #u39852 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:2px 2px 2px 0px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u39852_text {
  5543. border-width:0px;
  5544. word-wrap:break-word;
  5545. text-transform:none;
  5546. visibility:hidden;
  5547. }
  5548. #u39853_img {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:131px;
  5554. height:32px;
  5555. }
  5556. #u39853 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:401px;
  5561. width:131px;
  5562. height:32px;
  5563. display:flex;
  5564. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:12px;
  5568. color:#606266;
  5569. }
  5570. #u39853 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 2px 2px 0px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u39853_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. visibility:hidden;
  5582. }
  5583. #u39854_img {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:105px;
  5589. height:32px;
  5590. }
  5591. #u39854 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:131px;
  5595. top:401px;
  5596. width:105px;
  5597. height:32px;
  5598. display:flex;
  5599. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:12px;
  5603. color:#606266;
  5604. }
  5605. #u39854 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:2px 2px 2px 0px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u39854_text {
  5613. border-width:0px;
  5614. word-wrap:break-word;
  5615. text-transform:none;
  5616. visibility:hidden;
  5617. }
  5618. #u39855_img {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:120px;
  5624. height:32px;
  5625. }
  5626. #u39855 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:236px;
  5630. top:401px;
  5631. width:120px;
  5632. height:32px;
  5633. display:flex;
  5634. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:12px;
  5638. color:#606266;
  5639. }
  5640. #u39855 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:2px 2px 2px 0px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u39855_text {
  5648. border-width:0px;
  5649. word-wrap:break-word;
  5650. text-transform:none;
  5651. visibility:hidden;
  5652. }
  5653. #u39856_img {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:105px;
  5659. height:32px;
  5660. }
  5661. #u39856 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:356px;
  5665. top:401px;
  5666. width:105px;
  5667. height:32px;
  5668. display:flex;
  5669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:12px;
  5673. color:#606266;
  5674. }
  5675. #u39856 .text {
  5676. position:absolute;
  5677. align-self:center;
  5678. padding:2px 2px 2px 0px;
  5679. box-sizing:border-box;
  5680. width:100%;
  5681. }
  5682. #u39856_text {
  5683. border-width:0px;
  5684. word-wrap:break-word;
  5685. text-transform:none;
  5686. visibility:hidden;
  5687. }
  5688. #u39857_img {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:147px;
  5694. height:32px;
  5695. }
  5696. #u39857 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:461px;
  5700. top:401px;
  5701. width:147px;
  5702. height:32px;
  5703. display:flex;
  5704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. font-size:12px;
  5708. color:#606266;
  5709. }
  5710. #u39857 .text {
  5711. position:absolute;
  5712. align-self:center;
  5713. padding:2px 2px 2px 0px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u39857_text {
  5718. border-width:0px;
  5719. word-wrap:break-word;
  5720. text-transform:none;
  5721. visibility:hidden;
  5722. }
  5723. #u39858_img {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:123px;
  5729. height:32px;
  5730. }
  5731. #u39858 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:608px;
  5735. top:401px;
  5736. width:123px;
  5737. height:32px;
  5738. display:flex;
  5739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:12px;
  5743. color:#606266;
  5744. }
  5745. #u39858 .text {
  5746. position:absolute;
  5747. align-self:center;
  5748. padding:2px 2px 2px 0px;
  5749. box-sizing:border-box;
  5750. width:100%;
  5751. }
  5752. #u39858_text {
  5753. border-width:0px;
  5754. word-wrap:break-word;
  5755. text-transform:none;
  5756. visibility:hidden;
  5757. }
  5758. #u39859_img {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:123px;
  5764. height:32px;
  5765. }
  5766. #u39859 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:731px;
  5770. top:401px;
  5771. width:123px;
  5772. height:32px;
  5773. display:flex;
  5774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:12px;
  5778. color:#606266;
  5779. }
  5780. #u39859 .text {
  5781. position:absolute;
  5782. align-self:center;
  5783. padding:2px 2px 2px 0px;
  5784. box-sizing:border-box;
  5785. width:100%;
  5786. }
  5787. #u39859_text {
  5788. border-width:0px;
  5789. word-wrap:break-word;
  5790. text-transform:none;
  5791. visibility:hidden;
  5792. }
  5793. #u39860_img {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:123px;
  5799. height:32px;
  5800. }
  5801. #u39860 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:854px;
  5805. top:401px;
  5806. width:123px;
  5807. height:32px;
  5808. display:flex;
  5809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. font-size:12px;
  5813. color:#606266;
  5814. }
  5815. #u39860 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 2px 2px 0px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u39860_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. visibility:hidden;
  5827. }
  5828. #u39861_img {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:117px;
  5834. height:32px;
  5835. }
  5836. #u39861 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:977px;
  5840. top:401px;
  5841. width:117px;
  5842. height:32px;
  5843. display:flex;
  5844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:12px;
  5848. color:#606266;
  5849. }
  5850. #u39861 .text {
  5851. position:absolute;
  5852. align-self:center;
  5853. padding:2px 2px 2px 0px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u39861_text {
  5858. border-width:0px;
  5859. word-wrap:break-word;
  5860. text-transform:none;
  5861. visibility:hidden;
  5862. }
  5863. #u39862_img {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:0px;
  5867. top:0px;
  5868. width:121px;
  5869. height:32px;
  5870. }
  5871. #u39862 {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:1094px;
  5875. top:401px;
  5876. width:121px;
  5877. height:32px;
  5878. display:flex;
  5879. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:12px;
  5883. color:#606266;
  5884. }
  5885. #u39862 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 0px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u39862_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u39863_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:59px;
  5904. height:30px;
  5905. background:inherit;
  5906. background-color:rgba(41, 143, 255, 1);
  5907. border:none;
  5908. border-radius:4px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. font-family:'Microsoft YaHei', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:14px;
  5916. color:#FFFFFF;
  5917. }
  5918. #u39863 {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:814px;
  5922. top:101px;
  5923. width:59px;
  5924. height:30px;
  5925. display:flex;
  5926. font-family:'Microsoft YaHei', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:14px;
  5930. color:#FFFFFF;
  5931. }
  5932. #u39863 .text {
  5933. position:absolute;
  5934. align-self:center;
  5935. padding:5px 15px 5px 15px;
  5936. box-sizing:border-box;
  5937. width:100%;
  5938. }
  5939. #u39863_text {
  5940. border-width:0px;
  5941. white-space:nowrap;
  5942. text-transform:none;
  5943. }
  5944. #u39864_div {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:55px;
  5950. height:30px;
  5951. background:inherit;
  5952. background-color:rgba(255, 255, 255, 1);
  5953. box-sizing:border-box;
  5954. border-width:1px;
  5955. border-style:solid;
  5956. border-color:rgba(170, 170, 170, 1);
  5957. border-radius:4px;
  5958. -moz-box-shadow:none;
  5959. -webkit-box-shadow:none;
  5960. box-shadow:none;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:12px;
  5965. color:#555555;
  5966. }
  5967. #u39864 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:883px;
  5971. top:101px;
  5972. width:55px;
  5973. height:30px;
  5974. display:flex;
  5975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5976. font-weight:400;
  5977. font-style:normal;
  5978. font-size:12px;
  5979. color:#555555;
  5980. }
  5981. #u39864 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:5px 15px 5px 15px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u39864_text {
  5989. border-width:0px;
  5990. white-space:nowrap;
  5991. text-transform:none;
  5992. }
  5993. #u39865_div {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:80px;
  5999. height:30px;
  6000. background:inherit;
  6001. background-color:rgba(41, 143, 255, 1);
  6002. border:none;
  6003. border-radius:4px;
  6004. -moz-box-shadow:none;
  6005. -webkit-box-shadow:none;
  6006. box-shadow:none;
  6007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:14px;
  6011. color:#FFFFFF;
  6012. }
  6013. #u39865 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:354px;
  6017. top:151px;
  6018. width:80px;
  6019. height:30px;
  6020. display:flex;
  6021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:14px;
  6025. color:#FFFFFF;
  6026. }
  6027. #u39865 .text {
  6028. position:absolute;
  6029. align-self:center;
  6030. padding:5px 0px 5px 0px;
  6031. box-sizing:border-box;
  6032. width:100%;
  6033. }
  6034. #u39865_text {
  6035. border-width:0px;
  6036. word-wrap:break-word;
  6037. text-transform:none;
  6038. }
  6039. #u39866 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:0px;
  6045. height:0px;
  6046. }
  6047. #u39867_div {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:140px;
  6053. height:30px;
  6054. background:inherit;
  6055. background-color:rgba(255, 255, 255, 1);
  6056. box-sizing:border-box;
  6057. border-width:1px;
  6058. border-style:solid;
  6059. border-color:rgba(215, 215, 215, 1);
  6060. border-radius:4px;
  6061. -moz-box-shadow:none;
  6062. -webkit-box-shadow:none;
  6063. box-shadow:none;
  6064. font-size:11px;
  6065. }
  6066. #u39867 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:654px;
  6070. top:101px;
  6071. width:140px;
  6072. height:30px;
  6073. display:flex;
  6074. font-size:11px;
  6075. }
  6076. #u39867 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 2px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u39867_text {
  6084. border-width:0px;
  6085. word-wrap:break-word;
  6086. text-transform:none;
  6087. visibility:hidden;
  6088. }
  6089. #u39868_input {
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:120px;
  6094. height:23px;
  6095. padding:2px 2px 2px 2px;
  6096. font-family:'ArialMT', 'Arial', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:11px;
  6100. letter-spacing:normal;
  6101. color:#AAAAAA;
  6102. vertical-align:none;
  6103. text-align:left;
  6104. text-transform:none;
  6105. background-color:transparent;
  6106. border-color:transparent;
  6107. }
  6108. #u39868_input.disabled {
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:120px;
  6113. height:23px;
  6114. padding:2px 2px 2px 2px;
  6115. font-family:'ArialMT', 'Arial', sans-serif;
  6116. font-weight:400;
  6117. font-style:normal;
  6118. font-size:11px;
  6119. letter-spacing:normal;
  6120. color:#AAAAAA;
  6121. vertical-align:none;
  6122. text-align:left;
  6123. text-transform:none;
  6124. background-color:transparent;
  6125. border-color:transparent;
  6126. }
  6127. #u39868_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:120px;
  6133. height:23px;
  6134. background:inherit;
  6135. background-color:rgba(255, 255, 255, 1);
  6136. border:none;
  6137. border-radius:0px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. font-size:11px;
  6142. color:#AAAAAA;
  6143. }
  6144. #u39868 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:661px;
  6148. top:103px;
  6149. width:120px;
  6150. height:23px;
  6151. display:flex;
  6152. font-size:11px;
  6153. color:#AAAAAA;
  6154. }
  6155. #u39868 .text {
  6156. position:absolute;
  6157. align-self:flex-start;
  6158. padding:2px 2px 2px 2px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u39868_div.disabled {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:120px;
  6168. height:23px;
  6169. background:inherit;
  6170. background-color:rgba(240, 240, 240, 1);
  6171. border:none;
  6172. border-radius:0px;
  6173. -moz-box-shadow:none;
  6174. -webkit-box-shadow:none;
  6175. box-shadow:none;
  6176. font-size:11px;
  6177. color:#AAAAAA;
  6178. }
  6179. #u39868.disabled {
  6180. }
  6181. .u39868_input_option {
  6182. font-size:11px;
  6183. }
  6184. #u39869 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:0px;
  6190. height:0px;
  6191. }
  6192. #u39870_div {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:140px;
  6198. height:30px;
  6199. background:inherit;
  6200. background-color:rgba(255, 255, 255, 1);
  6201. box-sizing:border-box;
  6202. border-width:1px;
  6203. border-style:solid;
  6204. border-color:rgba(215, 215, 215, 1);
  6205. border-radius:4px;
  6206. -moz-box-shadow:none;
  6207. -webkit-box-shadow:none;
  6208. box-shadow:none;
  6209. font-size:11px;
  6210. }
  6211. #u39870 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:354px;
  6215. top:101px;
  6216. width:140px;
  6217. height:30px;
  6218. display:flex;
  6219. font-size:11px;
  6220. }
  6221. #u39870 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:2px 2px 2px 2px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u39870_text {
  6229. border-width:0px;
  6230. word-wrap:break-word;
  6231. text-transform:none;
  6232. visibility:hidden;
  6233. }
  6234. #u39871_input {
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:120px;
  6239. height:23px;
  6240. padding:2px 2px 2px 2px;
  6241. font-family:'ArialMT', 'Arial', sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. font-size:11px;
  6245. letter-spacing:normal;
  6246. color:#AAAAAA;
  6247. vertical-align:none;
  6248. text-align:left;
  6249. text-transform:none;
  6250. background-color:transparent;
  6251. border-color:transparent;
  6252. }
  6253. #u39871_input.disabled {
  6254. position:absolute;
  6255. left:0px;
  6256. top:0px;
  6257. width:120px;
  6258. height:23px;
  6259. padding:2px 2px 2px 2px;
  6260. font-family:'ArialMT', 'Arial', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:11px;
  6264. letter-spacing:normal;
  6265. color:#AAAAAA;
  6266. vertical-align:none;
  6267. text-align:left;
  6268. text-transform:none;
  6269. background-color:transparent;
  6270. border-color:transparent;
  6271. }
  6272. #u39871_div {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:120px;
  6278. height:23px;
  6279. background:inherit;
  6280. background-color:rgba(255, 255, 255, 1);
  6281. border:none;
  6282. border-radius:0px;
  6283. -moz-box-shadow:none;
  6284. -webkit-box-shadow:none;
  6285. box-shadow:none;
  6286. font-size:11px;
  6287. color:#AAAAAA;
  6288. }
  6289. #u39871 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:361px;
  6293. top:103px;
  6294. width:120px;
  6295. height:23px;
  6296. display:flex;
  6297. font-size:11px;
  6298. color:#AAAAAA;
  6299. }
  6300. #u39871 .text {
  6301. position:absolute;
  6302. align-self:flex-start;
  6303. padding:2px 2px 2px 2px;
  6304. box-sizing:border-box;
  6305. width:100%;
  6306. }
  6307. #u39871_div.disabled {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:120px;
  6313. height:23px;
  6314. background:inherit;
  6315. background-color:rgba(240, 240, 240, 1);
  6316. border:none;
  6317. border-radius:0px;
  6318. -moz-box-shadow:none;
  6319. -webkit-box-shadow:none;
  6320. box-shadow:none;
  6321. font-size:11px;
  6322. color:#AAAAAA;
  6323. }
  6324. #u39871.disabled {
  6325. }
  6326. .u39871_input_option {
  6327. font-size:11px;
  6328. }
  6329. #u39872_div {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:55px;
  6335. height:30px;
  6336. background:inherit;
  6337. background-color:rgba(255, 255, 255, 1);
  6338. box-sizing:border-box;
  6339. border-width:1px;
  6340. border-style:solid;
  6341. border-color:rgba(170, 170, 170, 1);
  6342. border-radius:4px;
  6343. -moz-box-shadow:none;
  6344. -webkit-box-shadow:none;
  6345. box-shadow:none;
  6346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:12px;
  6350. color:#555555;
  6351. }
  6352. #u39872 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:444px;
  6356. top:151px;
  6357. width:55px;
  6358. height:30px;
  6359. display:flex;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:12px;
  6364. color:#555555;
  6365. }
  6366. #u39872 .text {
  6367. position:absolute;
  6368. align-self:center;
  6369. padding:5px 15px 5px 15px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u39872_text {
  6374. border-width:0px;
  6375. white-space:nowrap;
  6376. text-transform:none;
  6377. }
  6378. #u39873 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:0px;
  6384. height:0px;
  6385. }
  6386. #u39874_div {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:140px;
  6392. height:30px;
  6393. background:inherit;
  6394. background-color:rgba(255, 255, 255, 1);
  6395. box-sizing:border-box;
  6396. border-width:1px;
  6397. border-style:solid;
  6398. border-color:rgba(201, 201, 201, 1);
  6399. border-radius:4px;
  6400. -moz-box-shadow:none;
  6401. -webkit-box-shadow:none;
  6402. box-shadow:none;
  6403. font-family:'Microsoft YaHei', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:14px;
  6407. color:#CCCCCC;
  6408. text-align:left;
  6409. }
  6410. #u39874 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:504px;
  6414. top:101px;
  6415. width:140px;
  6416. height:30px;
  6417. display:flex;
  6418. font-family:'Microsoft YaHei', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:14px;
  6422. color:#CCCCCC;
  6423. text-align:left;
  6424. }
  6425. #u39874 .text {
  6426. position:absolute;
  6427. align-self:center;
  6428. padding:2px 8px 2px 8px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u39874_text {
  6433. border-width:0px;
  6434. word-wrap:break-word;
  6435. text-transform:none;
  6436. visibility:hidden;
  6437. }
  6438. #u39875_input {
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:127px;
  6443. height:25px;
  6444. padding:2px 2px 2px 2px;
  6445. font-family:'Microsoft YaHei', sans-serif;
  6446. font-weight:400;
  6447. font-style:normal;
  6448. font-size:10px;
  6449. letter-spacing:normal;
  6450. color:#000000;
  6451. vertical-align:none;
  6452. text-align:left;
  6453. text-transform:none;
  6454. background-color:transparent;
  6455. border-color:transparent;
  6456. }
  6457. #u39875_input.disabled {
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:127px;
  6462. height:25px;
  6463. padding:2px 2px 2px 2px;
  6464. font-family:'Microsoft YaHei', sans-serif;
  6465. font-weight:400;
  6466. font-style:normal;
  6467. font-size:10px;
  6468. letter-spacing:normal;
  6469. color:#000000;
  6470. vertical-align:none;
  6471. text-align:left;
  6472. text-transform:none;
  6473. background-color:transparent;
  6474. border-color:transparent;
  6475. }
  6476. #u39875_div {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:127px;
  6482. height:25px;
  6483. background:inherit;
  6484. background-color:rgba(255, 255, 255, 1);
  6485. border:none;
  6486. border-radius:0px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'Microsoft YaHei', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:10px;
  6494. }
  6495. #u39875 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:512px;
  6499. top:102px;
  6500. width:127px;
  6501. height:25px;
  6502. display:flex;
  6503. font-family:'Microsoft YaHei', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:10px;
  6507. }
  6508. #u39875 .text {
  6509. position:absolute;
  6510. align-self:center;
  6511. padding:2px 2px 2px 2px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u39875_div.disabled {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:127px;
  6521. height:25px;
  6522. background:inherit;
  6523. background-color:rgba(240, 240, 240, 1);
  6524. border:none;
  6525. border-radius:0px;
  6526. -moz-box-shadow:none;
  6527. -webkit-box-shadow:none;
  6528. box-shadow:none;
  6529. font-family:'Microsoft YaHei', sans-serif;
  6530. font-weight:400;
  6531. font-style:normal;
  6532. font-size:10px;
  6533. }
  6534. #u39875.disabled {
  6535. }
  6536. #u39876_div {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:55px;
  6542. height:30px;
  6543. background:inherit;
  6544. background-color:rgba(255, 255, 255, 1);
  6545. box-sizing:border-box;
  6546. border-width:1px;
  6547. border-style:solid;
  6548. border-color:rgba(170, 170, 170, 1);
  6549. border-radius:4px;
  6550. -moz-box-shadow:none;
  6551. -webkit-box-shadow:none;
  6552. box-shadow:none;
  6553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:12px;
  6557. color:#555555;
  6558. }
  6559. #u39876 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:509px;
  6563. top:151px;
  6564. width:55px;
  6565. height:30px;
  6566. display:flex;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:12px;
  6571. color:#555555;
  6572. }
  6573. #u39876 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:5px 15px 5px 15px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u39876_text {
  6581. border-width:0px;
  6582. white-space:nowrap;
  6583. text-transform:none;
  6584. }
  6585. #u39877 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:0px;
  6591. height:0px;
  6592. }
  6593. #u39878_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:200px;
  6599. height:1180px;
  6600. background:inherit;
  6601. background-color:rgba(255, 255, 255, 1);
  6602. border:none;
  6603. border-radius:0px;
  6604. -moz-box-shadow:none;
  6605. -webkit-box-shadow:none;
  6606. box-shadow:none;
  6607. }
  6608. #u39878 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:120px;
  6612. top:50px;
  6613. width:200px;
  6614. height:1180px;
  6615. display:flex;
  6616. }
  6617. #u39878 .text {
  6618. position:absolute;
  6619. align-self:center;
  6620. padding:2px 2px 2px 2px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u39878_text {
  6625. border-width:0px;
  6626. word-wrap:break-word;
  6627. text-transform:none;
  6628. visibility:hidden;
  6629. }
  6630. #u39879_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:200px;
  6636. height:60px;
  6637. background:inherit;
  6638. background-color:rgba(224, 231, 247, 1);
  6639. border:none;
  6640. border-radius:0px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6645. font-weight:500;
  6646. font-style:normal;
  6647. font-size:18px;
  6648. }
  6649. #u39879 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:120px;
  6653. top:50px;
  6654. width:200px;
  6655. height:60px;
  6656. display:flex;
  6657. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6658. font-weight:500;
  6659. font-style:normal;
  6660. font-size:18px;
  6661. }
  6662. #u39879 .text {
  6663. position:absolute;
  6664. align-self:center;
  6665. padding:0px 0px 0px 20px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u39879_text {
  6670. border-width:0px;
  6671. word-wrap:break-word;
  6672. text-transform:none;
  6673. }
  6674. #u39880_div {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:33px;
  6680. height:22px;
  6681. background:inherit;
  6682. background-color:rgba(255, 255, 255, 0);
  6683. border:none;
  6684. border-radius:0px;
  6685. -moz-box-shadow:none;
  6686. -webkit-box-shadow:none;
  6687. box-shadow:none;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:16px;
  6692. }
  6693. #u39880 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:147px;
  6697. top:229px;
  6698. width:33px;
  6699. height:22px;
  6700. display:flex;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:16px;
  6705. }
  6706. #u39880 .text {
  6707. position:absolute;
  6708. align-self:flex-start;
  6709. padding:0px 0px 0px 0px;
  6710. box-sizing:border-box;
  6711. width:100%;
  6712. }
  6713. #u39880_text {
  6714. border-width:0px;
  6715. white-space:nowrap;
  6716. text-transform:none;
  6717. }
  6718. #u39881_div {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:33px;
  6724. height:22px;
  6725. background:inherit;
  6726. background-color:rgba(255, 255, 255, 0);
  6727. border:none;
  6728. border-radius:0px;
  6729. -moz-box-shadow:none;
  6730. -webkit-box-shadow:none;
  6731. box-shadow:none;
  6732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:16px;
  6736. }
  6737. #u39881 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:147px;
  6741. top:271px;
  6742. width:33px;
  6743. height:22px;
  6744. display:flex;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:16px;
  6749. }
  6750. #u39881 .text {
  6751. position:absolute;
  6752. align-self:flex-start;
  6753. padding:0px 0px 0px 0px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u39881_text {
  6758. border-width:0px;
  6759. white-space:nowrap;
  6760. text-transform:none;
  6761. }
  6762. #u39882_img {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:201px;
  6768. height:2px;
  6769. }
  6770. #u39882 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:120px;
  6774. top:172px;
  6775. width:200px;
  6776. height:1px;
  6777. display:flex;
  6778. }
  6779. #u39882 .text {
  6780. position:absolute;
  6781. align-self:center;
  6782. padding:2px 2px 2px 2px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u39882_text {
  6787. border-width:0px;
  6788. word-wrap:break-word;
  6789. text-transform:none;
  6790. visibility:hidden;
  6791. }
  6792. #u39883_div {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:49px;
  6798. height:22px;
  6799. background:inherit;
  6800. background-color:rgba(255, 255, 255, 0);
  6801. border:none;
  6802. border-radius:0px;
  6803. -moz-box-shadow:none;
  6804. -webkit-box-shadow:none;
  6805. box-shadow:none;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:16px;
  6810. }
  6811. #u39883 {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:147px;
  6815. top:130px;
  6816. width:49px;
  6817. height:22px;
  6818. display:flex;
  6819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6820. font-weight:400;
  6821. font-style:normal;
  6822. font-size:16px;
  6823. }
  6824. #u39883 .text {
  6825. position:absolute;
  6826. align-self:flex-start;
  6827. padding:0px 0px 0px 0px;
  6828. box-sizing:border-box;
  6829. width:100%;
  6830. }
  6831. #u39883_text {
  6832. border-width:0px;
  6833. white-space:nowrap;
  6834. text-transform:none;
  6835. }
  6836. #u39884_div {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:49px;
  6842. height:17px;
  6843. background:inherit;
  6844. background-color:rgba(255, 255, 255, 0);
  6845. border:none;
  6846. border-radius:0px;
  6847. -moz-box-shadow:none;
  6848. -webkit-box-shadow:none;
  6849. box-shadow:none;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:12px;
  6854. color:#AAAAAA;
  6855. }
  6856. #u39884 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:147px;
  6860. top:192px;
  6861. width:49px;
  6862. height:17px;
  6863. display:flex;
  6864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:12px;
  6868. color:#AAAAAA;
  6869. }
  6870. #u39884 .text {
  6871. position:absolute;
  6872. align-self:flex-start;
  6873. padding:0px 0px 0px 0px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u39884_text {
  6878. border-width:0px;
  6879. white-space:nowrap;
  6880. text-transform:none;
  6881. }
  6882. #u39885_div {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:33px;
  6888. height:22px;
  6889. background:inherit;
  6890. background-color:rgba(255, 255, 255, 0);
  6891. border:none;
  6892. border-radius:0px;
  6893. -moz-box-shadow:none;
  6894. -webkit-box-shadow:none;
  6895. box-shadow:none;
  6896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:16px;
  6900. }
  6901. #u39885 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:147px;
  6905. top:313px;
  6906. width:33px;
  6907. height:22px;
  6908. display:flex;
  6909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:16px;
  6913. }
  6914. #u39885 .text {
  6915. position:absolute;
  6916. align-self:flex-start;
  6917. padding:0px 0px 0px 0px;
  6918. box-sizing:border-box;
  6919. width:100%;
  6920. }
  6921. #u39885_text {
  6922. border-width:0px;
  6923. white-space:nowrap;
  6924. text-transform:none;
  6925. }
  6926. #u39886_div {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:0px;
  6930. top:0px;
  6931. width:33px;
  6932. height:22px;
  6933. background:inherit;
  6934. background-color:rgba(255, 255, 255, 0);
  6935. border:none;
  6936. border-radius:0px;
  6937. -moz-box-shadow:none;
  6938. -webkit-box-shadow:none;
  6939. box-shadow:none;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:16px;
  6944. color:#1890FF;
  6945. }
  6946. #u39886 {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:147px;
  6950. top:355px;
  6951. width:33px;
  6952. height:22px;
  6953. display:flex;
  6954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6955. font-weight:400;
  6956. font-style:normal;
  6957. font-size:16px;
  6958. color:#1890FF;
  6959. }
  6960. #u39886 .text {
  6961. position:absolute;
  6962. align-self:flex-start;
  6963. padding:0px 0px 0px 0px;
  6964. box-sizing:border-box;
  6965. width:100%;
  6966. }
  6967. #u39886_text {
  6968. border-width:0px;
  6969. white-space:nowrap;
  6970. text-transform:none;
  6971. }
  6972. #u39887_div {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:49px;
  6978. height:22px;
  6979. background:inherit;
  6980. background-color:rgba(255, 255, 255, 0);
  6981. border:none;
  6982. border-radius:0px;
  6983. -moz-box-shadow:none;
  6984. -webkit-box-shadow:none;
  6985. box-shadow:none;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:16px;
  6990. }
  6991. #u39887 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:147px;
  6995. top:397px;
  6996. width:49px;
  6997. height:22px;
  6998. display:flex;
  6999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. font-size:16px;
  7003. }
  7004. #u39887 .text {
  7005. position:absolute;
  7006. align-self:flex-start;
  7007. padding:0px 0px 0px 0px;
  7008. box-sizing:border-box;
  7009. width:100%;
  7010. }
  7011. #u39887_text {
  7012. border-width:0px;
  7013. white-space:nowrap;
  7014. text-transform:none;
  7015. }