styles.css 134 KB

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