styles.css 113 KB

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