styles.css 131 KB

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