styles.css 117 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u107807_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. #u107807 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u107807 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u107807_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u107808_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. #u107808 {
  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. #u107808 .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. #u107808_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u107809_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. #u107809 {
  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. #u107809 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u107809_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u107810 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u107811_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u107811 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u107811 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u107811_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u107812_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. #u107812 {
  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. #u107812 .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. #u107812_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u107813_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. #u107813 {
  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. #u107813 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u107813_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u107814 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u107815_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u107815_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u107815_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u107815 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u107815 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u107815_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u107815.disabled {
  356. }
  357. .u107815_input_option {
  358. font-size:14px;
  359. }
  360. #u107816_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u107816 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u107816 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u107816_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u107817_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u107817 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u107817 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u107817_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u107818_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u107818 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u107818 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u107818_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u107819 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u107820_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u107820 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u107820 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u107820_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u107821_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u107821 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u107821 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u107821_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u107822 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u107823_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u107823 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u107823 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u107823_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u107824_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u107824 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u107824 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u107824_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u107825 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u107826_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u107826 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u107826 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u107826_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u107827_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u107827 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u107827 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u107827_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u107828 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u107829_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u107829 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u107829 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u107829_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u107830_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u107830 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u107830 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u107830_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u107831 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u107832_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u107832 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u107832 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u107832_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u107833_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u107833 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u107833 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u107833_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u107834 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u107835_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u107835 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u107835 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u107835_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u107836_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u107836 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u107836 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u107836_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u107837 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u107838_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u107838 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u107838 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u107838_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u107839_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u107839 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u107839 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u107839_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u107840 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u107841_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u107841 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u107841 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u107841_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u107842_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u107842 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u107842 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u107842_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u107843 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u107844_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u107844 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u107844 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u107844_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u107845_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u107845 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u107845 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u107845_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u107846 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u107847_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u107847 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u107847 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u107847_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u107848_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u107848 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u107848 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u107848_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u107849_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u107849 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u107849 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u107849_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u107850_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u107850 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u107850 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u107850_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u107851_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u107851 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u107851 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u107851_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u107852_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u107852 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u107852 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u107852_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u107853 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u107854_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u107854 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u107854 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u107854_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u107855_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u107855 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u107855 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u107855_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u107856 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u107857_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u107857 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u107857 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u107857_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u107858_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u107858 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u107858 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u107858_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u107859_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1259px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u107859 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1259px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u107859 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u107859_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u107860 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:350px;
  1679. top:193px;
  1680. width:1211px;
  1681. height:313px;
  1682. }
  1683. #u107861_img {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:211px;
  1689. height:35px;
  1690. }
  1691. #u107861 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:211px;
  1697. height:35px;
  1698. display:flex;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:12px;
  1703. color:#FFFFFF;
  1704. }
  1705. #u107861 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u107861_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u107862_img {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:124px;
  1723. height:35px;
  1724. }
  1725. #u107862 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:211px;
  1729. top:0px;
  1730. width:124px;
  1731. height:35px;
  1732. display:flex;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:12px;
  1737. color:#FFFFFF;
  1738. }
  1739. #u107862 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u107862_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u107863_img {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:124px;
  1757. height:35px;
  1758. }
  1759. #u107863 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:335px;
  1763. top:0px;
  1764. width:124px;
  1765. height:35px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:12px;
  1771. color:#FFFFFF;
  1772. }
  1773. #u107863 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u107863_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. }
  1785. #u107864_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:124px;
  1791. height:35px;
  1792. }
  1793. #u107864 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:459px;
  1797. top:0px;
  1798. width:124px;
  1799. height:35px;
  1800. display:flex;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:12px;
  1805. color:#FFFFFF;
  1806. }
  1807. #u107864 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u107864_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u107865_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:124px;
  1825. height:35px;
  1826. }
  1827. #u107865 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:583px;
  1831. top:0px;
  1832. width:124px;
  1833. height:35px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. color:#FFFFFF;
  1840. }
  1841. #u107865 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u107865_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u107866_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:129px;
  1859. height:35px;
  1860. }
  1861. #u107866 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:707px;
  1865. top:0px;
  1866. width:129px;
  1867. height:35px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#FFFFFF;
  1874. }
  1875. #u107866 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u107866_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u107867_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:135px;
  1893. height:35px;
  1894. }
  1895. #u107867 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:836px;
  1899. top:0px;
  1900. width:135px;
  1901. height:35px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. color:#FFFFFF;
  1908. }
  1909. #u107867 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:2px 2px 2px 0px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u107867_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. }
  1921. #u107868_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:135px;
  1927. height:35px;
  1928. }
  1929. #u107868 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:971px;
  1933. top:0px;
  1934. width:135px;
  1935. height:35px;
  1936. display:flex;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#FFFFFF;
  1942. }
  1943. #u107868 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 2px 2px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u107868_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. }
  1955. #u107869_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:105px;
  1961. height:35px;
  1962. }
  1963. #u107869 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:1106px;
  1967. top:0px;
  1968. width:105px;
  1969. height:35px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#FFFFFF;
  1976. }
  1977. #u107869 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u107869_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u107870_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:211px;
  1995. height:44px;
  1996. }
  1997. #u107870 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:35px;
  2002. width:211px;
  2003. height:44px;
  2004. display:flex;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. color:#333333;
  2010. line-height:40px;
  2011. }
  2012. #u107870 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 0px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u107870_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. }
  2024. #u107871_img {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:124px;
  2030. height:44px;
  2031. }
  2032. #u107871 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:211px;
  2036. top:35px;
  2037. width:124px;
  2038. height:44px;
  2039. display:flex;
  2040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:12px;
  2044. color:#333333;
  2045. line-height:40px;
  2046. }
  2047. #u107871 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 0px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u107871_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. }
  2059. #u107872_img {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:124px;
  2065. height:44px;
  2066. }
  2067. #u107872 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:335px;
  2071. top:35px;
  2072. width:124px;
  2073. height:44px;
  2074. display:flex;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2076. font-weight:400;
  2077. font-style:normal;
  2078. font-size:12px;
  2079. color:#333333;
  2080. line-height:40px;
  2081. }
  2082. #u107872 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 0px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u107872_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. visibility:hidden;
  2094. }
  2095. #u107873_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:124px;
  2101. height:44px;
  2102. }
  2103. #u107873 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:459px;
  2107. top:35px;
  2108. width:124px;
  2109. height:44px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. color:#333333;
  2116. line-height:40px;
  2117. }
  2118. #u107873 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u107873_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. visibility:hidden;
  2130. }
  2131. #u107874_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:124px;
  2137. height:44px;
  2138. }
  2139. #u107874 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:583px;
  2143. top:35px;
  2144. width:124px;
  2145. height:44px;
  2146. display:flex;
  2147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2148. font-weight:400;
  2149. font-style:normal;
  2150. font-size:12px;
  2151. color:#333333;
  2152. line-height:40px;
  2153. }
  2154. #u107874 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:2px 2px 2px 0px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u107874_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. visibility:hidden;
  2166. }
  2167. #u107875_img {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:129px;
  2173. height:44px;
  2174. }
  2175. #u107875 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:707px;
  2179. top:35px;
  2180. width:129px;
  2181. height:44px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:12px;
  2187. color:#333333;
  2188. line-height:40px;
  2189. }
  2190. #u107875 .text {
  2191. position:absolute;
  2192. align-self:center;
  2193. padding:2px 2px 2px 0px;
  2194. box-sizing:border-box;
  2195. width:100%;
  2196. }
  2197. #u107875_text {
  2198. border-width:0px;
  2199. word-wrap:break-word;
  2200. text-transform:none;
  2201. visibility:hidden;
  2202. }
  2203. #u107876_img {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:135px;
  2209. height:44px;
  2210. }
  2211. #u107876 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:836px;
  2215. top:35px;
  2216. width:135px;
  2217. height:44px;
  2218. display:flex;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. color:#333333;
  2224. line-height:40px;
  2225. }
  2226. #u107876 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u107876_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. visibility:hidden;
  2238. }
  2239. #u107877_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:135px;
  2245. height:44px;
  2246. }
  2247. #u107877 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:971px;
  2251. top:35px;
  2252. width:135px;
  2253. height:44px;
  2254. display:flex;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:12px;
  2259. color:#333333;
  2260. line-height:40px;
  2261. }
  2262. #u107877 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 0px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u107877_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. visibility:hidden;
  2274. }
  2275. #u107878_img {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:105px;
  2281. height:44px;
  2282. }
  2283. #u107878 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:1106px;
  2287. top:35px;
  2288. width:105px;
  2289. height:44px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:12px;
  2295. color:#298FFF;
  2296. line-height:35px;
  2297. }
  2298. #u107878 .text {
  2299. position:absolute;
  2300. align-self:center;
  2301. padding:2px 2px 2px 0px;
  2302. box-sizing:border-box;
  2303. width:100%;
  2304. }
  2305. #u107878_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. }
  2310. #u107879_img {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:0px;
  2314. top:0px;
  2315. width:211px;
  2316. height:44px;
  2317. }
  2318. #u107879 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:79px;
  2323. width:211px;
  2324. height:44px;
  2325. display:flex;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:12px;
  2330. color:#333333;
  2331. line-height:40px;
  2332. }
  2333. #u107879 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u107879_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. }
  2345. #u107880_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:124px;
  2351. height:44px;
  2352. }
  2353. #u107880 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:211px;
  2357. top:79px;
  2358. width:124px;
  2359. height:44px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:12px;
  2365. color:#333333;
  2366. line-height:40px;
  2367. }
  2368. #u107880 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 0px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u107880_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. }
  2380. #u107881_img {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:124px;
  2386. height:44px;
  2387. }
  2388. #u107881 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:335px;
  2392. top:79px;
  2393. width:124px;
  2394. height:44px;
  2395. display:flex;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. color:#333333;
  2401. line-height:40px;
  2402. }
  2403. #u107881 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 2px 2px 0px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u107881_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. visibility:hidden;
  2415. }
  2416. #u107882_img {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:124px;
  2422. height:44px;
  2423. }
  2424. #u107882 {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:459px;
  2428. top:79px;
  2429. width:124px;
  2430. height:44px;
  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:#333333;
  2437. line-height:40px;
  2438. }
  2439. #u107882 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:2px 2px 2px 0px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u107882_text {
  2447. border-width:0px;
  2448. word-wrap:break-word;
  2449. text-transform:none;
  2450. visibility:hidden;
  2451. }
  2452. #u107883_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:124px;
  2458. height:44px;
  2459. }
  2460. #u107883 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:583px;
  2464. top:79px;
  2465. width:124px;
  2466. height:44px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:12px;
  2472. color:#333333;
  2473. line-height:40px;
  2474. }
  2475. #u107883 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 0px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u107883_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u107884_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:129px;
  2494. height:44px;
  2495. }
  2496. #u107884 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:707px;
  2500. top:79px;
  2501. width:129px;
  2502. height:44px;
  2503. display:flex;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:12px;
  2508. color:#333333;
  2509. line-height:40px;
  2510. }
  2511. #u107884 .text {
  2512. position:absolute;
  2513. align-self:center;
  2514. padding:2px 2px 2px 0px;
  2515. box-sizing:border-box;
  2516. width:100%;
  2517. }
  2518. #u107884_text {
  2519. border-width:0px;
  2520. word-wrap:break-word;
  2521. text-transform:none;
  2522. visibility:hidden;
  2523. }
  2524. #u107885_img {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:0px;
  2528. top:0px;
  2529. width:135px;
  2530. height:44px;
  2531. }
  2532. #u107885 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:836px;
  2536. top:79px;
  2537. width:135px;
  2538. height:44px;
  2539. display:flex;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:12px;
  2544. color:#333333;
  2545. line-height:40px;
  2546. }
  2547. #u107885 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 0px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u107885_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. visibility:hidden;
  2559. }
  2560. #u107886_img {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:135px;
  2566. height:44px;
  2567. }
  2568. #u107886 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:971px;
  2572. top:79px;
  2573. width:135px;
  2574. height:44px;
  2575. display:flex;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:12px;
  2580. color:#333333;
  2581. line-height:40px;
  2582. }
  2583. #u107886 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 0px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u107886_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. visibility:hidden;
  2595. }
  2596. #u107887_img {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:105px;
  2602. height:44px;
  2603. }
  2604. #u107887 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:1106px;
  2608. top:79px;
  2609. width:105px;
  2610. height:44px;
  2611. display:flex;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. color:#1890FF;
  2617. }
  2618. #u107887 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u107887_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u107888_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:211px;
  2637. height:38px;
  2638. }
  2639. #u107888 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:123px;
  2644. width:211px;
  2645. height:38px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:12px;
  2651. color:#333333;
  2652. line-height:40px;
  2653. }
  2654. #u107888 .text {
  2655. position:absolute;
  2656. align-self:center;
  2657. padding:2px 2px 2px 0px;
  2658. box-sizing:border-box;
  2659. width:100%;
  2660. }
  2661. #u107888_text {
  2662. border-width:0px;
  2663. word-wrap:break-word;
  2664. text-transform:none;
  2665. visibility:hidden;
  2666. }
  2667. #u107889_img {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:124px;
  2673. height:38px;
  2674. }
  2675. #u107889 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:211px;
  2679. top:123px;
  2680. width:124px;
  2681. height:38px;
  2682. display:flex;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. color:#333333;
  2688. line-height:40px;
  2689. }
  2690. #u107889 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 2px 2px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u107889_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. visibility:hidden;
  2702. }
  2703. #u107890_img {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:124px;
  2709. height:38px;
  2710. }
  2711. #u107890 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:335px;
  2715. top:123px;
  2716. width:124px;
  2717. height:38px;
  2718. display:flex;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:12px;
  2723. color:#333333;
  2724. line-height:40px;
  2725. }
  2726. #u107890 .text {
  2727. position:absolute;
  2728. align-self:center;
  2729. padding:2px 2px 2px 0px;
  2730. box-sizing:border-box;
  2731. width:100%;
  2732. }
  2733. #u107890_text {
  2734. border-width:0px;
  2735. word-wrap:break-word;
  2736. text-transform:none;
  2737. visibility:hidden;
  2738. }
  2739. #u107891_img {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:124px;
  2745. height:38px;
  2746. }
  2747. #u107891 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:459px;
  2751. top:123px;
  2752. width:124px;
  2753. height:38px;
  2754. display:flex;
  2755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2756. font-weight:400;
  2757. font-style:normal;
  2758. font-size:12px;
  2759. color:#333333;
  2760. line-height:40px;
  2761. }
  2762. #u107891 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 2px 2px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u107891_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. visibility:hidden;
  2774. }
  2775. #u107892_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:124px;
  2781. height:38px;
  2782. }
  2783. #u107892 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:583px;
  2787. top:123px;
  2788. width:124px;
  2789. height:38px;
  2790. display:flex;
  2791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:12px;
  2795. color:#333333;
  2796. line-height:40px;
  2797. }
  2798. #u107892 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 0px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u107892_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u107893_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:129px;
  2817. height:38px;
  2818. }
  2819. #u107893 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:707px;
  2823. top:123px;
  2824. width:129px;
  2825. height:38px;
  2826. display:flex;
  2827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2828. font-weight:400;
  2829. font-style:normal;
  2830. font-size:12px;
  2831. color:#333333;
  2832. line-height:40px;
  2833. }
  2834. #u107893 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 2px 2px 0px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u107893_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u107894_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:135px;
  2853. height:38px;
  2854. }
  2855. #u107894 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:836px;
  2859. top:123px;
  2860. width:135px;
  2861. height:38px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:12px;
  2867. color:#333333;
  2868. line-height:40px;
  2869. }
  2870. #u107894 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 0px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u107894_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. visibility:hidden;
  2882. }
  2883. #u107895_img {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:135px;
  2889. height:38px;
  2890. }
  2891. #u107895 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:971px;
  2895. top:123px;
  2896. width:135px;
  2897. height:38px;
  2898. display:flex;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:12px;
  2903. color:#333333;
  2904. line-height:40px;
  2905. }
  2906. #u107895 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 0px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u107895_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u107896_img {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:105px;
  2925. height:38px;
  2926. }
  2927. #u107896 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:1106px;
  2931. top:123px;
  2932. width:105px;
  2933. height:38px;
  2934. display:flex;
  2935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:12px;
  2939. color:#1890FF;
  2940. }
  2941. #u107896 .text {
  2942. position:absolute;
  2943. align-self:center;
  2944. padding:2px 2px 2px 0px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u107896_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. visibility:hidden;
  2953. }
  2954. #u107897_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:211px;
  2960. height:38px;
  2961. }
  2962. #u107897 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:161px;
  2967. width:211px;
  2968. height:38px;
  2969. display:flex;
  2970. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:12px;
  2974. color:#606266;
  2975. }
  2976. #u107897 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 2px 2px 0px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u107897_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u107898_img {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:124px;
  2995. height:38px;
  2996. }
  2997. #u107898 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:211px;
  3001. top:161px;
  3002. width:124px;
  3003. height:38px;
  3004. display:flex;
  3005. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3006. font-weight:400;
  3007. font-style:normal;
  3008. font-size:12px;
  3009. color:#606266;
  3010. }
  3011. #u107898 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 0px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u107898_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u107899_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:124px;
  3030. height:38px;
  3031. }
  3032. #u107899 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:335px;
  3036. top:161px;
  3037. width:124px;
  3038. height:38px;
  3039. display:flex;
  3040. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3041. font-weight:400;
  3042. font-style:normal;
  3043. font-size:12px;
  3044. color:#606266;
  3045. }
  3046. #u107899 .text {
  3047. position:absolute;
  3048. align-self:center;
  3049. padding:2px 2px 2px 0px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u107899_text {
  3054. border-width:0px;
  3055. word-wrap:break-word;
  3056. text-transform:none;
  3057. visibility:hidden;
  3058. }
  3059. #u107900_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:124px;
  3065. height:38px;
  3066. }
  3067. #u107900 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:459px;
  3071. top:161px;
  3072. width:124px;
  3073. height:38px;
  3074. display:flex;
  3075. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3076. font-weight:400;
  3077. font-style:normal;
  3078. font-size:12px;
  3079. color:#606266;
  3080. }
  3081. #u107900 .text {
  3082. position:absolute;
  3083. align-self:center;
  3084. padding:2px 2px 2px 0px;
  3085. box-sizing:border-box;
  3086. width:100%;
  3087. }
  3088. #u107900_text {
  3089. border-width:0px;
  3090. word-wrap:break-word;
  3091. text-transform:none;
  3092. visibility:hidden;
  3093. }
  3094. #u107901_img {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:124px;
  3100. height:38px;
  3101. }
  3102. #u107901 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:583px;
  3106. top:161px;
  3107. width:124px;
  3108. height:38px;
  3109. display:flex;
  3110. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:12px;
  3114. color:#606266;
  3115. }
  3116. #u107901 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 0px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u107901_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u107902_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:129px;
  3135. height:38px;
  3136. }
  3137. #u107902 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:707px;
  3141. top:161px;
  3142. width:129px;
  3143. height:38px;
  3144. display:flex;
  3145. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. color:#606266;
  3150. }
  3151. #u107902 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 0px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u107902_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u107903_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:135px;
  3170. height:38px;
  3171. }
  3172. #u107903 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:836px;
  3176. top:161px;
  3177. width:135px;
  3178. height:38px;
  3179. display:flex;
  3180. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. color:#606266;
  3185. }
  3186. #u107903 .text {
  3187. position:absolute;
  3188. align-self:center;
  3189. padding:2px 2px 2px 0px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u107903_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u107904_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:135px;
  3205. height:38px;
  3206. }
  3207. #u107904 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:971px;
  3211. top:161px;
  3212. width:135px;
  3213. height:38px;
  3214. display:flex;
  3215. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:12px;
  3219. color:#606266;
  3220. }
  3221. #u107904 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u107904_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. visibility:hidden;
  3233. }
  3234. #u107905_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:105px;
  3240. height:38px;
  3241. }
  3242. #u107905 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:1106px;
  3246. top:161px;
  3247. width:105px;
  3248. height:38px;
  3249. display:flex;
  3250. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. color:#606266;
  3255. }
  3256. #u107905 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 0px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u107905_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u107906_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:211px;
  3275. height:38px;
  3276. }
  3277. #u107906 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:199px;
  3282. width:211px;
  3283. height:38px;
  3284. display:flex;
  3285. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:12px;
  3289. color:#606266;
  3290. }
  3291. #u107906 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 0px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u107906_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. visibility:hidden;
  3303. }
  3304. #u107907_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:124px;
  3310. height:38px;
  3311. }
  3312. #u107907 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:211px;
  3316. top:199px;
  3317. width:124px;
  3318. height:38px;
  3319. display:flex;
  3320. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:12px;
  3324. color:#606266;
  3325. }
  3326. #u107907 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 0px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u107907_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u107908_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:124px;
  3345. height:38px;
  3346. }
  3347. #u107908 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:335px;
  3351. top:199px;
  3352. width:124px;
  3353. height:38px;
  3354. display:flex;
  3355. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:12px;
  3359. color:#606266;
  3360. }
  3361. #u107908 .text {
  3362. position:absolute;
  3363. align-self:center;
  3364. padding:2px 2px 2px 0px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u107908_text {
  3369. border-width:0px;
  3370. word-wrap:break-word;
  3371. text-transform:none;
  3372. visibility:hidden;
  3373. }
  3374. #u107909_img {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:124px;
  3380. height:38px;
  3381. }
  3382. #u107909 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:459px;
  3386. top:199px;
  3387. width:124px;
  3388. height:38px;
  3389. display:flex;
  3390. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:12px;
  3394. color:#606266;
  3395. }
  3396. #u107909 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u107909_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u107910_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:124px;
  3415. height:38px;
  3416. }
  3417. #u107910 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:583px;
  3421. top:199px;
  3422. width:124px;
  3423. height:38px;
  3424. display:flex;
  3425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. color:#606266;
  3430. }
  3431. #u107910 .text {
  3432. position:absolute;
  3433. align-self:center;
  3434. padding:2px 2px 2px 0px;
  3435. box-sizing:border-box;
  3436. width:100%;
  3437. }
  3438. #u107910_text {
  3439. border-width:0px;
  3440. word-wrap:break-word;
  3441. text-transform:none;
  3442. visibility:hidden;
  3443. }
  3444. #u107911_img {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:129px;
  3450. height:38px;
  3451. }
  3452. #u107911 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:707px;
  3456. top:199px;
  3457. width:129px;
  3458. height:38px;
  3459. display:flex;
  3460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:12px;
  3464. color:#606266;
  3465. }
  3466. #u107911 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:2px 2px 2px 0px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u107911_text {
  3474. border-width:0px;
  3475. word-wrap:break-word;
  3476. text-transform:none;
  3477. visibility:hidden;
  3478. }
  3479. #u107912_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:135px;
  3485. height:38px;
  3486. }
  3487. #u107912 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:836px;
  3491. top:199px;
  3492. width:135px;
  3493. height:38px;
  3494. display:flex;
  3495. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:12px;
  3499. color:#606266;
  3500. }
  3501. #u107912 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 0px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u107912_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. visibility:hidden;
  3513. }
  3514. #u107913_img {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:135px;
  3520. height:38px;
  3521. }
  3522. #u107913 {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:971px;
  3526. top:199px;
  3527. width:135px;
  3528. height:38px;
  3529. display:flex;
  3530. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3531. font-weight:400;
  3532. font-style:normal;
  3533. font-size:12px;
  3534. color:#606266;
  3535. }
  3536. #u107913 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:2px 2px 2px 0px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u107913_text {
  3544. border-width:0px;
  3545. word-wrap:break-word;
  3546. text-transform:none;
  3547. visibility:hidden;
  3548. }
  3549. #u107914_img {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:105px;
  3555. height:38px;
  3556. }
  3557. #u107914 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:1106px;
  3561. top:199px;
  3562. width:105px;
  3563. height:38px;
  3564. display:flex;
  3565. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3566. font-weight:400;
  3567. font-style:normal;
  3568. font-size:12px;
  3569. color:#606266;
  3570. }
  3571. #u107914 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 0px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u107914_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u107915_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:211px;
  3590. height:38px;
  3591. }
  3592. #u107915 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:237px;
  3597. width:211px;
  3598. height:38px;
  3599. display:flex;
  3600. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:12px;
  3604. color:#606266;
  3605. }
  3606. #u107915 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 0px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u107915_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. visibility:hidden;
  3618. }
  3619. #u107916_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:124px;
  3625. height:38px;
  3626. }
  3627. #u107916 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:211px;
  3631. top:237px;
  3632. width:124px;
  3633. height:38px;
  3634. display:flex;
  3635. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:12px;
  3639. color:#606266;
  3640. }
  3641. #u107916 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 2px 2px 0px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u107916_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. visibility:hidden;
  3653. }
  3654. #u107917_img {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:0px;
  3658. top:0px;
  3659. width:124px;
  3660. height:38px;
  3661. }
  3662. #u107917 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:335px;
  3666. top:237px;
  3667. width:124px;
  3668. height:38px;
  3669. display:flex;
  3670. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:12px;
  3674. color:#606266;
  3675. }
  3676. #u107917 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 0px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u107917_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. visibility:hidden;
  3688. }
  3689. #u107918_img {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:124px;
  3695. height:38px;
  3696. }
  3697. #u107918 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:459px;
  3701. top:237px;
  3702. width:124px;
  3703. height:38px;
  3704. display:flex;
  3705. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3706. font-weight:400;
  3707. font-style:normal;
  3708. font-size:12px;
  3709. color:#606266;
  3710. }
  3711. #u107918 .text {
  3712. position:absolute;
  3713. align-self:center;
  3714. padding:2px 2px 2px 0px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u107918_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u107919_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:124px;
  3730. height:38px;
  3731. }
  3732. #u107919 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:583px;
  3736. top:237px;
  3737. width:124px;
  3738. height:38px;
  3739. display:flex;
  3740. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:12px;
  3744. color:#606266;
  3745. }
  3746. #u107919 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 2px 2px 0px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u107919_text {
  3754. border-width:0px;
  3755. word-wrap:break-word;
  3756. text-transform:none;
  3757. visibility:hidden;
  3758. }
  3759. #u107920_img {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:129px;
  3765. height:38px;
  3766. }
  3767. #u107920 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:707px;
  3771. top:237px;
  3772. width:129px;
  3773. height:38px;
  3774. display:flex;
  3775. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3776. font-weight:400;
  3777. font-style:normal;
  3778. font-size:12px;
  3779. color:#606266;
  3780. }
  3781. #u107920 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 0px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u107920_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. visibility:hidden;
  3793. }
  3794. #u107921_img {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:135px;
  3800. height:38px;
  3801. }
  3802. #u107921 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:836px;
  3806. top:237px;
  3807. width:135px;
  3808. height:38px;
  3809. display:flex;
  3810. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3811. font-weight:400;
  3812. font-style:normal;
  3813. font-size:12px;
  3814. color:#606266;
  3815. }
  3816. #u107921 .text {
  3817. position:absolute;
  3818. align-self:center;
  3819. padding:2px 2px 2px 0px;
  3820. box-sizing:border-box;
  3821. width:100%;
  3822. }
  3823. #u107921_text {
  3824. border-width:0px;
  3825. word-wrap:break-word;
  3826. text-transform:none;
  3827. visibility:hidden;
  3828. }
  3829. #u107922_img {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:135px;
  3835. height:38px;
  3836. }
  3837. #u107922 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:971px;
  3841. top:237px;
  3842. width:135px;
  3843. height:38px;
  3844. display:flex;
  3845. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:12px;
  3849. color:#606266;
  3850. }
  3851. #u107922 .text {
  3852. position:absolute;
  3853. align-self:center;
  3854. padding:2px 2px 2px 0px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u107922_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u107923_img {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:105px;
  3870. height:38px;
  3871. }
  3872. #u107923 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:1106px;
  3876. top:237px;
  3877. width:105px;
  3878. height:38px;
  3879. display:flex;
  3880. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:12px;
  3884. color:#606266;
  3885. }
  3886. #u107923 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:2px 2px 2px 0px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u107923_text {
  3894. border-width:0px;
  3895. word-wrap:break-word;
  3896. text-transform:none;
  3897. visibility:hidden;
  3898. }
  3899. #u107924_img {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:211px;
  3905. height:38px;
  3906. }
  3907. #u107924 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:275px;
  3912. width:211px;
  3913. height:38px;
  3914. display:flex;
  3915. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:12px;
  3919. color:#606266;
  3920. }
  3921. #u107924 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 0px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u107924_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u107925_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:124px;
  3940. height:38px;
  3941. }
  3942. #u107925 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:211px;
  3946. top:275px;
  3947. width:124px;
  3948. height:38px;
  3949. display:flex;
  3950. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:12px;
  3954. color:#606266;
  3955. }
  3956. #u107925 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 2px 2px 0px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u107925_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u107926_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:124px;
  3975. height:38px;
  3976. }
  3977. #u107926 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:335px;
  3981. top:275px;
  3982. width:124px;
  3983. height:38px;
  3984. display:flex;
  3985. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3986. font-weight:400;
  3987. font-style:normal;
  3988. font-size:12px;
  3989. color:#606266;
  3990. }
  3991. #u107926 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 0px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u107926_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u107927_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:124px;
  4010. height:38px;
  4011. }
  4012. #u107927 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:459px;
  4016. top:275px;
  4017. width:124px;
  4018. height:38px;
  4019. display:flex;
  4020. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:12px;
  4024. color:#606266;
  4025. }
  4026. #u107927 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 0px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u107927_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. visibility:hidden;
  4038. }
  4039. #u107928_img {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:124px;
  4045. height:38px;
  4046. }
  4047. #u107928 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:583px;
  4051. top:275px;
  4052. width:124px;
  4053. height:38px;
  4054. display:flex;
  4055. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:12px;
  4059. color:#606266;
  4060. }
  4061. #u107928 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 0px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u107928_text {
  4069. border-width:0px;
  4070. word-wrap:break-word;
  4071. text-transform:none;
  4072. visibility:hidden;
  4073. }
  4074. #u107929_img {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:129px;
  4080. height:38px;
  4081. }
  4082. #u107929 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:707px;
  4086. top:275px;
  4087. width:129px;
  4088. height:38px;
  4089. display:flex;
  4090. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:12px;
  4094. color:#606266;
  4095. }
  4096. #u107929 .text {
  4097. position:absolute;
  4098. align-self:center;
  4099. padding:2px 2px 2px 0px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u107929_text {
  4104. border-width:0px;
  4105. word-wrap:break-word;
  4106. text-transform:none;
  4107. visibility:hidden;
  4108. }
  4109. #u107930_img {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:135px;
  4115. height:38px;
  4116. }
  4117. #u107930 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:836px;
  4121. top:275px;
  4122. width:135px;
  4123. height:38px;
  4124. display:flex;
  4125. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. color:#606266;
  4130. }
  4131. #u107930 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 0px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u107930_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u107931_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:135px;
  4150. height:38px;
  4151. }
  4152. #u107931 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:971px;
  4156. top:275px;
  4157. width:135px;
  4158. height:38px;
  4159. display:flex;
  4160. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:12px;
  4164. color:#606266;
  4165. }
  4166. #u107931 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 0px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u107931_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. visibility:hidden;
  4178. }
  4179. #u107932_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:105px;
  4185. height:38px;
  4186. }
  4187. #u107932 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:1106px;
  4191. top:275px;
  4192. width:105px;
  4193. height:38px;
  4194. display:flex;
  4195. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:12px;
  4199. color:#606266;
  4200. }
  4201. #u107932 .text {
  4202. position:absolute;
  4203. align-self:center;
  4204. padding:2px 2px 2px 0px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u107932_text {
  4209. border-width:0px;
  4210. word-wrap:break-word;
  4211. text-transform:none;
  4212. visibility:hidden;
  4213. }
  4214. #u107933_div {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:73px;
  4220. height:50px;
  4221. background:inherit;
  4222. background-color:rgba(255, 255, 255, 0);
  4223. border:none;
  4224. border-left:0px;
  4225. border-top:0px;
  4226. border-right:0px;
  4227. border-radius:0px;
  4228. border-bottom-right-radius:0px;
  4229. border-bottom-left-radius:0px;
  4230. -moz-box-shadow:none;
  4231. -webkit-box-shadow:none;
  4232. box-shadow:none;
  4233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:18px;
  4237. }
  4238. #u107933 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:349px;
  4242. top:52px;
  4243. width:73px;
  4244. height:50px;
  4245. display:flex;
  4246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4247. font-weight:400;
  4248. font-style:normal;
  4249. font-size:18px;
  4250. }
  4251. #u107933 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:0px 0px 0px 0px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u107933_text {
  4259. border-width:0px;
  4260. white-space:nowrap;
  4261. text-transform:none;
  4262. }
  4263. #u107934_div {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:60px;
  4269. height:30px;
  4270. background:inherit;
  4271. background-color:rgba(24, 144, 255, 1);
  4272. border:none;
  4273. border-radius:4px;
  4274. -moz-box-shadow:none;
  4275. -webkit-box-shadow:none;
  4276. box-shadow:none;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:14px;
  4281. color:#FFFFFF;
  4282. }
  4283. #u107934 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:802px;
  4287. top:143px;
  4288. width:60px;
  4289. height:30px;
  4290. display:flex;
  4291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4292. font-weight:400;
  4293. font-style:normal;
  4294. font-size:14px;
  4295. color:#FFFFFF;
  4296. }
  4297. #u107934 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 2px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u107934_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. }
  4309. #u107935_div {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:60px;
  4315. height:30px;
  4316. background:inherit;
  4317. background-color:rgba(255, 255, 255, 1);
  4318. box-sizing:border-box;
  4319. border-width:1px;
  4320. border-style:solid;
  4321. border-color:rgba(170, 170, 170, 1);
  4322. border-radius:4px;
  4323. -moz-box-shadow:none;
  4324. -webkit-box-shadow:none;
  4325. box-shadow:none;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:14px;
  4330. }
  4331. #u107935 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:872px;
  4335. top:143px;
  4336. width:60px;
  4337. height:30px;
  4338. display:flex;
  4339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:14px;
  4343. }
  4344. #u107935 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u107935_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u107936 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:0px;
  4362. height:0px;
  4363. }
  4364. #u107937_div {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:140px;
  4370. height:30px;
  4371. background:inherit;
  4372. background-color:rgba(255, 255, 255, 1);
  4373. box-sizing:border-box;
  4374. border-width:1px;
  4375. border-style:solid;
  4376. border-color:rgba(215, 215, 215, 1);
  4377. border-radius:4px;
  4378. -moz-box-shadow:none;
  4379. -webkit-box-shadow:none;
  4380. box-shadow:none;
  4381. font-size:14px;
  4382. }
  4383. #u107937 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:350px;
  4387. top:103px;
  4388. width:140px;
  4389. height:30px;
  4390. display:flex;
  4391. font-size:14px;
  4392. }
  4393. #u107937 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:2px 2px 2px 2px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u107937_text {
  4401. border-width:0px;
  4402. word-wrap:break-word;
  4403. text-transform:none;
  4404. visibility:hidden;
  4405. }
  4406. #u107938_input {
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:134px;
  4411. height:23px;
  4412. padding:2px 2px 2px 2px;
  4413. font-family:'ArialMT', 'Arial', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. font-size:14px;
  4417. letter-spacing:normal;
  4418. color:#AAAAAA;
  4419. vertical-align:none;
  4420. text-align:left;
  4421. text-transform:none;
  4422. background-color:transparent;
  4423. border-color:transparent;
  4424. }
  4425. #u107938_input.disabled {
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:134px;
  4430. height:23px;
  4431. padding:2px 2px 2px 2px;
  4432. font-family:'ArialMT', 'Arial', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:14px;
  4436. letter-spacing:normal;
  4437. color:#AAAAAA;
  4438. vertical-align:none;
  4439. text-align:left;
  4440. text-transform:none;
  4441. background-color:transparent;
  4442. border-color:transparent;
  4443. }
  4444. #u107938_div {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:134px;
  4450. height:23px;
  4451. background:inherit;
  4452. background-color:rgba(255, 255, 255, 1);
  4453. border:none;
  4454. border-radius:0px;
  4455. -moz-box-shadow:none;
  4456. -webkit-box-shadow:none;
  4457. box-shadow:none;
  4458. font-size:14px;
  4459. color:#AAAAAA;
  4460. }
  4461. #u107938 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:354px;
  4465. top:105px;
  4466. width:134px;
  4467. height:23px;
  4468. display:flex;
  4469. font-size:14px;
  4470. color:#AAAAAA;
  4471. }
  4472. #u107938 .text {
  4473. position:absolute;
  4474. align-self:flex-start;
  4475. padding:2px 2px 2px 2px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u107938_div.disabled {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:134px;
  4485. height:23px;
  4486. background:inherit;
  4487. background-color:rgba(240, 240, 240, 1);
  4488. border:none;
  4489. border-radius:0px;
  4490. -moz-box-shadow:none;
  4491. -webkit-box-shadow:none;
  4492. box-shadow:none;
  4493. font-size:14px;
  4494. color:#AAAAAA;
  4495. }
  4496. #u107938.disabled {
  4497. }
  4498. .u107938_input_option {
  4499. font-size:14px;
  4500. }
  4501. #u107939 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:0px;
  4507. height:0px;
  4508. }
  4509. #u107940_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:140px;
  4515. height:30px;
  4516. background:inherit;
  4517. background-color:rgba(255, 255, 255, 1);
  4518. box-sizing:border-box;
  4519. border-width:1px;
  4520. border-style:solid;
  4521. border-color:rgba(215, 215, 215, 1);
  4522. border-radius:4px;
  4523. -moz-box-shadow:none;
  4524. -webkit-box-shadow:none;
  4525. box-shadow:none;
  4526. font-size:14px;
  4527. }
  4528. #u107940 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:500px;
  4532. top:103px;
  4533. width:140px;
  4534. height:30px;
  4535. display:flex;
  4536. font-size:14px;
  4537. }
  4538. #u107940 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 2px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u107940_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. visibility:hidden;
  4550. }
  4551. #u107941_input {
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:134px;
  4556. height:23px;
  4557. padding:2px 2px 2px 2px;
  4558. font-family:'ArialMT', 'Arial', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:14px;
  4562. letter-spacing:normal;
  4563. color:#AAAAAA;
  4564. vertical-align:none;
  4565. text-align:left;
  4566. text-transform:none;
  4567. background-color:transparent;
  4568. border-color:transparent;
  4569. }
  4570. #u107941_input.disabled {
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:134px;
  4575. height:23px;
  4576. padding:2px 2px 2px 2px;
  4577. font-family:'ArialMT', 'Arial', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. font-size:14px;
  4581. letter-spacing:normal;
  4582. color:#AAAAAA;
  4583. vertical-align:none;
  4584. text-align:left;
  4585. text-transform:none;
  4586. background-color:transparent;
  4587. border-color:transparent;
  4588. }
  4589. #u107941_div {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:134px;
  4595. height:23px;
  4596. background:inherit;
  4597. background-color:rgba(255, 255, 255, 1);
  4598. border:none;
  4599. border-radius:0px;
  4600. -moz-box-shadow:none;
  4601. -webkit-box-shadow:none;
  4602. box-shadow:none;
  4603. font-size:14px;
  4604. color:#AAAAAA;
  4605. }
  4606. #u107941 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:504px;
  4610. top:105px;
  4611. width:134px;
  4612. height:23px;
  4613. display:flex;
  4614. font-size:14px;
  4615. color:#AAAAAA;
  4616. }
  4617. #u107941 .text {
  4618. position:absolute;
  4619. align-self:flex-start;
  4620. padding:2px 2px 2px 2px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u107941_div.disabled {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:134px;
  4630. height:23px;
  4631. background:inherit;
  4632. background-color:rgba(240, 240, 240, 1);
  4633. border:none;
  4634. border-radius:0px;
  4635. -moz-box-shadow:none;
  4636. -webkit-box-shadow:none;
  4637. box-shadow:none;
  4638. font-size:14px;
  4639. color:#AAAAAA;
  4640. }
  4641. #u107941.disabled {
  4642. }
  4643. .u107941_input_option {
  4644. font-size:14px;
  4645. }
  4646. #u107942 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:0px;
  4652. height:0px;
  4653. }
  4654. #u107943_div {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:140px;
  4660. height:30px;
  4661. background:inherit;
  4662. background-color:rgba(255, 255, 255, 1);
  4663. box-sizing:border-box;
  4664. border-width:1px;
  4665. border-style:solid;
  4666. border-color:rgba(215, 215, 215, 1);
  4667. border-radius:4px;
  4668. -moz-box-shadow:none;
  4669. -webkit-box-shadow:none;
  4670. box-shadow:none;
  4671. font-size:14px;
  4672. }
  4673. #u107943 {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:650px;
  4677. top:103px;
  4678. width:140px;
  4679. height:30px;
  4680. display:flex;
  4681. font-size:14px;
  4682. }
  4683. #u107943 .text {
  4684. position:absolute;
  4685. align-self:center;
  4686. padding:2px 2px 2px 2px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u107943_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u107944_input {
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:134px;
  4701. height:23px;
  4702. padding:2px 2px 2px 2px;
  4703. font-family:'ArialMT', 'Arial', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. letter-spacing:normal;
  4708. color:#AAAAAA;
  4709. vertical-align:none;
  4710. text-align:left;
  4711. text-transform:none;
  4712. background-color:transparent;
  4713. border-color:transparent;
  4714. }
  4715. #u107944_input.disabled {
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:134px;
  4720. height:23px;
  4721. padding:2px 2px 2px 2px;
  4722. font-family:'ArialMT', 'Arial', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:14px;
  4726. letter-spacing:normal;
  4727. color:#AAAAAA;
  4728. vertical-align:none;
  4729. text-align:left;
  4730. text-transform:none;
  4731. background-color:transparent;
  4732. border-color:transparent;
  4733. }
  4734. #u107944_div {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:134px;
  4740. height:23px;
  4741. background:inherit;
  4742. background-color:rgba(255, 255, 255, 1);
  4743. border:none;
  4744. border-radius:0px;
  4745. -moz-box-shadow:none;
  4746. -webkit-box-shadow:none;
  4747. box-shadow:none;
  4748. font-size:14px;
  4749. color:#AAAAAA;
  4750. }
  4751. #u107944 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:654px;
  4755. top:105px;
  4756. width:134px;
  4757. height:23px;
  4758. display:flex;
  4759. font-size:14px;
  4760. color:#AAAAAA;
  4761. }
  4762. #u107944 .text {
  4763. position:absolute;
  4764. align-self:flex-start;
  4765. padding:2px 2px 2px 2px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u107944_div.disabled {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:134px;
  4775. height:23px;
  4776. background:inherit;
  4777. background-color:rgba(240, 240, 240, 1);
  4778. border:none;
  4779. border-radius:0px;
  4780. -moz-box-shadow:none;
  4781. -webkit-box-shadow:none;
  4782. box-shadow:none;
  4783. font-size:14px;
  4784. color:#AAAAAA;
  4785. }
  4786. #u107944.disabled {
  4787. }
  4788. .u107944_input_option {
  4789. font-size:14px;
  4790. }
  4791. #u107945 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:0px;
  4797. height:0px;
  4798. }
  4799. #u107946_div {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:0px;
  4804. width:140px;
  4805. height:30px;
  4806. background:inherit;
  4807. background-color:rgba(255, 255, 255, 1);
  4808. box-sizing:border-box;
  4809. border-width:1px;
  4810. border-style:solid;
  4811. border-color:rgba(215, 215, 215, 1);
  4812. border-radius:4px;
  4813. -moz-box-shadow:none;
  4814. -webkit-box-shadow:none;
  4815. box-shadow:none;
  4816. font-size:14px;
  4817. }
  4818. #u107946 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:800px;
  4822. top:103px;
  4823. width:140px;
  4824. height:30px;
  4825. display:flex;
  4826. font-size:14px;
  4827. }
  4828. #u107946 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:2px 2px 2px 2px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u107946_text {
  4836. border-width:0px;
  4837. word-wrap:break-word;
  4838. text-transform:none;
  4839. visibility:hidden;
  4840. }
  4841. #u107947_input {
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:134px;
  4846. height:23px;
  4847. padding:2px 2px 2px 2px;
  4848. font-family:'ArialMT', 'Arial', sans-serif;
  4849. font-weight:400;
  4850. font-style:normal;
  4851. font-size:14px;
  4852. letter-spacing:normal;
  4853. color:#AAAAAA;
  4854. vertical-align:none;
  4855. text-align:left;
  4856. text-transform:none;
  4857. background-color:transparent;
  4858. border-color:transparent;
  4859. }
  4860. #u107947_input.disabled {
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:134px;
  4865. height:23px;
  4866. padding:2px 2px 2px 2px;
  4867. font-family:'ArialMT', 'Arial', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:14px;
  4871. letter-spacing:normal;
  4872. color:#AAAAAA;
  4873. vertical-align:none;
  4874. text-align:left;
  4875. text-transform:none;
  4876. background-color:transparent;
  4877. border-color:transparent;
  4878. }
  4879. #u107947_div {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:134px;
  4885. height:23px;
  4886. background:inherit;
  4887. background-color:rgba(255, 255, 255, 1);
  4888. border:none;
  4889. border-radius:0px;
  4890. -moz-box-shadow:none;
  4891. -webkit-box-shadow:none;
  4892. box-shadow:none;
  4893. font-size:14px;
  4894. color:#AAAAAA;
  4895. }
  4896. #u107947 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:804px;
  4900. top:105px;
  4901. width:134px;
  4902. height:23px;
  4903. display:flex;
  4904. font-size:14px;
  4905. color:#AAAAAA;
  4906. }
  4907. #u107947 .text {
  4908. position:absolute;
  4909. align-self:flex-start;
  4910. padding:2px 2px 2px 2px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u107947_div.disabled {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:134px;
  4920. height:23px;
  4921. background:inherit;
  4922. background-color:rgba(240, 240, 240, 1);
  4923. border:none;
  4924. border-radius:0px;
  4925. -moz-box-shadow:none;
  4926. -webkit-box-shadow:none;
  4927. box-shadow:none;
  4928. font-size:14px;
  4929. color:#AAAAAA;
  4930. }
  4931. #u107947.disabled {
  4932. }
  4933. .u107947_input_option {
  4934. font-size:14px;
  4935. }
  4936. #u107948 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:0px;
  4942. height:0px;
  4943. }
  4944. #u107949_div {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:140px;
  4950. height:30px;
  4951. background:inherit;
  4952. background-color:rgba(255, 255, 255, 1);
  4953. box-sizing:border-box;
  4954. border-width:1px;
  4955. border-style:solid;
  4956. border-color:rgba(215, 215, 215, 1);
  4957. border-radius:4px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-size:14px;
  4962. }
  4963. #u107949 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:950px;
  4967. top:103px;
  4968. width:140px;
  4969. height:30px;
  4970. display:flex;
  4971. font-size:14px;
  4972. }
  4973. #u107949 .text {
  4974. position:absolute;
  4975. align-self:center;
  4976. padding:2px 2px 2px 2px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u107949_text {
  4981. border-width:0px;
  4982. word-wrap:break-word;
  4983. text-transform:none;
  4984. visibility:hidden;
  4985. }
  4986. #u107950_input {
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:134px;
  4991. height:23px;
  4992. padding:2px 2px 2px 2px;
  4993. font-family:'ArialMT', 'Arial', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:14px;
  4997. letter-spacing:normal;
  4998. color:#AAAAAA;
  4999. vertical-align:none;
  5000. text-align:left;
  5001. text-transform:none;
  5002. background-color:transparent;
  5003. border-color:transparent;
  5004. }
  5005. #u107950_input.disabled {
  5006. position:absolute;
  5007. left:0px;
  5008. top:0px;
  5009. width:134px;
  5010. height:23px;
  5011. padding:2px 2px 2px 2px;
  5012. font-family:'ArialMT', 'Arial', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:14px;
  5016. letter-spacing:normal;
  5017. color:#AAAAAA;
  5018. vertical-align:none;
  5019. text-align:left;
  5020. text-transform:none;
  5021. background-color:transparent;
  5022. border-color:transparent;
  5023. }
  5024. #u107950_div {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:134px;
  5030. height:23px;
  5031. background:inherit;
  5032. background-color:rgba(255, 255, 255, 1);
  5033. border:none;
  5034. border-radius:0px;
  5035. -moz-box-shadow:none;
  5036. -webkit-box-shadow:none;
  5037. box-shadow:none;
  5038. font-size:14px;
  5039. color:#AAAAAA;
  5040. }
  5041. #u107950 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:954px;
  5045. top:105px;
  5046. width:134px;
  5047. height:23px;
  5048. display:flex;
  5049. font-size:14px;
  5050. color:#AAAAAA;
  5051. }
  5052. #u107950 .text {
  5053. position:absolute;
  5054. align-self:flex-start;
  5055. padding:2px 2px 2px 2px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u107950_div.disabled {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:134px;
  5065. height:23px;
  5066. background:inherit;
  5067. background-color:rgba(240, 240, 240, 1);
  5068. border:none;
  5069. border-radius:0px;
  5070. -moz-box-shadow:none;
  5071. -webkit-box-shadow:none;
  5072. box-shadow:none;
  5073. font-size:14px;
  5074. color:#AAAAAA;
  5075. }
  5076. #u107950.disabled {
  5077. }
  5078. .u107950_input_option {
  5079. font-size:14px;
  5080. }
  5081. #u107951 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:0px;
  5087. height:0px;
  5088. }
  5089. #u107952_div {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:140px;
  5095. height:30px;
  5096. background:inherit;
  5097. background-color:rgba(255, 255, 255, 1);
  5098. box-sizing:border-box;
  5099. border-width:1px;
  5100. border-style:solid;
  5101. border-color:rgba(201, 201, 201, 1);
  5102. border-radius:4px;
  5103. -moz-box-shadow:none;
  5104. -webkit-box-shadow:none;
  5105. box-shadow:none;
  5106. font-family:'Microsoft YaHei', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:14px;
  5110. color:#CCCCCC;
  5111. text-align:left;
  5112. }
  5113. #u107952 {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:1100px;
  5117. top:103px;
  5118. width:140px;
  5119. height:30px;
  5120. display:flex;
  5121. font-family:'Microsoft YaHei', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:14px;
  5125. color:#CCCCCC;
  5126. text-align:left;
  5127. }
  5128. #u107952 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 8px 2px 8px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u107952_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u107953_input {
  5142. position:absolute;
  5143. left:0px;
  5144. top:0px;
  5145. width:127px;
  5146. height:25px;
  5147. padding:2px 2px 2px 2px;
  5148. font-family:'Microsoft YaHei', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:10px;
  5152. letter-spacing:normal;
  5153. color:#000000;
  5154. vertical-align:none;
  5155. text-align:left;
  5156. text-transform:none;
  5157. background-color:transparent;
  5158. border-color:transparent;
  5159. }
  5160. #u107953_input.disabled {
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:127px;
  5165. height:25px;
  5166. padding:2px 2px 2px 2px;
  5167. font-family:'Microsoft YaHei', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:10px;
  5171. letter-spacing:normal;
  5172. color:#000000;
  5173. vertical-align:none;
  5174. text-align:left;
  5175. text-transform:none;
  5176. background-color:transparent;
  5177. border-color:transparent;
  5178. }
  5179. #u107953_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:127px;
  5185. height:25px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 1);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. font-family:'Microsoft YaHei', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:10px;
  5197. }
  5198. #u107953 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:1108px;
  5202. top:104px;
  5203. width:127px;
  5204. height:25px;
  5205. display:flex;
  5206. font-family:'Microsoft YaHei', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:10px;
  5210. }
  5211. #u107953 .text {
  5212. position:absolute;
  5213. align-self:center;
  5214. padding:2px 2px 2px 2px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u107953_div.disabled {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:127px;
  5224. height:25px;
  5225. background:inherit;
  5226. background-color:rgba(240, 240, 240, 1);
  5227. border:none;
  5228. border-radius:0px;
  5229. -moz-box-shadow:none;
  5230. -webkit-box-shadow:none;
  5231. box-shadow:none;
  5232. font-family:'Microsoft YaHei', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:10px;
  5236. }
  5237. #u107953.disabled {
  5238. }
  5239. #u107954 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:0px;
  5245. height:0px;
  5246. }
  5247. #u107955_div {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:140px;
  5253. height:30px;
  5254. background:inherit;
  5255. background-color:rgba(255, 255, 255, 1);
  5256. box-sizing:border-box;
  5257. border-width:1px;
  5258. border-style:solid;
  5259. border-color:rgba(201, 201, 201, 1);
  5260. border-radius:4px;
  5261. -moz-box-shadow:none;
  5262. -webkit-box-shadow:none;
  5263. box-shadow:none;
  5264. font-family:'Microsoft YaHei', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:14px;
  5268. color:#CCCCCC;
  5269. text-align:left;
  5270. }
  5271. #u107955 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:1250px;
  5275. top:103px;
  5276. width:140px;
  5277. height:30px;
  5278. display:flex;
  5279. font-family:'Microsoft YaHei', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:14px;
  5283. color:#CCCCCC;
  5284. text-align:left;
  5285. }
  5286. #u107955 .text {
  5287. position:absolute;
  5288. align-self:center;
  5289. padding:2px 8px 2px 8px;
  5290. box-sizing:border-box;
  5291. width:100%;
  5292. }
  5293. #u107955_text {
  5294. border-width:0px;
  5295. word-wrap:break-word;
  5296. text-transform:none;
  5297. visibility:hidden;
  5298. }
  5299. #u107956_input {
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:127px;
  5304. height:25px;
  5305. padding:2px 2px 2px 2px;
  5306. font-family:'Microsoft YaHei', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:10px;
  5310. letter-spacing:normal;
  5311. color:#000000;
  5312. vertical-align:none;
  5313. text-align:left;
  5314. text-transform:none;
  5315. background-color:transparent;
  5316. border-color:transparent;
  5317. }
  5318. #u107956_input.disabled {
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:127px;
  5323. height:25px;
  5324. padding:2px 2px 2px 2px;
  5325. font-family:'Microsoft YaHei', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:10px;
  5329. letter-spacing:normal;
  5330. color:#000000;
  5331. vertical-align:none;
  5332. text-align:left;
  5333. text-transform:none;
  5334. background-color:transparent;
  5335. border-color:transparent;
  5336. }
  5337. #u107956_div {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:127px;
  5343. height:25px;
  5344. background:inherit;
  5345. background-color:rgba(255, 255, 255, 1);
  5346. border:none;
  5347. border-radius:0px;
  5348. -moz-box-shadow:none;
  5349. -webkit-box-shadow:none;
  5350. box-shadow:none;
  5351. font-family:'Microsoft YaHei', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:10px;
  5355. }
  5356. #u107956 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:1258px;
  5360. top:104px;
  5361. width:127px;
  5362. height:25px;
  5363. display:flex;
  5364. font-family:'Microsoft YaHei', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:10px;
  5368. }
  5369. #u107956 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 2px 2px 2px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u107956_div.disabled {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:127px;
  5382. height:25px;
  5383. background:inherit;
  5384. background-color:rgba(240, 240, 240, 1);
  5385. border:none;
  5386. border-radius:0px;
  5387. -moz-box-shadow:none;
  5388. -webkit-box-shadow:none;
  5389. box-shadow:none;
  5390. font-family:'Microsoft YaHei', sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. font-size:10px;
  5394. }
  5395. #u107956.disabled {
  5396. }
  5397. #u107957 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:0px;
  5403. height:0px;
  5404. }
  5405. #u107958_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:140px;
  5411. height:30px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 1);
  5414. box-sizing:border-box;
  5415. border-width:1px;
  5416. border-style:solid;
  5417. border-color:rgba(215, 215, 215, 1);
  5418. border-radius:4px;
  5419. -moz-box-shadow:none;
  5420. -webkit-box-shadow:none;
  5421. box-shadow:none;
  5422. font-size:14px;
  5423. }
  5424. #u107958 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:502px;
  5428. top:143px;
  5429. width:140px;
  5430. height:30px;
  5431. display:flex;
  5432. font-size:14px;
  5433. }
  5434. #u107958 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:2px 2px 2px 2px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u107958_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. visibility:hidden;
  5446. }
  5447. #u107959_input {
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:134px;
  5452. height:23px;
  5453. padding:2px 2px 2px 2px;
  5454. font-family:'ArialMT', 'Arial', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. font-size:14px;
  5458. letter-spacing:normal;
  5459. color:#AAAAAA;
  5460. vertical-align:none;
  5461. text-align:left;
  5462. text-transform:none;
  5463. background-color:transparent;
  5464. border-color:transparent;
  5465. }
  5466. #u107959_input.disabled {
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:134px;
  5471. height:23px;
  5472. padding:2px 2px 2px 2px;
  5473. font-family:'ArialMT', 'Arial', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:14px;
  5477. letter-spacing:normal;
  5478. color:#AAAAAA;
  5479. vertical-align:none;
  5480. text-align:left;
  5481. text-transform:none;
  5482. background-color:transparent;
  5483. border-color:transparent;
  5484. }
  5485. #u107959_div {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:0px;
  5489. top:0px;
  5490. width:134px;
  5491. height:23px;
  5492. background:inherit;
  5493. background-color:rgba(255, 255, 255, 1);
  5494. border:none;
  5495. border-radius:0px;
  5496. -moz-box-shadow:none;
  5497. -webkit-box-shadow:none;
  5498. box-shadow:none;
  5499. font-size:14px;
  5500. color:#AAAAAA;
  5501. }
  5502. #u107959 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:506px;
  5506. top:145px;
  5507. width:134px;
  5508. height:23px;
  5509. display:flex;
  5510. font-size:14px;
  5511. color:#AAAAAA;
  5512. }
  5513. #u107959 .text {
  5514. position:absolute;
  5515. align-self:flex-start;
  5516. padding:2px 2px 2px 2px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u107959_div.disabled {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:134px;
  5526. height:23px;
  5527. background:inherit;
  5528. background-color:rgba(240, 240, 240, 1);
  5529. border:none;
  5530. border-radius:0px;
  5531. -moz-box-shadow:none;
  5532. -webkit-box-shadow:none;
  5533. box-shadow:none;
  5534. font-size:14px;
  5535. color:#AAAAAA;
  5536. }
  5537. #u107959.disabled {
  5538. }
  5539. .u107959_input_option {
  5540. font-size:14px;
  5541. }
  5542. #u107960 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:0px;
  5548. height:0px;
  5549. }
  5550. #u107961_div {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:140px;
  5556. height:30px;
  5557. background:inherit;
  5558. background-color:rgba(255, 255, 255, 1);
  5559. box-sizing:border-box;
  5560. border-width:1px;
  5561. border-style:solid;
  5562. border-color:rgba(201, 201, 201, 1);
  5563. border-radius:4px;
  5564. -moz-box-shadow:none;
  5565. -webkit-box-shadow:none;
  5566. box-shadow:none;
  5567. font-family:'Microsoft YaHei', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:14px;
  5571. color:#CCCCCC;
  5572. text-align:left;
  5573. }
  5574. #u107961 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:652px;
  5578. top:143px;
  5579. width:140px;
  5580. height:30px;
  5581. display:flex;
  5582. font-family:'Microsoft YaHei', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:14px;
  5586. color:#CCCCCC;
  5587. text-align:left;
  5588. }
  5589. #u107961 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 8px 2px 8px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u107961_text {
  5597. border-width:0px;
  5598. word-wrap:break-word;
  5599. text-transform:none;
  5600. visibility:hidden;
  5601. }
  5602. #u107962_input {
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:127px;
  5607. height:25px;
  5608. padding:2px 2px 2px 2px;
  5609. font-family:'Microsoft YaHei', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:10px;
  5613. letter-spacing:normal;
  5614. color:#000000;
  5615. vertical-align:none;
  5616. text-align:left;
  5617. text-transform:none;
  5618. background-color:transparent;
  5619. border-color:transparent;
  5620. }
  5621. #u107962_input.disabled {
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:127px;
  5626. height:25px;
  5627. padding:2px 2px 2px 2px;
  5628. font-family:'Microsoft YaHei', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. font-size:10px;
  5632. letter-spacing:normal;
  5633. color:#000000;
  5634. vertical-align:none;
  5635. text-align:left;
  5636. text-transform:none;
  5637. background-color:transparent;
  5638. border-color:transparent;
  5639. }
  5640. #u107962_div {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:127px;
  5646. height:25px;
  5647. background:inherit;
  5648. background-color:rgba(255, 255, 255, 1);
  5649. border:none;
  5650. border-radius:0px;
  5651. -moz-box-shadow:none;
  5652. -webkit-box-shadow:none;
  5653. box-shadow:none;
  5654. font-family:'Microsoft YaHei', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:10px;
  5658. }
  5659. #u107962 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:660px;
  5663. top:144px;
  5664. width:127px;
  5665. height:25px;
  5666. display:flex;
  5667. font-family:'Microsoft YaHei', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:10px;
  5671. }
  5672. #u107962 .text {
  5673. position:absolute;
  5674. align-self:center;
  5675. padding:2px 2px 2px 2px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u107962_div.disabled {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:127px;
  5685. height:25px;
  5686. background:inherit;
  5687. background-color:rgba(240, 240, 240, 1);
  5688. border:none;
  5689. border-radius:0px;
  5690. -moz-box-shadow:none;
  5691. -webkit-box-shadow:none;
  5692. box-shadow:none;
  5693. font-family:'Microsoft YaHei', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. font-size:10px;
  5697. }
  5698. #u107962.disabled {
  5699. }
  5700. #u107963 {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:0px;
  5706. height:0px;
  5707. }
  5708. #u107964_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:140px;
  5714. height:30px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 1);
  5717. box-sizing:border-box;
  5718. border-width:1px;
  5719. border-style:solid;
  5720. border-color:rgba(201, 201, 201, 1);
  5721. border-radius:4px;
  5722. -moz-box-shadow:none;
  5723. -webkit-box-shadow:none;
  5724. box-shadow:none;
  5725. font-family:'Microsoft YaHei', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:14px;
  5729. color:#CCCCCC;
  5730. text-align:left;
  5731. }
  5732. #u107964 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:1400px;
  5736. top:103px;
  5737. width:140px;
  5738. height:30px;
  5739. display:flex;
  5740. font-family:'Microsoft YaHei', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:14px;
  5744. color:#CCCCCC;
  5745. text-align:left;
  5746. }
  5747. #u107964 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:2px 8px 2px 8px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u107964_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u107965_input {
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:127px;
  5765. height:25px;
  5766. padding:2px 2px 2px 2px;
  5767. font-family:'Microsoft YaHei', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:10px;
  5771. letter-spacing:normal;
  5772. color:#000000;
  5773. vertical-align:none;
  5774. text-align:left;
  5775. text-transform:none;
  5776. background-color:transparent;
  5777. border-color:transparent;
  5778. }
  5779. #u107965_input.disabled {
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:127px;
  5784. height:25px;
  5785. padding:2px 2px 2px 2px;
  5786. font-family:'Microsoft YaHei', sans-serif;
  5787. font-weight:400;
  5788. font-style:normal;
  5789. font-size:10px;
  5790. letter-spacing:normal;
  5791. color:#000000;
  5792. vertical-align:none;
  5793. text-align:left;
  5794. text-transform:none;
  5795. background-color:transparent;
  5796. border-color:transparent;
  5797. }
  5798. #u107965_div {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:127px;
  5804. height:25px;
  5805. background:inherit;
  5806. background-color:rgba(255, 255, 255, 1);
  5807. border:none;
  5808. border-radius:0px;
  5809. -moz-box-shadow:none;
  5810. -webkit-box-shadow:none;
  5811. box-shadow:none;
  5812. font-family:'Microsoft YaHei', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. font-size:10px;
  5816. }
  5817. #u107965 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:1408px;
  5821. top:104px;
  5822. width:127px;
  5823. height:25px;
  5824. display:flex;
  5825. font-family:'Microsoft YaHei', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:10px;
  5829. }
  5830. #u107965 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:2px 2px 2px 2px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u107965_div.disabled {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:127px;
  5843. height:25px;
  5844. background:inherit;
  5845. background-color:rgba(240, 240, 240, 1);
  5846. border:none;
  5847. border-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. font-family:'Microsoft YaHei', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:10px;
  5855. }
  5856. #u107965.disabled {
  5857. }
  5858. #u107966 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:0px;
  5864. height:0px;
  5865. }
  5866. #u107967_div {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:140px;
  5872. height:30px;
  5873. background:inherit;
  5874. background-color:rgba(255, 255, 255, 1);
  5875. box-sizing:border-box;
  5876. border-width:1px;
  5877. border-style:solid;
  5878. border-color:rgba(215, 215, 215, 1);
  5879. border-radius:4px;
  5880. -moz-box-shadow:none;
  5881. -webkit-box-shadow:none;
  5882. box-shadow:none;
  5883. font-size:14px;
  5884. }
  5885. #u107967 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:350px;
  5889. top:143px;
  5890. width:140px;
  5891. height:30px;
  5892. display:flex;
  5893. font-size:14px;
  5894. }
  5895. #u107967 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:2px 2px 2px 2px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u107967_text {
  5903. border-width:0px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. visibility:hidden;
  5907. }
  5908. #u107968_input {
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:134px;
  5913. height:23px;
  5914. padding:2px 2px 2px 2px;
  5915. font-family:'ArialMT', 'Arial', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:14px;
  5919. letter-spacing:normal;
  5920. color:#AAAAAA;
  5921. vertical-align:none;
  5922. text-align:left;
  5923. text-transform:none;
  5924. background-color:transparent;
  5925. border-color:transparent;
  5926. }
  5927. #u107968_input.disabled {
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:134px;
  5932. height:23px;
  5933. padding:2px 2px 2px 2px;
  5934. font-family:'ArialMT', 'Arial', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. font-size:14px;
  5938. letter-spacing:normal;
  5939. color:#AAAAAA;
  5940. vertical-align:none;
  5941. text-align:left;
  5942. text-transform:none;
  5943. background-color:transparent;
  5944. border-color:transparent;
  5945. }
  5946. #u107968_div {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:134px;
  5952. height:23px;
  5953. background:inherit;
  5954. background-color:rgba(255, 255, 255, 1);
  5955. border:none;
  5956. border-radius:0px;
  5957. -moz-box-shadow:none;
  5958. -webkit-box-shadow:none;
  5959. box-shadow:none;
  5960. font-size:14px;
  5961. color:#AAAAAA;
  5962. }
  5963. #u107968 {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:354px;
  5967. top:145px;
  5968. width:134px;
  5969. height:23px;
  5970. display:flex;
  5971. font-size:14px;
  5972. color:#AAAAAA;
  5973. }
  5974. #u107968 .text {
  5975. position:absolute;
  5976. align-self:flex-start;
  5977. padding:2px 2px 2px 2px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u107968_div.disabled {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:134px;
  5987. height:23px;
  5988. background:inherit;
  5989. background-color:rgba(240, 240, 240, 1);
  5990. border:none;
  5991. border-radius:0px;
  5992. -moz-box-shadow:none;
  5993. -webkit-box-shadow:none;
  5994. box-shadow:none;
  5995. font-size:14px;
  5996. color:#AAAAAA;
  5997. }
  5998. #u107968.disabled {
  5999. }
  6000. .u107968_input_option {
  6001. font-size:14px;
  6002. }
  6003. #u107969 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:0px;
  6009. height:0px;
  6010. }
  6011. #u107970_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:200px;
  6017. height:1180px;
  6018. background:inherit;
  6019. background-color:rgba(255, 255, 255, 1);
  6020. border:none;
  6021. border-radius:0px;
  6022. -moz-box-shadow:none;
  6023. -webkit-box-shadow:none;
  6024. box-shadow:none;
  6025. }
  6026. #u107970 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:121px;
  6030. top:50px;
  6031. width:200px;
  6032. height:1180px;
  6033. display:flex;
  6034. }
  6035. #u107970 .text {
  6036. position:absolute;
  6037. align-self:center;
  6038. padding:2px 2px 2px 2px;
  6039. box-sizing:border-box;
  6040. width:100%;
  6041. }
  6042. #u107970_text {
  6043. border-width:0px;
  6044. word-wrap:break-word;
  6045. text-transform:none;
  6046. visibility:hidden;
  6047. }
  6048. #u107971_div {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:0px;
  6052. top:0px;
  6053. width:200px;
  6054. height:60px;
  6055. background:inherit;
  6056. background-color:rgba(224, 231, 247, 1);
  6057. border:none;
  6058. border-radius:0px;
  6059. -moz-box-shadow:none;
  6060. -webkit-box-shadow:none;
  6061. box-shadow:none;
  6062. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6063. font-weight:500;
  6064. font-style:normal;
  6065. font-size:18px;
  6066. }
  6067. #u107971 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:121px;
  6071. top:50px;
  6072. width:200px;
  6073. height:60px;
  6074. display:flex;
  6075. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6076. font-weight:500;
  6077. font-style:normal;
  6078. font-size:18px;
  6079. }
  6080. #u107971 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:0px 0px 0px 20px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u107971_text {
  6088. border-width:0px;
  6089. word-wrap:break-word;
  6090. text-transform:none;
  6091. }
  6092. #u107972_div {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:0px;
  6096. top:0px;
  6097. width:65px;
  6098. height:22px;
  6099. background:inherit;
  6100. background-color:rgba(255, 255, 255, 0);
  6101. border:none;
  6102. border-radius:0px;
  6103. -moz-box-shadow:none;
  6104. -webkit-box-shadow:none;
  6105. box-shadow:none;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:16px;
  6110. }
  6111. #u107972 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:148px;
  6115. top:130px;
  6116. width:65px;
  6117. height:22px;
  6118. display:flex;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:16px;
  6123. }
  6124. #u107972 .text {
  6125. position:absolute;
  6126. align-self:flex-start;
  6127. padding:0px 0px 0px 0px;
  6128. box-sizing:border-box;
  6129. width:100%;
  6130. }
  6131. #u107972_text {
  6132. border-width:0px;
  6133. white-space:nowrap;
  6134. text-transform:none;
  6135. }
  6136. #u107973_div {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:65px;
  6142. height:22px;
  6143. background:inherit;
  6144. background-color:rgba(255, 255, 255, 0);
  6145. border:none;
  6146. border-radius:0px;
  6147. -moz-box-shadow:none;
  6148. -webkit-box-shadow:none;
  6149. box-shadow:none;
  6150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:16px;
  6154. }
  6155. #u107973 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:148px;
  6159. top:172px;
  6160. width:65px;
  6161. height:22px;
  6162. display:flex;
  6163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:16px;
  6167. }
  6168. #u107973 .text {
  6169. position:absolute;
  6170. align-self:flex-start;
  6171. padding:0px 0px 0px 0px;
  6172. box-sizing:border-box;
  6173. width:100%;
  6174. }
  6175. #u107973_text {
  6176. border-width:0px;
  6177. white-space:nowrap;
  6178. text-transform:none;
  6179. }
  6180. #u107974_div {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:65px;
  6186. height:22px;
  6187. background:inherit;
  6188. background-color:rgba(255, 255, 255, 0);
  6189. border:none;
  6190. border-radius:0px;
  6191. -moz-box-shadow:none;
  6192. -webkit-box-shadow:none;
  6193. box-shadow:none;
  6194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6195. font-weight:400;
  6196. font-style:normal;
  6197. font-size:16px;
  6198. }
  6199. #u107974 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:148px;
  6203. top:214px;
  6204. width:65px;
  6205. height:22px;
  6206. display:flex;
  6207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. font-size:16px;
  6211. }
  6212. #u107974 .text {
  6213. position:absolute;
  6214. align-self:flex-start;
  6215. padding:0px 0px 0px 0px;
  6216. box-sizing:border-box;
  6217. width:100%;
  6218. }
  6219. #u107974_text {
  6220. border-width:0px;
  6221. white-space:nowrap;
  6222. text-transform:none;
  6223. }
  6224. #u107975_div {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:81px;
  6230. height:22px;
  6231. background:inherit;
  6232. background-color:rgba(255, 255, 255, 0);
  6233. border:none;
  6234. border-radius:0px;
  6235. -moz-box-shadow:none;
  6236. -webkit-box-shadow:none;
  6237. box-shadow:none;
  6238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. font-size:16px;
  6242. }
  6243. #u107975 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:148px;
  6247. top:256px;
  6248. width:81px;
  6249. height:22px;
  6250. display:flex;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:16px;
  6255. }
  6256. #u107975 .text {
  6257. position:absolute;
  6258. align-self:flex-start;
  6259. padding:0px 0px 0px 0px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u107975_text {
  6264. border-width:0px;
  6265. white-space:nowrap;
  6266. text-transform:none;
  6267. }
  6268. #u107976_div {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:81px;
  6274. height:22px;
  6275. background:inherit;
  6276. background-color:rgba(255, 255, 255, 0);
  6277. border:none;
  6278. border-radius:0px;
  6279. -moz-box-shadow:none;
  6280. -webkit-box-shadow:none;
  6281. box-shadow:none;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:16px;
  6286. }
  6287. #u107976 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:148px;
  6291. top:298px;
  6292. width:81px;
  6293. height:22px;
  6294. display:flex;
  6295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6296. font-weight:400;
  6297. font-style:normal;
  6298. font-size:16px;
  6299. }
  6300. #u107976 .text {
  6301. position:absolute;
  6302. align-self:flex-start;
  6303. padding:0px 0px 0px 0px;
  6304. box-sizing:border-box;
  6305. width:100%;
  6306. }
  6307. #u107976_text {
  6308. border-width:0px;
  6309. white-space:nowrap;
  6310. text-transform:none;
  6311. }
  6312. #u107977_div {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:65px;
  6318. height:22px;
  6319. background:inherit;
  6320. background-color:rgba(255, 255, 255, 0);
  6321. border:none;
  6322. border-radius:0px;
  6323. -moz-box-shadow:none;
  6324. -webkit-box-shadow:none;
  6325. box-shadow:none;
  6326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6327. font-weight:400;
  6328. font-style:normal;
  6329. font-size:16px;
  6330. }
  6331. #u107977 {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:144px;
  6335. top:435px;
  6336. width:65px;
  6337. height:22px;
  6338. display:flex;
  6339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:16px;
  6343. }
  6344. #u107977 .text {
  6345. position:absolute;
  6346. align-self:flex-start;
  6347. padding:0px 0px 0px 0px;
  6348. box-sizing:border-box;
  6349. width:100%;
  6350. }
  6351. #u107977_text {
  6352. border-width:0px;
  6353. white-space:nowrap;
  6354. text-transform:none;
  6355. }
  6356. #u107978_img {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:0px;
  6360. top:0px;
  6361. width:201px;
  6362. height:2px;
  6363. }
  6364. #u107978 {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:121px;
  6368. top:382px;
  6369. width:200px;
  6370. height:1px;
  6371. display:flex;
  6372. }
  6373. #u107978 .text {
  6374. position:absolute;
  6375. align-self:center;
  6376. padding:2px 2px 2px 2px;
  6377. box-sizing:border-box;
  6378. width:100%;
  6379. }
  6380. #u107978_text {
  6381. border-width:0px;
  6382. word-wrap:break-word;
  6383. text-transform:none;
  6384. visibility:hidden;
  6385. }
  6386. #u107979_div {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:49px;
  6392. height:17px;
  6393. background:inherit;
  6394. background-color:rgba(255, 255, 255, 0);
  6395. border:none;
  6396. border-radius:0px;
  6397. -moz-box-shadow:none;
  6398. -webkit-box-shadow:none;
  6399. box-shadow:none;
  6400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6401. font-weight:400;
  6402. font-style:normal;
  6403. font-size:12px;
  6404. color:#AAAAAA;
  6405. }
  6406. #u107979 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:144px;
  6410. top:402px;
  6411. width:49px;
  6412. height:17px;
  6413. display:flex;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:12px;
  6418. color:#AAAAAA;
  6419. }
  6420. #u107979 .text {
  6421. position:absolute;
  6422. align-self:flex-start;
  6423. padding:0px 0px 0px 0px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u107979_text {
  6428. border-width:0px;
  6429. white-space:nowrap;
  6430. text-transform:none;
  6431. }
  6432. #u107980_div {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:65px;
  6438. height:22px;
  6439. background:inherit;
  6440. background-color:rgba(255, 255, 255, 0);
  6441. border:none;
  6442. border-radius:0px;
  6443. -moz-box-shadow:none;
  6444. -webkit-box-shadow:none;
  6445. box-shadow:none;
  6446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6447. font-weight:400;
  6448. font-style:normal;
  6449. font-size:16px;
  6450. }
  6451. #u107980 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:144px;
  6455. top:477px;
  6456. width:65px;
  6457. height:22px;
  6458. display:flex;
  6459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:16px;
  6463. }
  6464. #u107980 .text {
  6465. position:absolute;
  6466. align-self:flex-start;
  6467. padding:0px 0px 0px 0px;
  6468. box-sizing:border-box;
  6469. width:100%;
  6470. }
  6471. #u107980_text {
  6472. border-width:0px;
  6473. white-space:nowrap;
  6474. text-transform:none;
  6475. }
  6476. #u107981_div {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:65px;
  6482. height:22px;
  6483. background:inherit;
  6484. background-color:rgba(255, 255, 255, 0);
  6485. border:none;
  6486. border-radius:0px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:16px;
  6494. }
  6495. #u107981 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:148px;
  6499. top:340px;
  6500. width:65px;
  6501. height:22px;
  6502. display:flex;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:16px;
  6507. }
  6508. #u107981 .text {
  6509. position:absolute;
  6510. align-self:flex-start;
  6511. padding:0px 0px 0px 0px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u107981_text {
  6516. border-width:0px;
  6517. white-space:nowrap;
  6518. text-transform:none;
  6519. }
  6520. #u107982_div {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:65px;
  6526. height:22px;
  6527. background:inherit;
  6528. background-color:rgba(255, 255, 255, 0);
  6529. border:none;
  6530. border-radius:0px;
  6531. -moz-box-shadow:none;
  6532. -webkit-box-shadow:none;
  6533. box-shadow:none;
  6534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:16px;
  6538. }
  6539. #u107982 {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:144px;
  6543. top:519px;
  6544. width:65px;
  6545. height:22px;
  6546. display:flex;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:16px;
  6551. }
  6552. #u107982 .text {
  6553. position:absolute;
  6554. align-self:flex-start;
  6555. padding:0px 0px 0px 0px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u107982_text {
  6560. border-width:0px;
  6561. white-space:nowrap;
  6562. text-transform:none;
  6563. }
  6564. #u107983_div {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:65px;
  6570. height:22px;
  6571. background:inherit;
  6572. background-color:rgba(255, 255, 255, 0);
  6573. border:none;
  6574. border-radius:0px;
  6575. -moz-box-shadow:none;
  6576. -webkit-box-shadow:none;
  6577. box-shadow:none;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:16px;
  6582. }
  6583. #u107983 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:144px;
  6587. top:561px;
  6588. width:65px;
  6589. height:22px;
  6590. display:flex;
  6591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6592. font-weight:400;
  6593. font-style:normal;
  6594. font-size:16px;
  6595. }
  6596. #u107983 .text {
  6597. position:absolute;
  6598. align-self:flex-start;
  6599. padding:0px 0px 0px 0px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u107983_text {
  6604. border-width:0px;
  6605. white-space:nowrap;
  6606. text-transform:none;
  6607. }