styles.css 136 KB

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