styles.css 143 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3222px;
  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. #u15284_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. #u15284 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u15284 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u15284_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u15285_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. #u15285 {
  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. #u15285 .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. #u15285_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u15286_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. #u15286 {
  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. #u15286 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u15286_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u15287 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u15288_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u15288 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u15288 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u15288_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u15289_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. #u15289 {
  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. #u15289 .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. #u15289_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u15290_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. #u15290 {
  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. #u15290 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u15290_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u15291 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u15292_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. #u15292 {
  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. #u15292 .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. #u15292_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u15293_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u15293 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u15293 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u15293_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u15294 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u15295_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. #u15295 {
  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. #u15295 .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. #u15295_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u15296_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u15296 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u15296 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u15296_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u15297 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u15298_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. #u15298 {
  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. #u15298 .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. #u15298_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u15299_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u15299 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u15299 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u15299_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u15300 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u15301_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. #u15301 {
  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. #u15301 .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. #u15301_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u15302_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u15302 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u15302 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u15302_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u15303 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u15304_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. #u15304 {
  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. #u15304 .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. #u15304_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u15305_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u15305 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u15305 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u15305_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u15306 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u15307_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. #u15307 {
  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. #u15307 .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. #u15307_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u15308_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u15308 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u15308 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u15308_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u15309 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u15310_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. #u15310 {
  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. #u15310 .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. #u15310_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u15311_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u15311 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u15311 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u15311_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u15312 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u15313_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. #u15313 {
  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. #u15313 .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. #u15313_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u15314_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u15314 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u15314 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u15314_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u15315 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u15316_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. #u15316 {
  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. #u15316 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u15316_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u15317_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u15317 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u15317 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u15317_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u15318 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u15319_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. #u15319 {
  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. #u15319 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u15319_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u15320_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u15320 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u15320 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u15320_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u15321 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u15322_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. #u15322 {
  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. #u15322 .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. #u15322_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u15323_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u15323 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u15323 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u15323_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u15324 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u15325_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. #u15325_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. #u15325_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. #u15325 {
  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. #u15325 .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. #u15325_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. #u15325.disabled {
  1276. }
  1277. .u15325_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u15326_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u15326 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u15326 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u15326_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u15327_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. #u15327 {
  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. #u15327 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u15327_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u15328_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u15328 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u15328 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u15328_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u15329 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u15330_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. #u15330 {
  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. #u15330 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u15330_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u15331_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u15331 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u15331 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u15331_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u15332_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u15332 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u15332 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u15332_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u15333_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u15333 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u15333 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u15333_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u15334_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u15334 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u15334 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u15334_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u15335 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u15336_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. #u15336 {
  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. #u15336 .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. #u15336_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u15337_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u15337 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u15337 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u15337_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u15338_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. #u15338 {
  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. #u15338 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u15338_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u15339_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:71px;
  1687. height:40px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 0);
  1690. border:none;
  1691. border-top:0px;
  1692. border-right:0px;
  1693. border-bottom:0px;
  1694. border-radius:0px;
  1695. border-top-left-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:14px;
  1704. line-height:40px;
  1705. }
  1706. #u15339 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:684px;
  1710. top:282px;
  1711. width:71px;
  1712. height:40px;
  1713. display:flex;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:14px;
  1718. line-height:40px;
  1719. }
  1720. #u15339 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:0px 0px 0px 0px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u15339_text {
  1728. border-width:0px;
  1729. white-space:nowrap;
  1730. text-transform:none;
  1731. }
  1732. #u15340 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:0px;
  1738. height:0px;
  1739. }
  1740. #u15341_div {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:120px;
  1746. height:40px;
  1747. background:inherit;
  1748. background-color:rgba(242, 242, 242, 1);
  1749. box-sizing:border-box;
  1750. border-width:1px;
  1751. border-style:solid;
  1752. border-color:rgba(215, 215, 215, 1);
  1753. border-radius:4px;
  1754. -moz-box-shadow:none;
  1755. -webkit-box-shadow:none;
  1756. box-shadow:none;
  1757. font-size:14px;
  1758. }
  1759. #u15341 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:755px;
  1763. top:282px;
  1764. width:120px;
  1765. height:40px;
  1766. display:flex;
  1767. font-size:14px;
  1768. }
  1769. #u15341 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 2px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u15341_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. visibility:hidden;
  1781. }
  1782. #u15342_input {
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:115px;
  1787. height:31px;
  1788. padding:2px 2px 2px 2px;
  1789. font-family:'ArialMT', 'Arial', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:14px;
  1793. letter-spacing:normal;
  1794. color:#AAAAAA;
  1795. vertical-align:none;
  1796. text-align:left;
  1797. text-transform:none;
  1798. background-color:transparent;
  1799. border-color:transparent;
  1800. }
  1801. #u15342_input.disabled {
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:115px;
  1806. height:31px;
  1807. padding:2px 2px 2px 2px;
  1808. font-family:'ArialMT', 'Arial', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. letter-spacing:normal;
  1813. color:#AAAAAA;
  1814. vertical-align:none;
  1815. text-align:left;
  1816. text-transform:none;
  1817. background-color:transparent;
  1818. border-color:transparent;
  1819. }
  1820. #u15342_div {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:115px;
  1826. height:31px;
  1827. background:inherit;
  1828. background-color:rgba(242, 242, 242, 1);
  1829. border:none;
  1830. border-radius:0px;
  1831. -moz-box-shadow:none;
  1832. -webkit-box-shadow:none;
  1833. box-shadow:none;
  1834. font-size:14px;
  1835. color:#AAAAAA;
  1836. }
  1837. #u15342 {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:758px;
  1841. top:285px;
  1842. width:115px;
  1843. height:31px;
  1844. display:flex;
  1845. font-size:14px;
  1846. color:#AAAAAA;
  1847. }
  1848. #u15342 .text {
  1849. position:absolute;
  1850. align-self:flex-start;
  1851. padding:2px 2px 2px 2px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u15342_div.disabled {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:115px;
  1861. height:31px;
  1862. background:inherit;
  1863. background-color:rgba(240, 240, 240, 1);
  1864. border:none;
  1865. border-radius:0px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. font-size:14px;
  1870. color:#AAAAAA;
  1871. }
  1872. #u15342.disabled {
  1873. }
  1874. .u15342_input_option {
  1875. font-size:14px;
  1876. }
  1877. #u15343 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:0px;
  1883. height:0px;
  1884. }
  1885. #u15344_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:211px;
  1891. height:40px;
  1892. background:inherit;
  1893. background-color:rgba(242, 242, 242, 1);
  1894. box-sizing:border-box;
  1895. border-width:1px;
  1896. border-style:solid;
  1897. border-color:rgba(201, 201, 201, 1);
  1898. border-radius:4px;
  1899. -moz-box-shadow:none;
  1900. -webkit-box-shadow:none;
  1901. box-shadow:none;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:14px;
  1906. text-align:right;
  1907. }
  1908. #u15344 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:885px;
  1912. top:282px;
  1913. width:211px;
  1914. height:40px;
  1915. display:flex;
  1916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1917. font-weight:400;
  1918. font-style:normal;
  1919. font-size:14px;
  1920. text-align:right;
  1921. }
  1922. #u15344 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:2px 8px 2px 8px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u15344_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. }
  1934. #u15345_input {
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:149px;
  1939. height:33px;
  1940. padding:2px 2px 2px 2px;
  1941. font-family:'Microsoft YaHei', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:13px;
  1945. letter-spacing:normal;
  1946. color:#000000;
  1947. vertical-align:none;
  1948. text-align:left;
  1949. text-transform:none;
  1950. background-color:transparent;
  1951. border-color:transparent;
  1952. }
  1953. #u15345_input.disabled {
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:149px;
  1958. height:33px;
  1959. padding:2px 2px 2px 2px;
  1960. font-family:'Microsoft YaHei', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:13px;
  1964. letter-spacing:normal;
  1965. color:#000000;
  1966. vertical-align:none;
  1967. text-align:left;
  1968. text-transform:none;
  1969. background-color:transparent;
  1970. border-color:transparent;
  1971. }
  1972. #u15345_div {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:149px;
  1978. height:33px;
  1979. background:inherit;
  1980. background-color:rgba(242, 242, 242, 1);
  1981. border:none;
  1982. border-radius:0px;
  1983. -moz-box-shadow:none;
  1984. -webkit-box-shadow:none;
  1985. box-shadow:none;
  1986. font-family:'Microsoft YaHei', sans-serif;
  1987. font-weight:400;
  1988. font-style:normal;
  1989. }
  1990. #u15345 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:893px;
  1994. top:283px;
  1995. width:149px;
  1996. height:33px;
  1997. display:flex;
  1998. font-family:'Microsoft YaHei', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. }
  2002. #u15345 .text {
  2003. position:absolute;
  2004. align-self:center;
  2005. padding:2px 2px 2px 2px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u15345_div.disabled {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:149px;
  2015. height:33px;
  2016. background:inherit;
  2017. background-color:rgba(240, 240, 240, 1);
  2018. border:none;
  2019. border-radius:0px;
  2020. -moz-box-shadow:none;
  2021. -webkit-box-shadow:none;
  2022. box-shadow:none;
  2023. font-family:'Microsoft YaHei', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. }
  2027. #u15345.disabled {
  2028. }
  2029. #u15346_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:80px;
  2035. height:30px;
  2036. }
  2037. #u15346 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:684px;
  2041. top:352px;
  2042. width:80px;
  2043. height:30px;
  2044. display:flex;
  2045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:14px;
  2049. color:#FFFFFF;
  2050. }
  2051. #u15346 .text {
  2052. position:absolute;
  2053. align-self:center;
  2054. padding:2px 2px 2px 2px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u15346_text {
  2059. border-width:0px;
  2060. word-wrap:break-word;
  2061. text-transform:none;
  2062. }
  2063. #u15348 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:0px;
  2069. height:0px;
  2070. }
  2071. #u15349_div {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:200px;
  2077. height:1180px;
  2078. background:inherit;
  2079. background-color:rgba(255, 255, 255, 1);
  2080. border:none;
  2081. border-radius:0px;
  2082. -moz-box-shadow:none;
  2083. -webkit-box-shadow:none;
  2084. box-shadow:none;
  2085. }
  2086. #u15349 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:120px;
  2090. top:50px;
  2091. width:200px;
  2092. height:1180px;
  2093. display:flex;
  2094. }
  2095. #u15349 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 2px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u15349_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. visibility:hidden;
  2107. }
  2108. #u15350_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:200px;
  2114. height:60px;
  2115. background:inherit;
  2116. background-color:rgba(224, 231, 247, 1);
  2117. border:none;
  2118. border-radius:0px;
  2119. -moz-box-shadow:none;
  2120. -webkit-box-shadow:none;
  2121. box-shadow:none;
  2122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2123. font-weight:500;
  2124. font-style:normal;
  2125. font-size:18px;
  2126. }
  2127. #u15350 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:120px;
  2131. top:50px;
  2132. width:200px;
  2133. height:60px;
  2134. display:flex;
  2135. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2136. font-weight:500;
  2137. font-style:normal;
  2138. font-size:18px;
  2139. }
  2140. #u15350 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:0px 0px 0px 20px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u15350_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. }
  2152. #u15351_div {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:65px;
  2158. height:22px;
  2159. background:inherit;
  2160. background-color:rgba(255, 255, 255, 0);
  2161. border:none;
  2162. border-radius:0px;
  2163. -moz-box-shadow:none;
  2164. -webkit-box-shadow:none;
  2165. box-shadow:none;
  2166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:16px;
  2170. }
  2171. #u15351 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:147px;
  2175. top:242px;
  2176. width:65px;
  2177. height:22px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:16px;
  2183. }
  2184. #u15351 .text {
  2185. position:absolute;
  2186. align-self:flex-start;
  2187. padding:0px 0px 0px 0px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u15351_text {
  2192. border-width:0px;
  2193. white-space:nowrap;
  2194. text-transform:none;
  2195. }
  2196. #u15352_div {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:49px;
  2202. height:17px;
  2203. background:inherit;
  2204. background-color:rgba(255, 255, 255, 0);
  2205. border:none;
  2206. border-radius:0px;
  2207. -moz-box-shadow:none;
  2208. -webkit-box-shadow:none;
  2209. box-shadow:none;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:12px;
  2214. color:#AAAAAA;
  2215. }
  2216. #u15352 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:147px;
  2220. top:122px;
  2221. width:49px;
  2222. height:17px;
  2223. display:flex;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:12px;
  2228. color:#AAAAAA;
  2229. }
  2230. #u15352 .text {
  2231. position:absolute;
  2232. align-self:flex-start;
  2233. padding:0px 0px 0px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u15352_text {
  2238. border-width:0px;
  2239. white-space:nowrap;
  2240. text-transform:none;
  2241. }
  2242. #u15353_div {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:65px;
  2248. height:22px;
  2249. background:inherit;
  2250. background-color:rgba(255, 255, 255, 0);
  2251. border:none;
  2252. border-radius:0px;
  2253. -moz-box-shadow:none;
  2254. -webkit-box-shadow:none;
  2255. box-shadow:none;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:16px;
  2260. }
  2261. #u15353 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:147px;
  2265. top:200px;
  2266. width:65px;
  2267. height:22px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:16px;
  2273. }
  2274. #u15353 .text {
  2275. position:absolute;
  2276. align-self:flex-start;
  2277. padding:0px 0px 0px 0px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u15353_text {
  2282. border-width:0px;
  2283. white-space:nowrap;
  2284. text-transform:none;
  2285. }
  2286. #u15354_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:81px;
  2292. height:22px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 0);
  2295. border:none;
  2296. border-radius:0px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:16px;
  2304. }
  2305. #u15354 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:147px;
  2309. top:484px;
  2310. width:81px;
  2311. height:22px;
  2312. display:flex;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:16px;
  2317. }
  2318. #u15354 .text {
  2319. position:absolute;
  2320. align-self:flex-start;
  2321. padding:0px 0px 0px 0px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u15354_text {
  2326. border-width:0px;
  2327. white-space:nowrap;
  2328. text-transform:none;
  2329. }
  2330. #u15355_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:201px;
  2336. height:2px;
  2337. }
  2338. #u15355 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:120px;
  2342. top:427px;
  2343. width:200px;
  2344. height:1px;
  2345. display:flex;
  2346. }
  2347. #u15355 .text {
  2348. position:absolute;
  2349. align-self:center;
  2350. padding:2px 2px 2px 2px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u15355_text {
  2355. border-width:0px;
  2356. word-wrap:break-word;
  2357. text-transform:none;
  2358. visibility:hidden;
  2359. }
  2360. #u15356_div {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:65px;
  2366. height:22px;
  2367. background:inherit;
  2368. background-color:rgba(255, 255, 255, 0);
  2369. border:none;
  2370. border-radius:0px;
  2371. -moz-box-shadow:none;
  2372. -webkit-box-shadow:none;
  2373. box-shadow:none;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:16px;
  2378. }
  2379. #u15356 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:147px;
  2383. top:526px;
  2384. width:65px;
  2385. height:22px;
  2386. display:flex;
  2387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. font-size:16px;
  2391. }
  2392. #u15356 .text {
  2393. position:absolute;
  2394. align-self:flex-start;
  2395. padding:0px 0px 0px 0px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u15356_text {
  2400. border-width:0px;
  2401. white-space:nowrap;
  2402. text-transform:none;
  2403. }
  2404. #u15357_div {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:49px;
  2410. height:17px;
  2411. background:inherit;
  2412. background-color:rgba(255, 255, 255, 0);
  2413. border:none;
  2414. border-radius:0px;
  2415. -moz-box-shadow:none;
  2416. -webkit-box-shadow:none;
  2417. box-shadow:none;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:12px;
  2422. color:#AAAAAA;
  2423. }
  2424. #u15357 {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:147px;
  2428. top:447px;
  2429. width:49px;
  2430. height:17px;
  2431. display:flex;
  2432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2433. font-weight:400;
  2434. font-style:normal;
  2435. font-size:12px;
  2436. color:#AAAAAA;
  2437. }
  2438. #u15357 .text {
  2439. position:absolute;
  2440. align-self:flex-start;
  2441. padding:0px 0px 0px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u15357_text {
  2446. border-width:0px;
  2447. white-space:nowrap;
  2448. text-transform:none;
  2449. }
  2450. #u15358_div {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:81px;
  2456. height:22px;
  2457. background:inherit;
  2458. background-color:rgba(255, 255, 255, 0);
  2459. border:none;
  2460. border-radius:0px;
  2461. -moz-box-shadow:none;
  2462. -webkit-box-shadow:none;
  2463. box-shadow:none;
  2464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. font-size:16px;
  2468. }
  2469. #u15358 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:147px;
  2473. top:652px;
  2474. width:81px;
  2475. height:22px;
  2476. display:flex;
  2477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:16px;
  2481. }
  2482. #u15358 .text {
  2483. position:absolute;
  2484. align-self:flex-start;
  2485. padding:0px 0px 0px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u15358_text {
  2490. border-width:0px;
  2491. white-space:nowrap;
  2492. text-transform:none;
  2493. }
  2494. #u15359_div {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:65px;
  2500. height:22px;
  2501. background:inherit;
  2502. background-color:rgba(255, 255, 255, 0);
  2503. border:none;
  2504. border-radius:0px;
  2505. -moz-box-shadow:none;
  2506. -webkit-box-shadow:none;
  2507. box-shadow:none;
  2508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2509. font-weight:400;
  2510. font-style:normal;
  2511. font-size:16px;
  2512. }
  2513. #u15359 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:147px;
  2517. top:568px;
  2518. width:65px;
  2519. height:22px;
  2520. display:flex;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:16px;
  2525. }
  2526. #u15359 .text {
  2527. position:absolute;
  2528. align-self:flex-start;
  2529. padding:0px 0px 0px 0px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u15359_text {
  2534. border-width:0px;
  2535. white-space:nowrap;
  2536. text-transform:none;
  2537. }
  2538. #u15360_div {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:65px;
  2544. height:22px;
  2545. background:inherit;
  2546. background-color:rgba(255, 255, 255, 0);
  2547. border:none;
  2548. border-radius:0px;
  2549. -moz-box-shadow:none;
  2550. -webkit-box-shadow:none;
  2551. box-shadow:none;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:16px;
  2556. }
  2557. #u15360 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:147px;
  2561. top:610px;
  2562. width:65px;
  2563. height:22px;
  2564. display:flex;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:16px;
  2569. }
  2570. #u15360 .text {
  2571. position:absolute;
  2572. align-self:flex-start;
  2573. padding:0px 0px 0px 0px;
  2574. box-sizing:border-box;
  2575. width:100%;
  2576. }
  2577. #u15360_text {
  2578. border-width:0px;
  2579. white-space:nowrap;
  2580. text-transform:none;
  2581. }
  2582. #u15361_div {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:65px;
  2588. height:22px;
  2589. background:inherit;
  2590. background-color:rgba(255, 255, 255, 0);
  2591. border:none;
  2592. border-radius:0px;
  2593. -moz-box-shadow:none;
  2594. -webkit-box-shadow:none;
  2595. box-shadow:none;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:16px;
  2600. }
  2601. #u15361 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:147px;
  2605. top:341px;
  2606. width:65px;
  2607. height:22px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:16px;
  2613. }
  2614. #u15361 .text {
  2615. position:absolute;
  2616. align-self:flex-start;
  2617. padding:0px 0px 0px 0px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u15361_text {
  2622. border-width:0px;
  2623. white-space:nowrap;
  2624. text-transform:none;
  2625. }
  2626. #u15362_img {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:201px;
  2632. height:2px;
  2633. }
  2634. #u15362 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:120px;
  2638. top:284px;
  2639. width:200px;
  2640. height:1px;
  2641. display:flex;
  2642. }
  2643. #u15362 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 2px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u15362_text {
  2651. border-width:0px;
  2652. word-wrap:break-word;
  2653. text-transform:none;
  2654. visibility:hidden;
  2655. }
  2656. #u15363_div {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:49px;
  2662. height:17px;
  2663. background:inherit;
  2664. background-color:rgba(255, 255, 255, 0);
  2665. border:none;
  2666. border-radius:0px;
  2667. -moz-box-shadow:none;
  2668. -webkit-box-shadow:none;
  2669. box-shadow:none;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:12px;
  2674. color:#AAAAAA;
  2675. }
  2676. #u15363 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:147px;
  2680. top:304px;
  2681. width:49px;
  2682. height:17px;
  2683. display:flex;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:12px;
  2688. color:#AAAAAA;
  2689. }
  2690. #u15363 .text {
  2691. position:absolute;
  2692. align-self:flex-start;
  2693. padding:0px 0px 0px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u15363_text {
  2698. border-width:0px;
  2699. white-space:nowrap;
  2700. text-transform:none;
  2701. }
  2702. #u15364_div {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:65px;
  2708. height:22px;
  2709. background:inherit;
  2710. background-color:rgba(255, 255, 255, 0);
  2711. border:none;
  2712. border-radius:0px;
  2713. -moz-box-shadow:none;
  2714. -webkit-box-shadow:none;
  2715. box-shadow:none;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:16px;
  2720. }
  2721. #u15364 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:147px;
  2725. top:383px;
  2726. width:65px;
  2727. height:22px;
  2728. display:flex;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:16px;
  2733. }
  2734. #u15364 .text {
  2735. position:absolute;
  2736. align-self:flex-start;
  2737. padding:0px 0px 0px 0px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u15364_text {
  2742. border-width:0px;
  2743. white-space:nowrap;
  2744. text-transform:none;
  2745. }
  2746. #u15365_div {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:65px;
  2752. height:22px;
  2753. background:inherit;
  2754. background-color:rgba(255, 255, 255, 0);
  2755. border:none;
  2756. border-radius:0px;
  2757. -moz-box-shadow:none;
  2758. -webkit-box-shadow:none;
  2759. box-shadow:none;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:16px;
  2764. }
  2765. #u15365 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:147px;
  2769. top:159px;
  2770. width:65px;
  2771. height:22px;
  2772. display:flex;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:16px;
  2777. }
  2778. #u15365 .text {
  2779. position:absolute;
  2780. align-self:flex-start;
  2781. padding:0px 0px 0px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u15365_text {
  2786. border-width:0px;
  2787. white-space:nowrap;
  2788. text-transform:none;
  2789. }
  2790. #u15366 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:0px;
  2796. height:0px;
  2797. }
  2798. #u15367_div {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:300px;
  2804. height:1180px;
  2805. background:inherit;
  2806. background-color:rgba(240, 242, 245, 1);
  2807. border:none;
  2808. border-radius:0px;
  2809. -moz-box-shadow:none;
  2810. -webkit-box-shadow:none;
  2811. box-shadow:none;
  2812. }
  2813. #u15367 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:330px;
  2817. top:50px;
  2818. width:300px;
  2819. height:1180px;
  2820. display:flex;
  2821. }
  2822. #u15367 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u15367_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u15368 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:0px;
  2841. height:0px;
  2842. }
  2843. #u15369_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:260px;
  2849. height:40px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 1);
  2852. box-sizing:border-box;
  2853. border-width:1px;
  2854. border-style:solid;
  2855. border-color:rgba(242, 242, 242, 1);
  2856. border-radius:4px;
  2857. -moz-box-shadow:none;
  2858. -webkit-box-shadow:none;
  2859. box-shadow:none;
  2860. font-family:'Microsoft YaHei', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:14px;
  2864. color:#CCCCCC;
  2865. text-align:left;
  2866. }
  2867. #u15369 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:350px;
  2871. top:130px;
  2872. width:260px;
  2873. height:40px;
  2874. display:flex;
  2875. font-family:'Microsoft YaHei', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:14px;
  2879. color:#CCCCCC;
  2880. text-align:left;
  2881. }
  2882. #u15369 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 8px 2px 8px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u15369_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u15370_input {
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:217px;
  2900. height:33px;
  2901. padding:2px 2px 2px 2px;
  2902. font-family:'Microsoft YaHei', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:14px;
  2906. letter-spacing:normal;
  2907. color:#000000;
  2908. vertical-align:none;
  2909. text-align:left;
  2910. text-transform:none;
  2911. background-color:transparent;
  2912. border-color:transparent;
  2913. }
  2914. #u15370_input.disabled {
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:217px;
  2919. height:33px;
  2920. padding:2px 2px 2px 2px;
  2921. font-family:'Microsoft YaHei', sans-serif;
  2922. font-weight:400;
  2923. font-style:normal;
  2924. font-size:14px;
  2925. letter-spacing:normal;
  2926. color:#000000;
  2927. vertical-align:none;
  2928. text-align:left;
  2929. text-transform:none;
  2930. background-color:transparent;
  2931. border-color:transparent;
  2932. }
  2933. #u15370_div {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:217px;
  2939. height:33px;
  2940. background:inherit;
  2941. background-color:rgba(255, 255, 255, 1);
  2942. border:none;
  2943. border-radius:0px;
  2944. -moz-box-shadow:none;
  2945. -webkit-box-shadow:none;
  2946. box-shadow:none;
  2947. font-family:'Microsoft YaHei', sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. font-size:14px;
  2951. }
  2952. #u15370 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:358px;
  2956. top:131px;
  2957. width:217px;
  2958. height:33px;
  2959. display:flex;
  2960. font-family:'Microsoft YaHei', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:14px;
  2964. }
  2965. #u15370 .text {
  2966. position:absolute;
  2967. align-self:center;
  2968. padding:2px 2px 2px 2px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u15370_div.disabled {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:217px;
  2978. height:33px;
  2979. background:inherit;
  2980. background-color:rgba(240, 240, 240, 1);
  2981. border:none;
  2982. border-radius:0px;
  2983. -moz-box-shadow:none;
  2984. -webkit-box-shadow:none;
  2985. box-shadow:none;
  2986. font-family:'Microsoft YaHei', sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. font-size:14px;
  2990. }
  2991. #u15370.disabled {
  2992. }
  2993. #u15371_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:14px;
  2999. height:14px;
  3000. }
  3001. #u15371 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:582px;
  3005. top:142px;
  3006. width:14px;
  3007. height:14px;
  3008. display:flex;
  3009. }
  3010. #u15371 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 2px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u15371_text {
  3018. border-width:0px;
  3019. word-wrap:break-word;
  3020. text-transform:none;
  3021. visibility:hidden;
  3022. }
  3023. #u15372 {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:0px;
  3029. height:0px;
  3030. }
  3031. #u15373_div {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:260px;
  3037. height:60px;
  3038. background:inherit;
  3039. background-color:rgba(0, 153, 255, 0.0980392156862745);
  3040. border:none;
  3041. border-radius:4px;
  3042. -moz-box-shadow:none;
  3043. -webkit-box-shadow:none;
  3044. box-shadow:none;
  3045. font-family:'Microsoft YaHei', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:14px;
  3049. color:#CCCCCC;
  3050. text-align:left;
  3051. }
  3052. #u15373 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:350px;
  3056. top:190px;
  3057. width:260px;
  3058. height:60px;
  3059. display:flex;
  3060. font-family:'Microsoft YaHei', sans-serif;
  3061. font-weight:400;
  3062. font-style:normal;
  3063. font-size:14px;
  3064. color:#CCCCCC;
  3065. text-align:left;
  3066. }
  3067. #u15373 .text {
  3068. position:absolute;
  3069. align-self:center;
  3070. padding:2px 8px 2px 8px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u15373_text {
  3075. border-width:0px;
  3076. word-wrap:break-word;
  3077. text-transform:none;
  3078. visibility:hidden;
  3079. }
  3080. #u15374_div {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:63px;
  3086. height:20px;
  3087. background:inherit;
  3088. background-color:rgba(51, 51, 51, 0);
  3089. border:none;
  3090. border-radius:4px;
  3091. -moz-box-shadow:none;
  3092. -webkit-box-shadow:none;
  3093. box-shadow:none;
  3094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3095. font-weight:400;
  3096. font-style:normal;
  3097. font-size:14px;
  3098. text-align:left;
  3099. }
  3100. #u15374 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:367px;
  3104. top:213px;
  3105. width:63px;
  3106. height:20px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. text-align:left;
  3113. }
  3114. #u15374 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:0px 0px 0px 0px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u15374_text {
  3122. border-width:0px;
  3123. white-space:nowrap;
  3124. text-transform:none;
  3125. }
  3126. #u15375 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:0px;
  3132. height:0px;
  3133. }
  3134. #u15376_div {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:260px;
  3140. height:60px;
  3141. background:inherit;
  3142. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3143. border:none;
  3144. border-radius:4px;
  3145. -moz-box-shadow:none;
  3146. -webkit-box-shadow:none;
  3147. box-shadow:none;
  3148. font-family:'Microsoft YaHei', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:14px;
  3152. color:#CCCCCC;
  3153. text-align:left;
  3154. }
  3155. #u15376 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:350px;
  3159. top:370px;
  3160. width:260px;
  3161. height:60px;
  3162. display:flex;
  3163. font-family:'Microsoft YaHei', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:14px;
  3167. color:#CCCCCC;
  3168. text-align:left;
  3169. }
  3170. #u15376 .text {
  3171. position:absolute;
  3172. align-self:center;
  3173. padding:2px 8px 2px 8px;
  3174. box-sizing:border-box;
  3175. width:100%;
  3176. }
  3177. #u15376_text {
  3178. border-width:0px;
  3179. word-wrap:break-word;
  3180. text-transform:none;
  3181. visibility:hidden;
  3182. }
  3183. #u15377_div {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:65px;
  3189. height:20px;
  3190. background:inherit;
  3191. background-color:rgba(51, 51, 51, 0);
  3192. border:none;
  3193. border-radius:4px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:14px;
  3201. text-align:left;
  3202. }
  3203. #u15377 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:365px;
  3207. top:393px;
  3208. width:65px;
  3209. height:20px;
  3210. display:flex;
  3211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:14px;
  3215. text-align:left;
  3216. }
  3217. #u15377 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:0px 0px 0px 0px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u15377_text {
  3225. border-width:0px;
  3226. white-space:nowrap;
  3227. text-transform:none;
  3228. }
  3229. #u15378 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:0px;
  3235. height:0px;
  3236. }
  3237. #u15379_div {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:260px;
  3243. height:60px;
  3244. background:inherit;
  3245. background-color:rgba(0, 153, 255, 0);
  3246. border:none;
  3247. border-radius:4px;
  3248. -moz-box-shadow:none;
  3249. -webkit-box-shadow:none;
  3250. box-shadow:none;
  3251. font-family:'Microsoft YaHei', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:14px;
  3255. color:#CCCCCC;
  3256. text-align:left;
  3257. }
  3258. #u15379 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:350px;
  3262. top:250px;
  3263. width:260px;
  3264. height:60px;
  3265. display:flex;
  3266. font-family:'Microsoft YaHei', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:14px;
  3270. color:#CCCCCC;
  3271. text-align:left;
  3272. }
  3273. #u15379 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 8px 2px 8px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u15379_text {
  3281. border-width:0px;
  3282. word-wrap:break-word;
  3283. text-transform:none;
  3284. visibility:hidden;
  3285. }
  3286. #u15380_div {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:0px;
  3291. width:65px;
  3292. height:20px;
  3293. background:inherit;
  3294. background-color:rgba(51, 51, 51, 0);
  3295. border:none;
  3296. border-radius:4px;
  3297. -moz-box-shadow:none;
  3298. -webkit-box-shadow:none;
  3299. box-shadow:none;
  3300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3301. font-weight:400;
  3302. font-style:normal;
  3303. font-size:14px;
  3304. text-align:left;
  3305. }
  3306. #u15380 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:365px;
  3310. top:273px;
  3311. width:65px;
  3312. height:20px;
  3313. display:flex;
  3314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:14px;
  3318. text-align:left;
  3319. }
  3320. #u15380 .text {
  3321. position:absolute;
  3322. align-self:center;
  3323. padding:0px 0px 0px 0px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u15380_text {
  3328. border-width:0px;
  3329. white-space:nowrap;
  3330. text-transform:none;
  3331. }
  3332. #u15381 {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:0px;
  3338. height:0px;
  3339. }
  3340. #u15382_div {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:260px;
  3346. height:60px;
  3347. background:inherit;
  3348. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3349. border:none;
  3350. border-radius:4px;
  3351. -moz-box-shadow:none;
  3352. -webkit-box-shadow:none;
  3353. box-shadow:none;
  3354. font-family:'Microsoft YaHei', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:14px;
  3358. color:#CCCCCC;
  3359. text-align:left;
  3360. }
  3361. #u15382 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:350px;
  3365. top:310px;
  3366. width:260px;
  3367. height:60px;
  3368. display:flex;
  3369. font-family:'Microsoft YaHei', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:14px;
  3373. color:#CCCCCC;
  3374. text-align:left;
  3375. }
  3376. #u15382 .text {
  3377. position:absolute;
  3378. align-self:center;
  3379. padding:2px 8px 2px 8px;
  3380. box-sizing:border-box;
  3381. width:100%;
  3382. }
  3383. #u15382_text {
  3384. border-width:0px;
  3385. word-wrap:break-word;
  3386. text-transform:none;
  3387. visibility:hidden;
  3388. }
  3389. #u15383_div {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:65px;
  3395. height:20px;
  3396. background:inherit;
  3397. background-color:rgba(51, 51, 51, 0);
  3398. border:none;
  3399. border-radius:4px;
  3400. -moz-box-shadow:none;
  3401. -webkit-box-shadow:none;
  3402. box-shadow:none;
  3403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3404. font-weight:400;
  3405. font-style:normal;
  3406. font-size:14px;
  3407. text-align:left;
  3408. }
  3409. #u15383 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:365px;
  3413. top:333px;
  3414. width:65px;
  3415. height:20px;
  3416. display:flex;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:14px;
  3421. text-align:left;
  3422. }
  3423. #u15383 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:0px 0px 0px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u15383_text {
  3431. border-width:0px;
  3432. white-space:nowrap;
  3433. text-transform:none;
  3434. }
  3435. #u15384_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:73px;
  3441. height:25px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. border:none;
  3445. border-radius:0px;
  3446. -moz-box-shadow:none;
  3447. -webkit-box-shadow:none;
  3448. box-shadow:none;
  3449. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3450. font-weight:500;
  3451. font-style:normal;
  3452. font-size:18px;
  3453. }
  3454. #u15384 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:350px;
  3458. top:77px;
  3459. width:73px;
  3460. height:25px;
  3461. display:flex;
  3462. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3463. font-weight:500;
  3464. font-style:normal;
  3465. font-size:18px;
  3466. }
  3467. #u15384 .text {
  3468. position:absolute;
  3469. align-self:flex-start;
  3470. padding:0px 0px 0px 0px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u15384_text {
  3475. border-width:0px;
  3476. white-space:nowrap;
  3477. text-transform:none;
  3478. }
  3479. #u15385_div {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:80px;
  3485. height:25px;
  3486. background:inherit;
  3487. background-color:rgba(255, 255, 255, 0);
  3488. border:none;
  3489. border-radius:0px;
  3490. -moz-box-shadow:none;
  3491. -webkit-box-shadow:none;
  3492. box-shadow:none;
  3493. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3494. font-weight:500;
  3495. font-style:normal;
  3496. font-size:18px;
  3497. }
  3498. #u15385 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:672px;
  3502. top:77px;
  3503. width:80px;
  3504. height:25px;
  3505. display:flex;
  3506. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3507. font-weight:500;
  3508. font-style:normal;
  3509. font-size:18px;
  3510. }
  3511. #u15385 .text {
  3512. position:absolute;
  3513. align-self:flex-start;
  3514. padding:0px 0px 0px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u15385_text {
  3519. border-width:0px;
  3520. white-space:nowrap;
  3521. text-transform:none;
  3522. }
  3523. #u15386_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:163px;
  3529. height:40px;
  3530. background:inherit;
  3531. background-color:rgba(255, 255, 255, 0);
  3532. border:none;
  3533. border-left:0px;
  3534. border-top:0px;
  3535. border-right:0px;
  3536. border-radius:0px;
  3537. border-bottom-right-radius:0px;
  3538. border-bottom-left-radius:0px;
  3539. -moz-box-shadow:none;
  3540. -webkit-box-shadow:none;
  3541. box-shadow:none;
  3542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3543. font-weight:500;
  3544. font-style:normal;
  3545. font-size:18px;
  3546. }
  3547. #u15386 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:682px;
  3551. top:132px;
  3552. width:163px;
  3553. height:40px;
  3554. display:flex;
  3555. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3556. font-weight:500;
  3557. font-style:normal;
  3558. font-size:18px;
  3559. }
  3560. #u15386 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:0px 0px 0px 0px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u15386_text {
  3568. border-width:0px;
  3569. white-space:nowrap;
  3570. text-transform:none;
  3571. }
  3572. #u15387_div {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:449px;
  3578. height:40px;
  3579. background:inherit;
  3580. background-color:rgba(255, 255, 255, 0);
  3581. border:none;
  3582. border-left:0px;
  3583. border-top:0px;
  3584. border-right:0px;
  3585. border-radius:0px;
  3586. border-bottom-right-radius:0px;
  3587. border-bottom-left-radius:0px;
  3588. -moz-box-shadow:none;
  3589. -webkit-box-shadow:none;
  3590. box-shadow:none;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:14px;
  3595. color:#AAAAAA;
  3596. }
  3597. #u15387 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:682px;
  3601. top:172px;
  3602. width:449px;
  3603. height:40px;
  3604. display:flex;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:14px;
  3609. color:#AAAAAA;
  3610. }
  3611. #u15387 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:0px 0px 0px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u15387_text {
  3619. border-width:0px;
  3620. white-space:nowrap;
  3621. text-transform:none;
  3622. }
  3623. #u15388_div {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:145px;
  3629. height:40px;
  3630. background:inherit;
  3631. background-color:rgba(255, 255, 255, 0);
  3632. border:none;
  3633. border-left:0px;
  3634. border-top:0px;
  3635. border-right:0px;
  3636. border-radius:0px;
  3637. border-bottom-right-radius:0px;
  3638. border-bottom-left-radius:0px;
  3639. -moz-box-shadow:none;
  3640. -webkit-box-shadow:none;
  3641. box-shadow:none;
  3642. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3643. font-weight:500;
  3644. font-style:normal;
  3645. font-size:18px;
  3646. }
  3647. #u15388 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:684px;
  3651. top:232px;
  3652. width:145px;
  3653. height:40px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3656. font-weight:500;
  3657. font-style:normal;
  3658. font-size:18px;
  3659. }
  3660. #u15388 .text {
  3661. position:absolute;
  3662. align-self:center;
  3663. padding:0px 0px 0px 0px;
  3664. box-sizing:border-box;
  3665. width:100%;
  3666. }
  3667. #u15388_text {
  3668. border-width:0px;
  3669. white-space:nowrap;
  3670. text-transform:none;
  3671. }
  3672. #u15389_div {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:497px;
  3678. height:22px;
  3679. background:inherit;
  3680. background-color:rgba(255, 255, 255, 0);
  3681. border:none;
  3682. border-radius:0px;
  3683. -moz-box-shadow:none;
  3684. -webkit-box-shadow:none;
  3685. box-shadow:none;
  3686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3687. font-weight:400;
  3688. font-style:normal;
  3689. font-size:14px;
  3690. color:#D9001B;
  3691. line-height:22px;
  3692. }
  3693. #u15389 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:777px;
  3697. top:101px;
  3698. width:497px;
  3699. height:22px;
  3700. display:flex;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:14px;
  3705. color:#D9001B;
  3706. line-height:22px;
  3707. }
  3708. #u15389 .text {
  3709. position:absolute;
  3710. align-self:flex-start;
  3711. padding:0px 0px 0px 0px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u15389_text {
  3716. border-width:0px;
  3717. white-space:nowrap;
  3718. text-transform:none;
  3719. }
  3720. #u15391_div {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:1480px;
  3726. height:1200px;
  3727. background:inherit;
  3728. background-color:rgba(242, 242, 242, 1);
  3729. border:none;
  3730. border-radius:0px;
  3731. -moz-box-shadow:none;
  3732. -webkit-box-shadow:none;
  3733. box-shadow:none;
  3734. }
  3735. #u15391 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:1742px;
  3739. top:50px;
  3740. width:1480px;
  3741. height:1200px;
  3742. display:flex;
  3743. }
  3744. #u15391 .text {
  3745. position:absolute;
  3746. align-self:center;
  3747. padding:2px 2px 2px 2px;
  3748. box-sizing:border-box;
  3749. width:100%;
  3750. }
  3751. #u15391_text {
  3752. border-width:0px;
  3753. word-wrap:break-word;
  3754. text-transform:none;
  3755. visibility:hidden;
  3756. }
  3757. #u15392_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:129px;
  3763. height:22px;
  3764. background:inherit;
  3765. background-color:rgba(255, 255, 255, 0);
  3766. border:none;
  3767. border-radius:0px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-size:16px;
  3772. color:#FFFFFF;
  3773. }
  3774. #u15392 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:1671px;
  3778. top:14px;
  3779. width:129px;
  3780. height:22px;
  3781. display:flex;
  3782. font-size:16px;
  3783. color:#FFFFFF;
  3784. }
  3785. #u15392 .text {
  3786. position:absolute;
  3787. align-self:flex-start;
  3788. padding:0px 0px 0px 0px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u15392_text {
  3793. border-width:0px;
  3794. white-space:nowrap;
  3795. text-transform:none;
  3796. }
  3797. #u15393_div {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:1600px;
  3803. height:50px;
  3804. background:inherit;
  3805. background-color:rgba(30, 42, 68, 1);
  3806. border:none;
  3807. border-radius:0px;
  3808. -moz-box-shadow:none;
  3809. -webkit-box-shadow:none;
  3810. box-shadow:none;
  3811. color:#AFB3B6;
  3812. }
  3813. #u15393 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:1622px;
  3817. top:0px;
  3818. width:1600px;
  3819. height:50px;
  3820. display:flex;
  3821. color:#AFB3B6;
  3822. }
  3823. #u15393 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 2px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u15393_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u15394 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:0px;
  3842. height:0px;
  3843. }
  3844. #u15395_img {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:31px;
  3850. height:31px;
  3851. }
  3852. #u15395 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:1641px;
  3856. top:10px;
  3857. width:31px;
  3858. height:31px;
  3859. display:flex;
  3860. }
  3861. #u15395 .text {
  3862. position:absolute;
  3863. align-self:center;
  3864. padding:2px 2px 2px 2px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u15395_text {
  3869. border-width:0px;
  3870. word-wrap:break-word;
  3871. text-transform:none;
  3872. }
  3873. #u15396_div {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:161px;
  3879. height:22px;
  3880. background:inherit;
  3881. background-color:rgba(255, 255, 255, 0);
  3882. border:none;
  3883. border-radius:0px;
  3884. -moz-box-shadow:none;
  3885. -webkit-box-shadow:none;
  3886. box-shadow:none;
  3887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:16px;
  3891. color:#FFFFFF;
  3892. }
  3893. #u15396 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:1684px;
  3897. top:14px;
  3898. width:161px;
  3899. height:22px;
  3900. display:flex;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:16px;
  3905. color:#FFFFFF;
  3906. }
  3907. #u15396 .text {
  3908. position:absolute;
  3909. align-self:flex-start;
  3910. padding:0px 0px 0px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u15396_text {
  3915. border-width:0px;
  3916. white-space:nowrap;
  3917. text-transform:none;
  3918. }
  3919. #u15397_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:120px;
  3925. height:1200px;
  3926. background:inherit;
  3927. background-color:rgba(30, 42, 68, 1);
  3928. border:none;
  3929. border-radius:0px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. color:#AFB3B6;
  3934. }
  3935. #u15397 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:1622px;
  3939. top:47px;
  3940. width:120px;
  3941. height:1200px;
  3942. display:flex;
  3943. color:#AFB3B6;
  3944. }
  3945. #u15397 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 2px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u15397_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u15398 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:0px;
  3964. height:0px;
  3965. }
  3966. #u15399_div {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:33px;
  3972. height:22px;
  3973. background:inherit;
  3974. background-color:rgba(255, 255, 255, 0);
  3975. border:none;
  3976. border-radius:0px;
  3977. -moz-box-shadow:none;
  3978. -webkit-box-shadow:none;
  3979. box-shadow:none;
  3980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:16px;
  3984. color:#FFFFFF;
  3985. }
  3986. #u15399 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:1661px;
  3990. top:171px;
  3991. width:33px;
  3992. height:22px;
  3993. display:flex;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:16px;
  3998. color:#FFFFFF;
  3999. }
  4000. #u15399 .text {
  4001. position:absolute;
  4002. align-self:flex-start;
  4003. padding:0px 0px 0px 0px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u15399_text {
  4008. border-width:0px;
  4009. white-space:nowrap;
  4010. text-transform:none;
  4011. }
  4012. #u15400_img {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:14px;
  4018. height:14px;
  4019. }
  4020. #u15400 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:1642px;
  4024. top:175px;
  4025. width:14px;
  4026. height:14px;
  4027. display:flex;
  4028. }
  4029. #u15400 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 2px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u15400_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u15401 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:0px;
  4048. height:0px;
  4049. }
  4050. #u15402_div {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:33px;
  4056. height:22px;
  4057. background:inherit;
  4058. background-color:rgba(255, 255, 255, 0);
  4059. border:none;
  4060. border-radius:0px;
  4061. -moz-box-shadow:none;
  4062. -webkit-box-shadow:none;
  4063. box-shadow:none;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:16px;
  4068. color:#FFFFFF;
  4069. }
  4070. #u15402 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:1661px;
  4074. top:381px;
  4075. width:33px;
  4076. height:22px;
  4077. display:flex;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:16px;
  4082. color:#FFFFFF;
  4083. }
  4084. #u15402 .text {
  4085. position:absolute;
  4086. align-self:flex-start;
  4087. padding:0px 0px 0px 0px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u15402_text {
  4092. border-width:0px;
  4093. white-space:nowrap;
  4094. text-transform:none;
  4095. }
  4096. #u15403_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:14px;
  4102. height:14px;
  4103. }
  4104. #u15403 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:1642px;
  4108. top:385px;
  4109. width:14px;
  4110. height:14px;
  4111. display:flex;
  4112. }
  4113. #u15403 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 2px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u15403_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u15404 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:0px;
  4132. height:0px;
  4133. }
  4134. #u15405_div {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:49px;
  4140. height:22px;
  4141. background:inherit;
  4142. background-color:rgba(255, 255, 255, 0);
  4143. border:none;
  4144. border-radius:0px;
  4145. -moz-box-shadow:none;
  4146. -webkit-box-shadow:none;
  4147. box-shadow:none;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:16px;
  4152. color:#FFFFFF;
  4153. }
  4154. #u15405 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:1661px;
  4158. top:133px;
  4159. width:49px;
  4160. height:22px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:16px;
  4166. color:#FFFFFF;
  4167. }
  4168. #u15405 .text {
  4169. position:absolute;
  4170. align-self:flex-start;
  4171. padding:0px 0px 0px 0px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u15405_text {
  4176. border-width:0px;
  4177. white-space:nowrap;
  4178. text-transform:none;
  4179. }
  4180. #u15406_img {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:14px;
  4186. height:14px;
  4187. }
  4188. #u15406 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:1642px;
  4192. top:137px;
  4193. width:14px;
  4194. height:14px;
  4195. display:flex;
  4196. }
  4197. #u15406 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:2px 2px 2px 2px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u15406_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u15407 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:0px;
  4216. height:0px;
  4217. }
  4218. #u15408_div {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:33px;
  4224. height:22px;
  4225. background:inherit;
  4226. background-color:rgba(255, 255, 255, 0);
  4227. border:none;
  4228. border-radius:0px;
  4229. -moz-box-shadow:none;
  4230. -webkit-box-shadow:none;
  4231. box-shadow:none;
  4232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:16px;
  4236. color:#FFFFFF;
  4237. }
  4238. #u15408 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:1661px;
  4242. top:423px;
  4243. width:33px;
  4244. height:22px;
  4245. display:flex;
  4246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4247. font-weight:400;
  4248. font-style:normal;
  4249. font-size:16px;
  4250. color:#FFFFFF;
  4251. }
  4252. #u15408 .text {
  4253. position:absolute;
  4254. align-self:flex-start;
  4255. padding:0px 0px 0px 0px;
  4256. box-sizing:border-box;
  4257. width:100%;
  4258. }
  4259. #u15408_text {
  4260. border-width:0px;
  4261. white-space:nowrap;
  4262. text-transform:none;
  4263. }
  4264. #u15409_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:14px;
  4270. height:14px;
  4271. }
  4272. #u15409 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:1642px;
  4276. top:427px;
  4277. width:14px;
  4278. height:14px;
  4279. display:flex;
  4280. }
  4281. #u15409 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 2px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u15409_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u15410 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:0px;
  4300. height:0px;
  4301. }
  4302. #u15411_div {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:33px;
  4308. height:22px;
  4309. background:inherit;
  4310. background-color:rgba(255, 255, 255, 0);
  4311. border:none;
  4312. border-radius:0px;
  4313. -moz-box-shadow:none;
  4314. -webkit-box-shadow:none;
  4315. box-shadow:none;
  4316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4317. font-weight:400;
  4318. font-style:normal;
  4319. font-size:16px;
  4320. color:#FFFFFF;
  4321. }
  4322. #u15411 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:1661px;
  4326. top:297px;
  4327. width:33px;
  4328. height:22px;
  4329. display:flex;
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:16px;
  4334. color:#FFFFFF;
  4335. }
  4336. #u15411 .text {
  4337. position:absolute;
  4338. align-self:flex-start;
  4339. padding:0px 0px 0px 0px;
  4340. box-sizing:border-box;
  4341. width:100%;
  4342. }
  4343. #u15411_text {
  4344. border-width:0px;
  4345. white-space:nowrap;
  4346. text-transform:none;
  4347. }
  4348. #u15412_img {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:14px;
  4354. height:14px;
  4355. }
  4356. #u15412 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:1642px;
  4360. top:301px;
  4361. width:14px;
  4362. height:14px;
  4363. display:flex;
  4364. }
  4365. #u15412 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 2px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u15412_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u15413 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:0px;
  4384. height:0px;
  4385. }
  4386. #u15414_div {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:33px;
  4392. height:22px;
  4393. background:inherit;
  4394. background-color:rgba(255, 255, 255, 0);
  4395. border:none;
  4396. border-radius:0px;
  4397. -moz-box-shadow:none;
  4398. -webkit-box-shadow:none;
  4399. box-shadow:none;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:16px;
  4404. color:#FFFFFF;
  4405. }
  4406. #u15414 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:1661px;
  4410. top:213px;
  4411. width:33px;
  4412. height:22px;
  4413. display:flex;
  4414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4415. font-weight:400;
  4416. font-style:normal;
  4417. font-size:16px;
  4418. color:#FFFFFF;
  4419. }
  4420. #u15414 .text {
  4421. position:absolute;
  4422. align-self:flex-start;
  4423. padding:0px 0px 0px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u15414_text {
  4428. border-width:0px;
  4429. white-space:nowrap;
  4430. text-transform:none;
  4431. }
  4432. #u15415_img {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:14px;
  4438. height:14px;
  4439. }
  4440. #u15415 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:1642px;
  4444. top:217px;
  4445. width:14px;
  4446. height:14px;
  4447. display:flex;
  4448. }
  4449. #u15415 .text {
  4450. position:absolute;
  4451. align-self:center;
  4452. padding:2px 2px 2px 2px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u15415_text {
  4457. border-width:0px;
  4458. word-wrap:break-word;
  4459. text-transform:none;
  4460. visibility:hidden;
  4461. }
  4462. #u15416 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:0px;
  4468. height:0px;
  4469. }
  4470. #u15417_div {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:33px;
  4476. height:22px;
  4477. background:inherit;
  4478. background-color:rgba(255, 255, 255, 0);
  4479. border:none;
  4480. border-radius:0px;
  4481. -moz-box-shadow:none;
  4482. -webkit-box-shadow:none;
  4483. box-shadow:none;
  4484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4485. font-weight:400;
  4486. font-style:normal;
  4487. font-size:16px;
  4488. color:#FFFFFF;
  4489. }
  4490. #u15417 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:1661px;
  4494. top:339px;
  4495. width:33px;
  4496. height:22px;
  4497. display:flex;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:16px;
  4502. color:#FFFFFF;
  4503. }
  4504. #u15417 .text {
  4505. position:absolute;
  4506. align-self:flex-start;
  4507. padding:0px 0px 0px 0px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u15417_text {
  4512. border-width:0px;
  4513. white-space:nowrap;
  4514. text-transform:none;
  4515. }
  4516. #u15418_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:14px;
  4522. height:14px;
  4523. }
  4524. #u15418 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:1642px;
  4528. top:343px;
  4529. width:14px;
  4530. height:14px;
  4531. display:flex;
  4532. }
  4533. #u15418 .text {
  4534. position:absolute;
  4535. align-self:center;
  4536. padding:2px 2px 2px 2px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u15418_text {
  4541. border-width:0px;
  4542. word-wrap:break-word;
  4543. text-transform:none;
  4544. visibility:hidden;
  4545. }
  4546. #u15419 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:0px;
  4552. height:0px;
  4553. }
  4554. #u15420_div {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:33px;
  4560. height:22px;
  4561. background:inherit;
  4562. background-color:rgba(255, 255, 255, 0);
  4563. border:none;
  4564. border-radius:0px;
  4565. -moz-box-shadow:none;
  4566. -webkit-box-shadow:none;
  4567. box-shadow:none;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:16px;
  4572. color:#FFFFFF;
  4573. }
  4574. #u15420 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:1661px;
  4578. top:465px;
  4579. width:33px;
  4580. height:22px;
  4581. display:flex;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:16px;
  4586. color:#FFFFFF;
  4587. }
  4588. #u15420 .text {
  4589. position:absolute;
  4590. align-self:flex-start;
  4591. padding:0px 0px 0px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u15420_text {
  4596. border-width:0px;
  4597. white-space:nowrap;
  4598. text-transform:none;
  4599. }
  4600. #u15421_img {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:14px;
  4606. height:14px;
  4607. }
  4608. #u15421 {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:1642px;
  4612. top:469px;
  4613. width:14px;
  4614. height:14px;
  4615. display:flex;
  4616. }
  4617. #u15421 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 2px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u15421_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u15422 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:0px;
  4636. height:0px;
  4637. }
  4638. #u15423_div {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:29px;
  4644. height:20px;
  4645. background:inherit;
  4646. background-color:rgba(255, 255, 255, 0);
  4647. border:none;
  4648. border-radius:25px;
  4649. -moz-box-shadow:none;
  4650. -webkit-box-shadow:none;
  4651. box-shadow:none;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. color:#FFFFFF;
  4656. }
  4657. #u15423 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:1674px;
  4661. top:1145px;
  4662. width:29px;
  4663. height:20px;
  4664. display:flex;
  4665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. color:#FFFFFF;
  4669. }
  4670. #u15423 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:0px 0px 0px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u15423_text {
  4678. border-width:0px;
  4679. white-space:nowrap;
  4680. text-transform:none;
  4681. }
  4682. #u15424_img {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:22px;
  4688. height:22px;
  4689. }
  4690. #u15424 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:1642px;
  4694. top:1144px;
  4695. width:22px;
  4696. height:22px;
  4697. display:flex;
  4698. }
  4699. #u15424 .text {
  4700. position:absolute;
  4701. align-self:center;
  4702. padding:2px 2px 2px 2px;
  4703. box-sizing:border-box;
  4704. width:100%;
  4705. }
  4706. #u15424_text {
  4707. border-width:0px;
  4708. word-wrap:break-word;
  4709. text-transform:none;
  4710. visibility:hidden;
  4711. }
  4712. #u15425 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:0px;
  4718. height:0px;
  4719. }
  4720. #u15426_div {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:29px;
  4726. height:20px;
  4727. background:inherit;
  4728. background-color:rgba(255, 255, 255, 0);
  4729. border:none;
  4730. border-radius:25px;
  4731. -moz-box-shadow:none;
  4732. -webkit-box-shadow:none;
  4733. box-shadow:none;
  4734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. color:#FFFFFF;
  4738. }
  4739. #u15426 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:1674px;
  4743. top:1187px;
  4744. width:29px;
  4745. height:20px;
  4746. display:flex;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. color:#FFFFFF;
  4751. }
  4752. #u15426 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:0px 0px 0px 0px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u15426_text {
  4760. border-width:0px;
  4761. white-space:nowrap;
  4762. text-transform:none;
  4763. }
  4764. #u15427_img {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:22px;
  4770. height:22px;
  4771. }
  4772. #u15427 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:1642px;
  4776. top:1186px;
  4777. width:22px;
  4778. height:22px;
  4779. display:flex;
  4780. }
  4781. #u15427 .text {
  4782. position:absolute;
  4783. align-self:center;
  4784. padding:2px 2px 2px 2px;
  4785. box-sizing:border-box;
  4786. width:100%;
  4787. }
  4788. #u15427_text {
  4789. border-width:0px;
  4790. word-wrap:break-word;
  4791. text-transform:none;
  4792. visibility:hidden;
  4793. }
  4794. #u15428 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:0px;
  4800. height:0px;
  4801. }
  4802. #u15429_div {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:33px;
  4808. height:22px;
  4809. background:inherit;
  4810. background-color:rgba(255, 255, 255, 0);
  4811. border:none;
  4812. border-radius:0px;
  4813. -moz-box-shadow:none;
  4814. -webkit-box-shadow:none;
  4815. box-shadow:none;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4817. font-weight:400;
  4818. font-style:normal;
  4819. font-size:16px;
  4820. color:#FFFFFF;
  4821. }
  4822. #u15429 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:1661px;
  4826. top:255px;
  4827. width:33px;
  4828. height:22px;
  4829. display:flex;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:16px;
  4834. color:#FFFFFF;
  4835. }
  4836. #u15429 .text {
  4837. position:absolute;
  4838. align-self:flex-start;
  4839. padding:0px 0px 0px 0px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u15429_text {
  4844. border-width:0px;
  4845. white-space:nowrap;
  4846. text-transform:none;
  4847. }
  4848. #u15430_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:14px;
  4854. height:14px;
  4855. }
  4856. #u15430 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:1642px;
  4860. top:259px;
  4861. width:14px;
  4862. height:14px;
  4863. display:flex;
  4864. }
  4865. #u15430 .text {
  4866. position:absolute;
  4867. align-self:center;
  4868. padding:2px 2px 2px 2px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u15430_text {
  4873. border-width:0px;
  4874. word-wrap:break-word;
  4875. text-transform:none;
  4876. visibility:hidden;
  4877. }
  4878. #u15431 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:0px;
  4884. height:0px;
  4885. }
  4886. #u15432_input {
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:214px;
  4891. height:27px;
  4892. padding:2px 2px 2px 2px;
  4893. font-family:'ArialMT', 'Arial', sans-serif;
  4894. font-weight:400;
  4895. font-style:normal;
  4896. font-size:14px;
  4897. letter-spacing:normal;
  4898. color:#FFFFFF;
  4899. vertical-align:none;
  4900. text-align:left;
  4901. text-transform:none;
  4902. background-color:transparent;
  4903. border-color:transparent;
  4904. }
  4905. #u15432_input.disabled {
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:214px;
  4910. height:27px;
  4911. padding:2px 2px 2px 2px;
  4912. font-family:'ArialMT', 'Arial', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:14px;
  4916. letter-spacing:normal;
  4917. color:#FFFFFF;
  4918. vertical-align:none;
  4919. text-align:left;
  4920. text-transform:none;
  4921. background-color:transparent;
  4922. border-color:transparent;
  4923. }
  4924. #u15432_div {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:214px;
  4930. height:27px;
  4931. background:inherit;
  4932. background-color:rgba(255, 255, 255, 0);
  4933. border:none;
  4934. border-radius:0px;
  4935. -moz-box-shadow:none;
  4936. -webkit-box-shadow:none;
  4937. box-shadow:none;
  4938. font-size:14px;
  4939. color:#FFFFFF;
  4940. }
  4941. #u15432 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:2843px;
  4945. top:11px;
  4946. width:214px;
  4947. height:27px;
  4948. display:flex;
  4949. font-size:14px;
  4950. color:#FFFFFF;
  4951. }
  4952. #u15432 .text {
  4953. position:absolute;
  4954. align-self:flex-start;
  4955. padding:2px 2px 2px 2px;
  4956. box-sizing:border-box;
  4957. width:100%;
  4958. }
  4959. #u15432_div.disabled {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:0px;
  4963. top:0px;
  4964. width:214px;
  4965. height:27px;
  4966. background:inherit;
  4967. background-color:rgba(240, 240, 240, 1);
  4968. border:none;
  4969. border-radius:0px;
  4970. -moz-box-shadow:none;
  4971. -webkit-box-shadow:none;
  4972. box-shadow:none;
  4973. font-size:14px;
  4974. color:#FFFFFF;
  4975. }
  4976. #u15432.disabled {
  4977. }
  4978. .u15432_input_option {
  4979. font-size:14px;
  4980. }
  4981. #u15433_img {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:22px;
  4987. height:22px;
  4988. }
  4989. #u15433 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:2816px;
  4993. top:14px;
  4994. width:22px;
  4995. height:22px;
  4996. display:flex;
  4997. }
  4998. #u15433 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:2px 2px 2px 2px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u15433_text {
  5006. border-width:0px;
  5007. word-wrap:break-word;
  5008. text-transform:none;
  5009. visibility:hidden;
  5010. }
  5011. #u15434_div {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:100px;
  5017. height:24px;
  5018. background:inherit;
  5019. background-color:rgba(242, 242, 242, 0.2);
  5020. border:none;
  5021. border-radius:25px;
  5022. -moz-box-shadow:none;
  5023. -webkit-box-shadow:none;
  5024. box-shadow:none;
  5025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5026. font-weight:400;
  5027. font-style:normal;
  5028. color:#FFFFFF;
  5029. text-align:center;
  5030. }
  5031. #u15434 {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:3102px;
  5035. top:13px;
  5036. width:100px;
  5037. height:24px;
  5038. display:flex;
  5039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5040. font-weight:400;
  5041. font-style:normal;
  5042. color:#FFFFFF;
  5043. text-align:center;
  5044. }
  5045. #u15434 .text {
  5046. position:absolute;
  5047. align-self:center;
  5048. padding:0px 0px 0px 0px;
  5049. box-sizing:border-box;
  5050. width:100%;
  5051. }
  5052. #u15434_text {
  5053. border-width:0px;
  5054. word-wrap:break-word;
  5055. text-transform:none;
  5056. }
  5057. #u15435_img {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:2px;
  5063. height:12px;
  5064. }
  5065. #u15435 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:3074px;
  5069. top:19px;
  5070. width:1px;
  5071. height:11px;
  5072. display:flex;
  5073. }
  5074. #u15435 .text {
  5075. position:absolute;
  5076. align-self:center;
  5077. padding:2px 2px 2px 2px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u15435_text {
  5082. border-width:0px;
  5083. word-wrap:break-word;
  5084. text-transform:none;
  5085. visibility:hidden;
  5086. }
  5087. #u15436 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:0px;
  5093. height:0px;
  5094. }
  5095. #u15437_div {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:29px;
  5101. height:20px;
  5102. background:inherit;
  5103. background-color:rgba(255, 255, 255, 0);
  5104. border:none;
  5105. border-radius:25px;
  5106. -moz-box-shadow:none;
  5107. -webkit-box-shadow:none;
  5108. box-shadow:none;
  5109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5110. font-weight:400;
  5111. font-style:normal;
  5112. color:#FFFFFF;
  5113. }
  5114. #u15437 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:1674px;
  5118. top:1082px;
  5119. width:29px;
  5120. height:20px;
  5121. display:flex;
  5122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. color:#FFFFFF;
  5126. }
  5127. #u15437 .text {
  5128. position:absolute;
  5129. align-self:center;
  5130. padding:0px 0px 0px 0px;
  5131. box-sizing:border-box;
  5132. width:100%;
  5133. }
  5134. #u15437_text {
  5135. border-width:0px;
  5136. white-space:nowrap;
  5137. text-transform:none;
  5138. }
  5139. #u15438_img {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:22px;
  5145. height:22px;
  5146. }
  5147. #u15438 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:1642px;
  5151. top:1081px;
  5152. width:22px;
  5153. height:22px;
  5154. display:flex;
  5155. }
  5156. #u15438 .text {
  5157. position:absolute;
  5158. align-self:center;
  5159. padding:2px 2px 2px 2px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u15438_text {
  5164. border-width:0px;
  5165. word-wrap:break-word;
  5166. text-transform:none;
  5167. visibility:hidden;
  5168. }
  5169. #u15439_img {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:69px;
  5175. height:2px;
  5176. }
  5177. #u15439 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:1642px;
  5181. top:1123px;
  5182. width:68px;
  5183. height:1px;
  5184. display:flex;
  5185. }
  5186. #u15439 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:2px 2px 2px 2px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u15439_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. visibility:hidden;
  5198. }
  5199. #u15440_img {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:69px;
  5205. height:2px;
  5206. }
  5207. #u15440 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:1642px;
  5211. top:1061px;
  5212. width:68px;
  5213. height:1px;
  5214. display:flex;
  5215. }
  5216. #u15440 .text {
  5217. position:absolute;
  5218. align-self:center;
  5219. padding:2px 2px 2px 2px;
  5220. box-sizing:border-box;
  5221. width:100%;
  5222. }
  5223. #u15440_text {
  5224. border-width:0px;
  5225. word-wrap:break-word;
  5226. text-transform:none;
  5227. visibility:hidden;
  5228. }
  5229. #u15441_img {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:57px;
  5235. height:2px;
  5236. }
  5237. #u15441 {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:1642px;
  5241. top:112px;
  5242. width:56px;
  5243. height:1px;
  5244. display:flex;
  5245. }
  5246. #u15441 .text {
  5247. position:absolute;
  5248. align-self:center;
  5249. padding:2px 2px 2px 2px;
  5250. box-sizing:border-box;
  5251. width:100%;
  5252. }
  5253. #u15441_text {
  5254. border-width:0px;
  5255. word-wrap:break-word;
  5256. text-transform:none;
  5257. visibility:hidden;
  5258. }
  5259. #u15442 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:0px;
  5265. height:0px;
  5266. }
  5267. #u15443_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:33px;
  5273. height:22px;
  5274. background:inherit;
  5275. background-color:rgba(255, 255, 255, 0);
  5276. border:none;
  5277. border-radius:0px;
  5278. -moz-box-shadow:none;
  5279. -webkit-box-shadow:none;
  5280. box-shadow:none;
  5281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5282. font-weight:400;
  5283. font-style:normal;
  5284. font-size:16px;
  5285. color:#FFFFFF;
  5286. }
  5287. #u15443 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:1665px;
  5291. top:71px;
  5292. width:33px;
  5293. height:22px;
  5294. display:flex;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:16px;
  5299. color:#FFFFFF;
  5300. }
  5301. #u15443 .text {
  5302. position:absolute;
  5303. align-self:flex-start;
  5304. padding:0px 0px 0px 0px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u15443_text {
  5309. border-width:0px;
  5310. white-space:nowrap;
  5311. text-transform:none;
  5312. }
  5313. #u15444_img {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:18px;
  5319. height:14px;
  5320. }
  5321. #u15444 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:1642px;
  5325. top:75px;
  5326. width:18px;
  5327. height:14px;
  5328. display:flex;
  5329. }
  5330. #u15444 .text {
  5331. position:absolute;
  5332. align-self:center;
  5333. padding:2px 2px 2px 2px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u15444_text {
  5338. border-width:0px;
  5339. word-wrap:break-word;
  5340. text-transform:none;
  5341. visibility:hidden;
  5342. }
  5343. #u15445_div {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:1265px;
  5349. height:1180px;
  5350. background:inherit;
  5351. background-color:rgba(255, 255, 255, 1);
  5352. border:none;
  5353. border-radius:0px;
  5354. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5355. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5356. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5357. color:#1890FF;
  5358. }
  5359. #u15445 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:1951px;
  5363. top:50px;
  5364. width:1265px;
  5365. height:1180px;
  5366. display:flex;
  5367. color:#1890FF;
  5368. }
  5369. #u15445 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 2px 2px 2px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u15445_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. visibility:hidden;
  5381. }
  5382. #u15446_img {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:50px;
  5388. height:31px;
  5389. }
  5390. #u15446 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:2483px;
  5394. top:136px;
  5395. width:50px;
  5396. height:31px;
  5397. display:flex;
  5398. }
  5399. #u15446 .text {
  5400. position:absolute;
  5401. align-self:center;
  5402. padding:2px 2px 2px 2px;
  5403. box-sizing:border-box;
  5404. width:100%;
  5405. }
  5406. #u15446_text {
  5407. border-width:0px;
  5408. word-wrap:break-word;
  5409. text-transform:none;
  5410. visibility:hidden;
  5411. }
  5412. #u15447_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:71px;
  5418. height:40px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 0);
  5421. border:none;
  5422. border-top:0px;
  5423. border-right:0px;
  5424. border-bottom:0px;
  5425. border-radius:0px;
  5426. border-top-left-radius:0px;
  5427. border-bottom-left-radius:0px;
  5428. -moz-box-shadow:none;
  5429. -webkit-box-shadow:none;
  5430. box-shadow:none;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:14px;
  5435. line-height:40px;
  5436. }
  5437. #u15447 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:2306px;
  5441. top:282px;
  5442. width:71px;
  5443. height:40px;
  5444. display:flex;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:14px;
  5449. line-height:40px;
  5450. }
  5451. #u15447 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:0px 0px 0px 0px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u15447_text {
  5459. border-width:0px;
  5460. white-space:nowrap;
  5461. text-transform:none;
  5462. }
  5463. #u15448 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:0px;
  5469. height:0px;
  5470. }
  5471. #u15449_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:120px;
  5477. height:40px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 1);
  5480. box-sizing:border-box;
  5481. border-width:1px;
  5482. border-style:solid;
  5483. border-color:rgba(215, 215, 215, 1);
  5484. border-radius:4px;
  5485. -moz-box-shadow:none;
  5486. -webkit-box-shadow:none;
  5487. box-shadow:none;
  5488. font-size:14px;
  5489. }
  5490. #u15449 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:2377px;
  5494. top:282px;
  5495. width:120px;
  5496. height:40px;
  5497. display:flex;
  5498. font-size:14px;
  5499. }
  5500. #u15449 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 2px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u15449_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. visibility:hidden;
  5512. }
  5513. #u15450_input {
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:115px;
  5518. height:31px;
  5519. padding:2px 2px 2px 2px;
  5520. font-family:'ArialMT', 'Arial', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:14px;
  5524. letter-spacing:normal;
  5525. color:#AAAAAA;
  5526. vertical-align:none;
  5527. text-align:left;
  5528. text-transform:none;
  5529. background-color:transparent;
  5530. border-color:transparent;
  5531. }
  5532. #u15450_input.disabled {
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:115px;
  5537. height:31px;
  5538. padding:2px 2px 2px 2px;
  5539. font-family:'ArialMT', 'Arial', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:14px;
  5543. letter-spacing:normal;
  5544. color:#AAAAAA;
  5545. vertical-align:none;
  5546. text-align:left;
  5547. text-transform:none;
  5548. background-color:transparent;
  5549. border-color:transparent;
  5550. }
  5551. #u15450_div {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:115px;
  5557. height:31px;
  5558. background:inherit;
  5559. background-color:rgba(255, 255, 255, 1);
  5560. border:none;
  5561. border-radius:0px;
  5562. -moz-box-shadow:none;
  5563. -webkit-box-shadow:none;
  5564. box-shadow:none;
  5565. font-size:14px;
  5566. color:#AAAAAA;
  5567. }
  5568. #u15450 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:2380px;
  5572. top:285px;
  5573. width:115px;
  5574. height:31px;
  5575. display:flex;
  5576. font-size:14px;
  5577. color:#AAAAAA;
  5578. }
  5579. #u15450 .text {
  5580. position:absolute;
  5581. align-self:flex-start;
  5582. padding:2px 2px 2px 2px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u15450_div.disabled {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:115px;
  5592. height:31px;
  5593. background:inherit;
  5594. background-color:rgba(240, 240, 240, 1);
  5595. border:none;
  5596. border-radius:0px;
  5597. -moz-box-shadow:none;
  5598. -webkit-box-shadow:none;
  5599. box-shadow:none;
  5600. font-size:14px;
  5601. color:#AAAAAA;
  5602. }
  5603. #u15450.disabled {
  5604. }
  5605. .u15450_input_option {
  5606. font-size:14px;
  5607. }
  5608. #u15451 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:0px;
  5614. height:0px;
  5615. }
  5616. #u15452_div {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:211px;
  5622. height:40px;
  5623. background:inherit;
  5624. background-color:rgba(255, 255, 255, 1);
  5625. box-sizing:border-box;
  5626. border-width:1px;
  5627. border-style:solid;
  5628. border-color:rgba(201, 201, 201, 1);
  5629. border-radius:4px;
  5630. -moz-box-shadow:none;
  5631. -webkit-box-shadow:none;
  5632. box-shadow:none;
  5633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:14px;
  5637. text-align:right;
  5638. }
  5639. #u15452 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:2507px;
  5643. top:282px;
  5644. width:211px;
  5645. height:40px;
  5646. display:flex;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:14px;
  5651. text-align:right;
  5652. }
  5653. #u15452 .text {
  5654. position:absolute;
  5655. align-self:center;
  5656. padding:2px 8px 2px 8px;
  5657. box-sizing:border-box;
  5658. width:100%;
  5659. }
  5660. #u15452_text {
  5661. border-width:0px;
  5662. word-wrap:break-word;
  5663. text-transform:none;
  5664. }
  5665. #u15453_input {
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:149px;
  5670. height:33px;
  5671. padding:2px 2px 2px 2px;
  5672. font-family:'Helvetica', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:14px;
  5676. letter-spacing:normal;
  5677. color:#000000;
  5678. vertical-align:none;
  5679. text-align:left;
  5680. text-transform:none;
  5681. background-color:transparent;
  5682. border-color:transparent;
  5683. }
  5684. #u15453_input.disabled {
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:149px;
  5689. height:33px;
  5690. padding:2px 2px 2px 2px;
  5691. font-family:'Helvetica', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:14px;
  5695. letter-spacing:normal;
  5696. color:#000000;
  5697. vertical-align:none;
  5698. text-align:left;
  5699. text-transform:none;
  5700. background-color:transparent;
  5701. border-color:transparent;
  5702. }
  5703. #u15453_div {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:149px;
  5709. height:33px;
  5710. background:inherit;
  5711. background-color:rgba(255, 255, 255, 1);
  5712. border:none;
  5713. border-radius:0px;
  5714. -moz-box-shadow:none;
  5715. -webkit-box-shadow:none;
  5716. box-shadow:none;
  5717. font-family:'Helvetica', sans-serif;
  5718. font-weight:400;
  5719. font-style:normal;
  5720. font-size:14px;
  5721. }
  5722. #u15453 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:2515px;
  5726. top:283px;
  5727. width:149px;
  5728. height:33px;
  5729. display:flex;
  5730. font-family:'Helvetica', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:14px;
  5734. }
  5735. #u15453 .text {
  5736. position:absolute;
  5737. align-self:center;
  5738. padding:2px 2px 2px 2px;
  5739. box-sizing:border-box;
  5740. width:100%;
  5741. }
  5742. #u15453_div.disabled {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:149px;
  5748. height:33px;
  5749. background:inherit;
  5750. background-color:rgba(240, 240, 240, 1);
  5751. border:none;
  5752. border-radius:0px;
  5753. -moz-box-shadow:none;
  5754. -webkit-box-shadow:none;
  5755. box-shadow:none;
  5756. font-family:'Helvetica', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:14px;
  5760. }
  5761. #u15453.disabled {
  5762. }
  5763. #u15454_img {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:80px;
  5769. height:30px;
  5770. }
  5771. #u15454 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:2306px;
  5775. top:352px;
  5776. width:80px;
  5777. height:30px;
  5778. display:flex;
  5779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:14px;
  5783. color:#FFFFFF;
  5784. }
  5785. #u15454 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:2px 2px 2px 2px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u15454_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. }
  5797. #u15456 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:0px;
  5803. height:0px;
  5804. }
  5805. #u15457_div {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:200px;
  5811. height:1180px;
  5812. background:inherit;
  5813. background-color:rgba(255, 255, 255, 1);
  5814. border:none;
  5815. border-radius:0px;
  5816. -moz-box-shadow:none;
  5817. -webkit-box-shadow:none;
  5818. box-shadow:none;
  5819. }
  5820. #u15457 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:1742px;
  5824. top:50px;
  5825. width:200px;
  5826. height:1180px;
  5827. display:flex;
  5828. }
  5829. #u15457 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 2px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u15457_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u15458_div {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:200px;
  5848. height:60px;
  5849. background:inherit;
  5850. background-color:rgba(224, 231, 247, 1);
  5851. border:none;
  5852. border-radius:0px;
  5853. -moz-box-shadow:none;
  5854. -webkit-box-shadow:none;
  5855. box-shadow:none;
  5856. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5857. font-weight:500;
  5858. font-style:normal;
  5859. font-size:18px;
  5860. }
  5861. #u15458 {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:1742px;
  5865. top:50px;
  5866. width:200px;
  5867. height:60px;
  5868. display:flex;
  5869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5870. font-weight:500;
  5871. font-style:normal;
  5872. font-size:18px;
  5873. }
  5874. #u15458 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:0px 0px 0px 20px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u15458_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. }
  5886. #u15459_div {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:65px;
  5892. height:22px;
  5893. background:inherit;
  5894. background-color:rgba(255, 255, 255, 0);
  5895. border:none;
  5896. border-radius:0px;
  5897. -moz-box-shadow:none;
  5898. -webkit-box-shadow:none;
  5899. box-shadow:none;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:16px;
  5904. }
  5905. #u15459 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:1769px;
  5909. top:242px;
  5910. width:65px;
  5911. height:22px;
  5912. display:flex;
  5913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5914. font-weight:400;
  5915. font-style:normal;
  5916. font-size:16px;
  5917. }
  5918. #u15459 .text {
  5919. position:absolute;
  5920. align-self:flex-start;
  5921. padding:0px 0px 0px 0px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u15459_text {
  5926. border-width:0px;
  5927. white-space:nowrap;
  5928. text-transform:none;
  5929. }
  5930. #u15460_div {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:0px;
  5934. top:0px;
  5935. width:49px;
  5936. height:17px;
  5937. background:inherit;
  5938. background-color:rgba(255, 255, 255, 0);
  5939. border:none;
  5940. border-radius:0px;
  5941. -moz-box-shadow:none;
  5942. -webkit-box-shadow:none;
  5943. box-shadow:none;
  5944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:12px;
  5948. color:#AAAAAA;
  5949. }
  5950. #u15460 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:1769px;
  5954. top:122px;
  5955. width:49px;
  5956. height:17px;
  5957. display:flex;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:12px;
  5962. color:#AAAAAA;
  5963. }
  5964. #u15460 .text {
  5965. position:absolute;
  5966. align-self:flex-start;
  5967. padding:0px 0px 0px 0px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u15460_text {
  5972. border-width:0px;
  5973. white-space:nowrap;
  5974. text-transform:none;
  5975. }
  5976. #u15461_div {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:65px;
  5982. height:22px;
  5983. background:inherit;
  5984. background-color:rgba(255, 255, 255, 0);
  5985. border:none;
  5986. border-radius:0px;
  5987. -moz-box-shadow:none;
  5988. -webkit-box-shadow:none;
  5989. box-shadow:none;
  5990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5991. font-weight:400;
  5992. font-style:normal;
  5993. font-size:16px;
  5994. }
  5995. #u15461 {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:1769px;
  5999. top:200px;
  6000. width:65px;
  6001. height:22px;
  6002. display:flex;
  6003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6004. font-weight:400;
  6005. font-style:normal;
  6006. font-size:16px;
  6007. }
  6008. #u15461 .text {
  6009. position:absolute;
  6010. align-self:flex-start;
  6011. padding:0px 0px 0px 0px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u15461_text {
  6016. border-width:0px;
  6017. white-space:nowrap;
  6018. text-transform:none;
  6019. }
  6020. #u15462_div {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:81px;
  6026. height:22px;
  6027. background:inherit;
  6028. background-color:rgba(255, 255, 255, 0);
  6029. border:none;
  6030. border-radius:0px;
  6031. -moz-box-shadow:none;
  6032. -webkit-box-shadow:none;
  6033. box-shadow:none;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:16px;
  6038. }
  6039. #u15462 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:1769px;
  6043. top:484px;
  6044. width:81px;
  6045. height:22px;
  6046. display:flex;
  6047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:16px;
  6051. }
  6052. #u15462 .text {
  6053. position:absolute;
  6054. align-self:flex-start;
  6055. padding:0px 0px 0px 0px;
  6056. box-sizing:border-box;
  6057. width:100%;
  6058. }
  6059. #u15462_text {
  6060. border-width:0px;
  6061. white-space:nowrap;
  6062. text-transform:none;
  6063. }
  6064. #u15463_img {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:201px;
  6070. height:2px;
  6071. }
  6072. #u15463 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:1742px;
  6076. top:427px;
  6077. width:200px;
  6078. height:1px;
  6079. display:flex;
  6080. }
  6081. #u15463 .text {
  6082. position:absolute;
  6083. align-self:center;
  6084. padding:2px 2px 2px 2px;
  6085. box-sizing:border-box;
  6086. width:100%;
  6087. }
  6088. #u15463_text {
  6089. border-width:0px;
  6090. word-wrap:break-word;
  6091. text-transform:none;
  6092. visibility:hidden;
  6093. }
  6094. #u15464_div {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:65px;
  6100. height:22px;
  6101. background:inherit;
  6102. background-color:rgba(255, 255, 255, 0);
  6103. border:none;
  6104. border-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:16px;
  6112. }
  6113. #u15464 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:1769px;
  6117. top:526px;
  6118. width:65px;
  6119. height:22px;
  6120. display:flex;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:16px;
  6125. }
  6126. #u15464 .text {
  6127. position:absolute;
  6128. align-self:flex-start;
  6129. padding:0px 0px 0px 0px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u15464_text {
  6134. border-width:0px;
  6135. white-space:nowrap;
  6136. text-transform:none;
  6137. }
  6138. #u15465_div {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:49px;
  6144. height:17px;
  6145. background:inherit;
  6146. background-color:rgba(255, 255, 255, 0);
  6147. border:none;
  6148. border-radius:0px;
  6149. -moz-box-shadow:none;
  6150. -webkit-box-shadow:none;
  6151. box-shadow:none;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:12px;
  6156. color:#AAAAAA;
  6157. }
  6158. #u15465 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:1769px;
  6162. top:447px;
  6163. width:49px;
  6164. height:17px;
  6165. display:flex;
  6166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. font-size:12px;
  6170. color:#AAAAAA;
  6171. }
  6172. #u15465 .text {
  6173. position:absolute;
  6174. align-self:flex-start;
  6175. padding:0px 0px 0px 0px;
  6176. box-sizing:border-box;
  6177. width:100%;
  6178. }
  6179. #u15465_text {
  6180. border-width:0px;
  6181. white-space:nowrap;
  6182. text-transform:none;
  6183. }
  6184. #u15466_div {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:81px;
  6190. height:22px;
  6191. background:inherit;
  6192. background-color:rgba(255, 255, 255, 0);
  6193. border:none;
  6194. border-radius:0px;
  6195. -moz-box-shadow:none;
  6196. -webkit-box-shadow:none;
  6197. box-shadow:none;
  6198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6199. font-weight:400;
  6200. font-style:normal;
  6201. font-size:16px;
  6202. }
  6203. #u15466 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:1769px;
  6207. top:652px;
  6208. width:81px;
  6209. height:22px;
  6210. display:flex;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:16px;
  6215. }
  6216. #u15466 .text {
  6217. position:absolute;
  6218. align-self:flex-start;
  6219. padding:0px 0px 0px 0px;
  6220. box-sizing:border-box;
  6221. width:100%;
  6222. }
  6223. #u15466_text {
  6224. border-width:0px;
  6225. white-space:nowrap;
  6226. text-transform:none;
  6227. }
  6228. #u15467_div {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:65px;
  6234. height:22px;
  6235. background:inherit;
  6236. background-color:rgba(255, 255, 255, 0);
  6237. border:none;
  6238. border-radius:0px;
  6239. -moz-box-shadow:none;
  6240. -webkit-box-shadow:none;
  6241. box-shadow:none;
  6242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:16px;
  6246. }
  6247. #u15467 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:1769px;
  6251. top:568px;
  6252. width:65px;
  6253. height:22px;
  6254. display:flex;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:16px;
  6259. }
  6260. #u15467 .text {
  6261. position:absolute;
  6262. align-self:flex-start;
  6263. padding:0px 0px 0px 0px;
  6264. box-sizing:border-box;
  6265. width:100%;
  6266. }
  6267. #u15467_text {
  6268. border-width:0px;
  6269. white-space:nowrap;
  6270. text-transform:none;
  6271. }
  6272. #u15468_div {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:65px;
  6278. height:22px;
  6279. background:inherit;
  6280. background-color:rgba(255, 255, 255, 0);
  6281. border:none;
  6282. border-radius:0px;
  6283. -moz-box-shadow:none;
  6284. -webkit-box-shadow:none;
  6285. box-shadow:none;
  6286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:16px;
  6290. }
  6291. #u15468 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:1769px;
  6295. top:610px;
  6296. width:65px;
  6297. height:22px;
  6298. display:flex;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:16px;
  6303. }
  6304. #u15468 .text {
  6305. position:absolute;
  6306. align-self:flex-start;
  6307. padding:0px 0px 0px 0px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u15468_text {
  6312. border-width:0px;
  6313. white-space:nowrap;
  6314. text-transform:none;
  6315. }
  6316. #u15469_div {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:65px;
  6322. height:22px;
  6323. background:inherit;
  6324. background-color:rgba(255, 255, 255, 0);
  6325. border:none;
  6326. border-radius:0px;
  6327. -moz-box-shadow:none;
  6328. -webkit-box-shadow:none;
  6329. box-shadow:none;
  6330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. font-size:16px;
  6334. }
  6335. #u15469 {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:1769px;
  6339. top:341px;
  6340. width:65px;
  6341. height:22px;
  6342. display:flex;
  6343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6344. font-weight:400;
  6345. font-style:normal;
  6346. font-size:16px;
  6347. }
  6348. #u15469 .text {
  6349. position:absolute;
  6350. align-self:flex-start;
  6351. padding:0px 0px 0px 0px;
  6352. box-sizing:border-box;
  6353. width:100%;
  6354. }
  6355. #u15469_text {
  6356. border-width:0px;
  6357. white-space:nowrap;
  6358. text-transform:none;
  6359. }
  6360. #u15470_img {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:201px;
  6366. height:2px;
  6367. }
  6368. #u15470 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:1742px;
  6372. top:284px;
  6373. width:200px;
  6374. height:1px;
  6375. display:flex;
  6376. }
  6377. #u15470 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:2px 2px 2px 2px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u15470_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. visibility:hidden;
  6389. }
  6390. #u15471_div {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:49px;
  6396. height:17px;
  6397. background:inherit;
  6398. background-color:rgba(255, 255, 255, 0);
  6399. border:none;
  6400. border-radius:0px;
  6401. -moz-box-shadow:none;
  6402. -webkit-box-shadow:none;
  6403. box-shadow:none;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:12px;
  6408. color:#AAAAAA;
  6409. }
  6410. #u15471 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:1769px;
  6414. top:304px;
  6415. width:49px;
  6416. height:17px;
  6417. display:flex;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:12px;
  6422. color:#AAAAAA;
  6423. }
  6424. #u15471 .text {
  6425. position:absolute;
  6426. align-self:flex-start;
  6427. padding:0px 0px 0px 0px;
  6428. box-sizing:border-box;
  6429. width:100%;
  6430. }
  6431. #u15471_text {
  6432. border-width:0px;
  6433. white-space:nowrap;
  6434. text-transform:none;
  6435. }
  6436. #u15472_div {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:65px;
  6442. height:22px;
  6443. background:inherit;
  6444. background-color:rgba(255, 255, 255, 0);
  6445. border:none;
  6446. border-radius:0px;
  6447. -moz-box-shadow:none;
  6448. -webkit-box-shadow:none;
  6449. box-shadow:none;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:16px;
  6454. }
  6455. #u15472 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:1769px;
  6459. top:383px;
  6460. width:65px;
  6461. height:22px;
  6462. display:flex;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:16px;
  6467. }
  6468. #u15472 .text {
  6469. position:absolute;
  6470. align-self:flex-start;
  6471. padding:0px 0px 0px 0px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u15472_text {
  6476. border-width:0px;
  6477. white-space:nowrap;
  6478. text-transform:none;
  6479. }
  6480. #u15473_div {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:65px;
  6486. height:22px;
  6487. background:inherit;
  6488. background-color:rgba(255, 255, 255, 0);
  6489. border:none;
  6490. border-radius:0px;
  6491. -moz-box-shadow:none;
  6492. -webkit-box-shadow:none;
  6493. box-shadow:none;
  6494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:16px;
  6498. }
  6499. #u15473 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:1769px;
  6503. top:159px;
  6504. width:65px;
  6505. height:22px;
  6506. display:flex;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:16px;
  6511. }
  6512. #u15473 .text {
  6513. position:absolute;
  6514. align-self:flex-start;
  6515. padding:0px 0px 0px 0px;
  6516. box-sizing:border-box;
  6517. width:100%;
  6518. }
  6519. #u15473_text {
  6520. border-width:0px;
  6521. white-space:nowrap;
  6522. text-transform:none;
  6523. }
  6524. #u15474 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:0px;
  6530. height:0px;
  6531. }
  6532. #u15475_div {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:300px;
  6538. height:1180px;
  6539. background:inherit;
  6540. background-color:rgba(240, 242, 245, 1);
  6541. border:none;
  6542. border-radius:0px;
  6543. -moz-box-shadow:none;
  6544. -webkit-box-shadow:none;
  6545. box-shadow:none;
  6546. }
  6547. #u15475 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:1952px;
  6551. top:50px;
  6552. width:300px;
  6553. height:1180px;
  6554. display:flex;
  6555. }
  6556. #u15475 .text {
  6557. position:absolute;
  6558. align-self:center;
  6559. padding:2px 2px 2px 2px;
  6560. box-sizing:border-box;
  6561. width:100%;
  6562. }
  6563. #u15475_text {
  6564. border-width:0px;
  6565. word-wrap:break-word;
  6566. text-transform:none;
  6567. visibility:hidden;
  6568. }
  6569. #u15476 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:0px;
  6573. top:0px;
  6574. width:0px;
  6575. height:0px;
  6576. }
  6577. #u15477_div {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:0px;
  6581. top:0px;
  6582. width:260px;
  6583. height:40px;
  6584. background:inherit;
  6585. background-color:rgba(255, 255, 255, 1);
  6586. box-sizing:border-box;
  6587. border-width:1px;
  6588. border-style:solid;
  6589. border-color:rgba(242, 242, 242, 1);
  6590. border-radius:4px;
  6591. -moz-box-shadow:none;
  6592. -webkit-box-shadow:none;
  6593. box-shadow:none;
  6594. font-family:'Microsoft YaHei', sans-serif;
  6595. font-weight:400;
  6596. font-style:normal;
  6597. font-size:14px;
  6598. color:#CCCCCC;
  6599. text-align:left;
  6600. }
  6601. #u15477 {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:1972px;
  6605. top:130px;
  6606. width:260px;
  6607. height:40px;
  6608. display:flex;
  6609. font-family:'Microsoft YaHei', sans-serif;
  6610. font-weight:400;
  6611. font-style:normal;
  6612. font-size:14px;
  6613. color:#CCCCCC;
  6614. text-align:left;
  6615. }
  6616. #u15477 .text {
  6617. position:absolute;
  6618. align-self:center;
  6619. padding:2px 8px 2px 8px;
  6620. box-sizing:border-box;
  6621. width:100%;
  6622. }
  6623. #u15477_text {
  6624. border-width:0px;
  6625. word-wrap:break-word;
  6626. text-transform:none;
  6627. visibility:hidden;
  6628. }
  6629. #u15478_input {
  6630. position:absolute;
  6631. left:0px;
  6632. top:0px;
  6633. width:217px;
  6634. height:33px;
  6635. padding:2px 2px 2px 2px;
  6636. font-family:'Microsoft YaHei', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:14px;
  6640. letter-spacing:normal;
  6641. color:#000000;
  6642. vertical-align:none;
  6643. text-align:left;
  6644. text-transform:none;
  6645. background-color:transparent;
  6646. border-color:transparent;
  6647. }
  6648. #u15478_input.disabled {
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:217px;
  6653. height:33px;
  6654. padding:2px 2px 2px 2px;
  6655. font-family:'Microsoft YaHei', sans-serif;
  6656. font-weight:400;
  6657. font-style:normal;
  6658. font-size:14px;
  6659. letter-spacing:normal;
  6660. color:#000000;
  6661. vertical-align:none;
  6662. text-align:left;
  6663. text-transform:none;
  6664. background-color:transparent;
  6665. border-color:transparent;
  6666. }
  6667. #u15478_div {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:217px;
  6673. height:33px;
  6674. background:inherit;
  6675. background-color:rgba(255, 255, 255, 1);
  6676. border:none;
  6677. border-radius:0px;
  6678. -moz-box-shadow:none;
  6679. -webkit-box-shadow:none;
  6680. box-shadow:none;
  6681. font-family:'Microsoft YaHei', sans-serif;
  6682. font-weight:400;
  6683. font-style:normal;
  6684. font-size:14px;
  6685. }
  6686. #u15478 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:1980px;
  6690. top:131px;
  6691. width:217px;
  6692. height:33px;
  6693. display:flex;
  6694. font-family:'Microsoft YaHei', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:14px;
  6698. }
  6699. #u15478 .text {
  6700. position:absolute;
  6701. align-self:center;
  6702. padding:2px 2px 2px 2px;
  6703. box-sizing:border-box;
  6704. width:100%;
  6705. }
  6706. #u15478_div.disabled {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:217px;
  6712. height:33px;
  6713. background:inherit;
  6714. background-color:rgba(240, 240, 240, 1);
  6715. border:none;
  6716. border-radius:0px;
  6717. -moz-box-shadow:none;
  6718. -webkit-box-shadow:none;
  6719. box-shadow:none;
  6720. font-family:'Microsoft YaHei', sans-serif;
  6721. font-weight:400;
  6722. font-style:normal;
  6723. font-size:14px;
  6724. }
  6725. #u15478.disabled {
  6726. }
  6727. #u15479_img {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:14px;
  6733. height:14px;
  6734. }
  6735. #u15479 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:2204px;
  6739. top:142px;
  6740. width:14px;
  6741. height:14px;
  6742. display:flex;
  6743. }
  6744. #u15479 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:2px 2px 2px 2px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u15479_text {
  6752. border-width:0px;
  6753. word-wrap:break-word;
  6754. text-transform:none;
  6755. visibility:hidden;
  6756. }
  6757. #u15480 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:0px;
  6763. height:0px;
  6764. }
  6765. #u15481_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:260px;
  6771. height:60px;
  6772. background:inherit;
  6773. background-color:rgba(0, 153, 255, 0.0980392156862745);
  6774. border:none;
  6775. border-radius:4px;
  6776. -moz-box-shadow:none;
  6777. -webkit-box-shadow:none;
  6778. box-shadow:none;
  6779. font-family:'Microsoft YaHei', sans-serif;
  6780. font-weight:400;
  6781. font-style:normal;
  6782. font-size:14px;
  6783. color:#CCCCCC;
  6784. text-align:left;
  6785. }
  6786. #u15481 {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:1972px;
  6790. top:190px;
  6791. width:260px;
  6792. height:60px;
  6793. display:flex;
  6794. font-family:'Microsoft YaHei', sans-serif;
  6795. font-weight:400;
  6796. font-style:normal;
  6797. font-size:14px;
  6798. color:#CCCCCC;
  6799. text-align:left;
  6800. }
  6801. #u15481 .text {
  6802. position:absolute;
  6803. align-self:center;
  6804. padding:2px 8px 2px 8px;
  6805. box-sizing:border-box;
  6806. width:100%;
  6807. }
  6808. #u15481_text {
  6809. border-width:0px;
  6810. word-wrap:break-word;
  6811. text-transform:none;
  6812. visibility:hidden;
  6813. }
  6814. #u15482_div {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:63px;
  6820. height:20px;
  6821. background:inherit;
  6822. background-color:rgba(51, 51, 51, 0);
  6823. border:none;
  6824. border-radius:4px;
  6825. -moz-box-shadow:none;
  6826. -webkit-box-shadow:none;
  6827. box-shadow:none;
  6828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6829. font-weight:400;
  6830. font-style:normal;
  6831. font-size:14px;
  6832. text-align:left;
  6833. }
  6834. #u15482 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:1989px;
  6838. top:213px;
  6839. width:63px;
  6840. height:20px;
  6841. display:flex;
  6842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6843. font-weight:400;
  6844. font-style:normal;
  6845. font-size:14px;
  6846. text-align:left;
  6847. }
  6848. #u15482 .text {
  6849. position:absolute;
  6850. align-self:center;
  6851. padding:0px 0px 0px 0px;
  6852. box-sizing:border-box;
  6853. width:100%;
  6854. }
  6855. #u15482_text {
  6856. border-width:0px;
  6857. white-space:nowrap;
  6858. text-transform:none;
  6859. }
  6860. #u15483 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:0px;
  6866. height:0px;
  6867. }
  6868. #u15484_div {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:260px;
  6874. height:60px;
  6875. background:inherit;
  6876. background-color:rgba(255, 255, 255, 0.0980392156862745);
  6877. border:none;
  6878. border-radius:4px;
  6879. -moz-box-shadow:none;
  6880. -webkit-box-shadow:none;
  6881. box-shadow:none;
  6882. font-family:'Microsoft YaHei', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:14px;
  6886. color:#CCCCCC;
  6887. text-align:left;
  6888. }
  6889. #u15484 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:1972px;
  6893. top:370px;
  6894. width:260px;
  6895. height:60px;
  6896. display:flex;
  6897. font-family:'Microsoft YaHei', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:14px;
  6901. color:#CCCCCC;
  6902. text-align:left;
  6903. }
  6904. #u15484 .text {
  6905. position:absolute;
  6906. align-self:center;
  6907. padding:2px 8px 2px 8px;
  6908. box-sizing:border-box;
  6909. width:100%;
  6910. }
  6911. #u15484_text {
  6912. border-width:0px;
  6913. word-wrap:break-word;
  6914. text-transform:none;
  6915. visibility:hidden;
  6916. }
  6917. #u15485_div {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:0px;
  6921. top:0px;
  6922. width:65px;
  6923. height:20px;
  6924. background:inherit;
  6925. background-color:rgba(51, 51, 51, 0);
  6926. border:none;
  6927. border-radius:4px;
  6928. -moz-box-shadow:none;
  6929. -webkit-box-shadow:none;
  6930. box-shadow:none;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:14px;
  6935. text-align:left;
  6936. }
  6937. #u15485 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:1987px;
  6941. top:393px;
  6942. width:65px;
  6943. height:20px;
  6944. display:flex;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:14px;
  6949. text-align:left;
  6950. }
  6951. #u15485 .text {
  6952. position:absolute;
  6953. align-self:center;
  6954. padding:0px 0px 0px 0px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u15485_text {
  6959. border-width:0px;
  6960. white-space:nowrap;
  6961. text-transform:none;
  6962. }
  6963. #u15486 {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:0px;
  6969. height:0px;
  6970. }
  6971. #u15487_div {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:260px;
  6977. height:60px;
  6978. background:inherit;
  6979. background-color:rgba(0, 153, 255, 0);
  6980. border:none;
  6981. border-radius:4px;
  6982. -moz-box-shadow:none;
  6983. -webkit-box-shadow:none;
  6984. box-shadow:none;
  6985. font-family:'Microsoft YaHei', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:14px;
  6989. color:#CCCCCC;
  6990. text-align:left;
  6991. }
  6992. #u15487 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:1972px;
  6996. top:250px;
  6997. width:260px;
  6998. height:60px;
  6999. display:flex;
  7000. font-family:'Microsoft YaHei', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:14px;
  7004. color:#CCCCCC;
  7005. text-align:left;
  7006. }
  7007. #u15487 .text {
  7008. position:absolute;
  7009. align-self:center;
  7010. padding:2px 8px 2px 8px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u15487_text {
  7015. border-width:0px;
  7016. word-wrap:break-word;
  7017. text-transform:none;
  7018. visibility:hidden;
  7019. }
  7020. #u15488_div {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:65px;
  7026. height:20px;
  7027. background:inherit;
  7028. background-color:rgba(51, 51, 51, 0);
  7029. border:none;
  7030. border-radius:4px;
  7031. -moz-box-shadow:none;
  7032. -webkit-box-shadow:none;
  7033. box-shadow:none;
  7034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7035. font-weight:400;
  7036. font-style:normal;
  7037. font-size:14px;
  7038. text-align:left;
  7039. }
  7040. #u15488 {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:1987px;
  7044. top:273px;
  7045. width:65px;
  7046. height:20px;
  7047. display:flex;
  7048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7049. font-weight:400;
  7050. font-style:normal;
  7051. font-size:14px;
  7052. text-align:left;
  7053. }
  7054. #u15488 .text {
  7055. position:absolute;
  7056. align-self:center;
  7057. padding:0px 0px 0px 0px;
  7058. box-sizing:border-box;
  7059. width:100%;
  7060. }
  7061. #u15488_text {
  7062. border-width:0px;
  7063. white-space:nowrap;
  7064. text-transform:none;
  7065. }
  7066. #u15489 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:0px;
  7072. height:0px;
  7073. }
  7074. #u15490_div {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:260px;
  7080. height:60px;
  7081. background:inherit;
  7082. background-color:rgba(255, 255, 255, 0.0980392156862745);
  7083. border:none;
  7084. border-radius:4px;
  7085. -moz-box-shadow:none;
  7086. -webkit-box-shadow:none;
  7087. box-shadow:none;
  7088. font-family:'Microsoft YaHei', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:14px;
  7092. color:#CCCCCC;
  7093. text-align:left;
  7094. }
  7095. #u15490 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:1972px;
  7099. top:310px;
  7100. width:260px;
  7101. height:60px;
  7102. display:flex;
  7103. font-family:'Microsoft YaHei', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:14px;
  7107. color:#CCCCCC;
  7108. text-align:left;
  7109. }
  7110. #u15490 .text {
  7111. position:absolute;
  7112. align-self:center;
  7113. padding:2px 8px 2px 8px;
  7114. box-sizing:border-box;
  7115. width:100%;
  7116. }
  7117. #u15490_text {
  7118. border-width:0px;
  7119. word-wrap:break-word;
  7120. text-transform:none;
  7121. visibility:hidden;
  7122. }
  7123. #u15491_div {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:65px;
  7129. height:20px;
  7130. background:inherit;
  7131. background-color:rgba(51, 51, 51, 0);
  7132. border:none;
  7133. border-radius:4px;
  7134. -moz-box-shadow:none;
  7135. -webkit-box-shadow:none;
  7136. box-shadow:none;
  7137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:14px;
  7141. text-align:left;
  7142. }
  7143. #u15491 {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:1987px;
  7147. top:333px;
  7148. width:65px;
  7149. height:20px;
  7150. display:flex;
  7151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7152. font-weight:400;
  7153. font-style:normal;
  7154. font-size:14px;
  7155. text-align:left;
  7156. }
  7157. #u15491 .text {
  7158. position:absolute;
  7159. align-self:center;
  7160. padding:0px 0px 0px 0px;
  7161. box-sizing:border-box;
  7162. width:100%;
  7163. }
  7164. #u15491_text {
  7165. border-width:0px;
  7166. white-space:nowrap;
  7167. text-transform:none;
  7168. }
  7169. #u15492_div {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:73px;
  7175. height:25px;
  7176. background:inherit;
  7177. background-color:rgba(255, 255, 255, 0);
  7178. border:none;
  7179. border-radius:0px;
  7180. -moz-box-shadow:none;
  7181. -webkit-box-shadow:none;
  7182. box-shadow:none;
  7183. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7184. font-weight:500;
  7185. font-style:normal;
  7186. font-size:18px;
  7187. }
  7188. #u15492 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:1972px;
  7192. top:77px;
  7193. width:73px;
  7194. height:25px;
  7195. display:flex;
  7196. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7197. font-weight:500;
  7198. font-style:normal;
  7199. font-size:18px;
  7200. }
  7201. #u15492 .text {
  7202. position:absolute;
  7203. align-self:flex-start;
  7204. padding:0px 0px 0px 0px;
  7205. box-sizing:border-box;
  7206. width:100%;
  7207. }
  7208. #u15492_text {
  7209. border-width:0px;
  7210. white-space:nowrap;
  7211. text-transform:none;
  7212. }
  7213. #u15493_div {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:80px;
  7219. height:25px;
  7220. background:inherit;
  7221. background-color:rgba(255, 255, 255, 0);
  7222. border:none;
  7223. border-radius:0px;
  7224. -moz-box-shadow:none;
  7225. -webkit-box-shadow:none;
  7226. box-shadow:none;
  7227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7228. font-weight:500;
  7229. font-style:normal;
  7230. font-size:18px;
  7231. }
  7232. #u15493 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:2294px;
  7236. top:77px;
  7237. width:80px;
  7238. height:25px;
  7239. display:flex;
  7240. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7241. font-weight:500;
  7242. font-style:normal;
  7243. font-size:18px;
  7244. }
  7245. #u15493 .text {
  7246. position:absolute;
  7247. align-self:flex-start;
  7248. padding:0px 0px 0px 0px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u15493_text {
  7253. border-width:0px;
  7254. white-space:nowrap;
  7255. text-transform:none;
  7256. }
  7257. #u15494_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:163px;
  7263. height:40px;
  7264. background:inherit;
  7265. background-color:rgba(255, 255, 255, 0);
  7266. border:none;
  7267. border-left:0px;
  7268. border-top:0px;
  7269. border-right:0px;
  7270. border-radius:0px;
  7271. border-bottom-right-radius:0px;
  7272. border-bottom-left-radius:0px;
  7273. -moz-box-shadow:none;
  7274. -webkit-box-shadow:none;
  7275. box-shadow:none;
  7276. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7277. font-weight:500;
  7278. font-style:normal;
  7279. font-size:18px;
  7280. }
  7281. #u15494 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:2304px;
  7285. top:132px;
  7286. width:163px;
  7287. height:40px;
  7288. display:flex;
  7289. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7290. font-weight:500;
  7291. font-style:normal;
  7292. font-size:18px;
  7293. }
  7294. #u15494 .text {
  7295. position:absolute;
  7296. align-self:center;
  7297. padding:0px 0px 0px 0px;
  7298. box-sizing:border-box;
  7299. width:100%;
  7300. }
  7301. #u15494_text {
  7302. border-width:0px;
  7303. white-space:nowrap;
  7304. text-transform:none;
  7305. }
  7306. #u15495_div {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:0px;
  7310. top:0px;
  7311. width:449px;
  7312. height:40px;
  7313. background:inherit;
  7314. background-color:rgba(255, 255, 255, 0);
  7315. border:none;
  7316. border-left:0px;
  7317. border-top:0px;
  7318. border-right:0px;
  7319. border-radius:0px;
  7320. border-bottom-right-radius:0px;
  7321. border-bottom-left-radius:0px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:14px;
  7329. color:#AAAAAA;
  7330. }
  7331. #u15495 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:2304px;
  7335. top:172px;
  7336. width:449px;
  7337. height:40px;
  7338. display:flex;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:14px;
  7343. color:#AAAAAA;
  7344. }
  7345. #u15495 .text {
  7346. position:absolute;
  7347. align-self:center;
  7348. padding:0px 0px 0px 0px;
  7349. box-sizing:border-box;
  7350. width:100%;
  7351. }
  7352. #u15495_text {
  7353. border-width:0px;
  7354. white-space:nowrap;
  7355. text-transform:none;
  7356. }
  7357. #u15496_div {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:145px;
  7363. height:40px;
  7364. background:inherit;
  7365. background-color:rgba(255, 255, 255, 0);
  7366. border:none;
  7367. border-left:0px;
  7368. border-top:0px;
  7369. border-right:0px;
  7370. border-radius:0px;
  7371. border-bottom-right-radius:0px;
  7372. border-bottom-left-radius:0px;
  7373. -moz-box-shadow:none;
  7374. -webkit-box-shadow:none;
  7375. box-shadow:none;
  7376. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7377. font-weight:500;
  7378. font-style:normal;
  7379. font-size:18px;
  7380. }
  7381. #u15496 {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:2306px;
  7385. top:232px;
  7386. width:145px;
  7387. height:40px;
  7388. display:flex;
  7389. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7390. font-weight:500;
  7391. font-style:normal;
  7392. font-size:18px;
  7393. }
  7394. #u15496 .text {
  7395. position:absolute;
  7396. align-self:center;
  7397. padding:0px 0px 0px 0px;
  7398. box-sizing:border-box;
  7399. width:100%;
  7400. }
  7401. #u15496_text {
  7402. border-width:0px;
  7403. white-space:nowrap;
  7404. text-transform:none;
  7405. }
  7406. #u15497 {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:0px;
  7410. top:0px;
  7411. width:0px;
  7412. height:0px;
  7413. }
  7414. #u15498 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:0px;
  7420. height:0px;
  7421. }
  7422. #u15499_div {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:380px;
  7428. height:164px;
  7429. background:inherit;
  7430. background-color:rgba(255, 255, 255, 1);
  7431. box-sizing:border-box;
  7432. border-width:1px;
  7433. border-style:solid;
  7434. border-color:rgba(204, 204, 204, 1);
  7435. border-radius:4px;
  7436. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7437. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7438. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7439. font-family:'Microsoft YaHei', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. }
  7443. #u15499 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:2720px;
  7447. top:400px;
  7448. width:380px;
  7449. height:164px;
  7450. display:flex;
  7451. font-family:'Microsoft YaHei', sans-serif;
  7452. font-weight:400;
  7453. font-style:normal;
  7454. }
  7455. #u15499 .text {
  7456. position:absolute;
  7457. align-self:center;
  7458. padding:2px 2px 2px 2px;
  7459. box-sizing:border-box;
  7460. width:100%;
  7461. }
  7462. #u15499_text {
  7463. border-width:0px;
  7464. word-wrap:break-word;
  7465. text-transform:none;
  7466. visibility:hidden;
  7467. }
  7468. #u15500_div {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:0px;
  7472. top:0px;
  7473. width:299px;
  7474. height:44px;
  7475. background:inherit;
  7476. background-color:rgba(255, 255, 255, 0);
  7477. border:none;
  7478. border-radius:0px;
  7479. -moz-box-shadow:none;
  7480. -webkit-box-shadow:none;
  7481. box-shadow:none;
  7482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:14px;
  7486. color:#666666;
  7487. line-height:22px;
  7488. }
  7489. #u15500 {
  7490. border-width:0px;
  7491. position:absolute;
  7492. left:2780px;
  7493. top:455px;
  7494. width:299px;
  7495. height:44px;
  7496. display:flex;
  7497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7498. font-weight:400;
  7499. font-style:normal;
  7500. font-size:14px;
  7501. color:#666666;
  7502. line-height:22px;
  7503. }
  7504. #u15500 .text {
  7505. position:absolute;
  7506. align-self:flex-start;
  7507. padding:0px 0px 0px 0px;
  7508. box-sizing:border-box;
  7509. width:100%;
  7510. }
  7511. #u15500_text {
  7512. border-width:0px;
  7513. word-wrap:break-word;
  7514. text-transform:none;
  7515. }
  7516. #u15501_div {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:127px;
  7522. height:21px;
  7523. background:inherit;
  7524. background-color:rgba(255, 255, 255, 0);
  7525. border:none;
  7526. border-radius:0px;
  7527. -moz-box-shadow:none;
  7528. -webkit-box-shadow:none;
  7529. box-shadow:none;
  7530. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7531. font-weight:650;
  7532. font-style:normal;
  7533. font-size:18px;
  7534. color:#000000;
  7535. line-height:22px;
  7536. }
  7537. #u15501 {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:2780px;
  7541. top:425px;
  7542. width:127px;
  7543. height:21px;
  7544. display:flex;
  7545. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7546. font-weight:650;
  7547. font-style:normal;
  7548. font-size:18px;
  7549. color:#000000;
  7550. line-height:22px;
  7551. }
  7552. #u15501 .text {
  7553. position:absolute;
  7554. align-self:flex-start;
  7555. padding:0px 0px 0px 0px;
  7556. box-sizing:border-box;
  7557. width:100%;
  7558. }
  7559. #u15501_text {
  7560. border-width:0px;
  7561. white-space:nowrap;
  7562. text-transform:none;
  7563. }
  7564. #u15502_div {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:61px;
  7570. height:30px;
  7571. background:inherit;
  7572. background-color:rgba(24, 144, 255, 1);
  7573. border:none;
  7574. border-radius:4px;
  7575. -moz-box-shadow:none;
  7576. -webkit-box-shadow:none;
  7577. box-shadow:none;
  7578. font-family:'Microsoft YaHei', sans-serif;
  7579. font-weight:400;
  7580. font-style:normal;
  7581. font-size:14px;
  7582. color:#FFFFFF;
  7583. }
  7584. #u15502 {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:3022px;
  7588. top:515px;
  7589. width:61px;
  7590. height:30px;
  7591. display:flex;
  7592. font-family:'Microsoft YaHei', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:14px;
  7596. color:#FFFFFF;
  7597. }
  7598. #u15502 .text {
  7599. position:absolute;
  7600. align-self:center;
  7601. padding:2px 16px 2px 16px;
  7602. box-sizing:border-box;
  7603. width:100%;
  7604. }
  7605. #u15502_text {
  7606. border-width:0px;
  7607. white-space:nowrap;
  7608. text-transform:none;
  7609. }
  7610. #u15503_div {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:0px;
  7614. top:0px;
  7615. width:66px;
  7616. height:30px;
  7617. background:inherit;
  7618. background-color:rgba(255, 255, 255, 1);
  7619. box-sizing:border-box;
  7620. border-width:1px;
  7621. border-style:solid;
  7622. border-color:rgba(217, 217, 217, 1);
  7623. border-radius:4px;
  7624. -moz-box-shadow:none;
  7625. -webkit-box-shadow:none;
  7626. box-shadow:none;
  7627. font-family:'Microsoft YaHei', sans-serif;
  7628. font-weight:400;
  7629. font-style:normal;
  7630. font-size:14px;
  7631. color:rgba(0, 0, 0, 0.647058823529412);
  7632. line-height:21px;
  7633. }
  7634. #u15503 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:2940px;
  7638. top:515px;
  7639. width:66px;
  7640. height:30px;
  7641. display:flex;
  7642. font-family:'Microsoft YaHei', sans-serif;
  7643. font-weight:400;
  7644. font-style:normal;
  7645. font-size:14px;
  7646. color:rgba(0, 0, 0, 0.647058823529412);
  7647. line-height:21px;
  7648. }
  7649. #u15503 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:2px 16px 2px 16px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u15503_text {
  7657. border-width:0px;
  7658. white-space:nowrap;
  7659. text-transform:none;
  7660. }
  7661. #u15504_img {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:20px;
  7667. height:20px;
  7668. }
  7669. #u15504 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:2749px;
  7673. top:429px;
  7674. width:20px;
  7675. height:20px;
  7676. display:flex;
  7677. }
  7678. #u15504 .text {
  7679. position:absolute;
  7680. align-self:center;
  7681. padding:2px 2px 2px 2px;
  7682. box-sizing:border-box;
  7683. width:100%;
  7684. }
  7685. #u15504_text {
  7686. border-width:0px;
  7687. word-wrap:break-word;
  7688. text-transform:none;
  7689. visibility:hidden;
  7690. }
  7691. #u15505_img {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:0px;
  7695. top:0px;
  7696. width:50px;
  7697. height:31px;
  7698. }
  7699. #u15505 {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:860px;
  7703. top:139px;
  7704. width:50px;
  7705. height:31px;
  7706. display:flex;
  7707. }
  7708. #u15505 .text {
  7709. position:absolute;
  7710. align-self:center;
  7711. padding:2px 2px 2px 2px;
  7712. box-sizing:border-box;
  7713. width:100%;
  7714. }
  7715. #u15505_text {
  7716. border-width:0px;
  7717. word-wrap:break-word;
  7718. text-transform:none;
  7719. visibility:hidden;
  7720. }
  7721. #u15506 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:0px;
  7727. height:0px;
  7728. }
  7729. #u15507 {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:0px;
  7733. top:0px;
  7734. width:0px;
  7735. height:0px;
  7736. }
  7737. #u15508_div {
  7738. border-width:0px;
  7739. position:absolute;
  7740. left:0px;
  7741. top:0px;
  7742. width:380px;
  7743. height:164px;
  7744. background:inherit;
  7745. background-color:rgba(255, 255, 255, 1);
  7746. box-sizing:border-box;
  7747. border-width:1px;
  7748. border-style:solid;
  7749. border-color:rgba(204, 204, 204, 1);
  7750. border-radius:4px;
  7751. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7752. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7753. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7754. font-family:'Microsoft YaHei', sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. }
  7758. #u15508 {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:2318px;
  7762. top:400px;
  7763. width:380px;
  7764. height:164px;
  7765. display:flex;
  7766. font-family:'Microsoft YaHei', sans-serif;
  7767. font-weight:400;
  7768. font-style:normal;
  7769. }
  7770. #u15508 .text {
  7771. position:absolute;
  7772. align-self:center;
  7773. padding:2px 2px 2px 2px;
  7774. box-sizing:border-box;
  7775. width:100%;
  7776. }
  7777. #u15508_text {
  7778. border-width:0px;
  7779. word-wrap:break-word;
  7780. text-transform:none;
  7781. visibility:hidden;
  7782. }
  7783. #u15509_div {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:0px;
  7787. top:0px;
  7788. width:299px;
  7789. height:44px;
  7790. background:inherit;
  7791. background-color:rgba(255, 255, 255, 0);
  7792. border:none;
  7793. border-radius:0px;
  7794. -moz-box-shadow:none;
  7795. -webkit-box-shadow:none;
  7796. box-shadow:none;
  7797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7798. font-weight:400;
  7799. font-style:normal;
  7800. font-size:14px;
  7801. color:#666666;
  7802. line-height:22px;
  7803. }
  7804. #u15509 {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:2378px;
  7808. top:455px;
  7809. width:299px;
  7810. height:44px;
  7811. display:flex;
  7812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7813. font-weight:400;
  7814. font-style:normal;
  7815. font-size:14px;
  7816. color:#666666;
  7817. line-height:22px;
  7818. }
  7819. #u15509 .text {
  7820. position:absolute;
  7821. align-self:flex-start;
  7822. padding:0px 0px 0px 0px;
  7823. box-sizing:border-box;
  7824. width:100%;
  7825. }
  7826. #u15509_text {
  7827. border-width:0px;
  7828. word-wrap:break-word;
  7829. text-transform:none;
  7830. }
  7831. #u15510_div {
  7832. border-width:0px;
  7833. position:absolute;
  7834. left:0px;
  7835. top:0px;
  7836. width:127px;
  7837. height:21px;
  7838. background:inherit;
  7839. background-color:rgba(255, 255, 255, 0);
  7840. border:none;
  7841. border-radius:0px;
  7842. -moz-box-shadow:none;
  7843. -webkit-box-shadow:none;
  7844. box-shadow:none;
  7845. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7846. font-weight:650;
  7847. font-style:normal;
  7848. font-size:18px;
  7849. color:#000000;
  7850. line-height:22px;
  7851. }
  7852. #u15510 {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:2378px;
  7856. top:425px;
  7857. width:127px;
  7858. height:21px;
  7859. display:flex;
  7860. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7861. font-weight:650;
  7862. font-style:normal;
  7863. font-size:18px;
  7864. color:#000000;
  7865. line-height:22px;
  7866. }
  7867. #u15510 .text {
  7868. position:absolute;
  7869. align-self:flex-start;
  7870. padding:0px 0px 0px 0px;
  7871. box-sizing:border-box;
  7872. width:100%;
  7873. }
  7874. #u15510_text {
  7875. border-width:0px;
  7876. white-space:nowrap;
  7877. text-transform:none;
  7878. }
  7879. #u15511_div {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:0px;
  7883. top:0px;
  7884. width:61px;
  7885. height:30px;
  7886. background:inherit;
  7887. background-color:rgba(24, 144, 255, 1);
  7888. border:none;
  7889. border-radius:4px;
  7890. -moz-box-shadow:none;
  7891. -webkit-box-shadow:none;
  7892. box-shadow:none;
  7893. font-family:'Microsoft YaHei', sans-serif;
  7894. font-weight:400;
  7895. font-style:normal;
  7896. font-size:14px;
  7897. color:#FFFFFF;
  7898. }
  7899. #u15511 {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:2620px;
  7903. top:515px;
  7904. width:61px;
  7905. height:30px;
  7906. display:flex;
  7907. font-family:'Microsoft YaHei', sans-serif;
  7908. font-weight:400;
  7909. font-style:normal;
  7910. font-size:14px;
  7911. color:#FFFFFF;
  7912. }
  7913. #u15511 .text {
  7914. position:absolute;
  7915. align-self:center;
  7916. padding:2px 16px 2px 16px;
  7917. box-sizing:border-box;
  7918. width:100%;
  7919. }
  7920. #u15511_text {
  7921. border-width:0px;
  7922. white-space:nowrap;
  7923. text-transform:none;
  7924. }
  7925. #u15512_div {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:66px;
  7931. height:30px;
  7932. background:inherit;
  7933. background-color:rgba(255, 255, 255, 1);
  7934. box-sizing:border-box;
  7935. border-width:1px;
  7936. border-style:solid;
  7937. border-color:rgba(217, 217, 217, 1);
  7938. border-radius:4px;
  7939. -moz-box-shadow:none;
  7940. -webkit-box-shadow:none;
  7941. box-shadow:none;
  7942. font-family:'Microsoft YaHei', sans-serif;
  7943. font-weight:400;
  7944. font-style:normal;
  7945. font-size:14px;
  7946. color:rgba(0, 0, 0, 0.647058823529412);
  7947. line-height:21px;
  7948. }
  7949. #u15512 {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:2538px;
  7953. top:515px;
  7954. width:66px;
  7955. height:30px;
  7956. display:flex;
  7957. font-family:'Microsoft YaHei', sans-serif;
  7958. font-weight:400;
  7959. font-style:normal;
  7960. font-size:14px;
  7961. color:rgba(0, 0, 0, 0.647058823529412);
  7962. line-height:21px;
  7963. }
  7964. #u15512 .text {
  7965. position:absolute;
  7966. align-self:center;
  7967. padding:2px 16px 2px 16px;
  7968. box-sizing:border-box;
  7969. width:100%;
  7970. }
  7971. #u15512_text {
  7972. border-width:0px;
  7973. white-space:nowrap;
  7974. text-transform:none;
  7975. }
  7976. #u15513_img {
  7977. border-width:0px;
  7978. position:absolute;
  7979. left:0px;
  7980. top:0px;
  7981. width:20px;
  7982. height:20px;
  7983. }
  7984. #u15513 {
  7985. border-width:0px;
  7986. position:absolute;
  7987. left:2347px;
  7988. top:429px;
  7989. width:20px;
  7990. height:20px;
  7991. display:flex;
  7992. }
  7993. #u15513 .text {
  7994. position:absolute;
  7995. align-self:center;
  7996. padding:2px 2px 2px 2px;
  7997. box-sizing:border-box;
  7998. width:100%;
  7999. }
  8000. #u15513_text {
  8001. border-width:0px;
  8002. word-wrap:break-word;
  8003. text-transform:none;
  8004. visibility:hidden;
  8005. }