styles.css 129 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213
  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. #u11955_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. #u11955 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u11955 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u11955_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u11956_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. #u11956 {
  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. #u11956 .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. #u11956_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u11957_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. #u11957 {
  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. #u11957 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u11957_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u11958 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u11959_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u11959 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u11959 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u11959_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u11960_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. #u11960 {
  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. #u11960 .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. #u11960_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u11961_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. #u11961 {
  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. #u11961 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u11961_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u11962 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u11963_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. #u11963 {
  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. #u11963 .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. #u11963_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u11964_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u11964 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u11964 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u11964_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u11965 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u11966_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. #u11966 {
  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. #u11966 .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. #u11966_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u11967_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u11967 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u11967 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u11967_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u11968 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u11969_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. #u11969 {
  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. #u11969 .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. #u11969_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u11970_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u11970 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u11970 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u11970_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u11971 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u11972_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. #u11972 {
  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. #u11972 .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. #u11972_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u11973_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u11973 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u11973 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u11973_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u11974 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u11975_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. #u11975 {
  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. #u11975 .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. #u11975_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u11976_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u11976 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u11976 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u11976_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u11977 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u11978_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. #u11978 {
  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. #u11978 .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. #u11978_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u11979_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u11979 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u11979 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u11979_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u11980 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u11981_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. #u11981 {
  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. #u11981 .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. #u11981_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u11982_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u11982 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u11982 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u11982_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u11983 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u11984_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. #u11984 {
  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. #u11984 .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. #u11984_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u11985_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u11985 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u11985 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u11985_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u11986 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u11987_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. #u11987 {
  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. #u11987 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u11987_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u11988_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u11988 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u11988 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u11988_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u11989 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u11990_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. #u11990 {
  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. #u11990 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u11990_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u11991_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u11991 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u11991 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u11991_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u11992 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u11993_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. #u11993 {
  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. #u11993 .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. #u11993_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u11994_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u11994 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u11994 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u11994_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u11995 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u11996_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. #u11996_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. #u11996_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. #u11996 {
  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. #u11996 .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. #u11996_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. #u11996.disabled {
  1276. }
  1277. .u11996_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u11997_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u11997 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u11997 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u11997_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u11998_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. #u11998 {
  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. #u11998 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u11998_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u11999_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u11999 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u11999 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u11999_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u12000 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u12001_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. #u12001 {
  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. #u12001 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u12001_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u12002_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u12002 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u12002 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u12002_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u12003_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u12003 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u12003 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u12003_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u12004_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u12004 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u12004 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u12004_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u12005_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u12005 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u12005 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u12005_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u12006 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u12007_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. #u12007 {
  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. #u12007 .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. #u12007_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u12008_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u12008 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u12008 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u12008_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u12009_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. #u12009 {
  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. #u12009 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u12009_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u12010_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. #u12010 {
  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. #u12010 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u12010_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u12011 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:0px;
  1736. height:0px;
  1737. }
  1738. #u12012_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. #u12012 {
  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. #u12012 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:5px 15px 5px 15px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u12012_text {
  1783. border-width:0px;
  1784. white-space:nowrap;
  1785. text-transform:none;
  1786. }
  1787. #u12013_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. #u12013 {
  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. #u12013 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:5px 15px 5px 15px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u12013_text {
  1832. border-width:0px;
  1833. white-space:nowrap;
  1834. text-transform:none;
  1835. }
  1836. #u12014 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:356px;
  1840. top:235px;
  1841. width:1214px;
  1842. height:328px;
  1843. }
  1844. #u12015_img {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:122px;
  1850. height:44px;
  1851. }
  1852. #u12015 {
  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. #u12015 .text {
  1867. position:absolute;
  1868. align-self:center;
  1869. padding:2px 2px 2px 0px;
  1870. box-sizing:border-box;
  1871. width:100%;
  1872. }
  1873. #u12015_text {
  1874. border-width:0px;
  1875. word-wrap:break-word;
  1876. text-transform:none;
  1877. }
  1878. #u12016_img {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:273px;
  1884. height:44px;
  1885. }
  1886. #u12016 {
  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. #u12016 .text {
  1901. position:absolute;
  1902. align-self:center;
  1903. padding:2px 2px 2px 0px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u12016_text {
  1908. border-width:0px;
  1909. word-wrap:break-word;
  1910. text-transform:none;
  1911. }
  1912. #u12017_img {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:312px;
  1918. height:44px;
  1919. }
  1920. #u12017 {
  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. #u12017 .text {
  1935. position:absolute;
  1936. align-self:center;
  1937. padding:2px 2px 2px 0px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u12017_text {
  1942. border-width:0px;
  1943. word-wrap:break-word;
  1944. text-transform:none;
  1945. }
  1946. #u12018_img {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:312px;
  1952. height:44px;
  1953. }
  1954. #u12018 {
  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. #u12018 .text {
  1969. position:absolute;
  1970. align-self:center;
  1971. padding:2px 2px 2px 0px;
  1972. box-sizing:border-box;
  1973. width:100%;
  1974. }
  1975. #u12018_text {
  1976. border-width:0px;
  1977. word-wrap:break-word;
  1978. text-transform:none;
  1979. }
  1980. #u12019_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:195px;
  1986. height:44px;
  1987. }
  1988. #u12019 {
  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. #u12019 .text {
  2003. position:absolute;
  2004. align-self:center;
  2005. padding:2px 2px 2px 0px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u12019_text {
  2010. border-width:0px;
  2011. word-wrap:break-word;
  2012. text-transform:none;
  2013. }
  2014. #u12020_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:122px;
  2020. height:38px;
  2021. }
  2022. #u12020 {
  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. #u12020 .text {
  2037. position:absolute;
  2038. align-self:center;
  2039. padding:2px 2px 2px 0px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u12020_text {
  2044. border-width:0px;
  2045. word-wrap:break-word;
  2046. text-transform:none;
  2047. visibility:hidden;
  2048. }
  2049. #u12021_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:273px;
  2055. height:38px;
  2056. }
  2057. #u12021 {
  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. #u12021 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u12021_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. visibility:hidden;
  2083. }
  2084. #u12022_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:312px;
  2090. height:38px;
  2091. }
  2092. #u12022 {
  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. #u12022 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:2px 2px 2px 0px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u12022_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. visibility:hidden;
  2118. }
  2119. #u12023_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:312px;
  2125. height:38px;
  2126. }
  2127. #u12023 {
  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. #u12023 .text {
  2142. position:absolute;
  2143. align-self:center;
  2144. padding:2px 2px 2px 0px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u12023_text {
  2149. border-width:0px;
  2150. word-wrap:break-word;
  2151. text-transform:none;
  2152. visibility:hidden;
  2153. }
  2154. #u12024_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:195px;
  2160. height:38px;
  2161. }
  2162. #u12024 {
  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. #u12024 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 2px 2px 0px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u12024_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. }
  2188. #u12025_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:122px;
  2194. height:38px;
  2195. }
  2196. #u12025 {
  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. #u12025 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 2px 2px 0px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u12025_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. visibility:hidden;
  2222. }
  2223. #u12026_img {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:273px;
  2229. height:38px;
  2230. }
  2231. #u12026 {
  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. #u12026 .text {
  2246. position:absolute;
  2247. align-self:center;
  2248. padding:2px 2px 2px 0px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u12026_text {
  2253. border-width:0px;
  2254. word-wrap:break-word;
  2255. text-transform:none;
  2256. visibility:hidden;
  2257. }
  2258. #u12027_img {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:312px;
  2264. height:38px;
  2265. }
  2266. #u12027 {
  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. #u12027 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:2px 2px 2px 0px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u12027_text {
  2288. border-width:0px;
  2289. word-wrap:break-word;
  2290. text-transform:none;
  2291. visibility:hidden;
  2292. }
  2293. #u12028_img {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:312px;
  2299. height:38px;
  2300. }
  2301. #u12028 {
  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. #u12028 .text {
  2316. position:absolute;
  2317. align-self:center;
  2318. padding:2px 2px 2px 0px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u12028_text {
  2323. border-width:0px;
  2324. word-wrap:break-word;
  2325. text-transform:none;
  2326. visibility:hidden;
  2327. }
  2328. #u12029_img {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:195px;
  2334. height:38px;
  2335. }
  2336. #u12029 {
  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. #u12029 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 2px 2px 0px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u12029_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. }
  2362. #u12030_img {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:122px;
  2368. height:38px;
  2369. }
  2370. #u12030 {
  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. #u12030 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:2px 2px 2px 0px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u12030_text {
  2392. border-width:0px;
  2393. word-wrap:break-word;
  2394. text-transform:none;
  2395. visibility:hidden;
  2396. }
  2397. #u12031_img {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:273px;
  2403. height:38px;
  2404. }
  2405. #u12031 {
  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. #u12031 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 0px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u12031_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. visibility:hidden;
  2431. }
  2432. #u12032_img {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:312px;
  2438. height:38px;
  2439. }
  2440. #u12032 {
  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. #u12032 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 2px 2px 0px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u12032_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. visibility:hidden;
  2466. }
  2467. #u12033_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:312px;
  2473. height:38px;
  2474. }
  2475. #u12033 {
  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. #u12033 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 0px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u12033_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. visibility:hidden;
  2501. }
  2502. #u12034_img {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:195px;
  2508. height:38px;
  2509. }
  2510. #u12034 {
  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. #u12034 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u12034_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u12035_img {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:122px;
  2543. height:38px;
  2544. }
  2545. #u12035 {
  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. #u12035 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u12035_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u12036_img {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:273px;
  2578. height:38px;
  2579. }
  2580. #u12036 {
  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. #u12036 .text {
  2595. position:absolute;
  2596. align-self:center;
  2597. padding:2px 2px 2px 0px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u12036_text {
  2602. border-width:0px;
  2603. word-wrap:break-word;
  2604. text-transform:none;
  2605. visibility:hidden;
  2606. }
  2607. #u12037_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:312px;
  2613. height:38px;
  2614. }
  2615. #u12037 {
  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. #u12037 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 0px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u12037_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. visibility:hidden;
  2641. }
  2642. #u12038_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:312px;
  2648. height:38px;
  2649. }
  2650. #u12038 {
  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. #u12038 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u12038_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u12039_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:195px;
  2683. height:38px;
  2684. }
  2685. #u12039 {
  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. #u12039 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:2px 2px 2px 0px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u12039_text {
  2707. border-width:0px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. visibility:hidden;
  2711. }
  2712. #u12040_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:122px;
  2718. height:35px;
  2719. }
  2720. #u12040 {
  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. #u12040 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 0px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u12040_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u12041_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:273px;
  2753. height:35px;
  2754. }
  2755. #u12041 {
  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. #u12041 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 0px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u12041_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u12042_img {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:312px;
  2788. height:35px;
  2789. }
  2790. #u12042 {
  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. #u12042 .text {
  2805. position:absolute;
  2806. align-self:center;
  2807. padding:2px 2px 2px 0px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u12042_text {
  2812. border-width:0px;
  2813. word-wrap:break-word;
  2814. text-transform:none;
  2815. visibility:hidden;
  2816. }
  2817. #u12043_img {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:312px;
  2823. height:35px;
  2824. }
  2825. #u12043 {
  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. #u12043 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:2px 2px 2px 0px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u12043_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. visibility:hidden;
  2851. }
  2852. #u12044_img {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:195px;
  2858. height:35px;
  2859. }
  2860. #u12044 {
  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. #u12044 .text {
  2875. position:absolute;
  2876. align-self:center;
  2877. padding:2px 2px 2px 0px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u12044_text {
  2882. border-width:0px;
  2883. word-wrap:break-word;
  2884. text-transform:none;
  2885. visibility:hidden;
  2886. }
  2887. #u12045_img {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:122px;
  2893. height:35px;
  2894. }
  2895. #u12045 {
  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. #u12045 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:2px 2px 2px 0px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u12045_text {
  2917. border-width:0px;
  2918. word-wrap:break-word;
  2919. text-transform:none;
  2920. visibility:hidden;
  2921. }
  2922. #u12046_img {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:273px;
  2928. height:35px;
  2929. }
  2930. #u12046 {
  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. #u12046 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 0px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u12046_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. visibility:hidden;
  2956. }
  2957. #u12047_img {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:312px;
  2963. height:35px;
  2964. }
  2965. #u12047 {
  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. #u12047 .text {
  2980. position:absolute;
  2981. align-self:center;
  2982. padding:2px 2px 2px 0px;
  2983. box-sizing:border-box;
  2984. width:100%;
  2985. }
  2986. #u12047_text {
  2987. border-width:0px;
  2988. word-wrap:break-word;
  2989. text-transform:none;
  2990. visibility:hidden;
  2991. }
  2992. #u12048_img {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:312px;
  2998. height:35px;
  2999. }
  3000. #u12048 {
  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. #u12048 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 0px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u12048_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. visibility:hidden;
  3026. }
  3027. #u12049_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:195px;
  3033. height:35px;
  3034. }
  3035. #u12049 {
  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. #u12049 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u12049_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u12050_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:122px;
  3068. height:32px;
  3069. }
  3070. #u12050 {
  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. #u12050 .text {
  3085. position:absolute;
  3086. align-self:center;
  3087. padding:2px 2px 2px 0px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u12050_text {
  3092. border-width:0px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. visibility:hidden;
  3096. }
  3097. #u12051_img {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:273px;
  3103. height:32px;
  3104. }
  3105. #u12051 {
  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. #u12051 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u12051_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u12052_img {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:312px;
  3138. height:32px;
  3139. }
  3140. #u12052 {
  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. #u12052 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 0px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u12052_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u12053_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:312px;
  3173. height:32px;
  3174. }
  3175. #u12053 {
  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. #u12053 .text {
  3190. position:absolute;
  3191. align-self:center;
  3192. padding:2px 2px 2px 0px;
  3193. box-sizing:border-box;
  3194. width:100%;
  3195. }
  3196. #u12053_text {
  3197. border-width:0px;
  3198. word-wrap:break-word;
  3199. text-transform:none;
  3200. visibility:hidden;
  3201. }
  3202. #u12054_img {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:195px;
  3208. height:32px;
  3209. }
  3210. #u12054 {
  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. #u12054 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 0px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u12054_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u12055_img {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:122px;
  3243. height:30px;
  3244. }
  3245. #u12055 {
  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. #u12055 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 0px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u12055_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. visibility:hidden;
  3271. }
  3272. #u12056_img {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:273px;
  3278. height:30px;
  3279. }
  3280. #u12056 {
  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. #u12056 .text {
  3295. position:absolute;
  3296. align-self:center;
  3297. padding:2px 2px 2px 0px;
  3298. box-sizing:border-box;
  3299. width:100%;
  3300. }
  3301. #u12056_text {
  3302. border-width:0px;
  3303. word-wrap:break-word;
  3304. text-transform:none;
  3305. visibility:hidden;
  3306. }
  3307. #u12057_img {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:312px;
  3313. height:30px;
  3314. }
  3315. #u12057 {
  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. #u12057 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 2px 2px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u12057_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u12058_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:312px;
  3348. height:30px;
  3349. }
  3350. #u12058 {
  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. #u12058 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u12058_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u12059_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:195px;
  3383. height:30px;
  3384. }
  3385. #u12059 {
  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. #u12059 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 0px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u12059_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. visibility:hidden;
  3411. }
  3412. #u12060 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:0px;
  3418. height:0px;
  3419. }
  3420. #u12061_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. #u12061 {
  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. #u12061 .text {
  3460. position:absolute;
  3461. align-self:center;
  3462. padding:2px 8px 2px 8px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u12061_text {
  3467. border-width:0px;
  3468. word-wrap:break-word;
  3469. text-transform:none;
  3470. visibility:hidden;
  3471. }
  3472. #u12062_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. #u12062_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. #u12062_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. #u12062 {
  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. #u12062 .text {
  3543. position:absolute;
  3544. align-self:center;
  3545. padding:2px 2px 2px 2px;
  3546. box-sizing:border-box;
  3547. width:100%;
  3548. }
  3549. #u12062_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. #u12062.disabled {
  3569. }
  3570. #u12063 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:0px;
  3576. height:0px;
  3577. }
  3578. #u12064_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. #u12064 {
  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. #u12064 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 8px 2px 8px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u12064_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. visibility:hidden;
  3629. }
  3630. #u12065_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. #u12065_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. #u12065_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. #u12065 {
  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. #u12065 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 2px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u12065_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. #u12065.disabled {
  3727. }
  3728. #u12066 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:0px;
  3734. height:0px;
  3735. }
  3736. #u12067_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. #u12067 {
  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. #u12067 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:2px 2px 2px 2px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u12067_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. visibility:hidden;
  3777. }
  3778. #u12068_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. #u12068_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. #u12068_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. #u12068 {
  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. #u12068 .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. #u12068_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. #u12068.disabled {
  3869. }
  3870. .u12068_input_option {
  3871. font-size:11px;
  3872. }
  3873. #u12069 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:0px;
  3879. height:0px;
  3880. }
  3881. #u12070 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:0px;
  3887. height:0px;
  3888. }
  3889. #u12071_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. #u12071 {
  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. #u12071 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 2px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u12071_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. visibility:hidden;
  3934. }
  3935. #u12072_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. #u12072 {
  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. #u12072 .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. #u12072_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. }
  3983. #u12073_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. #u12073 {
  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. #u12073 .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. #u12073_text {
  4027. border-width:0px;
  4028. white-space:nowrap;
  4029. text-transform:none;
  4030. }
  4031. #u12074_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. #u12074 {
  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. #u12074 .text {
  4066. position:absolute;
  4067. align-self:center;
  4068. padding:2px 16px 2px 16px;
  4069. box-sizing:border-box;
  4070. width:100%;
  4071. }
  4072. #u12074_text {
  4073. border-width:0px;
  4074. white-space:nowrap;
  4075. text-transform:none;
  4076. }
  4077. #u12075_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. #u12075 {
  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. #u12075 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 16px 2px 16px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u12075_text {
  4124. border-width:0px;
  4125. white-space:nowrap;
  4126. text-transform:none;
  4127. }
  4128. #u12076_img {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:20px;
  4134. height:20px;
  4135. }
  4136. #u12076 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:1149px;
  4140. top:527px;
  4141. width:20px;
  4142. height:20px;
  4143. display:flex;
  4144. }
  4145. #u12076 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 2px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u12076_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u12077 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:0px;
  4164. height:0px;
  4165. }
  4166. #u12078_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. #u12078 {
  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. #u12078 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:2px 2px 2px 2px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u12078_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. visibility:hidden;
  4211. }
  4212. #u12079_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. #u12079 {
  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. #u12079 .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. #u12079_text {
  4256. border-width:0px;
  4257. word-wrap:break-word;
  4258. text-transform:none;
  4259. }
  4260. #u12080_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. #u12080 {
  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. #u12080 .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. #u12080_text {
  4304. border-width:0px;
  4305. white-space:nowrap;
  4306. text-transform:none;
  4307. }
  4308. #u12081_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. #u12081 {
  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. #u12081 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:2px 16px 2px 16px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u12081_text {
  4350. border-width:0px;
  4351. white-space:nowrap;
  4352. text-transform:none;
  4353. }
  4354. #u12082_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. #u12082 {
  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. #u12082 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:2px 16px 2px 16px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u12082_text {
  4401. border-width:0px;
  4402. white-space:nowrap;
  4403. text-transform:none;
  4404. }
  4405. #u12083_img {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:20px;
  4411. height:20px;
  4412. }
  4413. #u12083 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:1149px;
  4417. top:699px;
  4418. width:20px;
  4419. height:20px;
  4420. display:flex;
  4421. }
  4422. #u12083 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:2px 2px 2px 2px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u12083_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. visibility:hidden;
  4434. }
  4435. #u12084_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. #u12084 {
  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. #u12084 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:5px 0px 5px 0px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u12084_text {
  4482. border-width:0px;
  4483. white-space:nowrap;
  4484. text-transform:none;
  4485. }
  4486. #u12086 {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:0px;
  4492. height:0px;
  4493. }
  4494. #u12087_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. #u12087 {
  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. #u12087 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 2px 2px 2px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u12087_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. }
  4541. #u12088_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. #u12088 {
  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. #u12088 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:5px 10px 5px 10px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u12088_text {
  4586. border-width:0px;
  4587. white-space:nowrap;
  4588. text-transform:none;
  4589. }
  4590. #u12089 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:0px;
  4596. height:0px;
  4597. }
  4598. #u12090_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. #u12090 {
  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. #u12090 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u12090_text {
  4642. border-width:0px;
  4643. white-space:nowrap;
  4644. text-transform:none;
  4645. }
  4646. #u12091_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. #u12091 {
  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. #u12091 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 2px 2px 2px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u12091_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u12092_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. #u12092 {
  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. #u12092 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u12092_text {
  4738. border-width:0px;
  4739. white-space:nowrap;
  4740. text-transform:none;
  4741. }
  4742. #u12093_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. #u12093_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. #u12093_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. #u12093 {
  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. #u12093 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 2px 2px 2px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u12093_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. #u12093.disabled {
  4836. }
  4837. #u12094_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. #u12094 {
  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. #u12094 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u12094_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. }
  4883. #u12095_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. #u12095 {
  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. #u12095 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u12095_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. }
  4930. #u12096_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. #u12096 {
  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. #u12096 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:2px 2px 2px 2px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u12096_text {
  4973. border-width:0px;
  4974. word-wrap:break-word;
  4975. text-transform:none;
  4976. }
  4977. #u12097_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. #u12097 {
  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. #u12097 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 2px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u12097_text {
  5017. border-width:0px;
  5018. word-wrap:break-word;
  5019. text-transform:none;
  5020. }
  5021. #u12098_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. #u12098 {
  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. #u12098 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 2px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u12098_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. }
  5068. #u12099_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. #u12099 {
  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. #u12099 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 2px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u12099_text {
  5110. border-width:0px;
  5111. white-space:nowrap;
  5112. text-transform:none;
  5113. }
  5114. #u12100 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:0px;
  5120. height:0px;
  5121. }
  5122. #u12101_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. #u12101 {
  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. #u12101 .text {
  5158. position:absolute;
  5159. align-self:center;
  5160. padding:2px 2px 2px 2px;
  5161. box-sizing:border-box;
  5162. width:100%;
  5163. }
  5164. #u12101_text {
  5165. border-width:0px;
  5166. word-wrap:break-word;
  5167. text-transform:none;
  5168. visibility:hidden;
  5169. }
  5170. #u12102_img {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:8px;
  5176. height:14px;
  5177. }
  5178. #u12102 {
  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. #u12102 .text {
  5192. position:absolute;
  5193. align-self:center;
  5194. padding:2px 2px 2px 2px;
  5195. box-sizing:border-box;
  5196. width:100%;
  5197. }
  5198. #u12102_text {
  5199. border-width:0px;
  5200. word-wrap:break-word;
  5201. text-transform:none;
  5202. visibility:hidden;
  5203. }
  5204. #u12103 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:0px;
  5210. height:0px;
  5211. }
  5212. #u12104_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. #u12104 {
  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. #u12104 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 2px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u12104_text {
  5255. border-width:0px;
  5256. word-wrap:break-word;
  5257. text-transform:none;
  5258. visibility:hidden;
  5259. }
  5260. #u12105_img {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:8px;
  5266. height:14px;
  5267. }
  5268. #u12105 {
  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. #u12105 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 2px 2px 2px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u12105_text {
  5289. border-width:0px;
  5290. word-wrap:break-word;
  5291. text-transform:none;
  5292. visibility:hidden;
  5293. }
  5294. #u12106 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:0px;
  5300. height:0px;
  5301. }
  5302. #u12107_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. #u12107 {
  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. #u12107 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 2px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u12107_text {
  5346. border-width:0px;
  5347. white-space:nowrap;
  5348. text-transform:none;
  5349. }
  5350. #u12108_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. #u12108 {
  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. #u12108 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u12108_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. visibility:hidden;
  5397. }
  5398. #u12109_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. #u12109 {
  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. #u12109 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:2px 2px 2px 2px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u12109_text {
  5442. border-width:0px;
  5443. white-space:nowrap;
  5444. text-transform:none;
  5445. }
  5446. #u12110_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. #u12110_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. #u12110_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. #u12110 {
  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. #u12110 .text {
  5515. position:absolute;
  5516. align-self:center;
  5517. padding:2px 2px 2px 2px;
  5518. box-sizing:border-box;
  5519. width:100%;
  5520. }
  5521. #u12110_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. #u12110.disabled {
  5540. }
  5541. #u12111_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. #u12111 {
  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. #u12111 .text {
  5576. position:absolute;
  5577. align-self:center;
  5578. padding:2px 2px 2px 2px;
  5579. box-sizing:border-box;
  5580. width:100%;
  5581. }
  5582. #u12111_text {
  5583. border-width:0px;
  5584. word-wrap:break-word;
  5585. text-transform:none;
  5586. }
  5587. #u12112_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. #u12112 {
  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. #u12112 .text {
  5627. position:absolute;
  5628. align-self:center;
  5629. padding:0px 0px 0px 0px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u12112_text {
  5634. border-width:0px;
  5635. white-space:nowrap;
  5636. text-transform:none;
  5637. }
  5638. #u12114_div {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:200px;
  5644. height:1180px;
  5645. background:inherit;
  5646. background-color:rgba(255, 255, 255, 1);
  5647. border:none;
  5648. border-radius:0px;
  5649. -moz-box-shadow:none;
  5650. -webkit-box-shadow:none;
  5651. box-shadow:none;
  5652. }
  5653. #u12114 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:120px;
  5657. top:50px;
  5658. width:200px;
  5659. height:1180px;
  5660. display:flex;
  5661. }
  5662. #u12114 .text {
  5663. position:absolute;
  5664. align-self:center;
  5665. padding:2px 2px 2px 2px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u12114_text {
  5670. border-width:0px;
  5671. word-wrap:break-word;
  5672. text-transform:none;
  5673. visibility:hidden;
  5674. }
  5675. #u12115_div {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:200px;
  5681. height:60px;
  5682. background:inherit;
  5683. background-color:rgba(224, 231, 247, 1);
  5684. border:none;
  5685. border-radius:0px;
  5686. -moz-box-shadow:none;
  5687. -webkit-box-shadow:none;
  5688. box-shadow:none;
  5689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5690. font-weight:500;
  5691. font-style:normal;
  5692. font-size:18px;
  5693. }
  5694. #u12115 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:120px;
  5698. top:50px;
  5699. width:200px;
  5700. height:60px;
  5701. display:flex;
  5702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5703. font-weight:500;
  5704. font-style:normal;
  5705. font-size:18px;
  5706. }
  5707. #u12115 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:0px 0px 0px 20px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u12115_text {
  5715. border-width:0px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. }
  5719. #u12116_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:65px;
  5725. height:22px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 0);
  5728. border:none;
  5729. border-radius:0px;
  5730. -moz-box-shadow:none;
  5731. -webkit-box-shadow:none;
  5732. box-shadow:none;
  5733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:16px;
  5737. }
  5738. #u12116 {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:147px;
  5742. top:161px;
  5743. width:65px;
  5744. height:22px;
  5745. display:flex;
  5746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:16px;
  5750. }
  5751. #u12116 .text {
  5752. position:absolute;
  5753. align-self:flex-start;
  5754. padding:0px 0px 0px 0px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u12116_text {
  5759. border-width:0px;
  5760. white-space:nowrap;
  5761. text-transform:none;
  5762. }
  5763. #u12117_div {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:49px;
  5769. height:17px;
  5770. background:inherit;
  5771. background-color:rgba(255, 255, 255, 0);
  5772. border:none;
  5773. border-radius:0px;
  5774. -moz-box-shadow:none;
  5775. -webkit-box-shadow:none;
  5776. box-shadow:none;
  5777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. font-size:12px;
  5781. color:#AAAAAA;
  5782. }
  5783. #u12117 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:147px;
  5787. top:125px;
  5788. width:49px;
  5789. height:17px;
  5790. display:flex;
  5791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:12px;
  5795. color:#AAAAAA;
  5796. }
  5797. #u12117 .text {
  5798. position:absolute;
  5799. align-self:flex-start;
  5800. padding:0px 0px 0px 0px;
  5801. box-sizing:border-box;
  5802. width:100%;
  5803. }
  5804. #u12117_text {
  5805. border-width:0px;
  5806. white-space:nowrap;
  5807. text-transform:none;
  5808. }
  5809. #u12118_div {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:65px;
  5815. height:22px;
  5816. background:inherit;
  5817. background-color:rgba(255, 255, 255, 0);
  5818. border:none;
  5819. border-radius:0px;
  5820. -moz-box-shadow:none;
  5821. -webkit-box-shadow:none;
  5822. box-shadow:none;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:16px;
  5827. }
  5828. #u12118 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:147px;
  5832. top:257px;
  5833. width:65px;
  5834. height:22px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:16px;
  5840. }
  5841. #u12118 .text {
  5842. position:absolute;
  5843. align-self:flex-start;
  5844. padding:0px 0px 0px 0px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u12118_text {
  5849. border-width:0px;
  5850. white-space:nowrap;
  5851. text-transform:none;
  5852. }
  5853. #u12119_div {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:49px;
  5859. height:17px;
  5860. background:inherit;
  5861. background-color:rgba(255, 255, 255, 0);
  5862. border:none;
  5863. border-radius:0px;
  5864. -moz-box-shadow:none;
  5865. -webkit-box-shadow:none;
  5866. box-shadow:none;
  5867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:12px;
  5871. color:#AAAAAA;
  5872. }
  5873. #u12119 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:147px;
  5877. top:221px;
  5878. width:49px;
  5879. height:17px;
  5880. display:flex;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:12px;
  5885. color:#AAAAAA;
  5886. }
  5887. #u12119 .text {
  5888. position:absolute;
  5889. align-self:flex-start;
  5890. padding:0px 0px 0px 0px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u12119_text {
  5895. border-width:0px;
  5896. white-space:nowrap;
  5897. text-transform:none;
  5898. }
  5899. #u12120_img {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:201px;
  5905. height:2px;
  5906. }
  5907. #u12120 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:120px;
  5911. top:199px;
  5912. width:200px;
  5913. height:1px;
  5914. display:flex;
  5915. }
  5916. #u12120 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 2px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u12120_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u12121_div {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:65px;
  5935. height:22px;
  5936. background:inherit;
  5937. background-color:rgba(255, 255, 255, 0);
  5938. border:none;
  5939. border-radius:0px;
  5940. -moz-box-shadow:none;
  5941. -webkit-box-shadow:none;
  5942. box-shadow:none;
  5943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5944. font-weight:400;
  5945. font-style:normal;
  5946. font-size:16px;
  5947. }
  5948. #u12121 {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:147px;
  5952. top:299px;
  5953. width:65px;
  5954. height:22px;
  5955. display:flex;
  5956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. font-size:16px;
  5960. }
  5961. #u12121 .text {
  5962. position:absolute;
  5963. align-self:flex-start;
  5964. padding:0px 0px 0px 0px;
  5965. box-sizing:border-box;
  5966. width:100%;
  5967. }
  5968. #u12121_text {
  5969. border-width:0px;
  5970. white-space:nowrap;
  5971. text-transform:none;
  5972. }
  5973. #u12122 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:0px;
  5979. height:0px;
  5980. }
  5981. #u12123_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:680px;
  5987. height:1198px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 255, 1);
  5990. box-sizing:border-box;
  5991. border-width:1px;
  5992. border-style:solid;
  5993. border-color:rgba(215, 215, 215, 1);
  5994. border-radius:0px;
  5995. -moz-box-shadow:none;
  5996. -webkit-box-shadow:none;
  5997. box-shadow:none;
  5998. }
  5999. #u12123 {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:1630px;
  6003. top:50px;
  6004. width:680px;
  6005. height:1198px;
  6006. display:flex;
  6007. }
  6008. #u12123 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:2px 2px 2px 2px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u12123_text {
  6016. border-width:0px;
  6017. word-wrap:break-word;
  6018. text-transform:none;
  6019. visibility:hidden;
  6020. }
  6021. #u12124_div {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:37px;
  6027. height:30px;
  6028. background:inherit;
  6029. background-color:rgba(255, 255, 255, 0);
  6030. border:none;
  6031. border-radius:0px;
  6032. -moz-box-shadow:none;
  6033. -webkit-box-shadow:none;
  6034. box-shadow:none;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:18px;
  6039. color:#000000;
  6040. line-height:30px;
  6041. }
  6042. #u12124 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:1650px;
  6046. top:70px;
  6047. width:37px;
  6048. height:30px;
  6049. display:flex;
  6050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:18px;
  6054. color:#000000;
  6055. line-height:30px;
  6056. }
  6057. #u12124 .text {
  6058. position:absolute;
  6059. align-self:flex-start;
  6060. padding:0px 0px 0px 0px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u12124_text {
  6065. border-width:0px;
  6066. white-space:nowrap;
  6067. text-transform:none;
  6068. }
  6069. #u12125_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:78px;
  6075. height:30px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 0);
  6078. border:none;
  6079. border-top:0px;
  6080. border-right:0px;
  6081. border-bottom:0px;
  6082. border-radius:0px;
  6083. border-top-left-radius:0px;
  6084. border-bottom-left-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. text-align:right;
  6093. }
  6094. #u12125 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:1694px;
  6098. top:124px;
  6099. width:78px;
  6100. height:30px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:14px;
  6106. text-align:right;
  6107. }
  6108. #u12125 .text {
  6109. position:absolute;
  6110. align-self:center;
  6111. padding:5px 0px 5px 0px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u12125_text {
  6116. border-width:0px;
  6117. white-space:nowrap;
  6118. text-transform:none;
  6119. }
  6120. #u12126 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:0px;
  6126. height:0px;
  6127. }
  6128. #u12127_div {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:400px;
  6134. height:40px;
  6135. background:inherit;
  6136. background-color:rgba(255, 255, 255, 1);
  6137. box-sizing:border-box;
  6138. border-width:1px;
  6139. border-style:solid;
  6140. border-color:rgba(170, 170, 170, 1);
  6141. border-radius:4px;
  6142. -moz-box-shadow:none;
  6143. -webkit-box-shadow:none;
  6144. box-shadow:none;
  6145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6146. font-weight:400;
  6147. font-style:normal;
  6148. text-align:left;
  6149. }
  6150. #u12127 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:1782px;
  6154. top:171px;
  6155. width:400px;
  6156. height:40px;
  6157. display:flex;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. text-align:left;
  6162. }
  6163. #u12127 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 10px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u12127_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u12128_input {
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:188px;
  6181. height:31px;
  6182. padding:2px 2px 2px 2px;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:13px;
  6187. letter-spacing:normal;
  6188. color:#AAAAAA;
  6189. vertical-align:none;
  6190. text-align:left;
  6191. text-transform:none;
  6192. background-color:transparent;
  6193. border-color:transparent;
  6194. }
  6195. #u12128_input.disabled {
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:188px;
  6200. height:31px;
  6201. padding:2px 2px 2px 2px;
  6202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:13px;
  6206. letter-spacing:normal;
  6207. color:#AAAAAA;
  6208. vertical-align:none;
  6209. text-align:left;
  6210. text-transform:none;
  6211. background-color:transparent;
  6212. border-color:transparent;
  6213. }
  6214. #u12128_div {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:188px;
  6220. height:31px;
  6221. background:inherit;
  6222. background-color:rgba(255, 255, 255, 0);
  6223. border:none;
  6224. border-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. color:#AAAAAA;
  6232. }
  6233. #u12128 {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:1792px;
  6237. top:176px;
  6238. width:188px;
  6239. height:31px;
  6240. display:flex;
  6241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. color:#AAAAAA;
  6245. }
  6246. #u12128 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:2px 2px 2px 2px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u12128_div.disabled {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:188px;
  6259. height:31px;
  6260. background:inherit;
  6261. background-color:rgba(240, 240, 240, 1);
  6262. border:none;
  6263. border-radius:0px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. color:#AAAAAA;
  6271. }
  6272. #u12128.disabled {
  6273. }
  6274. #u12129 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:0px;
  6280. height:0px;
  6281. }
  6282. #u12130_div {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:40px;
  6288. height:40px;
  6289. background:inherit;
  6290. background-color:rgba(255, 255, 255, 0);
  6291. border:none;
  6292. border-top:0px;
  6293. border-right:0px;
  6294. border-bottom:0px;
  6295. border-radius:0px;
  6296. border-top-left-radius:0px;
  6297. border-bottom-left-radius:0px;
  6298. -moz-box-shadow:none;
  6299. -webkit-box-shadow:none;
  6300. box-shadow:none;
  6301. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6302. font-weight:500;
  6303. font-style:normal;
  6304. font-size:18px;
  6305. text-align:center;
  6306. }
  6307. #u12130 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:2270px;
  6311. top:50px;
  6312. width:40px;
  6313. height:40px;
  6314. display:flex;
  6315. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6316. font-weight:500;
  6317. font-style:normal;
  6318. font-size:18px;
  6319. text-align:center;
  6320. }
  6321. #u12130 .text {
  6322. position:absolute;
  6323. align-self:center;
  6324. padding:5px 10px 5px 0px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u12130_text {
  6329. border-width:0px;
  6330. word-wrap:break-word;
  6331. text-transform:none;
  6332. }
  6333. #u12131_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:13px;
  6339. height:17px;
  6340. }
  6341. #u12131 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:2257px;
  6345. top:62px;
  6346. width:13px;
  6347. height:17px;
  6348. display:flex;
  6349. }
  6350. #u12131 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u12131_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }
  6363. #u12132 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:0px;
  6369. height:0px;
  6370. }
  6371. #u12133_div {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:680px;
  6377. height:60px;
  6378. background:inherit;
  6379. background-color:rgba(255, 255, 255, 1);
  6380. box-sizing:border-box;
  6381. border-width:1px;
  6382. border-style:solid;
  6383. border-color:rgba(215, 215, 215, 1);
  6384. border-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:14px;
  6392. color:#AAAAAA;
  6393. text-align:center;
  6394. line-height:30px;
  6395. }
  6396. #u12133 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:1630px;
  6400. top:1188px;
  6401. width:680px;
  6402. height:60px;
  6403. display:flex;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:14px;
  6408. color:#AAAAAA;
  6409. text-align:center;
  6410. line-height:30px;
  6411. }
  6412. #u12133 .text {
  6413. position:absolute;
  6414. align-self:center;
  6415. padding:5px 10px 5px 10px;
  6416. box-sizing:border-box;
  6417. width:100%;
  6418. }
  6419. #u12133_text {
  6420. border-width:0px;
  6421. word-wrap:break-word;
  6422. text-transform:none;
  6423. visibility:hidden;
  6424. }
  6425. #u12134_div {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:80px;
  6431. height:30px;
  6432. background:inherit;
  6433. background-color:rgba(24, 144, 255, 1);
  6434. border:none;
  6435. border-radius:4px;
  6436. -moz-box-shadow:none;
  6437. -webkit-box-shadow:none;
  6438. box-shadow:none;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. color:#FFFFFF;
  6444. }
  6445. #u12134 {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:2185px;
  6449. top:1203px;
  6450. width:80px;
  6451. height:30px;
  6452. display:flex;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:14px;
  6457. color:#FFFFFF;
  6458. }
  6459. #u12134 .text {
  6460. position:absolute;
  6461. align-self:center;
  6462. padding:2px 2px 2px 2px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u12134_text {
  6467. border-width:0px;
  6468. word-wrap:break-word;
  6469. text-transform:none;
  6470. }
  6471. #u12135_div {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:80px;
  6477. height:30px;
  6478. background:inherit;
  6479. background-color:rgba(255, 255, 255, 1);
  6480. box-sizing:border-box;
  6481. border-width:1px;
  6482. border-style:solid;
  6483. border-color:rgba(170, 170, 170, 1);
  6484. border-radius:4px;
  6485. -moz-box-shadow:none;
  6486. -webkit-box-shadow:none;
  6487. box-shadow:none;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:14px;
  6492. }
  6493. #u12135 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:2086px;
  6497. top:1203px;
  6498. width:80px;
  6499. height:30px;
  6500. display:flex;
  6501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:14px;
  6505. }
  6506. #u12135 .text {
  6507. position:absolute;
  6508. align-self:center;
  6509. padding:2px 2px 2px 2px;
  6510. box-sizing:border-box;
  6511. width:100%;
  6512. }
  6513. #u12135_text {
  6514. border-width:0px;
  6515. word-wrap:break-word;
  6516. text-transform:none;
  6517. }
  6518. #u12136 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:0px;
  6522. top:0px;
  6523. width:0px;
  6524. height:0px;
  6525. }
  6526. #u12137_div {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:400px;
  6532. height:40px;
  6533. background:inherit;
  6534. background-color:rgba(255, 255, 255, 1);
  6535. box-sizing:border-box;
  6536. border-width:1px;
  6537. border-style:solid;
  6538. border-color:rgba(170, 170, 170, 1);
  6539. border-radius:4px;
  6540. -moz-box-shadow:none;
  6541. -webkit-box-shadow:none;
  6542. box-shadow:none;
  6543. }
  6544. #u12137 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:1782px;
  6548. top:119px;
  6549. width:400px;
  6550. height:40px;
  6551. display:flex;
  6552. }
  6553. #u12137 .text {
  6554. position:absolute;
  6555. align-self:center;
  6556. padding:2px 2px 2px 0px;
  6557. box-sizing:border-box;
  6558. width:100%;
  6559. }
  6560. #u12137_text {
  6561. border-width:0px;
  6562. word-wrap:break-word;
  6563. text-transform:none;
  6564. visibility:hidden;
  6565. }
  6566. #u12138_input {
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:380px;
  6571. height:30px;
  6572. padding:2px 2px 2px 0px;
  6573. font-family:'ArialMT', 'Arial', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:13px;
  6577. letter-spacing:normal;
  6578. color:#AAAAAA;
  6579. vertical-align:none;
  6580. text-align:left;
  6581. text-transform:none;
  6582. background-color:transparent;
  6583. border-color:transparent;
  6584. }
  6585. #u12138_input.disabled {
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:380px;
  6590. height:30px;
  6591. padding:2px 2px 2px 0px;
  6592. font-family:'ArialMT', 'Arial', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:13px;
  6596. letter-spacing:normal;
  6597. color:#AAAAAA;
  6598. vertical-align:none;
  6599. text-align:left;
  6600. text-transform:none;
  6601. background-color:transparent;
  6602. border-color:transparent;
  6603. }
  6604. #u12138_div {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:380px;
  6610. height:30px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 1);
  6613. border:none;
  6614. border-radius:0px;
  6615. -moz-box-shadow:none;
  6616. -webkit-box-shadow:none;
  6617. box-shadow:none;
  6618. color:#AAAAAA;
  6619. }
  6620. #u12138 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:1792px;
  6624. top:125px;
  6625. width:380px;
  6626. height:30px;
  6627. display:flex;
  6628. color:#AAAAAA;
  6629. }
  6630. #u12138 .text {
  6631. position:absolute;
  6632. align-self:flex-start;
  6633. padding:2px 2px 2px 0px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u12138_div.disabled {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:0px;
  6641. top:0px;
  6642. width:380px;
  6643. height:30px;
  6644. background:inherit;
  6645. background-color:rgba(240, 240, 240, 1);
  6646. border:none;
  6647. border-radius:0px;
  6648. -moz-box-shadow:none;
  6649. -webkit-box-shadow:none;
  6650. box-shadow:none;
  6651. color:#AAAAAA;
  6652. }
  6653. #u12138.disabled {
  6654. }
  6655. .u12138_input_option {
  6656. }
  6657. #u12139_div {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:78px;
  6663. height:30px;
  6664. background:inherit;
  6665. background-color:rgba(255, 255, 255, 0);
  6666. border:none;
  6667. border-top:0px;
  6668. border-right:0px;
  6669. border-bottom:0px;
  6670. border-radius:0px;
  6671. border-top-left-radius:0px;
  6672. border-bottom-left-radius:0px;
  6673. -moz-box-shadow:none;
  6674. -webkit-box-shadow:none;
  6675. box-shadow:none;
  6676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6677. font-weight:400;
  6678. font-style:normal;
  6679. font-size:14px;
  6680. text-align:right;
  6681. }
  6682. #u12139 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:1694px;
  6686. top:176px;
  6687. width:78px;
  6688. height:30px;
  6689. display:flex;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:14px;
  6694. text-align:right;
  6695. }
  6696. #u12139 .text {
  6697. position:absolute;
  6698. align-self:center;
  6699. padding:5px 0px 5px 0px;
  6700. box-sizing:border-box;
  6701. width:100%;
  6702. }
  6703. #u12139_text {
  6704. border-width:0px;
  6705. white-space:nowrap;
  6706. text-transform:none;
  6707. }
  6708. #u12140 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:0px;
  6712. top:0px;
  6713. width:0px;
  6714. height:0px;
  6715. }
  6716. #u12141_div {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:400px;
  6722. height:40px;
  6723. background:inherit;
  6724. background-color:rgba(255, 255, 255, 1);
  6725. box-sizing:border-box;
  6726. border-width:1px;
  6727. border-style:solid;
  6728. border-color:rgba(170, 170, 170, 1);
  6729. border-radius:4px;
  6730. -moz-box-shadow:none;
  6731. -webkit-box-shadow:none;
  6732. box-shadow:none;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. text-align:left;
  6737. }
  6738. #u12141 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:1782px;
  6742. top:221px;
  6743. width:400px;
  6744. height:40px;
  6745. display:flex;
  6746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6747. font-weight:400;
  6748. font-style:normal;
  6749. text-align:left;
  6750. }
  6751. #u12141 .text {
  6752. position:absolute;
  6753. align-self:center;
  6754. padding:2px 2px 2px 10px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u12141_text {
  6759. border-width:0px;
  6760. word-wrap:break-word;
  6761. text-transform:none;
  6762. visibility:hidden;
  6763. }
  6764. #u12142_input {
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:188px;
  6769. height:31px;
  6770. padding:2px 2px 2px 2px;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:13px;
  6775. letter-spacing:normal;
  6776. color:#AAAAAA;
  6777. vertical-align:none;
  6778. text-align:left;
  6779. text-transform:none;
  6780. background-color:transparent;
  6781. border-color:transparent;
  6782. }
  6783. #u12142_input.disabled {
  6784. position:absolute;
  6785. left:0px;
  6786. top:0px;
  6787. width:188px;
  6788. height:31px;
  6789. padding:2px 2px 2px 2px;
  6790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6791. font-weight:400;
  6792. font-style:normal;
  6793. font-size:13px;
  6794. letter-spacing:normal;
  6795. color:#AAAAAA;
  6796. vertical-align:none;
  6797. text-align:left;
  6798. text-transform:none;
  6799. background-color:transparent;
  6800. border-color:transparent;
  6801. }
  6802. #u12142_div {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:188px;
  6808. height:31px;
  6809. background:inherit;
  6810. background-color:rgba(255, 255, 255, 1);
  6811. border:none;
  6812. border-radius:0px;
  6813. -moz-box-shadow:none;
  6814. -webkit-box-shadow:none;
  6815. box-shadow:none;
  6816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6817. font-weight:400;
  6818. font-style:normal;
  6819. color:#AAAAAA;
  6820. }
  6821. #u12142 {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:1792px;
  6825. top:226px;
  6826. width:188px;
  6827. height:31px;
  6828. display:flex;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. color:#AAAAAA;
  6833. }
  6834. #u12142 .text {
  6835. position:absolute;
  6836. align-self:center;
  6837. padding:2px 2px 2px 2px;
  6838. box-sizing:border-box;
  6839. width:100%;
  6840. }
  6841. #u12142_div.disabled {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:188px;
  6847. height:31px;
  6848. background:inherit;
  6849. background-color:rgba(240, 240, 240, 1);
  6850. border:none;
  6851. border-radius:0px;
  6852. -moz-box-shadow:none;
  6853. -webkit-box-shadow:none;
  6854. box-shadow:none;
  6855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. color:#AAAAAA;
  6859. }
  6860. #u12142.disabled {
  6861. }
  6862. #u12143_div {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:78px;
  6868. height:30px;
  6869. background:inherit;
  6870. background-color:rgba(255, 255, 255, 0);
  6871. border:none;
  6872. border-top:0px;
  6873. border-right:0px;
  6874. border-bottom:0px;
  6875. border-radius:0px;
  6876. border-top-left-radius:0px;
  6877. border-bottom-left-radius:0px;
  6878. -moz-box-shadow:none;
  6879. -webkit-box-shadow:none;
  6880. box-shadow:none;
  6881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:14px;
  6885. text-align:right;
  6886. }
  6887. #u12143 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:1694px;
  6891. top:227px;
  6892. width:78px;
  6893. height:30px;
  6894. display:flex;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:14px;
  6899. text-align:right;
  6900. }
  6901. #u12143 .text {
  6902. position:absolute;
  6903. align-self:center;
  6904. padding:5px 0px 5px 0px;
  6905. box-sizing:border-box;
  6906. width:100%;
  6907. }
  6908. #u12143_text {
  6909. border-width:0px;
  6910. white-space:nowrap;
  6911. text-transform:none;
  6912. }
  6913. #u12144 {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:0px;
  6917. top:0px;
  6918. width:0px;
  6919. height:0px;
  6920. }
  6921. #u12145_div {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:0px;
  6925. top:0px;
  6926. width:400px;
  6927. height:80px;
  6928. background:inherit;
  6929. background-color:rgba(255, 255, 255, 1);
  6930. box-sizing:border-box;
  6931. border-width:1px;
  6932. border-style:solid;
  6933. border-color:rgba(170, 170, 170, 1);
  6934. border-radius:4px;
  6935. -moz-box-shadow:none;
  6936. -webkit-box-shadow:none;
  6937. box-shadow:none;
  6938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6939. font-weight:400;
  6940. font-style:normal;
  6941. text-align:left;
  6942. }
  6943. #u12145 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:1782px;
  6947. top:361px;
  6948. width:400px;
  6949. height:80px;
  6950. display:flex;
  6951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. text-align:left;
  6955. }
  6956. #u12145 .text {
  6957. position:absolute;
  6958. align-self:center;
  6959. padding:2px 2px 2px 10px;
  6960. box-sizing:border-box;
  6961. width:100%;
  6962. }
  6963. #u12145_text {
  6964. border-width:0px;
  6965. word-wrap:break-word;
  6966. text-transform:none;
  6967. visibility:hidden;
  6968. }
  6969. #u12146_input {
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:188px;
  6974. height:31px;
  6975. padding:2px 2px 2px 2px;
  6976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6977. font-weight:400;
  6978. font-style:normal;
  6979. font-size:13px;
  6980. letter-spacing:normal;
  6981. color:#AAAAAA;
  6982. vertical-align:none;
  6983. text-align:left;
  6984. text-transform:none;
  6985. background-color:transparent;
  6986. border-color:transparent;
  6987. }
  6988. #u12146_input.disabled {
  6989. position:absolute;
  6990. left:0px;
  6991. top:0px;
  6992. width:188px;
  6993. height:31px;
  6994. padding:2px 2px 2px 2px;
  6995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6996. font-weight:400;
  6997. font-style:normal;
  6998. font-size:13px;
  6999. letter-spacing:normal;
  7000. color:#AAAAAA;
  7001. vertical-align:none;
  7002. text-align:left;
  7003. text-transform:none;
  7004. background-color:transparent;
  7005. border-color:transparent;
  7006. }
  7007. #u12146_div {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:188px;
  7013. height:31px;
  7014. background:inherit;
  7015. background-color:rgba(255, 255, 255, 1);
  7016. border:none;
  7017. border-radius:0px;
  7018. -moz-box-shadow:none;
  7019. -webkit-box-shadow:none;
  7020. box-shadow:none;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. color:#AAAAAA;
  7025. }
  7026. #u12146 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:1792px;
  7030. top:366px;
  7031. width:188px;
  7032. height:31px;
  7033. display:flex;
  7034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7035. font-weight:400;
  7036. font-style:normal;
  7037. color:#AAAAAA;
  7038. }
  7039. #u12146 .text {
  7040. position:absolute;
  7041. align-self:center;
  7042. padding:2px 2px 2px 2px;
  7043. box-sizing:border-box;
  7044. width:100%;
  7045. }
  7046. #u12146_div.disabled {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:188px;
  7052. height:31px;
  7053. background:inherit;
  7054. background-color:rgba(240, 240, 240, 1);
  7055. border:none;
  7056. border-radius:0px;
  7057. -moz-box-shadow:none;
  7058. -webkit-box-shadow:none;
  7059. box-shadow:none;
  7060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7061. font-weight:400;
  7062. font-style:normal;
  7063. color:#AAAAAA;
  7064. }
  7065. #u12146.disabled {
  7066. }
  7067. #u12147_div {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:71px;
  7073. height:30px;
  7074. background:inherit;
  7075. background-color:rgba(255, 255, 255, 0);
  7076. border:none;
  7077. border-top:0px;
  7078. border-right:0px;
  7079. border-bottom:0px;
  7080. border-radius:0px;
  7081. border-top-left-radius:0px;
  7082. border-bottom-left-radius:0px;
  7083. -moz-box-shadow:none;
  7084. -webkit-box-shadow:none;
  7085. box-shadow:none;
  7086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:14px;
  7090. text-align:right;
  7091. }
  7092. #u12147 {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:1701px;
  7096. top:367px;
  7097. width:71px;
  7098. height:30px;
  7099. display:flex;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:14px;
  7104. text-align:right;
  7105. }
  7106. #u12147 .text {
  7107. position:absolute;
  7108. align-self:center;
  7109. padding:5px 0px 5px 0px;
  7110. box-sizing:border-box;
  7111. width:100%;
  7112. }
  7113. #u12147_text {
  7114. border-width:0px;
  7115. white-space:nowrap;
  7116. text-transform:none;
  7117. }
  7118. #u12148_div {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:0px;
  7122. top:0px;
  7123. width:80px;
  7124. height:80px;
  7125. background:inherit;
  7126. background-color:rgba(255, 255, 255, 1);
  7127. box-sizing:border-box;
  7128. border-width:1px;
  7129. border-style:solid;
  7130. border-color:rgba(170, 170, 170, 1);
  7131. border-radius:4px;
  7132. -moz-box-shadow:none;
  7133. -webkit-box-shadow:none;
  7134. box-shadow:none;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. }
  7139. #u12148 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:1784px;
  7143. top:271px;
  7144. width:80px;
  7145. height:80px;
  7146. display:flex;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. }
  7151. #u12148 .text {
  7152. position:absolute;
  7153. align-self:center;
  7154. padding:2px 2px 2px 2px;
  7155. box-sizing:border-box;
  7156. width:100%;
  7157. }
  7158. #u12148_text {
  7159. border-width:0px;
  7160. word-wrap:break-word;
  7161. text-transform:none;
  7162. }
  7163. #u12149_div {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:0px;
  7167. top:0px;
  7168. width:71px;
  7169. height:30px;
  7170. background:inherit;
  7171. background-color:rgba(255, 255, 255, 0);
  7172. border:none;
  7173. border-top:0px;
  7174. border-right:0px;
  7175. border-bottom:0px;
  7176. border-radius:0px;
  7177. border-top-left-radius:0px;
  7178. border-bottom-left-radius:0px;
  7179. -moz-box-shadow:none;
  7180. -webkit-box-shadow:none;
  7181. box-shadow:none;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:14px;
  7186. text-align:right;
  7187. }
  7188. #u12149 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:1701px;
  7192. top:276px;
  7193. width:71px;
  7194. height:30px;
  7195. display:flex;
  7196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:14px;
  7200. text-align:right;
  7201. }
  7202. #u12149 .text {
  7203. position:absolute;
  7204. align-self:center;
  7205. padding:5px 0px 5px 0px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u12149_text {
  7210. border-width:0px;
  7211. white-space:nowrap;
  7212. text-transform:none;
  7213. }