styles.css 111 KB

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